https://github.com/mineinabyss/mineinabyss
The main plugin for Mine in Abyss, a recreation of Made in Abyss in Minecraft. Includes the curse, relics, and more.
https://github.com/mineinabyss/mineinabyss
minecraft minecraft-plugin papermc
Last synced: 7 months ago
JSON representation
The main plugin for Mine in Abyss, a recreation of Made in Abyss in Minecraft. Includes the curse, relics, and more.
- Host: GitHub
- URL: https://github.com/mineinabyss/mineinabyss
- Owner: MineInAbyss
- License: mit
- Created: 2017-12-24T18:06:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-17T21:07:46.000Z (8 months ago)
- Last Synced: 2025-04-18T11:44:46.737Z (8 months ago)
- Topics: minecraft, minecraft-plugin, papermc
- Language: Kotlin
- Homepage: https://mineinabyss.com
- Size: 2.52 MB
- Stars: 113
- Watchers: 8
- Forks: 29
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://mineinabyss.com)
[](https://repo.mineinabyss.com/#/releases/com/mineinabyss/mineinabyss)
[](https://discord.gg/QXPCk2y)
[](https://github.com/MineInAbyss/MineInAbyss/wiki/Setup-and-Contribution-Guide)
Mine In Abyss is a Paper plugin made for the Mine In Abyss Minecraft server. The server aims to recreate the world
of [Made in Abyss](https://en.wikipedia.org/wiki/Made_in_Abyss) within Minecraft. You can join
our [Discord](https://discord.gg/qWAMBSK) for more information about the server. Visit our
site [mineinabyss.com](https://mineinabyss.com) for news and our social media links.
## Features
* (WIP) Custom Item/Artifact system using [Geary ECS](https://github.com/MineInAbyss/Geary)
and [Looty](https://github.com/MineInAbyss/Looty).
* Extremely deep world using [DeeperWorld](https://github.com/MineInAbyss/DeeperWorld)
* Stacked sections automatically and seamlessly teleported betwen
* The Curse of Ascension
* Varying curse effects mimicking the curses in the manga/anime as close as possible
* Using [Idofront](https://github.com/MineInAbyss/Idofront) API
* Shares commonly used code between our projects
* Many extension functions and Kotlin specific features
* Command API (which we aren't using here yet!)
* GUIs made with [Guiy-compose](https://github.com/MineInAbyss/guiy-compose)
## Setup and contributions
Please read
our [Setup and Contribution guide](https://github.com/MineInAbyss/MineInAbyss/wiki/Setup-and-Contribution-Guide).
### Plugin dependencies
- [Our shared platform](https://github.com/MineInAbyss/Idofront/releases/latest)
- [DeeperWorld](https://github.com/MineInAbyss/DeeperWorld/releases/latest)
- [Guiy-compose](https://github.com/MineInAbyss/guiy-compose/releases/latest)
- [Geary](https://github.com/MineInAbyss/Geary-papermc/releases/latest)
#### Optional:
- [Vault](https://www.spigotmc.org/resources/vault.34315/)
- Any economy plugin to go with it, ex [EssentialsX](https://www.spigotmc.org/resources/essentialsx.9089/)
#### Recommended for development:
- [PlugMan](https://www.spigotmc.org/resources/plugmanx.88135/)
### Gradle
```groovy
repositories {
maven("https://repo.mineinabyss.com/releases")
}
dependencies {
compileOnly("com.mineinabyss:mineinabyss:")
}
```