feat: define action completion costs

This commit is contained in:
Rijad Zuzo
2026-07-10 10:36:08 +02:00
parent 39989002ca
commit 0f7b12080e
19 changed files with 213 additions and 45 deletions
+2
View File
@@ -121,6 +121,8 @@ func description(npc_names: Dictionary = {}) -> String:
return "%s died from starvation" % actor_name
"task_started":
return "%s began %s" % [actor_name, action_name if not action_name.is_empty() else item]
"task_blocked":
return "%s could not complete %s" % [actor_name, action_name]
"resource_depleted":
return "%s was depleted" % source
_: