add iron and forge

This commit is contained in:
2026-04-22 23:09:14 +03:00
parent 9066eecf1e
commit 297233c48e
10 changed files with 264 additions and 1 deletions
+6
View File
@@ -235,3 +235,9 @@ func apply_upgrade_boots(speed_bonus: float, _tier: int) -> void:
var tw := create_tween()
tw.tween_property(player_mat, "albedo_color", Color(1.0, 0.85, 0.2), 0.1)
tw.tween_property(player_mat, "albedo_color", BASE_COLOR, 0.4)
func apply_upgrade_armor() -> void:
tier += 1
var tw := create_tween()
tw.tween_property(player_mat, "albedo_color", Color(0.7, 0.8, 1.0), 0.1)
tw.tween_property(player_mat, "albedo_color", BASE_COLOR, 0.5)