Skip to content
Provi edited this page Feb 19, 2024 · 1 revision

Combat+ is a series of vanilla+ Minecraft mods that aims to refresh and expand the combat system. The idea is not to overhaul or rework the system entirely, but to add features that are more in line with the design philosphies of Minecraft itself and encourage player agency. There should not be a singular endgame meta, but rather a number of equally valid choices.

Combat+ Core is a compatibility layer and a library. Combat+ mods can make use of Combat+ Core's features and then access these features from other mods. For example, Dual Swords can trigger weapon and enchantment on-hit effects from Additional Armoury and Extended Enchanting.

Dependency

To add Combat+ Core to your environment, add Jitpack to your repositories block in your build.gradle file.

repositories {
  maven { url "https://jitpack.io" }
}

Then add the following to your dependencies block:

dependencies {
  modImplementation "com.github.Provismet:combatplus-core:${project.combatplus_version}"
}

The string ${project.combatplus_version} can either be replaced with a literal value (such as 1.0.0-mc1.20.4) or you can add a combatplus_version parameter to your gradle.properties.

Clone this wiki locally