In progress refactoring of Boss class
@@ -5,7 +5,9 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Remove="src\enemy\enemy_types\NewFolder\**" />
|
||||
<Compile Remove="src\map\dungeon\corridor\**" />
|
||||
<EmbeddedResource Remove="src\enemy\enemy_types\NewFolder\**" />
|
||||
<EmbeddedResource Remove="src\map\dungeon\corridor\**" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Chickensoft.AutoInject" Version="2.5.0" />
|
||||
@@ -21,7 +23,6 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="src\items\weapons\models\" />
|
||||
<Folder Include="src\map\dungeon\corridor\" />
|
||||
<Folder Include="src\ui\dialogue\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
182
src/boss/Boss.cs
@@ -8,15 +8,19 @@ namespace GameJamDungeon;
|
||||
|
||||
public interface IBoss : ICharacterBody3D
|
||||
{
|
||||
public AnimationTree AnimationTree { get; }
|
||||
|
||||
public AnimationPlayer HitAnimation { get; }
|
||||
|
||||
public Timer AttackTimer { get; }
|
||||
|
||||
public void Activate();
|
||||
|
||||
public AutoProp<double> CurrentHP { get; }
|
||||
public void TakeDamage(double damage, ElementType elementType = ElementType.None, bool isCriticalHit = false, bool ignoreDefense = false, bool ignoreElementalResistance = false);
|
||||
|
||||
public void MoveToLocation(Vector3 target, float delta);
|
||||
|
||||
public void StartAttackTimer();
|
||||
|
||||
public void StopAttackTimer();
|
||||
|
||||
public double CurrentHP { get; }
|
||||
|
||||
public AutoProp<bool> IsDefeated { get; }
|
||||
}
|
||||
|
||||
[Meta(typeof(IAutoNode))]
|
||||
@@ -24,39 +28,47 @@ public partial class Boss : CharacterBody3D, IBoss, IProvide<IBossLogic>
|
||||
{
|
||||
public override void _Notification(int what) => this.Notify(what);
|
||||
|
||||
public IBossLogic BossLogic { get; set; } = default!;
|
||||
public double CurrentHP => _currentHP.Value;
|
||||
|
||||
[Export] public EnemyStatResource BossResource { get; set; } = default!;
|
||||
public AutoProp<bool> IsDefeated { get; set; }
|
||||
|
||||
IBossLogic IProvide<IBossLogic>.Value() => BossLogic;
|
||||
private AutoProp<double> _currentHP { get; set; }
|
||||
|
||||
#region Autoinject
|
||||
protected IBossLogic _bossLogic { get; set; } = default!;
|
||||
|
||||
IBossLogic IProvide<IBossLogic>.Value() => _bossLogic;
|
||||
|
||||
public BossLogic.IBinding BossBinding { get; set; } = default!;
|
||||
#endregion
|
||||
|
||||
[Dependency] public IGameEventDepot GameEventDepot => this.DependOn<IGameEventDepot>();
|
||||
#region Export
|
||||
[Export] private EnemyStatResource _bossStatResource { get; set; } = default!;
|
||||
#endregion
|
||||
|
||||
[Dependency] public IGame Game => this.DependOn<IGame>();
|
||||
#region Dependencies
|
||||
[Dependency] private IPlayer _player => this.DependOn<IPlayer>();
|
||||
#endregion
|
||||
|
||||
[Dependency] public IPlayer Player => this.DependOn<IPlayer>();
|
||||
#region Nodes
|
||||
[Node] private AnimationTree _animationTree { get; set; } = default!;
|
||||
|
||||
[Node] public AnimationTree AnimationTree { get; set; } = default!;
|
||||
[Node] private Timer _attackTimer { get; set; } = default!;
|
||||
|
||||
[Node] public Timer AttackTimer { get; set; } = default!;
|
||||
[Node] private AnimationPlayer _hitAnimation { get; set; } = default!;
|
||||
|
||||
[Node] public AnimationPlayer HitAnimation { get; set; } = default!;
|
||||
[Node] private Area3D _hitbox { get; set; } = default!;
|
||||
|
||||
[Node] public Area3D Hitbox { get; set; } = default!;
|
||||
[Node] private Area3D _attackBox { get; set; } = default!;
|
||||
|
||||
[Node] public Area3D AttackBox { get; set; } = default!;
|
||||
|
||||
[Node] public Area3D SecondaryAttackBox { get; set; } = default!;
|
||||
|
||||
public AutoProp<double> CurrentHP { get; set; }
|
||||
[Node] private Area3D _secondaryAttackBox { get; set; } = default!;
|
||||
#endregion
|
||||
|
||||
public void Setup()
|
||||
{
|
||||
BossLogic = new BossLogic();
|
||||
BossLogic.Set(this as IBoss);
|
||||
BossLogic.Set(Player);
|
||||
_bossLogic = new BossLogic();
|
||||
_bossLogic.Set(this as IBoss);
|
||||
_bossLogic.Set(_player);
|
||||
|
||||
SetPhysicsProcess(false);
|
||||
Hide();
|
||||
@@ -64,87 +76,87 @@ public partial class Boss : CharacterBody3D, IBoss, IProvide<IBossLogic>
|
||||
|
||||
public void OnResolved()
|
||||
{
|
||||
BossBinding = BossLogic.Bind();
|
||||
BossBinding = _bossLogic.Bind();
|
||||
BossBinding
|
||||
.Handle((in BossLogic.Output.Defeated output) =>
|
||||
{
|
||||
HitAnimation.Play("Defeated");
|
||||
_hitAnimation.Play("Defeated");
|
||||
});
|
||||
this.Provide();
|
||||
BossLogic.Start();
|
||||
CurrentHP = new AutoProp<double>(BossResource.MaximumHP);
|
||||
CurrentHP.Sync += OnHPChanged;
|
||||
AttackTimer.Timeout += AttackTimer_Timeout;
|
||||
Hitbox.AreaEntered += Hitbox_AreaEntered;
|
||||
HitAnimation.AnimationFinished += HitAnimation_AnimationFinished;
|
||||
AttackBox.AreaEntered += AttackBox_AreaEntered;
|
||||
SecondaryAttackBox.AreaEntered += SecondaryAttackBox_AreaEntered;
|
||||
}
|
||||
|
||||
private void AttackBox_AreaEntered(Area3D area)
|
||||
{
|
||||
//var bossHitDamage = DamageCalculator.CalculateEnemyAttackDamage(GameRepo.PlayerData.CurrentDefense.Value + GameRepo.PlayerData.BonusDefense,
|
||||
// BossResource,
|
||||
// GameRepo.PlayerData.Inventory.EquippedArmor.Value.ArmorStats,
|
||||
// false);
|
||||
//GameRepo.PlayerData.SetCurrentHP(GameRepo.PlayerData.CurrentHP.Value - Mathf.RoundToInt(bossHitDamage));
|
||||
}
|
||||
|
||||
private void SecondaryAttackBox_AreaEntered(Area3D area)
|
||||
{
|
||||
//var bossHitDamage = DamageCalculator.CalculateEnemyAttackDamage(GameRepo.PlayerData.CurrentDefense.Value + GameRepo.PlayerData.BonusDefense,
|
||||
// BossResource,
|
||||
// GameRepo.PlayerData.Inventory.EquippedArmor.Value.ArmorStats,
|
||||
// false);
|
||||
//var nerfDamage = bossHitDamage *= 0.25f;
|
||||
//GameRepo.PlayerData.SetCurrentHP(GameRepo.PlayerData.CurrentHP.Value - Mathf.RoundToInt(nerfDamage));
|
||||
Player.Knockback(115f);
|
||||
}
|
||||
|
||||
private void HitAnimation_AnimationFinished(StringName animName)
|
||||
{
|
||||
if (animName == "Defeated")
|
||||
QueueFree();
|
||||
}
|
||||
|
||||
private void Hitbox_AreaEntered(Area3D area)
|
||||
{
|
||||
if (area is IHitbox)
|
||||
{
|
||||
var isCriticalHit = false;
|
||||
var rng = new RandomNumberGenerator();
|
||||
rng.Randomize();
|
||||
var roll = rng.Randf();
|
||||
if (roll <= Player.Inventory.EquippedWeapon.Value.Luck)
|
||||
isCriticalHit = true;
|
||||
}
|
||||
_bossLogic.Start();
|
||||
_currentHP = new AutoProp<double>(_bossStatResource.MaximumHP);
|
||||
_currentHP.Sync += OnHPChanged;
|
||||
_attackTimer.Timeout += AttackTimer_Timeout;
|
||||
}
|
||||
|
||||
public void Activate()
|
||||
{
|
||||
BossLogic.Input(new BossLogic.Input.Activate());
|
||||
_bossLogic.Input(new BossLogic.Input.Activate());
|
||||
}
|
||||
|
||||
private void AttackTimer_Timeout()
|
||||
public void TakeDamage(double damage, ElementType elementType, bool isCriticalHit = false, bool ignoreDefense = false, bool ignoreElementalResistance = false)
|
||||
{
|
||||
if (_currentHP.Value > 0)
|
||||
{
|
||||
if (!ignoreElementalResistance)
|
||||
damage = CalculateElementalResistance(damage, elementType);
|
||||
if (!ignoreDefense)
|
||||
damage = CalculateDefenseResistance(damage);
|
||||
if (isCriticalHit)
|
||||
damage *= 2;
|
||||
GD.Print($"Enemy Hit for {damage} damage.");
|
||||
_currentHP.OnNext(_currentHP.Value - damage);
|
||||
GD.Print("Current HP: " + _currentHP.Value);
|
||||
|
||||
if (_currentHP.Value <= 0)
|
||||
return;
|
||||
|
||||
//EnemyModelView.PlayHitAnimation();
|
||||
}
|
||||
}
|
||||
|
||||
public void MoveToLocation(Vector3 target, float delta) => throw new System.NotImplementedException();
|
||||
|
||||
public void StartAttackTimer() => _attackTimer.Start();
|
||||
|
||||
public void StopAttackTimer() => _attackTimer.Stop();
|
||||
|
||||
private void AttackTimer_Timeout() => _bossLogic.Input(new BossLogic.Input.AttackTimer());
|
||||
|
||||
public virtual void TakeAction()
|
||||
{
|
||||
var random = new RandomNumberGenerator();
|
||||
random.Randomize();
|
||||
var selection = random.RandWeighted([0.2f, 0.8f]);
|
||||
if (selection == 0)
|
||||
BossLogic.Input(new BossLogic.Input.SecondaryAttack());
|
||||
else
|
||||
BossLogic.Input(new BossLogic.Input.PrimaryAttack());
|
||||
}
|
||||
|
||||
public void OnPhysicsProcess(double delta)
|
||||
{
|
||||
BossLogic.Input(new BossLogic.Input.PhysicsTick(delta));
|
||||
_bossLogic.Input(new BossLogic.Input.PhysicsTick(delta));
|
||||
MoveAndSlide();
|
||||
}
|
||||
|
||||
private void OnHPChanged(double newHP)
|
||||
{
|
||||
if (newHP <= 0)
|
||||
BossLogic.Input(new BossLogic.Input.BossDefeated());
|
||||
_bossLogic.Input(new BossLogic.Input.BossDefeated());
|
||||
}
|
||||
|
||||
private double CalculateElementalResistance(double incomingDamage, ElementType incomingElementType)
|
||||
{
|
||||
if (incomingElementType == ElementType.Aeolic)
|
||||
return Mathf.Max(incomingDamage - (incomingDamage * _bossStatResource.AeolicResistance), 0.0);
|
||||
if (incomingElementType == ElementType.Hydric)
|
||||
return Mathf.Max(incomingDamage - (incomingDamage * _bossStatResource.HydricResistance), 0.0);
|
||||
if (incomingElementType == ElementType.Igneous)
|
||||
return Mathf.Max(incomingDamage - (incomingDamage * _bossStatResource.IgneousResistance), 0.0);
|
||||
if (incomingElementType == ElementType.Ferrum)
|
||||
return Mathf.Max(incomingDamage - (incomingDamage * _bossStatResource.FerrumResistance), 0.0);
|
||||
if (incomingElementType == ElementType.Telluric)
|
||||
return Mathf.Max(incomingDamage - (incomingDamage * _bossStatResource.TelluricResistance), 0.0);
|
||||
|
||||
return Mathf.Max(incomingDamage, 0.0);
|
||||
}
|
||||
|
||||
private double CalculateDefenseResistance(double incomingDamage)
|
||||
{
|
||||
return Mathf.Max(incomingDamage - _bossStatResource.CurrentDefense, 0.0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,16 +4,16 @@ public partial class BossLogic
|
||||
{
|
||||
public static class Input
|
||||
{
|
||||
public readonly record struct Activate();
|
||||
public readonly record struct Activate;
|
||||
|
||||
public readonly record struct PhysicsTick(double Delta);
|
||||
|
||||
public readonly record struct PrimaryAttack();
|
||||
public readonly record struct StopMoving;
|
||||
|
||||
public readonly record struct SecondaryAttack();
|
||||
public readonly record struct AttackTimer;
|
||||
|
||||
public readonly record struct HitByPlayer(double Damage);
|
||||
public readonly record struct StartAttacking;
|
||||
|
||||
public readonly record struct BossDefeated();
|
||||
public readonly record struct BossDefeated;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +1,17 @@
|
||||
namespace GameJamDungeon;
|
||||
using Godot;
|
||||
|
||||
namespace GameJamDungeon;
|
||||
|
||||
public partial class BossLogic
|
||||
{
|
||||
public static class Output
|
||||
{
|
||||
public readonly record struct HitByPlayer(double CurrentHP);
|
||||
public readonly record struct MoveTowardsPlayer(Vector3 TargetPosition);
|
||||
|
||||
public readonly record struct Defeated();
|
||||
public readonly record struct MovementComputed(Vector3 LinearVelocity);
|
||||
|
||||
public readonly record struct TakeAction;
|
||||
|
||||
public readonly record struct Defeated;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,5 +9,5 @@ public interface IBossLogic : ILogicBlock<BossLogic.State>;
|
||||
[LogicBlock(typeof(State), Diagram = true)]
|
||||
public partial class BossLogic : LogicBlock<BossLogic.State>, IBossLogic
|
||||
{
|
||||
public override Transition GetInitialState() => To<State.Idle>();
|
||||
public override Transition GetInitialState() => To<State.Unactivated>();
|
||||
}
|
||||
|
||||
@@ -1,24 +1,29 @@
|
||||
@startuml BossLogic
|
||||
state "BossLogic State" as GameJamDungeon_BossLogic_State {
|
||||
state "Defeated" as GameJamDungeon_BossLogic_State_Defeated
|
||||
state "Alive" as GameJamDungeon_BossLogic_State_Alive {
|
||||
state "Idle" as GameJamDungeon_BossLogic_State_Idle
|
||||
}
|
||||
state "ApproachPlayer" as GameJamDungeon_BossLogic_State_ApproachPlayer
|
||||
state "Defeated" as GameJamDungeon_BossLogic_State_Defeated
|
||||
state "EngagePlayer" as GameJamDungeon_BossLogic_State_EngagePlayer
|
||||
state "ApproachPlayer" as GameJamDungeon_BossLogic_State_ApproachPlayer
|
||||
state "Activated" as GameJamDungeon_BossLogic_State_Activated {
|
||||
state "Attacking" as GameJamDungeon_BossLogic_State_Attacking
|
||||
state "FollowPlayer" as GameJamDungeon_BossLogic_State_FollowPlayer
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
GameJamDungeon_BossLogic_State_Alive --> GameJamDungeon_BossLogic_State_Alive : HitByPlayer
|
||||
GameJamDungeon_BossLogic_State_Alive --> GameJamDungeon_BossLogic_State_Defeated : BossDefeated
|
||||
GameJamDungeon_BossLogic_State_ApproachPlayer --> GameJamDungeon_BossLogic_State_ApproachPlayer : PhysicsTick
|
||||
GameJamDungeon_BossLogic_State_ApproachPlayer --> GameJamDungeon_BossLogic_State_EngagePlayer : PhysicsTick
|
||||
GameJamDungeon_BossLogic_State_EngagePlayer --> GameJamDungeon_BossLogic_State_ApproachPlayer : PhysicsTick
|
||||
GameJamDungeon_BossLogic_State_EngagePlayer --> GameJamDungeon_BossLogic_State_EngagePlayer : PhysicsTick
|
||||
GameJamDungeon_BossLogic_State_EngagePlayer --> GameJamDungeon_BossLogic_State_EngagePlayer : PrimaryAttack
|
||||
GameJamDungeon_BossLogic_State_EngagePlayer --> GameJamDungeon_BossLogic_State_EngagePlayer : SecondaryAttack
|
||||
GameJamDungeon_BossLogic_State_FollowPlayer --> GameJamDungeon_BossLogic_State_FollowPlayer : PhysicsTick
|
||||
GameJamDungeon_BossLogic_State_Idle --> GameJamDungeon_BossLogic_State_ApproachPlayer : Activate
|
||||
|
||||
GameJamDungeon_BossLogic_State : On() → HitByPlayer
|
||||
GameJamDungeon_BossLogic_State_Alive : OnHitByPlayer → HitByPlayer
|
||||
GameJamDungeon_BossLogic_State : On() → Defeated
|
||||
GameJamDungeon_BossLogic_State_Alive : OnBossDefeated → Defeated
|
||||
|
||||
[*] --> GameJamDungeon_BossLogic_State_Idle
|
||||
@enduml
|
||||
14
src/boss/state/states/BossLogic.State.Activated.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Chickensoft.Introspection;
|
||||
|
||||
namespace GameJamDungeon;
|
||||
|
||||
public partial class BossLogic
|
||||
{
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("boss_logic_state_activated")]
|
||||
public partial record Activated : Alive
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,18 +8,14 @@ public partial class BossLogic
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("boss_logic_state_alive")]
|
||||
public abstract partial record Alive : State, IGet<Input.HitByPlayer>, IGet<Input.BossDefeated>
|
||||
public abstract partial record Alive : State, IGet<Input.BossDefeated>, IGet<Input.AttackTimer>, IGet<Input.StopMoving>, IGet<Input.StartAttacking>
|
||||
{
|
||||
}
|
||||
|
||||
public Transition On(in Input.HitByPlayer input)
|
||||
public Transition On(in Input.AttackTimer input)
|
||||
{
|
||||
var enemy = Get<IBoss>();
|
||||
enemy.HitAnimation.Play("Hit");
|
||||
enemy.CurrentHP.OnNext(enemy.CurrentHP.Value - input.Damage);
|
||||
GD.Print("Current HP: " + enemy.CurrentHP.Value);
|
||||
Output(new Output.HitByPlayer());
|
||||
return ToSelf();
|
||||
Output(new Output.TakeAction());
|
||||
return To<Attacking>();
|
||||
}
|
||||
|
||||
public Transition On(in Input.BossDefeated input)
|
||||
@@ -27,5 +23,15 @@ public partial class BossLogic
|
||||
Output(new Output.Defeated());
|
||||
return To<Defeated>();
|
||||
}
|
||||
|
||||
public Transition On(in Input.StopMoving input)
|
||||
{
|
||||
return To<Idle>();
|
||||
}
|
||||
|
||||
public Transition On(in Input.StartAttacking input)
|
||||
{
|
||||
return To<Attacking>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,7 +26,6 @@ public partial class BossLogic
|
||||
|
||||
var targetDirection = boss.GlobalPosition - player.CurrentPosition;
|
||||
boss.GlobalRotation = new Vector3(boss.GlobalRotation.X, Mathf.LerpAngle(boss.GlobalRotation.Y, Mathf.Atan2(-targetDirection.X, -targetDirection.Z), delta * 3f), boss.GlobalRotation.Z);
|
||||
boss.AnimationTree.Get("parameters/playback").As<AnimationNodeStateMachinePlayback>().Travel("Walk");
|
||||
return ToSelf();
|
||||
}
|
||||
}
|
||||
|
||||
19
src/boss/state/states/BossLogic.State.Attacking.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Chickensoft.Introspection;
|
||||
|
||||
namespace GameJamDungeon;
|
||||
|
||||
public partial class BossLogic
|
||||
{
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("boss_logic_state_attacking")]
|
||||
public partial record Attacking : Activated, IGet<Input.StopMoving>
|
||||
{
|
||||
public Attacking()
|
||||
{
|
||||
OnAttach(() => Get<IEnemy>().StartAttackTimer());
|
||||
OnDetach(() => Get<IEnemy>().StopAttackTimer());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,11 +8,10 @@ public partial class BossLogic
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("boss_logic_state_engage_player")]
|
||||
public partial record EngagePlayer : Alive, IGet<Input.PhysicsTick>, IGet<Input.PrimaryAttack>, IGet<Input.SecondaryAttack>
|
||||
public partial record EngagePlayer : Alive, IGet<Input.PhysicsTick>
|
||||
{
|
||||
public EngagePlayer()
|
||||
{
|
||||
OnAttach(() => Get<IBoss>().AnimationTree.Get("parameters/playback").As<AnimationNodeStateMachinePlayback>().Travel("Idle"));
|
||||
}
|
||||
|
||||
public Transition On(in Input.PhysicsTick input)
|
||||
@@ -28,20 +27,6 @@ public partial class BossLogic
|
||||
|
||||
return ToSelf();
|
||||
}
|
||||
|
||||
public Transition On(in Input.PrimaryAttack input)
|
||||
{
|
||||
var boss = Get<IBoss>();
|
||||
boss.AnimationTree.Get("parameters/playback").As<AnimationNodeStateMachinePlayback>().Travel("PrimaryAttack");
|
||||
return ToSelf();
|
||||
}
|
||||
|
||||
public Transition On(in Input.SecondaryAttack input)
|
||||
{
|
||||
var boss = Get<IBoss>();
|
||||
boss.AnimationTree.Get("parameters/playback").As<AnimationNodeStateMachinePlayback>().Travel("SecondaryAttack");
|
||||
return ToSelf();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
23
src/boss/state/states/BossLogic.State.FollowPlayer.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Chickensoft.Introspection;
|
||||
|
||||
namespace GameJamDungeon;
|
||||
|
||||
public partial class BossLogic
|
||||
{
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("boss_logic_state_followplayer")]
|
||||
public partial record FollowPlayer : Activated, IGet<Input.PhysicsTick>
|
||||
{
|
||||
public Transition On(in Input.PhysicsTick input)
|
||||
{
|
||||
var delta = input.Delta;
|
||||
var enemy = Get<IEnemy>();
|
||||
var player = Get<IPlayer>();
|
||||
var target = player.CurrentPosition;
|
||||
enemy.MoveToLocation(target, (float)delta);
|
||||
return ToSelf();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -16,7 +16,6 @@ public partial class BossLogic
|
||||
var boss = Get<IBoss>();
|
||||
boss.SetPhysicsProcess(true);
|
||||
boss.Show();
|
||||
boss.AttackTimer.Start();
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
18
src/boss/state/states/BossLogic.State.Unactivated.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Chickensoft.Introspection;
|
||||
|
||||
namespace GameJamDungeon;
|
||||
|
||||
public partial class BossLogic
|
||||
{
|
||||
public partial record State
|
||||
{
|
||||
[Meta, Id("boss_logic_state_unactivated")]
|
||||
public partial record Unactivated : State, IGet<Input.Activate>
|
||||
{
|
||||
public Transition On(in Input.Activate input)
|
||||
{
|
||||
return To<Activated>();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
[gd_scene load_steps=8 format=3 uid="uid://bksq62muhk3h5"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/1. sproingy/Sproingy.cs" id="1_ldo22"]
|
||||
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_ldo22"]
|
||||
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_8vcnq"]
|
||||
[ext_resource type="PackedScene" uid="uid://bli0t0d6ommvi" path="res://src/enemy/enemy_types/1. sproingy/SproingyModelView.tscn" id="4_o3b7p"]
|
||||
|
||||
|
||||
@@ -691,6 +691,7 @@ EnemyLoreInfo = ExtResource("2_53wuj")
|
||||
[node name="Sprite3D" type="Sprite3D" parent="."]
|
||||
transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0, 0)
|
||||
billboard = 2
|
||||
alpha_cut = 1
|
||||
texture_filter = 0
|
||||
render_priority = 100
|
||||
texture = SubResource("ViewportTexture_h1kaf")
|
||||
|
||||
172
src/enemy/enemy_types/10. Eden Pillar/Eden Pillar.tscn
Normal file
BIN
src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1.glb
Normal file
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://di0p6rdjw2s85"
|
||||
path="res://.godot/imported/PILLAR EXPORT 1.glb-f4cad65c662305d7fc7f74d6d8dc0d91.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1.glb"
|
||||
dest_files=["res://.godot/imported/PILLAR EXPORT 1.glb-f4cad65c662305d7fc7f74d6d8dc0d91.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
nodes/use_node_type_suffixes=true
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=1
|
||||
gltf/embedded_image_handling=1
|
||||
|
After Width: | Height: | Size: 237 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cc1tenm6p3pca"
|
||||
path="res://.godot/imported/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE.jpg-aa28fe0566a79d119654f832bf3e37d4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "e338159bb24b816e533ad760605453b6"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE.jpg"
|
||||
dest_files=["res://.godot/imported/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE.jpg-aa28fe0566a79d119654f832bf3e37d4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
||||
|
After Width: | Height: | Size: 224 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cvst7yhbw0sxt"
|
||||
path="res://.godot/imported/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE2.jpg-5c45444ccb116de4c008645c049b0b78.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "5ae8776c2c4d3f1a1474d731b8c3c958"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE2.jpg"
|
||||
dest_files=["res://.godot/imported/PILLAR EXPORT 1_ENEMY_PILLAR_TEXTURE2.jpg-5c45444ccb116de4c008645c049b0b78.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
||||
|
After Width: | Height: | Size: 3.6 MiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bnbveonobhyhc"
|
||||
path="res://.godot/imported/PILLAR EXPORT 1_cannon_edge.png-343d7b79ad9b59f7ef6322df0839c74b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "6768c419b44030fb1f4855e51d97e421"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1_cannon_edge.png"
|
||||
dest_files=["res://.godot/imported/PILLAR EXPORT 1_cannon_edge.png-343d7b79ad9b59f7ef6322df0839c74b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
||||
|
After Width: | Height: | Size: 825 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bydfevqfagpq8"
|
||||
path="res://.godot/imported/PILLAR EXPORT 1_concrete_0025_height_1k.png-7f51b894f446c48349eafaa8099a658b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "7aa46b365ab464c5ebec4d692e27b430"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1_concrete_0025_height_1k.png"
|
||||
dest_files=["res://.godot/imported/PILLAR EXPORT 1_concrete_0025_height_1k.png-7f51b894f446c48349eafaa8099a658b.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://src/enemy/enemy_types/10. Eden Column/PILLAR EXPORT 1_concrete_0025_height_1k.png"
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
||||
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,37 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://by7k6crx6fmpv"
|
||||
path="res://.godot/imported/PILLAR EXPORT 1_floral_single_tile.jpg-2fce40a9051df851bf70ffcf3a567f61.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "c887e8428ade4b351942da4003d1076d"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/10. Eden Pillar/PILLAR EXPORT 1_floral_single_tile.jpg"
|
||||
dest_files=["res://.godot/imported/PILLAR EXPORT 1_floral_single_tile.jpg-2fce40a9051df851bf70ffcf3a567f61.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
||||
@@ -727,7 +727,7 @@ EnemyLoreInfo = ExtResource("2_fssmb")
|
||||
[node name="Sprite" type="Sprite3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.209741, 0)
|
||||
billboard = 2
|
||||
double_sided = false
|
||||
alpha_cut = 1
|
||||
texture_filter = 0
|
||||
render_priority = 100
|
||||
texture = SubResource("ViewportTexture_v7t0v")
|
||||
|
||||
@@ -850,6 +850,7 @@ EnemyLoreInfo = ExtResource("2_6p0nj")
|
||||
[node name="Sprite3D" type="Sprite3D" parent="."]
|
||||
transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0.0862446, 0)
|
||||
billboard = 2
|
||||
alpha_cut = 1
|
||||
texture_filter = 0
|
||||
render_priority = 100
|
||||
texture = SubResource("ViewportTexture_7tggm")
|
||||
|
||||
@@ -780,6 +780,7 @@ EnemyLoreInfo = ExtResource("2_0l5i1")
|
||||
[node name="Sprite3D" type="Sprite3D" parent="."]
|
||||
transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0, 0)
|
||||
billboard = 2
|
||||
alpha_cut = 1
|
||||
texture_filter = 0
|
||||
render_priority = 100
|
||||
texture = SubResource("ViewportTexture_h1kaf")
|
||||
|
||||
@@ -1,28 +1,360 @@
|
||||
[gd_scene load_steps=72 format=3 uid="uid://dcm53j3rncxdm"]
|
||||
[gd_scene load_steps=161 format=3 uid="uid://dcm53j3rncxdm"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://chymnqdw7hibn" path="res://src/enemy/EnemyModelView.cs" id="1_bocyu"]
|
||||
[ext_resource type="Texture2D" uid="uid://drjnht11skb0l" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 1.png" id="2_dg3gx"]
|
||||
[ext_resource type="Texture2D" uid="uid://b4yok7b464xhs" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 1.png" id="2_ovlmj"]
|
||||
[ext_resource type="Texture2D" uid="uid://c6fvuw1escea1" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 1.png" id="2_se0js"]
|
||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="2_yv1f1"]
|
||||
[ext_resource type="Texture2D" uid="uid://cmikkaw26k2j2" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 2.png" id="3_8xcv0"]
|
||||
[ext_resource type="Texture2D" uid="uid://yl1m0fik4fab" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 2.png" id="3_bemyc"]
|
||||
[ext_resource type="Texture2D" uid="uid://c080h01ba7jb8" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 2.png" id="3_la53g"]
|
||||
[ext_resource type="Texture2D" uid="uid://rg1kxgf6j5j3" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 3.png" id="4_1k2j0"]
|
||||
[ext_resource type="Texture2D" uid="uid://b4v5j74vw0lfm" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 3.png" id="4_nb0aq"]
|
||||
[ext_resource type="Texture2D" uid="uid://2l7vliqc41xs" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 3.png" id="4_ynt7x"]
|
||||
[ext_resource type="Texture2D" uid="uid://57fper051jl7" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 4.png" id="5_aex2m"]
|
||||
[ext_resource type="Texture2D" uid="uid://c133qsgajndpe" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 4.png" id="5_hg36a"]
|
||||
[ext_resource type="Texture2D" uid="uid://mhj4bneybvln" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 4.png" id="5_xmm3m"]
|
||||
[ext_resource type="Texture2D" uid="uid://n87jbl8ffi7s" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 5.png" id="6_2qfq6"]
|
||||
[ext_resource type="Texture2D" uid="uid://cx8h1ibqggois" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 5.png" id="6_juiyo"]
|
||||
[ext_resource type="Texture2D" uid="uid://dpisi6jhia2ti" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 5.png" id="6_rk6j7"]
|
||||
[ext_resource type="Texture2D" uid="uid://bu01iwnebairg" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 6.png" id="7_j0tbq"]
|
||||
[ext_resource type="Texture2D" uid="uid://di7h8ntc5r1rh" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 6.png" id="7_s7tcu"]
|
||||
[ext_resource type="Texture2D" uid="uid://bkwrts7cbgy8g" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 6.png" id="7_uonat"]
|
||||
[ext_resource type="Texture2D" uid="uid://douhlufe3vv6v" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 7.png" id="8_1dy6s"]
|
||||
[ext_resource type="Texture2D" uid="uid://ita71p8jpdej" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 7.png" id="8_sqnj7"]
|
||||
[ext_resource type="Texture2D" uid="uid://c1dx5cwqrlwcj" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 7.png" id="8_y77b7"]
|
||||
[ext_resource type="Texture2D" uid="uid://bumpf01faarws" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 8.png" id="9_e1hgb"]
|
||||
[ext_resource type="Texture2D" uid="uid://c1l1tdy6l6vdm" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 8.png" id="9_q6qsw"]
|
||||
[ext_resource type="Texture2D" uid="uid://crbmq2x1tjrsu" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 8.png" id="9_ts4b0"]
|
||||
[ext_resource type="Texture2D" uid="uid://clorbrqt3gvp8" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 9.png" id="10_3yqdl"]
|
||||
[ext_resource type="Texture2D" uid="uid://i3ke4j4fjjka" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 9.png" id="10_b2dev"]
|
||||
[ext_resource type="Texture2D" uid="uid://6gfxx8k744g5" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 9.png" id="10_knvgb"]
|
||||
[ext_resource type="Texture2D" uid="uid://s0yvtpglc2hg" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 10.png" id="11_b54fn"]
|
||||
[ext_resource type="Texture2D" uid="uid://brurev01yv4p3" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 10.png" id="11_es45i"]
|
||||
[ext_resource type="Texture2D" uid="uid://c4apar3n8at2n" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 10.png" id="11_gypyv"]
|
||||
[ext_resource type="Texture2D" uid="uid://b31y51u6mnf3e" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 11.png" id="12_04l6d"]
|
||||
[ext_resource type="Texture2D" uid="uid://dj7yq14gorg1l" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 11.png" id="12_i4a3q"]
|
||||
[ext_resource type="Texture2D" uid="uid://biqofpcihpa3t" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 11.png" id="12_uaphg"]
|
||||
[ext_resource type="Texture2D" uid="uid://bie5osp04axib" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 12.png" id="13_7yxgu"]
|
||||
[ext_resource type="Texture2D" uid="uid://bnb1krio2slu4" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 12.png" id="13_aepvi"]
|
||||
[ext_resource type="Texture2D" uid="uid://bww3yqsxqck7c" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 12.png" id="13_te83s"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2yc5er24iytk" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Back Walk/Layer 13.png" id="14_dgnqu"]
|
||||
[ext_resource type="Texture2D" uid="uid://bbm3qmgb0p1pg" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 13.png" id="14_fooux"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgvhlnc8ce60y" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Front Walk/Layer 13.png" id="14_y3ws7"]
|
||||
[ext_resource type="Texture2D" uid="uid://y112gtngqx0j" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 14.png" id="15_xa1wk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bvfc6gpj8odqf" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 15.png" id="16_q5jrq"]
|
||||
[ext_resource type="Texture2D" uid="uid://cn1r1lb7ky4kv" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 16.png" id="17_3y25k"]
|
||||
[ext_resource type="Texture2D" uid="uid://c3xyp83s1w88q" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 17.png" id="18_sbi3c"]
|
||||
[ext_resource type="Texture2D" uid="uid://bsnk7prklf3q8" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 18.png" id="19_18cln"]
|
||||
[ext_resource type="Texture2D" uid="uid://cj8b4v0w2h7fq" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 19.png" id="20_nmios"]
|
||||
[ext_resource type="Texture2D" uid="uid://dk1akytod1esp" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 20.png" id="21_b6wn8"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhs4quxf7t3p4" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 21.png" id="22_qdaag"]
|
||||
[ext_resource type="Texture2D" uid="uid://qk46qgj4g78a" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 22.png" id="23_fw48t"]
|
||||
[ext_resource type="Texture2D" uid="uid://de2ka186m8i4p" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 23.png" id="24_aebjr"]
|
||||
[ext_resource type="Texture2D" uid="uid://dc0l6u6kust1j" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 24.png" id="25_l2vne"]
|
||||
[ext_resource type="Texture2D" uid="uid://ci34gyjl3siwv" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 25.png" id="26_cuael"]
|
||||
[ext_resource type="Texture2D" uid="uid://7v6bm6nft3er" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 26.png" id="27_oape0"]
|
||||
[ext_resource type="Texture2D" uid="uid://d30jjnesp8mry" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 27.png" id="28_se0js"]
|
||||
[ext_resource type="Texture2D" uid="uid://cu2ykjale8glu" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 28.png" id="29_bemyc"]
|
||||
[ext_resource type="Texture2D" uid="uid://cyviv81f6kmni" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 29.png" id="30_nb0aq"]
|
||||
[ext_resource type="Texture2D" uid="uid://c7ublovdcse8h" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 30.png" id="31_xmm3m"]
|
||||
[ext_resource type="Texture2D" uid="uid://bqdcl3rsq60gc" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 31.png" id="32_2qfq6"]
|
||||
[ext_resource type="Texture2D" uid="uid://r12ccdncohbh" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 32.png" id="33_j0tbq"]
|
||||
[ext_resource type="Texture2D" uid="uid://bu4ay5jpkxemn" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 33.png" id="34_sqnj7"]
|
||||
[ext_resource type="Texture2D" uid="uid://cdu7y0c6r5glw" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 34.png" id="35_e1hgb"]
|
||||
[ext_resource type="Texture2D" uid="uid://c47ffy3laggxe" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 35.png" id="36_knvgb"]
|
||||
[ext_resource type="Texture2D" uid="uid://dx6nev7615wx7" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 36.png" id="37_b54fn"]
|
||||
[ext_resource type="Texture2D" uid="uid://cnvmh14t7u2m4" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 37.png" id="38_04l6d"]
|
||||
[ext_resource type="Texture2D" uid="uid://n735l5ir8moa" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 38.png" id="39_te83s"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhrcpybyyd73" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 39.png" id="40_dgnqu"]
|
||||
[ext_resource type="Texture2D" uid="uid://dhxdls4r4pwks" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 40.png" id="41_cw50h"]
|
||||
[ext_resource type="Texture2D" uid="uid://ducyevgi2eg2" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 41.png" id="42_ir51x"]
|
||||
[ext_resource type="Texture2D" uid="uid://8is780sn4k30" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 42.png" id="43_kjy4t"]
|
||||
[ext_resource type="Texture2D" uid="uid://c4w1j1at4wal8" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 43.png" id="44_bambb"]
|
||||
[ext_resource type="Texture2D" uid="uid://cgego5culghoy" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 44.png" id="45_cvoir"]
|
||||
[ext_resource type="Texture2D" uid="uid://cy3t01ts8nc74" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 45.png" id="46_ca6ne"]
|
||||
[ext_resource type="Texture2D" uid="uid://drquo2xthpo5i" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 46.png" id="47_o4kua"]
|
||||
[ext_resource type="Texture2D" uid="uid://blrq8xf7ittok" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 47.png" id="48_nnvwx"]
|
||||
[ext_resource type="Texture2D" uid="uid://dupoew3wma1pt" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 48.png" id="49_2y3d7"]
|
||||
[ext_resource type="Texture2D" uid="uid://bn6rgpw46y45c" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 49.png" id="50_yp0eo"]
|
||||
[ext_resource type="Texture2D" uid="uid://be18lg4ccxaic" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Idle/Layer 50.png" id="51_w11se"]
|
||||
[ext_resource type="Texture2D" uid="uid://cc5s1e6ln8ffa" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 1.png" id="78_cw50h"]
|
||||
[ext_resource type="Texture2D" uid="uid://dh228wqw6on18" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 2.png" id="79_ir51x"]
|
||||
[ext_resource type="Texture2D" uid="uid://b0qdl82u70r81" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 3.png" id="80_kjy4t"]
|
||||
[ext_resource type="Texture2D" uid="uid://c33qutu514cv8" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 4.png" id="81_bambb"]
|
||||
[ext_resource type="Texture2D" uid="uid://bv6cqnyop1wac" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 5.png" id="82_cvoir"]
|
||||
[ext_resource type="Texture2D" uid="uid://xwfxcs0l3mxy" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 6.png" id="83_ca6ne"]
|
||||
[ext_resource type="Texture2D" uid="uid://haxw6ckx5w0u" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 7.png" id="84_o4kua"]
|
||||
[ext_resource type="Texture2D" uid="uid://dw4fmo5540e1l" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 8.png" id="85_nnvwx"]
|
||||
[ext_resource type="Texture2D" uid="uid://q7bplj6eonfd" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 9.png" id="86_2y3d7"]
|
||||
[ext_resource type="Texture2D" uid="uid://dprvctv58kqhe" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 10.png" id="87_yp0eo"]
|
||||
[ext_resource type="Texture2D" uid="uid://rhk7j2myl8t6" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 11.png" id="88_w11se"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlmg1hk3inaqv" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 12.png" id="89_yh0x2"]
|
||||
[ext_resource type="Texture2D" uid="uid://38tn4m6rufva" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Side Walk/Layer 13.png" id="90_xq141"]
|
||||
[ext_resource type="Texture2D" uid="uid://x2wru1bc61vt" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0000_Layer-13.png" id="91_cw50h"]
|
||||
[ext_resource type="Texture2D" uid="uid://p05vbx2f88c8" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0001_Layer-12.png" id="92_ir51x"]
|
||||
[ext_resource type="Texture2D" uid="uid://b1v62b1qqwqgb" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0002_Layer-11.png" id="93_kjy4t"]
|
||||
[ext_resource type="Texture2D" uid="uid://1xe0l0ichrdd" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0003_Layer-10.png" id="94_bambb"]
|
||||
[ext_resource type="Texture2D" uid="uid://di262rbukfdm2" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0004_Layer-9.png" id="95_cvoir"]
|
||||
[ext_resource type="Texture2D" uid="uid://b01abycaypwwi" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0005_Layer-8.png" id="96_ca6ne"]
|
||||
[ext_resource type="Texture2D" uid="uid://bwj7ji231s2mf" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0006_Layer-7.png" id="97_o4kua"]
|
||||
[ext_resource type="Texture2D" uid="uid://dott3burrua1c" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0007_Layer-6.png" id="98_nnvwx"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxesjjl0pjbup" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0008_Layer-5.png" id="99_2y3d7"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbvs5ytf1q847" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0009_Layer-4.png" id="100_yp0eo"]
|
||||
[ext_resource type="Texture2D" uid="uid://ctm7suwo1nrlp" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0010_Layer-3.png" id="101_w11se"]
|
||||
[ext_resource type="Texture2D" uid="uid://di5v73kg5yprw" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0011_Layer-2.png" id="102_yh0x2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dd4w48mdxhrkn" path="res://src/enemy/enemy_types/6. chariot/animations/Chariot Emerge/Frame_0012_Layer-1.png" id="103_xq141"]
|
||||
|
||||
[sub_resource type="ViewportTexture" id="ViewportTexture_vr4bf"]
|
||||
viewport_path = NodePath("Sprite3D/SubViewport")
|
||||
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||
|
||||
[sub_resource type="SpriteFrames" id="SpriteFrames_yv1f1"]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("91_cw50h")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("92_ir51x")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("93_kjy4t")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("94_bambb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("95_cvoir")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("96_ca6ne")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("97_o4kua")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("98_nnvwx")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("99_2y3d7")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("100_yp0eo")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("101_w11se")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("102_yh0x2")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("103_xq141")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"activate",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("2_se0js")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("3_bemyc")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("4_nb0aq")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("5_xmm3m")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("6_2qfq6")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("7_j0tbq")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("8_sqnj7")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("9_e1hgb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("10_knvgb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("11_b54fn")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("12_04l6d")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("13_te83s")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("14_dgnqu")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"idle_back_walk",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("2_ovlmj")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("3_la53g")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("4_1k2j0")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("5_aex2m")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("6_rk6j7")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("7_s7tcu")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("8_1dy6s")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("9_ts4b0")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("10_b2dev")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("11_gypyv")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("12_i4a3q")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("13_7yxgu")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("14_fooux")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("15_xa1wk")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("16_q5jrq")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("17_3y25k")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("18_sbi3c")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("19_18cln")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("20_nmios")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("21_b6wn8")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("22_qdaag")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("23_fw48t")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("24_aebjr")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("25_l2vne")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("26_cuael")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("27_oape0")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("28_se0js")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("29_bemyc")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("30_nb0aq")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("31_xmm3m")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("32_2qfq6")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("33_j0tbq")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("34_sqnj7")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("35_e1hgb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("36_knvgb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("37_b54fn")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("38_04l6d")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("39_te83s")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("40_dgnqu")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("41_cw50h")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("42_ir51x")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("43_kjy4t")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("44_bambb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("45_cvoir")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("46_ca6ne")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("47_o4kua")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("48_nnvwx")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("49_2y3d7")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("50_yp0eo")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("51_w11se")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"idle_front",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("2_dg3gx")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
@@ -64,6 +396,50 @@ animations = [{
|
||||
"loop": true,
|
||||
"name": &"idle_front_walk",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("78_cw50h")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("79_ir51x")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("80_kjy4t")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("81_bambb")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("82_cvoir")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("83_ca6ne")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("84_o4kua")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("85_nnvwx")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("86_2y3d7")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("87_yp0eo")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("88_w11se")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("89_yh0x2")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("90_xq141")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"idle_left_walk",
|
||||
"speed": 5.0
|
||||
}]
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_brkxl"]
|
||||
@@ -241,21 +617,30 @@ script = ExtResource("1_bocyu")
|
||||
[node name="Sprite3D" type="Sprite3D" parent="."]
|
||||
transform = Transform3D(1.5, 0, 0, 0, 1.5, 0, 0, 0, 1.5, 0, 0, 0)
|
||||
billboard = 2
|
||||
alpha_cut = 1
|
||||
texture_filter = 0
|
||||
render_priority = 100
|
||||
texture = SubResource("ViewportTexture_vr4bf")
|
||||
|
||||
[node name="SubViewport" type="SubViewport" parent="Sprite3D"]
|
||||
[node name="SubViewportContainer" type="SubViewportContainer" parent="Sprite3D"]
|
||||
anchors_preset = -1
|
||||
anchor_right = 0.348
|
||||
anchor_bottom = 0.356
|
||||
offset_right = 0.559967
|
||||
offset_bottom = 0.23999
|
||||
|
||||
[node name="SubViewport" type="SubViewport" parent="Sprite3D/SubViewportContainer"]
|
||||
disable_3d = true
|
||||
transparent_bg = true
|
||||
handle_input_locally = false
|
||||
size = Vector2i(400, 400)
|
||||
render_target_update_mode = 4
|
||||
|
||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewport"]
|
||||
[node name="AnimatedSprite" type="AnimatedSprite2D" parent="Sprite3D/SubViewportContainer/SubViewport"]
|
||||
unique_name_in_owner = true
|
||||
position = Vector2(193, 196)
|
||||
sprite_frames = SubResource("SpriteFrames_yv1f1")
|
||||
animation = &"idle_front_walk"
|
||||
animation = &"activate"
|
||||
|
||||
[node name="Hitbox" type="Area3D" parent="."]
|
||||
unique_name_in_owner = true
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c8qgofd8tclxo"
|
||||
uid="uid://b4yok7b464xhs"
|
||||
path="res://.godot/imported/Layer 1.png-2180a60506ff834f553c2ffe25c26c95.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://svo326y7w1d2"
|
||||
uid="uid://c4apar3n8at2n"
|
||||
path="res://.godot/imported/Layer 10.png-e8b4731c3c5271ada043c63054ba28b9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dym74b7nschp4"
|
||||
uid="uid://dj7yq14gorg1l"
|
||||
path="res://.godot/imported/Layer 11.png-61c21aae1f428a81450c7689f1d2a5b0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://evhowxojpdpn"
|
||||
uid="uid://bie5osp04axib"
|
||||
path="res://.godot/imported/Layer 12.png-5013d04c7c5df4861d0e2acb332b8ee6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://blqjrbnktsa7h"
|
||||
uid="uid://bbm3qmgb0p1pg"
|
||||
path="res://.godot/imported/Layer 13.png-1e2ed9cd73ac19a2122a72fdb836a8be.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cn20rs8nqnmbe"
|
||||
uid="uid://y112gtngqx0j"
|
||||
path="res://.godot/imported/Layer 14.png-586085a8a71886b981253f5f9c675039.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://7d2wqt7un4br"
|
||||
uid="uid://bvfc6gpj8odqf"
|
||||
path="res://.godot/imported/Layer 15.png-a4fa9a3051f9554ea58bf64ac170e8be.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://rmfha06hsjat"
|
||||
uid="uid://cn1r1lb7ky4kv"
|
||||
path="res://.godot/imported/Layer 16.png-6978167fb0aa93887deef2f1d76ff6d5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c1rgvomeicqcp"
|
||||
uid="uid://c3xyp83s1w88q"
|
||||
path="res://.godot/imported/Layer 17.png-d050a37d926a1c27bbbb944113662802.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cho1axk500nrc"
|
||||
uid="uid://bsnk7prklf3q8"
|
||||
path="res://.godot/imported/Layer 18.png-2bbb5085db3b984fde53db71a86ca7e6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b6nwi5cs2mfm1"
|
||||
uid="uid://cj8b4v0w2h7fq"
|
||||
path="res://.godot/imported/Layer 19.png-627f0c1b9a25c48c2c3c0594b0830418.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cyd5t7al3ksgp"
|
||||
uid="uid://c080h01ba7jb8"
|
||||
path="res://.godot/imported/Layer 2.png-39ab8700a15777dc445936dbdc66cb1d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://du1d2nkfxpjrv"
|
||||
uid="uid://dk1akytod1esp"
|
||||
path="res://.godot/imported/Layer 20.png-16e1510dc818a7b7ed223b2baec4435f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fq03bk0cuj2e"
|
||||
uid="uid://bhs4quxf7t3p4"
|
||||
path="res://.godot/imported/Layer 21.png-862f7f8b81caeb7848b8f9b016808f1a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dyu2rx37xbe1p"
|
||||
uid="uid://qk46qgj4g78a"
|
||||
path="res://.godot/imported/Layer 22.png-9b5339dd44b7942192ee2265f9273eb4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://u24tg5upymt2"
|
||||
uid="uid://de2ka186m8i4p"
|
||||
path="res://.godot/imported/Layer 23.png-7dbb43ab9bfe41d01c0a0f5003c75d89.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bwfhoubslqw22"
|
||||
uid="uid://dc0l6u6kust1j"
|
||||
path="res://.godot/imported/Layer 24.png-047ec8675f9266e9f5ae947531baeaca.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dln2i4d7pj3c8"
|
||||
uid="uid://ci34gyjl3siwv"
|
||||
path="res://.godot/imported/Layer 25.png-17461d7ae4e3a83921ada5a18a232561.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bucu1yflcii1o"
|
||||
uid="uid://7v6bm6nft3er"
|
||||
path="res://.godot/imported/Layer 26.png-08ad86ca6ac6ed0fcd88ed07ee9369cf.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://yx1bi2nwq8mp"
|
||||
uid="uid://d30jjnesp8mry"
|
||||
path="res://.godot/imported/Layer 27.png-97c586fb0aae6d177c0ff5fb2d422b85.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://q5dlunod2ghq"
|
||||
uid="uid://cu2ykjale8glu"
|
||||
path="res://.godot/imported/Layer 28.png-02ce9c4651f224e2460e46363a977207.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c7ucbhbl5cjr4"
|
||||
uid="uid://cyviv81f6kmni"
|
||||
path="res://.godot/imported/Layer 29.png-364fa67283b2e2feb7cefaf978d47f71.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ciith160ssk4l"
|
||||
uid="uid://rg1kxgf6j5j3"
|
||||
path="res://.godot/imported/Layer 3.png-93393f35c756c794f95fb5eb89d052ce.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dsl2cb3508uaw"
|
||||
uid="uid://c7ublovdcse8h"
|
||||
path="res://.godot/imported/Layer 30.png-662b97b5f7c45c3d48183d7fadc5a6b7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://waflsgchm02f"
|
||||
uid="uid://bqdcl3rsq60gc"
|
||||
path="res://.godot/imported/Layer 31.png-d649650985bca140ac1d093ea24c682b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ddx1xka5myrh4"
|
||||
uid="uid://r12ccdncohbh"
|
||||
path="res://.godot/imported/Layer 32.png-2dccf50feb5cd3c91e501674f91168a7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://l2tgcfkl248a"
|
||||
uid="uid://bu4ay5jpkxemn"
|
||||
path="res://.godot/imported/Layer 33.png-b9356aa3b40ec8451ad19d9ea8a20ede.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b0uce74lx0npr"
|
||||
uid="uid://cdu7y0c6r5glw"
|
||||
path="res://.godot/imported/Layer 34.png-54277c14bd36b1e480c4c4c293ecaa11.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://o81f78708o2h"
|
||||
uid="uid://c47ffy3laggxe"
|
||||
path="res://.godot/imported/Layer 35.png-a166c31412b9314a82215769714b1324.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bwq2oh44gv6mt"
|
||||
uid="uid://dx6nev7615wx7"
|
||||
path="res://.godot/imported/Layer 36.png-a5e8b787e60424a0521ce63e3586c2c9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://uoltcrqx6a8e"
|
||||
uid="uid://cnvmh14t7u2m4"
|
||||
path="res://.godot/imported/Layer 37.png-d2bddc7f0e62644813f2c1ec4b6c80a8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://byawio1mtmnjv"
|
||||
uid="uid://n735l5ir8moa"
|
||||
path="res://.godot/imported/Layer 38.png-7c10838ff2e6886083b6cdd79fcfb848.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dbub180o4g151"
|
||||
uid="uid://bhrcpybyyd73"
|
||||
path="res://.godot/imported/Layer 39.png-853f0a68bf808c857b8547a7f1a9d68f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bh2socwd03wqx"
|
||||
uid="uid://57fper051jl7"
|
||||
path="res://.godot/imported/Layer 4.png-4135354273a6dd8aa7134f865d5fcff9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dt50iyp6ca8nm"
|
||||
uid="uid://dhxdls4r4pwks"
|
||||
path="res://.godot/imported/Layer 40.png-d0040c45de0b977d71bd9f3dfa67b827.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://6ubcudx1iqle"
|
||||
uid="uid://ducyevgi2eg2"
|
||||
path="res://.godot/imported/Layer 41.png-4f3bc77344a52a7f24dc80a6b76e6eee.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c7yxv3u5g8h3t"
|
||||
uid="uid://8is780sn4k30"
|
||||
path="res://.godot/imported/Layer 42.png-a32f5086ce7c6b133eb99544b954d3ab.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bjpjnecnhmo45"
|
||||
uid="uid://c4w1j1at4wal8"
|
||||
path="res://.godot/imported/Layer 43.png-dd139d9a55b36c4f9086a3c6c2e7a3be.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dwwbu8ad2swbu"
|
||||
uid="uid://cgego5culghoy"
|
||||
path="res://.godot/imported/Layer 44.png-5acd2ef245619b44234cd10d8159027f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b7reu3bqu08qk"
|
||||
uid="uid://cy3t01ts8nc74"
|
||||
path="res://.godot/imported/Layer 45.png-aaee16516ad546b5ab8ca2b0dd2bbd2d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://yfu81sdeil0j"
|
||||
uid="uid://drquo2xthpo5i"
|
||||
path="res://.godot/imported/Layer 46.png-88bcf38afac26bf9558cfde46cc96fc4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://brhvlehrlbtfx"
|
||||
uid="uid://blrq8xf7ittok"
|
||||
path="res://.godot/imported/Layer 47.png-8dd90aa865bf46fc29caeb15e322c1ab.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bkfub6iivik0i"
|
||||
uid="uid://dupoew3wma1pt"
|
||||
path="res://.godot/imported/Layer 48.png-fd48bbb99845d153b0c5069fd6fa2dea.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bdhjltnx1mvup"
|
||||
uid="uid://bn6rgpw46y45c"
|
||||
path="res://.godot/imported/Layer 49.png-53ae94d6ac93ae768205b2e90bf592a4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bgkultrl3wgky"
|
||||
uid="uid://dpisi6jhia2ti"
|
||||
path="res://.godot/imported/Layer 5.png-5525e7dc09319950a6679e2a9881dd1c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bq7legm1pqm7t"
|
||||
uid="uid://be18lg4ccxaic"
|
||||
path="res://.godot/imported/Layer 50.png-efbd70530722ce7e8994a375783086de.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dhx5lx7btkbcn"
|
||||
uid="uid://di7h8ntc5r1rh"
|
||||
path="res://.godot/imported/Layer 6.png-ee604e89fd07e780e03fdf195bf95a17.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ba2pwligjx7ru"
|
||||
uid="uid://douhlufe3vv6v"
|
||||
path="res://.godot/imported/Layer 7.png-a3be2ea31a46be5830716b3180c116bb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d1s3gofevlhlh"
|
||||
uid="uid://crbmq2x1tjrsu"
|
||||
path="res://.godot/imported/Layer 8.png-42aa15a3edd4a839b0447873ee1399e9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bumlkb8u65ssc"
|
||||
uid="uid://i3ke4j4fjjka"
|
||||
path="res://.godot/imported/Layer 9.png-12399b1348f880dcb55aa1288df8b54c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
[ext_resource type="Script" uid="uid://jjulhqd5g3be" path="res://src/enemy/enemy_types/13. gold sproingy/GoldSproingy.cs" id="1_ekh38"]
|
||||
[ext_resource type="Script" uid="uid://dnkmr0eq1sij0" path="res://src/enemy/EnemyStatResource.cs" id="2_cqc5j"]
|
||||
[ext_resource type="PackedScene" uid="uid://byd7cwxq1be6f" path="res://src/enemy/enemy_types/8. chinte/ChinteModelView.tscn" id="3_ncr2e"]
|
||||
[ext_resource type="PackedScene" uid="uid://byd7cwxq1be6f" path="res://src/enemy/enemy_types/7. chinte/ChinteModelView.tscn" id="3_ncr2e"]
|
||||
|
||||
[sub_resource type="Resource" id="Resource_o3b7p"]
|
||||
script = ExtResource("2_cqc5j")
|
||||
@@ -1,166 +1,166 @@
|
||||
[gd_scene load_steps=230 format=3 uid="uid://byd7cwxq1be6f"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://chymnqdw7hibn" path="res://src/enemy/EnemyModelView.cs" id="1_v8om3"]
|
||||
[ext_resource type="Resource" uid="uid://2j714tuwhbdu" path="res://src/enemy/enemy_types/8. chinte/ChinteLoreInfo.tres" id="2_syjm0"]
|
||||
[ext_resource type="Texture2D" uid="uid://8qj6se762l6e" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" id="3_fn0g1"]
|
||||
[ext_resource type="Texture2D" uid="uid://bicx2m6q0vqdw" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png" id="3_kc1ey"]
|
||||
[ext_resource type="Texture2D" uid="uid://u2xjqc5ksrms" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0001.png" id="3_wc61w"]
|
||||
[ext_resource type="Texture2D" uid="uid://cejvyh381ei1u" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png" id="4_46p8q"]
|
||||
[ext_resource type="Texture2D" uid="uid://bvry4nr83oonj" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0002.png" id="4_50r4w"]
|
||||
[ext_resource type="Texture2D" uid="uid://cstm3bc1iyiou" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" id="4_a1a5a"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7lk817ih82o7" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png" id="5_7yoax"]
|
||||
[ext_resource type="Texture2D" uid="uid://dip1urkpqfsgj" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" id="5_h1q27"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgfqim1idm4kp" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0003.png" id="5_hcjtk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bmd5cgqk2vg5o" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" id="6_5nhn3"]
|
||||
[ext_resource type="Texture2D" uid="uid://d0jap5uvy72rj" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0004.png" id="6_8vac7"]
|
||||
[ext_resource type="Texture2D" uid="uid://bseiwgxwdj8ih" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png" id="6_by6kh"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxxeds0c84a8j" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" id="7_bgt1u"]
|
||||
[ext_resource type="Texture2D" uid="uid://b15t1kc6bu42u" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png" id="7_ci7tq"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxwualwcihxf6" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0005.png" id="7_u7uex"]
|
||||
[ext_resource type="Texture2D" uid="uid://cr2opgprfenav" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png" id="8_an5j3"]
|
||||
[ext_resource type="Texture2D" uid="uid://bfsocf0k8yioa" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0006.png" id="8_crifn"]
|
||||
[ext_resource type="Texture2D" uid="uid://c14icwfjwg50p" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" id="8_lo6gm"]
|
||||
[ext_resource type="Texture2D" uid="uid://dbxdjn6o36k3c" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png" id="9_ah8eo"]
|
||||
[ext_resource type="Texture2D" uid="uid://c2nutnin4pm3" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0007.png" id="9_f2uxp"]
|
||||
[ext_resource type="Texture2D" uid="uid://dxkjrr3wneg7p" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" id="9_yrerp"]
|
||||
[ext_resource type="Texture2D" uid="uid://ceyvr048ccsff" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png" id="10_2o34q"]
|
||||
[ext_resource type="Texture2D" uid="uid://b3ytuouobuup" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0008.png" id="10_bjvhl"]
|
||||
[ext_resource type="Texture2D" uid="uid://dryfs7kwpt05m" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" id="10_e08pp"]
|
||||
[ext_resource type="Texture2D" uid="uid://beff1mhve0psp" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0009.png" id="11_04akx"]
|
||||
[ext_resource type="Texture2D" uid="uid://cyir2u6s0a803" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png" id="11_acq66"]
|
||||
[ext_resource type="Texture2D" uid="uid://cdsong01o1xof" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" id="11_rkc3l"]
|
||||
[ext_resource type="Texture2D" uid="uid://cjowfifu2ds1k" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0010.png" id="12_3vtes"]
|
||||
[ext_resource type="Texture2D" uid="uid://qi6ykbimr36j" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png" id="12_r73tb"]
|
||||
[ext_resource type="Texture2D" uid="uid://b756p2shusa0y" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" id="12_w023d"]
|
||||
[ext_resource type="Texture2D" uid="uid://c0ixmdqj6728s" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png" id="13_c0pct"]
|
||||
[ext_resource type="Texture2D" uid="uid://ccf5cdmbnv8xr" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" id="13_gsd4b"]
|
||||
[ext_resource type="Texture2D" uid="uid://dk3yw0kma6jrw" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0011.png" id="13_okyxa"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlga6cbuomfhi" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png" id="14_fxh0g"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhxt86sqswrb8" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0012.png" id="14_vb0q8"]
|
||||
[ext_resource type="Texture2D" uid="uid://bx2tm5grtctlp" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" id="14_w3lnt"]
|
||||
[ext_resource type="Texture2D" uid="uid://bqrd222snxwnl" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" id="15_hflxm"]
|
||||
[ext_resource type="Texture2D" uid="uid://b26x8xh3o81vs" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png" id="15_rernf"]
|
||||
[ext_resource type="Texture2D" uid="uid://cheahf8qonbgf" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0013.png" id="15_v8ycu"]
|
||||
[ext_resource type="Texture2D" uid="uid://0knojjfwjtgv" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0014.png" id="16_3awat"]
|
||||
[ext_resource type="Texture2D" uid="uid://dw3qwomarv3p5" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png" id="16_pvgkg"]
|
||||
[ext_resource type="Texture2D" uid="uid://do8v0wcpvcm5y" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" id="16_tkoig"]
|
||||
[ext_resource type="Texture2D" uid="uid://454bwm8i6to3" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png" id="17_20o86"]
|
||||
[ext_resource type="Texture2D" uid="uid://2jc2fo5rn4qt" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" id="17_fe8py"]
|
||||
[ext_resource type="Texture2D" uid="uid://gawp5d82ei1v" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0015.png" id="17_odt21"]
|
||||
[ext_resource type="Texture2D" uid="uid://btau6dotyy0ia" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0016.png" id="18_fpbkg"]
|
||||
[ext_resource type="Texture2D" uid="uid://iaisooai5b00" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" id="18_r30cm"]
|
||||
[ext_resource type="Texture2D" uid="uid://bt0pwh1vkb2s7" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png" id="18_sfrde"]
|
||||
[ext_resource type="Texture2D" uid="uid://bo1n0em5ko127" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png" id="19_71etv"]
|
||||
[ext_resource type="Texture2D" uid="uid://031jvbacuqil" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0017.png" id="19_76pi0"]
|
||||
[ext_resource type="Texture2D" uid="uid://b2rg4bvpyecdx" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" id="19_pu4mr"]
|
||||
[ext_resource type="Texture2D" uid="uid://kb65mk270fi1" path="res://src/enemy/enemy_types/8. chinte/animations/HOP BACK/HOP-BACK_page_0018.png" id="20_o3gx4"]
|
||||
[ext_resource type="Texture2D" uid="uid://df6kiuum5x8mr" path="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" id="20_whlmf"]
|
||||
[ext_resource type="Texture2D" uid="uid://eh6puu82rihh" path="res://src/enemy/enemy_types/8. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png" id="20_yjq2w"]
|
||||
[ext_resource type="Texture2D" uid="uid://ca116jnrpdthm" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png" id="39_bqkpb"]
|
||||
[ext_resource type="Texture2D" uid="uid://dt8pg4upblis8" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" id="39_cd8wr"]
|
||||
[ext_resource type="Texture2D" uid="uid://72xvqeu4hl6q" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" id="40_wn63w"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgd2y8bohe3qg" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png" id="40_xt6k1"]
|
||||
[ext_resource type="Texture2D" uid="uid://do6eu4jk5n3od" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png" id="41_527rs"]
|
||||
[ext_resource type="Texture2D" uid="uid://q7k840guefqk" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" id="41_sjxqo"]
|
||||
[ext_resource type="Texture2D" uid="uid://bexb8p0l0cve3" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" id="42_oxbfk"]
|
||||
[ext_resource type="Texture2D" uid="uid://c7h56b5iwvf2c" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png" id="42_wnf4a"]
|
||||
[ext_resource type="Texture2D" uid="uid://cns2ntxssdwi8" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png" id="43_khm33"]
|
||||
[ext_resource type="Texture2D" uid="uid://dgpwachsks3xp" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" id="43_tk877"]
|
||||
[ext_resource type="Texture2D" uid="uid://b11jugjoeemwi" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png" id="44_q25x3"]
|
||||
[ext_resource type="Texture2D" uid="uid://bcwjdqnly70nt" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" id="44_taq5y"]
|
||||
[ext_resource type="Texture2D" uid="uid://d37b67irukipu" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png" id="45_3iu4q"]
|
||||
[ext_resource type="Texture2D" uid="uid://c3oh1wfc5jqai" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" id="45_abf28"]
|
||||
[ext_resource type="Texture2D" uid="uid://do5dhoe355yyh" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png" id="46_f7m0w"]
|
||||
[ext_resource type="Texture2D" uid="uid://wsvvrx6ek2e3" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" id="46_yv3t6"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbijkmo1hob35" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" id="47_8sbse"]
|
||||
[ext_resource type="Texture2D" uid="uid://b8kccsf3n2biq" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png" id="47_ajo64"]
|
||||
[ext_resource type="Texture2D" uid="uid://dl3vfxi5rndxd" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png" id="48_ptk6f"]
|
||||
[ext_resource type="Texture2D" uid="uid://eso4qhcusm4" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" id="48_qffrk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bg45bxbu16vol" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png" id="49_2530t"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvaqbv6n525lb" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" id="49_efex0"]
|
||||
[ext_resource type="Texture2D" uid="uid://bw8p1oe3353uy" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" id="50_1cgr5"]
|
||||
[ext_resource type="Texture2D" uid="uid://b4gd3j0a0tb8a" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png" id="50_shci7"]
|
||||
[ext_resource type="Texture2D" uid="uid://5pj6asie3de1" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" id="51_slsns"]
|
||||
[ext_resource type="Texture2D" uid="uid://b40l6fsdqsad1" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png" id="51_x6i3u"]
|
||||
[ext_resource type="Texture2D" uid="uid://1r5sm6vvn2m6" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" id="52_g4ewi"]
|
||||
[ext_resource type="Texture2D" uid="uid://duwfyn662tspf" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png" id="52_syjm0"]
|
||||
[ext_resource type="Texture2D" uid="uid://8xj0ko2g2deg" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png" id="53_u06t8"]
|
||||
[ext_resource type="Texture2D" uid="uid://m4clglkawftb" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" id="53_udart"]
|
||||
[ext_resource type="Texture2D" uid="uid://do1ewuo4yifrq" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" id="54_kilb8"]
|
||||
[ext_resource type="Texture2D" uid="uid://dshrqgojp4yca" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png" id="54_onul4"]
|
||||
[ext_resource type="Texture2D" uid="uid://drmbggwyc3lhu" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png" id="55_5syoy"]
|
||||
[ext_resource type="Texture2D" uid="uid://ccx6r2ddh1i7a" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" id="55_sapra"]
|
||||
[ext_resource type="Texture2D" uid="uid://5lo4a55mwhmc" path="res://src/enemy/enemy_types/8. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png" id="56_1bw8i"]
|
||||
[ext_resource type="Texture2D" uid="uid://jlk8y8njpr2h" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" id="56_37mk7"]
|
||||
[ext_resource type="Texture2D" uid="uid://di6654s8itcp0" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" id="57_pyfpi"]
|
||||
[ext_resource type="Texture2D" uid="uid://cfedqk2w3nb24" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png" id="57_syjm0"]
|
||||
[ext_resource type="Texture2D" uid="uid://6rwqt33pm75r" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" id="58_bo0u7"]
|
||||
[ext_resource type="Resource" uid="uid://2j714tuwhbdu" path="res://src/enemy/enemy_types/7. chinte/ChinteLoreInfo.tres" id="2_syjm0"]
|
||||
[ext_resource type="Texture2D" uid="uid://8qj6se762l6e" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png" id="3_fn0g1"]
|
||||
[ext_resource type="Texture2D" uid="uid://bicx2m6q0vqdw" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0001.png" id="3_kc1ey"]
|
||||
[ext_resource type="Texture2D" uid="uid://u2xjqc5ksrms" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0001.png" id="3_wc61w"]
|
||||
[ext_resource type="Texture2D" uid="uid://cejvyh381ei1u" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0002.png" id="4_46p8q"]
|
||||
[ext_resource type="Texture2D" uid="uid://bvry4nr83oonj" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0002.png" id="4_50r4w"]
|
||||
[ext_resource type="Texture2D" uid="uid://cstm3bc1iyiou" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png" id="4_a1a5a"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7lk817ih82o7" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0003.png" id="5_7yoax"]
|
||||
[ext_resource type="Texture2D" uid="uid://dip1urkpqfsgj" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png" id="5_h1q27"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgfqim1idm4kp" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0003.png" id="5_hcjtk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bmd5cgqk2vg5o" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png" id="6_5nhn3"]
|
||||
[ext_resource type="Texture2D" uid="uid://d0jap5uvy72rj" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0004.png" id="6_8vac7"]
|
||||
[ext_resource type="Texture2D" uid="uid://bseiwgxwdj8ih" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0004.png" id="6_by6kh"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxxeds0c84a8j" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png" id="7_bgt1u"]
|
||||
[ext_resource type="Texture2D" uid="uid://b15t1kc6bu42u" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0005.png" id="7_ci7tq"]
|
||||
[ext_resource type="Texture2D" uid="uid://cxwualwcihxf6" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0005.png" id="7_u7uex"]
|
||||
[ext_resource type="Texture2D" uid="uid://cr2opgprfenav" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0006.png" id="8_an5j3"]
|
||||
[ext_resource type="Texture2D" uid="uid://bfsocf0k8yioa" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0006.png" id="8_crifn"]
|
||||
[ext_resource type="Texture2D" uid="uid://c14icwfjwg50p" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png" id="8_lo6gm"]
|
||||
[ext_resource type="Texture2D" uid="uid://dbxdjn6o36k3c" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0007.png" id="9_ah8eo"]
|
||||
[ext_resource type="Texture2D" uid="uid://c2nutnin4pm3" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0007.png" id="9_f2uxp"]
|
||||
[ext_resource type="Texture2D" uid="uid://dxkjrr3wneg7p" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0001.png" id="9_yrerp"]
|
||||
[ext_resource type="Texture2D" uid="uid://ceyvr048ccsff" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0008.png" id="10_2o34q"]
|
||||
[ext_resource type="Texture2D" uid="uid://b3ytuouobuup" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0008.png" id="10_bjvhl"]
|
||||
[ext_resource type="Texture2D" uid="uid://dryfs7kwpt05m" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0002.png" id="10_e08pp"]
|
||||
[ext_resource type="Texture2D" uid="uid://beff1mhve0psp" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0009.png" id="11_04akx"]
|
||||
[ext_resource type="Texture2D" uid="uid://cyir2u6s0a803" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0009.png" id="11_acq66"]
|
||||
[ext_resource type="Texture2D" uid="uid://cdsong01o1xof" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0003.png" id="11_rkc3l"]
|
||||
[ext_resource type="Texture2D" uid="uid://cjowfifu2ds1k" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0010.png" id="12_3vtes"]
|
||||
[ext_resource type="Texture2D" uid="uid://qi6ykbimr36j" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0010.png" id="12_r73tb"]
|
||||
[ext_resource type="Texture2D" uid="uid://b756p2shusa0y" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0004.png" id="12_w023d"]
|
||||
[ext_resource type="Texture2D" uid="uid://c0ixmdqj6728s" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0011.png" id="13_c0pct"]
|
||||
[ext_resource type="Texture2D" uid="uid://ccf5cdmbnv8xr" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0005.png" id="13_gsd4b"]
|
||||
[ext_resource type="Texture2D" uid="uid://dk3yw0kma6jrw" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0011.png" id="13_okyxa"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlga6cbuomfhi" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0012.png" id="14_fxh0g"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhxt86sqswrb8" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0012.png" id="14_vb0q8"]
|
||||
[ext_resource type="Texture2D" uid="uid://bx2tm5grtctlp" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-FRONT/ACTIVATE-FRONT_page_0006.png" id="14_w3lnt"]
|
||||
[ext_resource type="Texture2D" uid="uid://bqrd222snxwnl" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0001.png" id="15_hflxm"]
|
||||
[ext_resource type="Texture2D" uid="uid://b26x8xh3o81vs" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0013.png" id="15_rernf"]
|
||||
[ext_resource type="Texture2D" uid="uid://cheahf8qonbgf" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0013.png" id="15_v8ycu"]
|
||||
[ext_resource type="Texture2D" uid="uid://0knojjfwjtgv" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0014.png" id="16_3awat"]
|
||||
[ext_resource type="Texture2D" uid="uid://dw3qwomarv3p5" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0014.png" id="16_pvgkg"]
|
||||
[ext_resource type="Texture2D" uid="uid://do8v0wcpvcm5y" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0002.png" id="16_tkoig"]
|
||||
[ext_resource type="Texture2D" uid="uid://454bwm8i6to3" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0015.png" id="17_20o86"]
|
||||
[ext_resource type="Texture2D" uid="uid://2jc2fo5rn4qt" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0003.png" id="17_fe8py"]
|
||||
[ext_resource type="Texture2D" uid="uid://gawp5d82ei1v" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0015.png" id="17_odt21"]
|
||||
[ext_resource type="Texture2D" uid="uid://btau6dotyy0ia" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0016.png" id="18_fpbkg"]
|
||||
[ext_resource type="Texture2D" uid="uid://iaisooai5b00" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0004.png" id="18_r30cm"]
|
||||
[ext_resource type="Texture2D" uid="uid://bt0pwh1vkb2s7" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0016.png" id="18_sfrde"]
|
||||
[ext_resource type="Texture2D" uid="uid://bo1n0em5ko127" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0017.png" id="19_71etv"]
|
||||
[ext_resource type="Texture2D" uid="uid://031jvbacuqil" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0017.png" id="19_76pi0"]
|
||||
[ext_resource type="Texture2D" uid="uid://b2rg4bvpyecdx" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0005.png" id="19_pu4mr"]
|
||||
[ext_resource type="Texture2D" uid="uid://kb65mk270fi1" path="res://src/enemy/enemy_types/7. chinte/animations/HOP BACK/HOP-BACK_page_0018.png" id="20_o3gx4"]
|
||||
[ext_resource type="Texture2D" uid="uid://df6kiuum5x8mr" path="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-SIDE/ACTIVATE-SIDE_page_0006.png" id="20_whlmf"]
|
||||
[ext_resource type="Texture2D" uid="uid://eh6puu82rihh" path="res://src/enemy/enemy_types/7. chinte/animations/HOP FRONT/HOP-FRONT_page_0018.png" id="20_yjq2w"]
|
||||
[ext_resource type="Texture2D" uid="uid://ca116jnrpdthm" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0001.png" id="39_bqkpb"]
|
||||
[ext_resource type="Texture2D" uid="uid://dt8pg4upblis8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0001.png" id="39_cd8wr"]
|
||||
[ext_resource type="Texture2D" uid="uid://72xvqeu4hl6q" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0002.png" id="40_wn63w"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgd2y8bohe3qg" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0002.png" id="40_xt6k1"]
|
||||
[ext_resource type="Texture2D" uid="uid://do6eu4jk5n3od" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0003.png" id="41_527rs"]
|
||||
[ext_resource type="Texture2D" uid="uid://q7k840guefqk" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0003.png" id="41_sjxqo"]
|
||||
[ext_resource type="Texture2D" uid="uid://bexb8p0l0cve3" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0004.png" id="42_oxbfk"]
|
||||
[ext_resource type="Texture2D" uid="uid://c7h56b5iwvf2c" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0004.png" id="42_wnf4a"]
|
||||
[ext_resource type="Texture2D" uid="uid://cns2ntxssdwi8" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0005.png" id="43_khm33"]
|
||||
[ext_resource type="Texture2D" uid="uid://dgpwachsks3xp" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0005.png" id="43_tk877"]
|
||||
[ext_resource type="Texture2D" uid="uid://b11jugjoeemwi" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0006.png" id="44_q25x3"]
|
||||
[ext_resource type="Texture2D" uid="uid://bcwjdqnly70nt" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0006.png" id="44_taq5y"]
|
||||
[ext_resource type="Texture2D" uid="uid://d37b67irukipu" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0007.png" id="45_3iu4q"]
|
||||
[ext_resource type="Texture2D" uid="uid://c3oh1wfc5jqai" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0007.png" id="45_abf28"]
|
||||
[ext_resource type="Texture2D" uid="uid://do5dhoe355yyh" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0008.png" id="46_f7m0w"]
|
||||
[ext_resource type="Texture2D" uid="uid://wsvvrx6ek2e3" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0008.png" id="46_yv3t6"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbijkmo1hob35" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0009.png" id="47_8sbse"]
|
||||
[ext_resource type="Texture2D" uid="uid://b8kccsf3n2biq" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0009.png" id="47_ajo64"]
|
||||
[ext_resource type="Texture2D" uid="uid://dl3vfxi5rndxd" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0010.png" id="48_ptk6f"]
|
||||
[ext_resource type="Texture2D" uid="uid://eso4qhcusm4" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0010.png" id="48_qffrk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bg45bxbu16vol" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0011.png" id="49_2530t"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvaqbv6n525lb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0011.png" id="49_efex0"]
|
||||
[ext_resource type="Texture2D" uid="uid://bw8p1oe3353uy" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0012.png" id="50_1cgr5"]
|
||||
[ext_resource type="Texture2D" uid="uid://b4gd3j0a0tb8a" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0012.png" id="50_shci7"]
|
||||
[ext_resource type="Texture2D" uid="uid://5pj6asie3de1" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0013.png" id="51_slsns"]
|
||||
[ext_resource type="Texture2D" uid="uid://b40l6fsdqsad1" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0013.png" id="51_x6i3u"]
|
||||
[ext_resource type="Texture2D" uid="uid://1r5sm6vvn2m6" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0014.png" id="52_g4ewi"]
|
||||
[ext_resource type="Texture2D" uid="uid://duwfyn662tspf" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0014.png" id="52_syjm0"]
|
||||
[ext_resource type="Texture2D" uid="uid://8xj0ko2g2deg" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0015.png" id="53_u06t8"]
|
||||
[ext_resource type="Texture2D" uid="uid://m4clglkawftb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0015.png" id="53_udart"]
|
||||
[ext_resource type="Texture2D" uid="uid://do1ewuo4yifrq" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0016.png" id="54_kilb8"]
|
||||
[ext_resource type="Texture2D" uid="uid://dshrqgojp4yca" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0016.png" id="54_onul4"]
|
||||
[ext_resource type="Texture2D" uid="uid://drmbggwyc3lhu" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0017.png" id="55_5syoy"]
|
||||
[ext_resource type="Texture2D" uid="uid://ccx6r2ddh1i7a" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0017.png" id="55_sapra"]
|
||||
[ext_resource type="Texture2D" uid="uid://5lo4a55mwhmc" path="res://src/enemy/enemy_types/7. chinte/animations/HOP SIDE/HOP-SIDE_page_0018.png" id="56_1bw8i"]
|
||||
[ext_resource type="Texture2D" uid="uid://jlk8y8njpr2h" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0018.png" id="56_37mk7"]
|
||||
[ext_resource type="Texture2D" uid="uid://di6654s8itcp0" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0019.png" id="57_pyfpi"]
|
||||
[ext_resource type="Texture2D" uid="uid://cfedqk2w3nb24" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0001.png" id="57_syjm0"]
|
||||
[ext_resource type="Texture2D" uid="uid://6rwqt33pm75r" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0020.png" id="58_bo0u7"]
|
||||
[ext_resource type="Script" uid="uid://6edayafleq8y" path="res://src/hitbox/Hitbox.cs" id="58_o4frm"]
|
||||
[ext_resource type="Texture2D" uid="uid://v46ar0apf4lh" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png" id="58_u06t8"]
|
||||
[ext_resource type="Texture2D" uid="uid://dp3qnmhbdq6yb" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" id="59_mmg6v"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlxfcvj1a23cd" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png" id="59_onul4"]
|
||||
[ext_resource type="Texture2D" uid="uid://cx5f8gqwhii0s" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png" id="60_5syoy"]
|
||||
[ext_resource type="Texture2D" uid="uid://kij4jgwp18tt" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" id="60_ugn17"]
|
||||
[ext_resource type="Texture2D" uid="uid://c1q0orfx8blpl" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png" id="61_1bw8i"]
|
||||
[ext_resource type="Texture2D" uid="uid://1pp0crfb7hks" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" id="61_6avl1"]
|
||||
[ext_resource type="Texture2D" uid="uid://do6gxsfcuw0a7" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" id="62_4qj4l"]
|
||||
[ext_resource type="Texture2D" uid="uid://df871udy5qulr" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png" id="62_wjklo"]
|
||||
[ext_resource type="Texture2D" uid="uid://bo4u5kafsy054" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" id="63_65528"]
|
||||
[ext_resource type="Texture2D" uid="uid://br4ygmwb3nh4w" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png" id="63_sodds"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7q1ipnk2ephr" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png" id="64_dh2jp"]
|
||||
[ext_resource type="Texture2D" uid="uid://dtkqg5y1nhy6r" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" id="64_gu26t"]
|
||||
[ext_resource type="Texture2D" uid="uid://dadsnney0x42" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png" id="65_l2ena"]
|
||||
[ext_resource type="Texture2D" uid="uid://co1vs3bnsoa7" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" id="65_ynv1n"]
|
||||
[ext_resource type="Texture2D" uid="uid://y8a3iou4qln8" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" id="66_gixwu"]
|
||||
[ext_resource type="Texture2D" uid="uid://vmx05ymn63li" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png" id="66_s6jhv"]
|
||||
[ext_resource type="Texture2D" uid="uid://csf7n7f36uipy" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png" id="67_e64o6"]
|
||||
[ext_resource type="Texture2D" uid="uid://bqtg2bdgpq2rv" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" id="67_g8xjv"]
|
||||
[ext_resource type="Texture2D" uid="uid://cg0ha8j7o1oyu" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png" id="68_eyy1p"]
|
||||
[ext_resource type="Texture2D" uid="uid://cj4gajmey2ffu" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" id="68_xgubf"]
|
||||
[ext_resource type="Texture2D" uid="uid://capfbno5347av" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" id="69_spgx8"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2k0e3e6wrge6" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png" id="69_yof82"]
|
||||
[ext_resource type="Texture2D" uid="uid://bdg54lnig84jf" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" id="70_gjh07"]
|
||||
[ext_resource type="Texture2D" uid="uid://dj25eww6n0s14" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png" id="70_nossm"]
|
||||
[ext_resource type="Texture2D" uid="uid://clkh7swfacmnl" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png" id="71_amnwg"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2ih2oqngbsln" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" id="71_cr2rb"]
|
||||
[ext_resource type="Texture2D" uid="uid://dr4tn3h51btjv" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" id="72_bupp5"]
|
||||
[ext_resource type="Texture2D" uid="uid://b5nslpq2nf5j" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png" id="72_ycqjk"]
|
||||
[ext_resource type="Texture2D" uid="uid://c8mgfqsjkltk4" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png" id="73_hv728"]
|
||||
[ext_resource type="Texture2D" uid="uid://dojq8vxobaqqa" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" id="73_j8se3"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbr4c44urpquh" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" id="74_7n2ap"]
|
||||
[ext_resource type="Texture2D" uid="uid://cl4ahinbw38km" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png" id="74_enbvd"]
|
||||
[ext_resource type="Texture2D" uid="uid://b2i1up3o1thk8" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" id="75_c05ix"]
|
||||
[ext_resource type="Texture2D" uid="uid://ddumhx8gbawkt" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png" id="75_fn0g1"]
|
||||
[ext_resource type="Texture2D" uid="uid://cvx6bqxlqic28" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png" id="76_a1a5a"]
|
||||
[ext_resource type="Texture2D" uid="uid://cs3ffswn6r2vj" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" id="76_o4sme"]
|
||||
[ext_resource type="Texture2D" uid="uid://d0jwb06jsit3k" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" id="77_5laso"]
|
||||
[ext_resource type="Texture2D" uid="uid://dp4dyxjvvf11t" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png" id="77_h1q27"]
|
||||
[ext_resource type="Texture2D" uid="uid://bfgpfrnu55fvd" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png" id="78_5nhn3"]
|
||||
[ext_resource type="Texture2D" uid="uid://bc340i18dejwu" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" id="78_7mbxa"]
|
||||
[ext_resource type="Texture2D" uid="uid://blyndvuc8elvn" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png" id="79_bgt1u"]
|
||||
[ext_resource type="Texture2D" uid="uid://b0yfrwc83u6yu" path="res://src/enemy/enemy_types/8. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" id="79_m1x6w"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxufrxhi1f6w1" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png" id="80_lo6gm"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7sbrrb6uth4m" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png" id="81_yrerp"]
|
||||
[ext_resource type="Texture2D" uid="uid://g3jg26dtwbwn" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png" id="82_e08pp"]
|
||||
[ext_resource type="Texture2D" uid="uid://b16jouwprfqwa" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png" id="83_rkc3l"]
|
||||
[ext_resource type="Texture2D" uid="uid://b34kahr1kgxxw" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png" id="84_w023d"]
|
||||
[ext_resource type="Texture2D" uid="uid://catbl4pjo72ox" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png" id="85_gsd4b"]
|
||||
[ext_resource type="Texture2D" uid="uid://dbg3r41b0pq72" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png" id="86_w3lnt"]
|
||||
[ext_resource type="Texture2D" uid="uid://b575g3v01jphe" path="res://src/enemy/enemy_types/8. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png" id="87_hflxm"]
|
||||
[ext_resource type="Texture2D" uid="uid://cc3evj00rj3a4" path="res://src/enemy/enemy_types/8. chinte/animations/INACTIVE BACK.png" id="116_8ver2"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxv6qhhnwljcu" path="res://src/enemy/enemy_types/8. chinte/animations/INACTIVE FRONT.png" id="117_bpa81"]
|
||||
[ext_resource type="Texture2D" uid="uid://6og6nw440rba" path="res://src/enemy/enemy_types/8. chinte/animations/INACTIVE SIDE.png" id="118_f7hsl"]
|
||||
[ext_resource type="Texture2D" uid="uid://c321u4x7ii5i2" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0001.png" id="150_1cgr5"]
|
||||
[ext_resource type="Texture2D" uid="uid://bjn32jqcqlm70" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0002.png" id="151_slsns"]
|
||||
[ext_resource type="Texture2D" uid="uid://0arlp5ks8xb2" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0003.png" id="152_g4ewi"]
|
||||
[ext_resource type="Texture2D" uid="uid://35ujy0kklmeh" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0004.png" id="153_udart"]
|
||||
[ext_resource type="Texture2D" uid="uid://dye6h7vfurqam" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0005.png" id="154_kilb8"]
|
||||
[ext_resource type="Texture2D" uid="uid://cndpxx2puyhlu" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0006.png" id="155_sapra"]
|
||||
[ext_resource type="Texture2D" uid="uid://7i6ax70hh880" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0007.png" id="156_37mk7"]
|
||||
[ext_resource type="Texture2D" uid="uid://7q8kbguc0odk" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0008.png" id="157_pyfpi"]
|
||||
[ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"]
|
||||
[ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"]
|
||||
[ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/8. chinte/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"]
|
||||
[ext_resource type="Texture2D" uid="uid://v46ar0apf4lh" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0002.png" id="58_u06t8"]
|
||||
[ext_resource type="Texture2D" uid="uid://dp3qnmhbdq6yb" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0021.png" id="59_mmg6v"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlxfcvj1a23cd" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0003.png" id="59_onul4"]
|
||||
[ext_resource type="Texture2D" uid="uid://cx5f8gqwhii0s" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0004.png" id="60_5syoy"]
|
||||
[ext_resource type="Texture2D" uid="uid://kij4jgwp18tt" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0022.png" id="60_ugn17"]
|
||||
[ext_resource type="Texture2D" uid="uid://c1q0orfx8blpl" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0005.png" id="61_1bw8i"]
|
||||
[ext_resource type="Texture2D" uid="uid://1pp0crfb7hks" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0023.png" id="61_6avl1"]
|
||||
[ext_resource type="Texture2D" uid="uid://do6gxsfcuw0a7" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0024.png" id="62_4qj4l"]
|
||||
[ext_resource type="Texture2D" uid="uid://df871udy5qulr" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0006.png" id="62_wjklo"]
|
||||
[ext_resource type="Texture2D" uid="uid://bo4u5kafsy054" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0025.png" id="63_65528"]
|
||||
[ext_resource type="Texture2D" uid="uid://br4ygmwb3nh4w" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0007.png" id="63_sodds"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7q1ipnk2ephr" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0008.png" id="64_dh2jp"]
|
||||
[ext_resource type="Texture2D" uid="uid://dtkqg5y1nhy6r" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0026.png" id="64_gu26t"]
|
||||
[ext_resource type="Texture2D" uid="uid://dadsnney0x42" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0009.png" id="65_l2ena"]
|
||||
[ext_resource type="Texture2D" uid="uid://co1vs3bnsoa7" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0027.png" id="65_ynv1n"]
|
||||
[ext_resource type="Texture2D" uid="uid://y8a3iou4qln8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0028.png" id="66_gixwu"]
|
||||
[ext_resource type="Texture2D" uid="uid://vmx05ymn63li" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0010.png" id="66_s6jhv"]
|
||||
[ext_resource type="Texture2D" uid="uid://csf7n7f36uipy" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0011.png" id="67_e64o6"]
|
||||
[ext_resource type="Texture2D" uid="uid://bqtg2bdgpq2rv" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0029.png" id="67_g8xjv"]
|
||||
[ext_resource type="Texture2D" uid="uid://cg0ha8j7o1oyu" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0012.png" id="68_eyy1p"]
|
||||
[ext_resource type="Texture2D" uid="uid://cj4gajmey2ffu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0030.png" id="68_xgubf"]
|
||||
[ext_resource type="Texture2D" uid="uid://capfbno5347av" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0031.png" id="69_spgx8"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2k0e3e6wrge6" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0013.png" id="69_yof82"]
|
||||
[ext_resource type="Texture2D" uid="uid://bdg54lnig84jf" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0032.png" id="70_gjh07"]
|
||||
[ext_resource type="Texture2D" uid="uid://dj25eww6n0s14" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0014.png" id="70_nossm"]
|
||||
[ext_resource type="Texture2D" uid="uid://clkh7swfacmnl" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0015.png" id="71_amnwg"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2ih2oqngbsln" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0033.png" id="71_cr2rb"]
|
||||
[ext_resource type="Texture2D" uid="uid://dr4tn3h51btjv" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0034.png" id="72_bupp5"]
|
||||
[ext_resource type="Texture2D" uid="uid://b5nslpq2nf5j" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0016.png" id="72_ycqjk"]
|
||||
[ext_resource type="Texture2D" uid="uid://c8mgfqsjkltk4" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0017.png" id="73_hv728"]
|
||||
[ext_resource type="Texture2D" uid="uid://dojq8vxobaqqa" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0035.png" id="73_j8se3"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbr4c44urpquh" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0036.png" id="74_7n2ap"]
|
||||
[ext_resource type="Texture2D" uid="uid://cl4ahinbw38km" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0018.png" id="74_enbvd"]
|
||||
[ext_resource type="Texture2D" uid="uid://b2i1up3o1thk8" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0037.png" id="75_c05ix"]
|
||||
[ext_resource type="Texture2D" uid="uid://ddumhx8gbawkt" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0019.png" id="75_fn0g1"]
|
||||
[ext_resource type="Texture2D" uid="uid://cvx6bqxlqic28" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0020.png" id="76_a1a5a"]
|
||||
[ext_resource type="Texture2D" uid="uid://cs3ffswn6r2vj" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0038.png" id="76_o4sme"]
|
||||
[ext_resource type="Texture2D" uid="uid://d0jwb06jsit3k" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0039.png" id="77_5laso"]
|
||||
[ext_resource type="Texture2D" uid="uid://dp4dyxjvvf11t" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0021.png" id="77_h1q27"]
|
||||
[ext_resource type="Texture2D" uid="uid://bfgpfrnu55fvd" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0022.png" id="78_5nhn3"]
|
||||
[ext_resource type="Texture2D" uid="uid://bc340i18dejwu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0040.png" id="78_7mbxa"]
|
||||
[ext_resource type="Texture2D" uid="uid://blyndvuc8elvn" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0023.png" id="79_bgt1u"]
|
||||
[ext_resource type="Texture2D" uid="uid://b0yfrwc83u6yu" path="res://src/enemy/enemy_types/7. chinte/animations/IDLE FRONT/IDLE-FRONT_page_0041.png" id="79_m1x6w"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxufrxhi1f6w1" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0024.png" id="80_lo6gm"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7sbrrb6uth4m" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0025.png" id="81_yrerp"]
|
||||
[ext_resource type="Texture2D" uid="uid://g3jg26dtwbwn" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0026.png" id="82_e08pp"]
|
||||
[ext_resource type="Texture2D" uid="uid://b16jouwprfqwa" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0027.png" id="83_rkc3l"]
|
||||
[ext_resource type="Texture2D" uid="uid://b34kahr1kgxxw" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0028.png" id="84_w023d"]
|
||||
[ext_resource type="Texture2D" uid="uid://catbl4pjo72ox" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0029.png" id="85_gsd4b"]
|
||||
[ext_resource type="Texture2D" uid="uid://dbg3r41b0pq72" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0030.png" id="86_w3lnt"]
|
||||
[ext_resource type="Texture2D" uid="uid://b575g3v01jphe" path="res://src/enemy/enemy_types/7. chinte/animations/ATTACK/ATTACK1-FRONT_page_0031.png" id="87_hflxm"]
|
||||
[ext_resource type="Texture2D" uid="uid://cc3evj00rj3a4" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE BACK.png" id="116_8ver2"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxv6qhhnwljcu" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE FRONT.png" id="117_bpa81"]
|
||||
[ext_resource type="Texture2D" uid="uid://6og6nw440rba" path="res://src/enemy/enemy_types/7. chinte/animations/INACTIVE SIDE.png" id="118_f7hsl"]
|
||||
[ext_resource type="Texture2D" uid="uid://c321u4x7ii5i2" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0001.png" id="150_1cgr5"]
|
||||
[ext_resource type="Texture2D" uid="uid://bjn32jqcqlm70" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0002.png" id="151_slsns"]
|
||||
[ext_resource type="Texture2D" uid="uid://0arlp5ks8xb2" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0003.png" id="152_g4ewi"]
|
||||
[ext_resource type="Texture2D" uid="uid://35ujy0kklmeh" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0004.png" id="153_udart"]
|
||||
[ext_resource type="Texture2D" uid="uid://dye6h7vfurqam" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0005.png" id="154_kilb8"]
|
||||
[ext_resource type="Texture2D" uid="uid://cndpxx2puyhlu" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0006.png" id="155_sapra"]
|
||||
[ext_resource type="Texture2D" uid="uid://7i6ax70hh880" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0007.png" id="156_37mk7"]
|
||||
[ext_resource type="Texture2D" uid="uid://7q8kbguc0odk" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0008.png" id="157_pyfpi"]
|
||||
[ext_resource type="Texture2D" uid="uid://75mrdvb1vy77" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0009.png" id="158_bo0u7"]
|
||||
[ext_resource type="Texture2D" uid="uid://xp31l3govdc6" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0010.png" id="159_mmg6v"]
|
||||
[ext_resource type="Texture2D" uid="uid://cdv6qy3hdbqnb" path="res://src/enemy/enemy_types/7. chinte/animations/TELEPORT/TELEPORT_page_0011.png" id="160_ugn17"]
|
||||
|
||||
[sub_resource type="ViewportTexture" id="ViewportTexture_h1kaf"]
|
||||
viewport_path = NodePath("Sprite3D/SubViewportContainer/SubViewport")
|
||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://8qj6se762l6e"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0001.png-c4025002cfe9cf70344257647e01a748.ctex"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0001.png-f1a414d245df5675a6a7e9fadf9b2ce3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0001.png-c4025002cfe9cf70344257647e01a748.ctex"]
|
||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0001.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0001.png-f1a414d245df5675a6a7e9fadf9b2ce3.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cstm3bc1iyiou"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0002.png-1c7560b67f5a6a47ad1c369706ccc894.ctex"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0002.png-6506036f557ae6a150bec42c116a3544.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0002.png-1c7560b67f5a6a47ad1c369706ccc894.ctex"]
|
||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0002.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0002.png-6506036f557ae6a150bec42c116a3544.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dip1urkpqfsgj"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0003.png-164637a9b7cc075c77c0b53570687522.ctex"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0003.png-86dbce37e5253e33bea75529fbdb5ff3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0003.png-164637a9b7cc075c77c0b53570687522.ctex"]
|
||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0003.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0003.png-86dbce37e5253e33bea75529fbdb5ff3.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bmd5cgqk2vg5o"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0004.png-f2256ffd2319a66eee6d7eea1e81a55f.ctex"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0004.png-7409748461b2c0dd7e259dc181a7185a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0004.png-f2256ffd2319a66eee6d7eea1e81a55f.ctex"]
|
||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0004.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0004.png-7409748461b2c0dd7e259dc181a7185a.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cxxeds0c84a8j"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0005.png-cb0ea56f3715040e7e5b683d32c551f0.ctex"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0005.png-96fd6de77d680d85c4b4330bf02bfaf4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0005.png-cb0ea56f3715040e7e5b683d32c551f0.ctex"]
|
||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0005.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0005.png-96fd6de77d680d85c4b4330bf02bfaf4.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 193 KiB |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c14icwfjwg50p"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0006.png-e52c539684066d9a6372492cfe8367fd.ctex"
|
||||
path="res://.godot/imported/ACTIVATE-BACK_page_0006.png-7c17e5cdf694e77d498907ad53dffd42.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://src/enemy/enemy_types/8. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0006.png-e52c539684066d9a6372492cfe8367fd.ctex"]
|
||||
source_file="res://src/enemy/enemy_types/7. chinte/animations/ACTIVATE-BACK/ACTIVATE-BACK_page_0006.png"
|
||||
dest_files=["res://.godot/imported/ACTIVATE-BACK_page_0006.png-7c17e5cdf694e77d498907ad53dffd42.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||