├── .buildpath ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── luacheck.yml │ └── tidy_luacheck.yml ├── .gitignore ├── .gitmodules ├── .luacheck_tidy ├── .luacheckrc ├── .project ├── LICENSE ├── README.MD ├── modpack.txt ├── screenshot.2.png ├── screenshot.3.png ├── screenshot.4.png ├── screenshot.png └── working_villagers ├── api.MD ├── api.lua ├── async_actions.lua ├── building.lua ├── building_sign.lua ├── commanding_sceptre.lua ├── depends.txt ├── deprecated.lua ├── failures.lua ├── forms.lua ├── groups.lua ├── init.lua ├── job_coroutines.lua ├── jobs ├── builder.lua ├── empty.lua ├── farmer.lua ├── follow_player.lua ├── guard.lua ├── plant_collector.lua ├── snowclearer.lua ├── torcher.lua ├── util.lua ├── util_description.MD └── woodcutter.lua ├── mod.conf ├── pathfinder.lua ├── register.lua ├── schems ├── fancy_hut.we └── simple_hut.we ├── settingtypes.txt ├── spawn.lua ├── storage.lua ├── talking.lua ├── textures ├── default_sign_wall_wood.png ├── default_sign_wood.png ├── memorandum_letters.png ├── villager_female.png ├── villager_female_egg.png ├── villager_male.png ├── villager_male_egg.png ├── working_villages_builder.png ├── working_villages_builder.xcf ├── working_villages_commanding_sceptre.png ├── working_villages_commanding_sceptre.xcf ├── working_villages_dummy_empty_craftitem.png ├── working_villages_farmer.png ├── working_villages_herb_collector.png ├── working_villages_herb_collector.xcf ├── working_villages_torcher.png ├── working_villages_torcher.xcf ├── working_villages_woodcutter.png └── working_villages_woodcutter.xcf ├── util.lua ├── util_test.lua └── villager_state.lua /.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.buildpath -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/luacheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.github/workflows/luacheck.yml -------------------------------------------------------------------------------- /.github/workflows/tidy_luacheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.github/workflows/tidy_luacheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | development/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.gitmodules -------------------------------------------------------------------------------- /.luacheck_tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.luacheck_tidy -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/README.MD -------------------------------------------------------------------------------- /modpack.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/screenshot.2.png -------------------------------------------------------------------------------- /screenshot.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/screenshot.3.png -------------------------------------------------------------------------------- /screenshot.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/screenshot.4.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/screenshot.png -------------------------------------------------------------------------------- /working_villagers/api.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/api.MD -------------------------------------------------------------------------------- /working_villagers/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/api.lua -------------------------------------------------------------------------------- /working_villagers/async_actions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/async_actions.lua -------------------------------------------------------------------------------- /working_villagers/building.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/building.lua -------------------------------------------------------------------------------- /working_villagers/building_sign.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/building_sign.lua -------------------------------------------------------------------------------- /working_villagers/commanding_sceptre.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/commanding_sceptre.lua -------------------------------------------------------------------------------- /working_villagers/depends.txt: -------------------------------------------------------------------------------- 1 | default 2 | modutil? 3 | doors? 4 | -------------------------------------------------------------------------------- /working_villagers/deprecated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/deprecated.lua -------------------------------------------------------------------------------- /working_villagers/failures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/failures.lua -------------------------------------------------------------------------------- /working_villagers/forms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/forms.lua -------------------------------------------------------------------------------- /working_villagers/groups.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/groups.lua -------------------------------------------------------------------------------- /working_villagers/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/init.lua -------------------------------------------------------------------------------- /working_villagers/job_coroutines.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/job_coroutines.lua -------------------------------------------------------------------------------- /working_villagers/jobs/builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/builder.lua -------------------------------------------------------------------------------- /working_villagers/jobs/empty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/empty.lua -------------------------------------------------------------------------------- /working_villagers/jobs/farmer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/farmer.lua -------------------------------------------------------------------------------- /working_villagers/jobs/follow_player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/follow_player.lua -------------------------------------------------------------------------------- /working_villagers/jobs/guard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/guard.lua -------------------------------------------------------------------------------- /working_villagers/jobs/plant_collector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/plant_collector.lua -------------------------------------------------------------------------------- /working_villagers/jobs/snowclearer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/snowclearer.lua -------------------------------------------------------------------------------- /working_villagers/jobs/torcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/torcher.lua -------------------------------------------------------------------------------- /working_villagers/jobs/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/util.lua -------------------------------------------------------------------------------- /working_villagers/jobs/util_description.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/util_description.MD -------------------------------------------------------------------------------- /working_villagers/jobs/woodcutter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/jobs/woodcutter.lua -------------------------------------------------------------------------------- /working_villagers/mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/mod.conf -------------------------------------------------------------------------------- /working_villagers/pathfinder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/pathfinder.lua -------------------------------------------------------------------------------- /working_villagers/register.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/register.lua -------------------------------------------------------------------------------- /working_villagers/schems/fancy_hut.we: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/schems/fancy_hut.we -------------------------------------------------------------------------------- /working_villagers/schems/simple_hut.we: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/schems/simple_hut.we -------------------------------------------------------------------------------- /working_villagers/settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/settingtypes.txt -------------------------------------------------------------------------------- /working_villagers/spawn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/spawn.lua -------------------------------------------------------------------------------- /working_villagers/storage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/storage.lua -------------------------------------------------------------------------------- /working_villagers/talking.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/talking.lua -------------------------------------------------------------------------------- /working_villagers/textures/default_sign_wall_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/default_sign_wall_wood.png -------------------------------------------------------------------------------- /working_villagers/textures/default_sign_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/default_sign_wood.png -------------------------------------------------------------------------------- /working_villagers/textures/memorandum_letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/memorandum_letters.png -------------------------------------------------------------------------------- /working_villagers/textures/villager_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/villager_female.png -------------------------------------------------------------------------------- /working_villagers/textures/villager_female_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/villager_female_egg.png -------------------------------------------------------------------------------- /working_villagers/textures/villager_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/villager_male.png -------------------------------------------------------------------------------- /working_villagers/textures/villager_male_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/villager_male_egg.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_builder.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_builder.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_builder.xcf -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_commanding_sceptre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_commanding_sceptre.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_commanding_sceptre.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_commanding_sceptre.xcf -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_dummy_empty_craftitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_dummy_empty_craftitem.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_farmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_farmer.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_herb_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_herb_collector.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_herb_collector.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_herb_collector.xcf -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_torcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_torcher.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_torcher.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_torcher.xcf -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_woodcutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_woodcutter.png -------------------------------------------------------------------------------- /working_villagers/textures/working_villages_woodcutter.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/textures/working_villages_woodcutter.xcf -------------------------------------------------------------------------------- /working_villagers/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/util.lua -------------------------------------------------------------------------------- /working_villagers/util_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/util_test.lua -------------------------------------------------------------------------------- /working_villagers/villager_state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theFox6/working_villages/HEAD/working_villagers/villager_state.lua --------------------------------------------------------------------------------