This commit is contained in:
Andriy Yednarovych
2026-02-22 19:26:26 +01:00
parent fd1ff19c4c
commit e877c5f058
211 changed files with 9385 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class_name ItemEffectHeal extends ItemEffect
@export var heal_amount := 1
@export var audio: AudioStream
func use() -> void:
PlayerManager.player.update_hp(heal_amount)
PauseMenu.play_audio(audio)