add essence and magic table

This commit is contained in:
2026-04-22 23:14:43 +03:00
parent 297233c48e
commit 5f5f0f54f1
10 changed files with 243 additions and 3 deletions
+6
View File
@@ -241,3 +241,9 @@ func apply_upgrade_armor() -> void:
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)
func apply_upgrade_enchant() -> void:
tier += 1
var tw := create_tween()
tw.tween_property(player_mat, "albedo_color", Color(0.8, 0.2, 1.0), 0.1)
tw.tween_property(player_mat, "albedo_color", BASE_COLOR, 0.6)