All Projects → Ladysnake → Requiem

Ladysnake / Requiem

Licence: Unknown, GPL-2.0 licenses found Licenses found Unknown LICENSE-ART GPL-2.0 LICENSE-CODE
Revamps Minecraft's vanilla death experience and adds various related mechanics.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Requiem

LibBlockAttributes
Library mod for fabric that adds items and attribute API's for blocks.
Stars: ✭ 43 (-51.14%)
Mutual labels:  minecraft-mod, fabricmc
kibe
A miscellaneous mod for Minecraft that adds a bunch of random, and mostly unoriginal things.
Stars: ✭ 42 (-52.27%)
Mutual labels:  minecraft-mod, fabricmc
EssentialClient
EssentialClient is a client side mod originally forked from Carpet Client for 1.15.2 that implements new client side features
Stars: ✭ 67 (-23.86%)
Mutual labels:  minecraft-mod, fabricmc
mouse-wheelie
"Small" Minecraft mod focusing on inventory utilities, like scrolling, sorting and auto refilling of items
Stars: ✭ 58 (-34.09%)
Mutual labels:  minecraft-mod, fabricmc
Adorn
A decoration mod for Minecraft 1.14+.
Stars: ✭ 81 (-7.95%)
Mutual labels:  minecraft-mod, fabricmc
Fabric-Autoswitch
Automagical switching of tools to the best one for the job, for Minecraft
Stars: ✭ 17 (-80.68%)
Mutual labels:  minecraft-mod, fabricmc
LambdaBetterGrass
A better grass mod for Minecraft.
Stars: ✭ 132 (+50%)
Mutual labels:  minecraft-mod, quiltmc
Rayon
Rigid body simulation for Minecraft
Stars: ✭ 25 (-71.59%)
Mutual labels:  minecraft-mod, fabricmc
ferium
Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and GitHub Releases
Stars: ✭ 657 (+646.59%)
Mutual labels:  minecraft-mod, curseforge
ScreenshotToClipboard
Screenshots taken are copied to the clipboard.
Stars: ✭ 28 (-68.18%)
Mutual labels:  minecraft-mod, fabricmc
the-hallow
Fabric Community mod for Hacktoberfest!
Stars: ✭ 14 (-84.09%)
Mutual labels:  minecraft-mod, fabricmc
AurorasDecorations
Decorations-focused Quilt mod.
Stars: ✭ 49 (-44.32%)
Mutual labels:  minecraft-mod, quiltmc
serilum-mc-mods
A hub for source code, issues and content suggestions for Serilum's Minecraft mods on CurseForge.
Stars: ✭ 66 (-25%)
Mutual labels:  minecraft-mod, fabricmc
Terra
Voxel world generation modding platform
Stars: ✭ 320 (+263.64%)
Mutual labels:  minecraft-mod, fabricmc
BorderlessMining
A windowed borderless (fullscreen) mod for 1.15.2 and newer versions of Minecraft
Stars: ✭ 34 (-61.36%)
Mutual labels:  minecraft-mod, fabricmc
CullLeaves
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
Stars: ✭ 55 (-37.5%)
Mutual labels:  fabricmc, quiltmc
Mc2Discord
A simple minecraft mod, server side only, to link the chat with your Discord server
Stars: ✭ 18 (-79.55%)
Mutual labels:  minecraft-mod, curseforge
refinedstorage2
Refined Storage is a mass storage mod for Minecraft that offers the player a network-based storage system, allowing them to store items and fluids on a massively expandable device network.
Stars: ✭ 35 (-60.23%)
Mutual labels:  minecraft-mod, fabricmc
ShulkerBoxTooltip
What's in my shulker box?
Stars: ✭ 63 (-28.41%)
Mutual labels:  minecraft-mod, fabricmc
pastelwonderland
A mod that uses pastel colors and feels to provide you with a beautiful, yet chaotic, dimension.
Stars: ✭ 17 (-80.68%)
Mutual labels:  minecraft-mod, fabricmc

Requiem

Download

Requiem is a Minecraft (Java Edition) mod aiming at removing the continuity break resulting from death, as well as adding new mechanics centered around soul dissociation and body possession.

More information is available on the Ladysnake Website: https://ladysnake.github.io/wiki/requiem.

Installation

For players

  • Running the mod will require Fabric and Fabric API. For more information on how to use Fabric, please visit the official website. To download Fabric API, please visit the official CurseForge page.
  • If Fabric is installed on your Minecraft Java copy, you can download Requiem from CurseForge, Github Releases, or Modrinth. After that, copy the jar file obtained, as well as the download Fabric API jar file, in the mods folder located in you Minecraft installation or Fabric Server folder. Please make sure to have the latest version, as we will not accept issues regarding older versions.
  • Once the previous steps have been completed, boot up your game, and upon your first death, Requiem will asks you whether you'd like to enable the modified death system or not through an interactive dialogue. Be careful, because after choosing, the dialogue won't be prompted a second time, and you will have to use a special item to change that.

For developers

If you wish to develop compatibility features for Requiem, binaries are available both on the Ladysnake artifactory. You can get it in your workspace with just a few lines in your Gradle buildscript (build.gradle file) :

repositories {
    maven {
        name = 'Ladysnake Mods'
        url = 'https://ladysnake.jfrog.io/artifactory/mods'
        content {
            includeGroup 'io.github.ladysnake'
            includeGroupByRegex '(dev|io\\.github)\\.onyxstudios.*'
            includeGroupByRegex 'dev\\.emi.*'
        }
    }
    maven {
        name = 'Nexus OSS Repository'
        url = 'https://oss.sonatype.org/content/repositories/snapshots'
    }
    maven {
        url = 'https://maven.jamieswhiteshirt.com/libs-release/'
        content {
            includeGroup 'com.jamieswhiteshirt'
        }
    }
}

dependencies {
    modImplementation "io.github.ladysnake:requiem-api:${requiem_version}"
    modRuntimeOnly "io.github.ladysnake:requiem-core:${requiem_version}"
    modRuntimeOnly "io.github.ladysnake:requiem:${requiem_version}"
}

You can then add the mod version to your gradle.properties file :

# Requiem mod
requiem_version = 2.x.y
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].