{"id":22837091,"url":"https://github.com/mineinabyss/mobzy","last_synced_at":"2025-08-10T21:32:33.142Z","repository":{"id":37464680,"uuid":"142800887","full_name":"MineInAbyss/Mobzy","owner":"MineInAbyss","description":"Config-driven custom mobs for Spigot using ECS","archived":false,"fork":false,"pushed_at":"2024-04-27T16:38:10.000Z","size":1878,"stargazers_count":42,"open_issues_count":9,"forks_count":8,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-27T17:37:08.743Z","etag":null,"topics":["ecs","kotlinx-serialization","minecraft","nms-entity","pathfinder-goals","spigot"],"latest_commit_sha":null,"homepage":"https://mineinabyss.com/Mobzy/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MineInAbyss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-29T22:48:31.000Z","updated_at":"2023-12-14T16:58:04.000Z","dependencies_parsed_at":"2023-10-03T18:33:38.941Z","dependency_job_id":"4c8b3b89-da39-4afd-a78d-859562d1ff61","html_url":"https://github.com/MineInAbyss/Mobzy","commit_stats":null,"previous_names":[],"tags_count":88,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FMobzy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FMobzy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FMobzy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineInAbyss%2FMobzy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MineInAbyss","download_url":"https://codeload.github.com/MineInAbyss/Mobzy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229464367,"owners_count":18077041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ecs","kotlinx-serialization","minecraft","nms-entity","pathfinder-goals","spigot"],"created_at":"2024-12-12T23:15:40.033Z","updated_at":"2024-12-12T23:15:40.578Z","avatar_url":"https://github.com/MineInAbyss.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Mobzy\n[![Java CI with Gradle](https://github.com/MineInAbyss/Mobzy/actions/workflows/gradle-ci.yml/badge.svg)](https://github.com/MineInAbyss/Mobzy/actions/workflows/gradle-ci.yml)\n[![Maven](https://img.shields.io/maven-metadata/v?metadataUrl=https://repo.mineinabyss.com/releases/com/mineinabyss/mobzy/maven-metadata.xml)](https://repo.mineinabyss.com/#/releases/com/mineinabyss/mobzy)\n[![Wiki](https://img.shields.io/badge/-Project%20Wiki-blueviolet?logo=Wikipedia\u0026labelColor=gray)](https://github.com/MineInAbyss/Mobzy/wiki)\n[![Contribute](https://shields.io/badge/Contribute-e57be5?logo=github%20sponsors\u0026style=flat\u0026logoColor=white)](https://github.com/MineInAbyss/MineInAbyss/wiki/Setup-and-Contribution-Guide)\n\u003c/div\u003e\n\nMobzy is a [Paper](https://papermc.io/) plugin for creating custom mobs with config files. We use [Geary](https://github.com/MineInAbyss/geary-papermc) to break down complex entities into small components. We provide many components to modify vanilla behaviour, for new game features check out [Geary-addons](https://github.com/MineInAbyss/Geary-addons).\n\n## Features\n\n- Extend any existing entity (including NMS entities if registered by another plugin)\n- Simple ModelEngine support\n- Customize pathfinder goals\n- Our own custom spawning system\n\n## Example\n\n[**`plugins/Geary/mineinabyss/mobs/hostile/kuongatari.yml`**](https://github.com/MineInAbyss/server-config/blob/master/servers/minecraft/plugins/Geary/mineinabyss/mobs/hostile/kuongatari.yml)\n```yaml\n- !\u003cgeary:inherit\u003e # Inherits components from another prefab\n  from: [mineinabyss:hostile]\n- !\u003cmobzy:type\u003e # Tells Minecraft which entity to use under the hood. You may register a custom type with NMS.\n  baseClass: minecraft:zombie\n  creatureType: MONSTER\n- !\u003cgeary:display_name\u003e \"\u003c#1FB53D\u003eKuongatari\" # Sets a colored display name\n- !\u003cmobzy:modelengine\u003e # Uses a ModelEngine model\n  modelId: kuongatari\n- !\u003cmobzy:pathfinders\u003e # Sets some pathfinder goals\n  targets:\n    1: !\u003cmobzy:target.attacker\u003e\n      range: 200\n    2: !\u003cmobzy:target.nearby_player\u003e\n      range: 10\n  goals:\n    1: !\u003cminecraft:behavior.melee_attack\u003e\n      seeThroughWalls: true\n    2: !\u003cminecraft:behavior.leap_at_target\u003e\n      jumpHeight: 0.6\n    4: !\u003cminecraft:behavior.random_stroll_land\u003e\n```\n\n## Project Wiki\n\nWe have an old [wiki](https://github.com/MineInAbyss/Mobzy/wiki) that we want to update soon. For now, you can ask us questions in `#plugin-dev` on our [Discord](https://discord.gg/QXPCk2y) server, or come help with development there!\n\nYou may also find our [generated docs](https://mineinabyss.com/Mobzy/) useful\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmineinabyss%2Fmobzy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmineinabyss%2Fmobzy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmineinabyss%2Fmobzy/lists"}