https://github.com/techno-sam/servermobs
Server-sided mob system for fabric 1.18
https://github.com/techno-sam/servermobs
Last synced: 25 days ago
JSON representation
Server-sided mob system for fabric 1.18
- Host: GitHub
- URL: https://github.com/techno-sam/servermobs
- Owner: techno-sam
- License: mit
- Created: 2022-06-13T03:48:25.000Z (almost 3 years ago)
- Default Branch: 1.19
- Last Pushed: 2023-10-20T02:48:50.000Z (over 1 year ago)
- Last Synced: 2025-03-31T17:13:59.358Z (2 months ago)
- Language: Java
- Size: 774 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Server Mobs
## About
Server Mobs is a server-side mod for fabric 1.18.2 that creates new mobs, and provides a framework for other mods to do so.
At some point in the future, the non-API portion will be split into a separate mod. (Coming Soon™)## Setup
Don't forget to configure polypack_host if you use it.
Example entity implementations are under [com.slimeist.server_mobs.entities](src/main/java/com/slimeist/server_mobs/entities).
The 'API' (not guaranteed to be stable yet) is under [com.slimeist.server_mobs.api](src/main/java/com/slimeist/server_mobs/server_rendering).## Dependencies
### Required
* [polymer](https://github.com/Patbox/polymer/tree/dev/1.18.2)
* [hologram-api](https://github.com/Patbox/HologramAPI/tree/1.18)
* [nbtcrafting](https://github.com/Siphalor/nbt-crafting/tree/1.18-2.0)
### Recommended
* [polypack_host](https://github.com/aws404/polypack-host)
* [server_translations_api](https://github.com/NucleoidMC/Server-Translations/tree/1.18.2)## License
This project is available under the MIT license. It is based on the fabric example mod template which is available under the CC0 license.
Marked sections of code inside [com.slimeist.server_mobs.entities.MissileEntity](src/main/java/com/slimeist/server_mobs/entities/MissileEntity.java) are from [Team Pneumatic's Pnematicraft Repressurized](https://github.com/TeamPneumatic/pnc-repressurized), and are licensed under the GPL-3 license.
Marked sections of code inside [com.slimeist.server_mobs.items.MissileItem](src/main/java/com/slimeist/server_mobs/items/MissileItem.java) are from [Team Pneumatic's Pnematicraft Repressurized](https://github.com/TeamPneumatic/pnc-repressurized), and are licensed under the GPL-3 license.