Initial commit

This commit is contained in:
2026-01-17 18:33:45 -06:00
commit 673bdc0396
45 changed files with 856 additions and 0 deletions

19
Abilities/Fireball.tscn Normal file
View File

@@ -0,0 +1,19 @@
[gd_scene load_steps=4 format=3 uid="uid://bc7omt6pay1lx"]
[ext_resource type="Script" uid="uid://tt0u7f0gemjo" path="res://Abilities/Fireball.cs" id="1_0kqim"]
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball.png" id="2_rf7by"]
[sub_resource type="CircleShape2D" id="CircleShape2D_nvq50"]
radius = 6.0
[node name="Fireball" type="Area2D"]
script = ExtResource("1_0kqim")
Speed = 700.0
[node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("2_rf7by")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_nvq50")
[connection signal="body_entered" from="." to="." method="OnBodyEntered"]