added Graphics and sound Effects and more overhauls

This commit is contained in:
Exobyt 2025-08-03 20:56:32 +02:00
parent c887a2168c
commit b9d4288900
214 changed files with 3378 additions and 198 deletions

View file

@ -0,0 +1,9 @@
class_name SelfHealUpgrade extends "res://scenes/upgrade/upgrade.gd"
func _init() -> void:
upgradeName = "Self Heal Upgrade"
description = "Heal yourself after not taking damage for 10 seconds. After that you Heal 1 % health every second"
func select():
if Globals.getPlayer() != null:
Globals.getPlayer().selfHealUnlocked = true