This commit is contained in:
2026-09-10 10:59:36 +03:00
commit a369ac57b4
202 changed files with 1785 additions and 0 deletions
@@ -0,0 +1,14 @@
scene: town_entry
priority: 40
---
select "" key=town_entry/prompt
option "Вернуться к дому" key=town_entry/opt_home -> :home
option "На площадь" key=town_entry/opt_square -> :square
:home
switch_scene home_outside
end
:square
switch_scene town_outskirts
end
@@ -0,0 +1,14 @@
scene: town_outskirts
priority: 10
---
select "" key=town_outskirts/prompt
option "Вернуться к дому" key=town_outskirts/opt_home -> :home
option "В лес" key=town_outskirts/opt_forest -> :forest
:home
switch_scene home_outside
end
:forest
switch_scene forest
end