├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── Thumbnail.png ├── doc ├── full-village.png ├── houses-village.png └── plain-village.png ├── prepare-debugging.ps1 ├── release.sh ├── resources ├── assets │ ├── game │ │ └── lang │ │ │ └── en.json │ └── vsvillage │ │ ├── blocktypes │ │ ├── bed-old.json │ │ ├── bed.json │ │ ├── brazier.json │ │ ├── waypoint.json │ │ └── workstation.json │ │ ├── config │ │ ├── activitycollections │ │ │ └── working-villager.json │ │ ├── dialogue │ │ │ ├── other.json │ │ │ └── trader.json │ │ ├── handbook │ │ │ └── villagerguide.json │ │ ├── quests.json │ │ └── tradelists │ │ │ └── villager-trader.json │ │ ├── entities │ │ ├── villager-deprecated.json │ │ └── villager.json │ │ ├── itemtypes │ │ ├── creatures.json │ │ └── villagerhorn.json │ │ ├── lang │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── eo.json │ │ ├── es-419.json │ │ ├── es-es.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── pl.json │ │ ├── pt-br.json │ │ ├── ru.json │ │ ├── uk.json │ │ └── zh-cn.json │ │ ├── patches │ │ ├── config │ │ │ └── tradelists │ │ │ │ └── villager-trader.json │ │ └── entities │ │ │ └── villager.json │ │ ├── recipes │ │ └── grid │ │ │ └── villagerhorn.json │ │ ├── shapes │ │ ├── bed.json │ │ ├── items │ │ │ └── horn.json │ │ ├── villager.json │ │ ├── waypoint.json │ │ └── workstations │ │ │ ├── farmer.json │ │ │ ├── herbalist.json │ │ │ ├── mayor.json │ │ │ ├── shepherd.json │ │ │ ├── smith.json │ │ │ ├── soldier.json │ │ │ └── trader.json │ │ ├── sounds │ │ └── horn.ogg │ │ └── textures │ │ ├── body │ │ ├── face-old-woman.png │ │ ├── face-young-woman.png │ │ ├── face1.png │ │ ├── face2.png │ │ ├── face3.png │ │ ├── hair-old-woman1.png │ │ ├── hair-old-woman2.png │ │ ├── hair-old-woman3.png │ │ ├── hair-old-woman4.png │ │ ├── hair-old-woman5.png │ │ ├── hair-old-woman6.png │ │ ├── hair-old-woman7.png │ │ ├── hair-old-woman8.png │ │ ├── hair-old-woman9.png │ │ ├── hair-young-woman1.png │ │ ├── hair-young-woman2.png │ │ ├── hair-young-woman3.png │ │ ├── hair-young-woman4.png │ │ ├── hair-young-woman5.png │ │ ├── hair-young-woman6.png │ │ ├── hair-young-woman7.png │ │ ├── hair1.png │ │ ├── hair2.png │ │ ├── hair3.png │ │ ├── hair4.png │ │ ├── hair5.png │ │ ├── hair6.png │ │ ├── hair7.png │ │ ├── skin-old.png │ │ ├── skin1.png │ │ ├── skin2.png │ │ ├── skin3.png │ │ └── skin4.png │ │ └── clothes │ │ ├── foot │ │ ├── boots1.png │ │ ├── boots2.png │ │ └── boots3.png │ │ ├── lowerbody │ │ ├── pants1.png │ │ ├── pants2.png │ │ ├── pants3.png │ │ ├── pants4.png │ │ ├── pants5.png │ │ └── pants6.png │ │ └── upperbody │ │ ├── shirt1.png │ │ ├── shirt10.png │ │ ├── shirt11.png │ │ ├── shirt12.png │ │ ├── shirt13.png │ │ ├── shirt14.png │ │ ├── shirt2.png │ │ ├── shirt3.png │ │ ├── shirt4.png │ │ ├── shirt5.png │ │ ├── shirt6.png │ │ ├── shirt7.png │ │ ├── shirt8.png │ │ └── shirt9.png ├── modicon.png └── modinfo.json ├── src ├── Block │ └── BlockMayorWorkstation.cs ├── BlockEntity │ ├── BlockEntityVillageWaypoint.cs │ ├── BlockEntityVillagerBed.cs │ ├── BlockEntityVillagerBrazier.cs │ ├── BlockEntityVillagerPOI.cs │ └── BlockEntityVillagerWorkstation.cs ├── Entity │ ├── AITask │ │ ├── AiTaskGotoAndInteract.cs │ │ ├── AiTaskHealWounded.cs │ │ ├── AiTaskStayCloseToEmployer.cs │ │ ├── AiTaskVillagerCultivateCrops.cs │ │ ├── AiTaskVillagerFillTrough.cs │ │ ├── AiTaskVillagerFlipWeapon.cs │ │ ├── AiTaskVillagerGotoGatherspot.cs │ │ ├── AiTaskVillagerGotoWork.cs │ │ ├── AiTaskVillagerMeleeAttack.cs │ │ ├── AiTaskVillagerRangedAttack.cs │ │ ├── AiTaskVillagerSeekEntity.cs │ │ ├── AiTaskVillagerSleep.cs │ │ ├── AiTaskVillagerSocialize.cs │ │ └── IntervalUtil.cs │ ├── Action │ │ ├── GotoPointOfInterestAction.cs │ │ ├── SleepAction.cs │ │ └── ToggleBrazierFireAction.cs │ ├── Behavior │ │ ├── BehaviorReplaceWithEntity.cs │ │ └── BehaviorVillager.cs │ ├── Condition │ │ ├── CloseToPointOfInterestCondition.cs │ │ └── CooldownCondition.cs │ ├── Pathfinding │ │ ├── VillagerAStar.cs │ │ ├── VillagerAStarNew.cs │ │ ├── VillagerPathNode.cs │ │ ├── VillagerPathfind.cs │ │ └── WaypointAStar.cs │ └── VillagerProfession.cs ├── Gui │ └── ManagementGui.cs ├── Inventory │ ├── InventoryVillagerGear.cs │ └── ItemSlotVillagerGear.cs ├── Item │ ├── ItemVillagerGear.cs │ └── ItemVillagerHorn.cs └── Systems │ ├── VillageSystem │ ├── EnumVillageManagementOperation.cs │ ├── Village.cs │ ├── VillageCommands.cs │ ├── VillageManagementMessage.cs │ ├── VillageManager.cs │ ├── VillagePointOfInterest.cs │ ├── VillageWaypoint.cs │ ├── VillageWaypointPath.cs │ ├── VillagerBed.cs │ ├── VillagerData.cs │ └── VillagerWorkstation.cs │ ├── VsVillage.cs │ └── WorldGen │ ├── VillageGrid.cs │ ├── VillageStructure.cs │ ├── VillageType.cs │ └── Villagegenerator.cs ├── update-lang.ps1 └── vsvillage.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | obj 3 | bin 4 | vsvillage.sln 5 | /.vs/* 6 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/README.md -------------------------------------------------------------------------------- /Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/Thumbnail.png -------------------------------------------------------------------------------- /doc/full-village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/doc/full-village.png -------------------------------------------------------------------------------- /doc/houses-village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/doc/houses-village.png -------------------------------------------------------------------------------- /doc/plain-village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/doc/plain-village.png -------------------------------------------------------------------------------- /prepare-debugging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/prepare-debugging.ps1 -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/release.sh -------------------------------------------------------------------------------- /resources/assets/game/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/game/lang/en.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/blocktypes/bed-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/blocktypes/bed-old.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/blocktypes/bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/blocktypes/bed.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/blocktypes/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/blocktypes/brazier.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/blocktypes/waypoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/blocktypes/waypoint.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/blocktypes/workstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/blocktypes/workstation.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/config/activitycollections/working-villager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/config/activitycollections/working-villager.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/config/dialogue/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/config/dialogue/other.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/config/dialogue/trader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/config/dialogue/trader.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/config/handbook/villagerguide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/config/handbook/villagerguide.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/config/quests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/config/quests.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/config/tradelists/villager-trader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/config/tradelists/villager-trader.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/entities/villager-deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/entities/villager-deprecated.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/entities/villager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/entities/villager.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/itemtypes/creatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/itemtypes/creatures.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/itemtypes/villagerhorn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/itemtypes/villagerhorn.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/cs.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/de.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/en.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/eo.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/es-419.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/es-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/es-es.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/fr.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/it.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/ja.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "management-profession-farmer": "농부" 3 | } -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/pl.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/pt-br.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/ru.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/uk.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/lang/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/lang/zh-cn.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/patches/config/tradelists/villager-trader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/patches/config/tradelists/villager-trader.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/patches/entities/villager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/patches/entities/villager.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/recipes/grid/villagerhorn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/recipes/grid/villagerhorn.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/bed.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/items/horn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/items/horn.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/villager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/villager.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/waypoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/waypoint.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/farmer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/farmer.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/herbalist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/herbalist.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/mayor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/mayor.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/shepherd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/shepherd.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/smith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/smith.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/soldier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/soldier.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/shapes/workstations/trader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/shapes/workstations/trader.json -------------------------------------------------------------------------------- /resources/assets/vsvillage/sounds/horn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/sounds/horn.ogg -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/face-old-woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/face-old-woman.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/face-young-woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/face-young-woman.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/face1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/face1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/face2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/face2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/face3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/face3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman4.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman5.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman6.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman7.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman8.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-old-woman9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-old-woman9.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman4.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman5.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman6.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair-young-woman7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair-young-woman7.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair4.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair5.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair6.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/hair7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/hair7.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/skin-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/skin-old.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/skin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/skin1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/skin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/skin2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/skin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/skin3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/body/skin4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/body/skin4.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/foot/boots1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/foot/boots1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/foot/boots2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/foot/boots2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/foot/boots3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/foot/boots3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/lowerbody/pants1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/lowerbody/pants1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/lowerbody/pants2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/lowerbody/pants2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/lowerbody/pants3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/lowerbody/pants3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/lowerbody/pants4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/lowerbody/pants4.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/lowerbody/pants5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/lowerbody/pants5.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/lowerbody/pants6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/lowerbody/pants6.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt1.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt10.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt11.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt12.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt13.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt14.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt2.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt3.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt4.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt5.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt6.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt7.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt8.png -------------------------------------------------------------------------------- /resources/assets/vsvillage/textures/clothes/upperbody/shirt9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/assets/vsvillage/textures/clothes/upperbody/shirt9.png -------------------------------------------------------------------------------- /resources/modicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/modicon.png -------------------------------------------------------------------------------- /resources/modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/resources/modinfo.json -------------------------------------------------------------------------------- /src/Block/BlockMayorWorkstation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Block/BlockMayorWorkstation.cs -------------------------------------------------------------------------------- /src/BlockEntity/BlockEntityVillageWaypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/BlockEntity/BlockEntityVillageWaypoint.cs -------------------------------------------------------------------------------- /src/BlockEntity/BlockEntityVillagerBed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/BlockEntity/BlockEntityVillagerBed.cs -------------------------------------------------------------------------------- /src/BlockEntity/BlockEntityVillagerBrazier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/BlockEntity/BlockEntityVillagerBrazier.cs -------------------------------------------------------------------------------- /src/BlockEntity/BlockEntityVillagerPOI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/BlockEntity/BlockEntityVillagerPOI.cs -------------------------------------------------------------------------------- /src/BlockEntity/BlockEntityVillagerWorkstation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/BlockEntity/BlockEntityVillagerWorkstation.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskGotoAndInteract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskGotoAndInteract.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskHealWounded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskHealWounded.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskStayCloseToEmployer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskStayCloseToEmployer.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerCultivateCrops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerCultivateCrops.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerFillTrough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerFillTrough.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerFlipWeapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerFlipWeapon.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerGotoGatherspot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerGotoGatherspot.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerGotoWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerGotoWork.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerMeleeAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerMeleeAttack.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerRangedAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerRangedAttack.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerSeekEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerSeekEntity.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerSleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerSleep.cs -------------------------------------------------------------------------------- /src/Entity/AITask/AiTaskVillagerSocialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/AiTaskVillagerSocialize.cs -------------------------------------------------------------------------------- /src/Entity/AITask/IntervalUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/AITask/IntervalUtil.cs -------------------------------------------------------------------------------- /src/Entity/Action/GotoPointOfInterestAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Action/GotoPointOfInterestAction.cs -------------------------------------------------------------------------------- /src/Entity/Action/SleepAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Action/SleepAction.cs -------------------------------------------------------------------------------- /src/Entity/Action/ToggleBrazierFireAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Action/ToggleBrazierFireAction.cs -------------------------------------------------------------------------------- /src/Entity/Behavior/BehaviorReplaceWithEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Behavior/BehaviorReplaceWithEntity.cs -------------------------------------------------------------------------------- /src/Entity/Behavior/BehaviorVillager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Behavior/BehaviorVillager.cs -------------------------------------------------------------------------------- /src/Entity/Condition/CloseToPointOfInterestCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Condition/CloseToPointOfInterestCondition.cs -------------------------------------------------------------------------------- /src/Entity/Condition/CooldownCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Condition/CooldownCondition.cs -------------------------------------------------------------------------------- /src/Entity/Pathfinding/VillagerAStar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Pathfinding/VillagerAStar.cs -------------------------------------------------------------------------------- /src/Entity/Pathfinding/VillagerAStarNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Pathfinding/VillagerAStarNew.cs -------------------------------------------------------------------------------- /src/Entity/Pathfinding/VillagerPathNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Pathfinding/VillagerPathNode.cs -------------------------------------------------------------------------------- /src/Entity/Pathfinding/VillagerPathfind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Pathfinding/VillagerPathfind.cs -------------------------------------------------------------------------------- /src/Entity/Pathfinding/WaypointAStar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/Pathfinding/WaypointAStar.cs -------------------------------------------------------------------------------- /src/Entity/VillagerProfession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Entity/VillagerProfession.cs -------------------------------------------------------------------------------- /src/Gui/ManagementGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Gui/ManagementGui.cs -------------------------------------------------------------------------------- /src/Inventory/InventoryVillagerGear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Inventory/InventoryVillagerGear.cs -------------------------------------------------------------------------------- /src/Inventory/ItemSlotVillagerGear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Inventory/ItemSlotVillagerGear.cs -------------------------------------------------------------------------------- /src/Item/ItemVillagerGear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Item/ItemVillagerGear.cs -------------------------------------------------------------------------------- /src/Item/ItemVillagerHorn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Item/ItemVillagerHorn.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/EnumVillageManagementOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/EnumVillageManagementOperation.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/Village.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/Village.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillageCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillageCommands.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillageManagementMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillageManagementMessage.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillageManager.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillagePointOfInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillagePointOfInterest.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillageWaypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillageWaypoint.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillageWaypointPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillageWaypointPath.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillagerBed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillagerBed.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillagerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillagerData.cs -------------------------------------------------------------------------------- /src/Systems/VillageSystem/VillagerWorkstation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VillageSystem/VillagerWorkstation.cs -------------------------------------------------------------------------------- /src/Systems/VsVillage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/VsVillage.cs -------------------------------------------------------------------------------- /src/Systems/WorldGen/VillageGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/WorldGen/VillageGrid.cs -------------------------------------------------------------------------------- /src/Systems/WorldGen/VillageStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/WorldGen/VillageStructure.cs -------------------------------------------------------------------------------- /src/Systems/WorldGen/VillageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/WorldGen/VillageType.cs -------------------------------------------------------------------------------- /src/Systems/WorldGen/Villagegenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/src/Systems/WorldGen/Villagegenerator.cs -------------------------------------------------------------------------------- /update-lang.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/update-lang.ps1 -------------------------------------------------------------------------------- /vsvillage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G3rste/vsvillage/HEAD/vsvillage.csproj --------------------------------------------------------------------------------