Game files

This commit is contained in:
June
2026-03-24 12:56:35 -07:00
parent 7258b2e118
commit 44e67067a0
6027 changed files with 76278 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
class_name cConstruct extends cCharacter
signal location_changed(ai, old_location, new_location)
signal state_changed(ai, old_state, new_state)
@export var night_manager: NightManager
func _ready():
night_manager.hour_changed.connect(_on_hour_changed)
func _on_hour_changed(hour: int):
if hour == 1:
ai_level += 2
if hour == 3:
ai_level += 5