├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── src └── main │ ├── java │ └── igoro00 │ │ └── not_as_easy_villagers │ │ ├── CustomName.java │ │ └── mixin │ │ └── MobEntityMixin.java │ ├── kotlin │ └── igoro00 │ │ └── not_as_easy_villagers │ │ ├── NotAsEasyVillagers.kt │ │ └── VillagerItem.kt │ └── resources │ ├── assets │ └── not_as_easy_villagers │ │ ├── icon.png │ │ ├── lang │ │ └── en_us.json │ │ ├── models │ │ └── item │ │ │ └── villager.json │ │ └── textures │ │ └── item │ │ └── villager.png │ ├── fabric.mod.json │ └── not_as_easy_villagers.mixins.json └── villager.bbmodel /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/igoro00/not_as_easy_villagers/CustomName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/java/igoro00/not_as_easy_villagers/CustomName.java -------------------------------------------------------------------------------- /src/main/java/igoro00/not_as_easy_villagers/mixin/MobEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/java/igoro00/not_as_easy_villagers/mixin/MobEntityMixin.java -------------------------------------------------------------------------------- /src/main/kotlin/igoro00/not_as_easy_villagers/NotAsEasyVillagers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/kotlin/igoro00/not_as_easy_villagers/NotAsEasyVillagers.kt -------------------------------------------------------------------------------- /src/main/kotlin/igoro00/not_as_easy_villagers/VillagerItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/kotlin/igoro00/not_as_easy_villagers/VillagerItem.kt -------------------------------------------------------------------------------- /src/main/resources/assets/not_as_easy_villagers/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/resources/assets/not_as_easy_villagers/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/not_as_easy_villagers/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/resources/assets/not_as_easy_villagers/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/not_as_easy_villagers/models/item/villager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/resources/assets/not_as_easy_villagers/models/item/villager.json -------------------------------------------------------------------------------- /src/main/resources/assets/not_as_easy_villagers/textures/item/villager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/resources/assets/not_as_easy_villagers/textures/item/villager.png -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/not_as_easy_villagers.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/src/main/resources/not_as_easy_villagers.mixins.json -------------------------------------------------------------------------------- /villager.bbmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoro00/not-as-easy-villagers/HEAD/villager.bbmodel --------------------------------------------------------------------------------