Beginning to update weapon components

This commit is contained in:
Henry Faber 2026-06-08 13:53:13 +01:00
parent db57a0234e
commit e3fb082139
11 changed files with 66 additions and 37 deletions

13
scripts/weapon_shot.gd Normal file
View file

@ -0,0 +1,13 @@
class_name PlayerShot
extends Resource
@export_category("Info")
@export var shot_name: String
@export var sprite: Texture2D = preload("res://graphics/shot.png")
@export_category("Shot Data")
@export var damage: int = 1
@export var speed: int = 135
@export var projectiles: int = 2
@export var spacing: float = 35
@export var origin: int = -23