randomgeon/combat/weapons/_scripts/melee_weapon_component.gd
Dan Baker 19cc8cb573 Implements modifier and stats system
Adds a modifier and stats system to manage combat-related attributes.

Introduces StatsComponent for storing entity statistics and ModifierManager for applying dynamic modifiers. Recalculates stats based on modifier type and priority.

Updates projectile and weapon components to utilize the new stats system.
2025-05-07 11:52:30 +01:00

6 lines
159 B
GDScript

@icon("res://assets/editor/64x64/fc728.png")
extends Node2D
class_name MeleeWeaponComponent
func _init() -> void:
Log.pr("MeleeWeaponComponent initialized")