first
This commit is contained in:
commit
1b5ca33b46
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Godot 4+ specific ignores
|
||||||
|
.godot/
|
||||||
|
Builds/
|
50
Player.gd
Normal file
50
Player.gd
Normal file
@ -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()
|
3
README
Normal file
3
README
Normal file
@ -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)
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
@ -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
|
||||||
|
}]
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user