Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 spigot spigot-plugin
Last synced: 12 days 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T19:15:00.000Z (8 months ago)
- Last Synced: 2024-05-13T13:50:42.351Z (8 months ago)
- Topics: minecraft, minecraft-plugin, spigot, spigot-plugin
- Language: Kotlin
- Homepage: https://mineinabyss.com
- Size: 2.32 MB
- Stars: 98
- Watchers: 8
- Forks: 27
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[![Mine in Abyss](https://user-images.githubusercontent.com/16233018/116150394-4e6b2900-a6b1-11eb-8efb-ac5542c4d8d0.png)](https://mineinabyss.com)
[![Maven](https://img.shields.io/maven-metadata/v?metadataUrl=https://repo.mineinabyss.com/releases/com/mineinabyss/mineinabyss/maven-metadata.xml)](https://repo.mineinabyss.com/#/releases/com/mineinabyss/mineinabyss)
[![Discord](https://badgen.net/discord/members/QXPCk2y)](https://discord.gg/QXPCk2y)
[![Contribute](https://shields.io/badge/Contribute-e57be5?logo=github%20sponsors&style=flat&logoColor=white)](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:")
}
```