AugmentedHardcore is a Spigot plugin that enhances Minecraft's hardcore mode with lives, death bans, revives, and progression mechanics.
This project uses Maven and requires Java 8 or newer. To build the plugin run:
mvn packageThe shaded jar will be created in target/. Copy the jar to your server's plugins directory and restart the server.
On first run the plugin will generate its configuration files. Adjust config.yml and messages.yml to customize behaviour.
Handy commands include:
/augmentedhardcore– show help and plugin information/lives– view your remaining lives/revive <player>– revive a death‑banned player
See the in‑game help for the complete command list and permissions.
Contributions are welcome! If you would like to help:
- Fork the repository and create a feature branch.
- Make your changes following the existing style.
- Run
mvn testto make sure the project builds. - Open a pull request with a clear description of your work.
Please open an issue to discuss major changes before starting.
This repository contains the AugmentedHardcore plugin. Unit tests are located in src/test/java and can be executed with Maven.
mvn testThe tests cover core components such as the Database and PlayerData classes. They rely on Mockito to mock Bukkit APIs where necessary.