Easy, spectacular and fun melee combat system we know from Minecraft Dungeons.
Add unique behaviour to your weapon, or just reuse a preset, using data files (aka JSON API).
🎯 Project goals
To be used by developers and modpack creators.
Assign weapon attribute to weapons individually, using data files (similar how item models are assigned), to specify their animations and behaviour.
This also known as JSON API. Read more about it at Integrate your mod section.
To be used by players (requires knowledge of JSON and Regex).
Built into Better Combat, tries to automatically assign weapon attributes to items without attribute file, based on item id.
To change assignments, edit: config/bettercombat/fallback_compatibility.json
file.
(Note: Fallback compatibility can only assign attributes to non-attributed weapons, it cannot override data file based assignments.)
⚠️ This feature does not work correctly in multiplayer, currently.
Weapon attributes can be read from ItemStack NBT. For example:
/give @p minecraft:wooden_sword{weapon_attributes:'{"parent":"bettercombat:claymore"}'} 1
You can access the client side settings via the Mod Menu.
You can access the client side settings in Main Menu > Mods > Better Combat > Config.
Fallback compatibility configuration can be found at: /config/bettercombat/fallback_compatibility.json
Use fallback compatibility configuration to add compatibility for any weapon on your server. All weapon attributes are synchronized with clients upon joining the server.
Server config can be found at: /config/bettercombat/server.json5
Server configuration is synchronized with clients upon joining the server.
The next steps describe how to add dedicated compatibility for any item.
Dependencies to resolve via gradle:
Download the latest release version of the mod with all of its dependencies, and put them into ./run/mods
director.
Alternatively, if you would like to use the JAVA API provided by Better Combat. Install it via gradle:
repositories {
maven { url 'https://api.modrinth.com/maven' }
}
dependencies {
[...]
modImplementation "maven.modrinth:better-combat:VERSION-fabric"
}
(Note: JAVA API is only needed for special integration cases.)
Please note for both Forge and Fabric, Cloth Config and playerAnimator are required as well. Please see each link on how to add these to your dev environments.
repositories {
maven { url 'https://api.modrinth.com/maven' }
}
dependencies {
[...]
implementation fg.deobf('maven.modrinth:better-combat:VERSION-forge')
}
Make sure to remove or disable all logic from your mod that is semantically conflicting with this mod:
(Note: Better Combat expects all items to be held like swords, it rotates them accordingly during animations. If you have a dagger that is facing backwards, you need to disable that, otherwise it will be facing backwards during attack animations too. Better Combat offers weapon specific poses for adjusting position and rotation of items while idling.)
Weapon attributes describe the behaviour of a weapon including: range, combos (list of attacks), animations and sounds, etc...
Assign weapon attributes to weapons of your mod, just by creating resource files. This is done similar to how you assign crafting recipes to an item. No need for any java dependency.
Weapon attributes can describe:
Each mod should provide their own resources files for compatibility (preferably within their jar file) for the following reasons:
Let's see an example where we add attributes to a custom sword named "Big Sword" from your mod:
my-mod-id
my-mod-id:big_sword
To assign weapon attributes to the Big Sword, create a new json file at the following location:
resources/data/my-mod-id/weapon_attributes/big_sword.json
The content of this json file should be the following:
Presets are out of the box collection of weapon attributes bundled with this mod, covering the common weapon types.
A fitting preset for a big two handed sword is the claymore
from Better Combat, its identifier is: bettercombat:claymore
. To use this preset add the following content to your JSON file:
{
"parent": "bettercombat:claymore"
}
You can check out all available presets here.
You can check out how presets are used to add compatibility for Vanilla weapons here.
You can make and reference your own presets the same way.
If you want unique behaviour for your weapon, you can create attributes from scratch.
The content of your weapon attributes JSON file is parsed into an AttributesContainer object. (Check out the inline java documentation of AttributesContainer for details.)
When no parent is specified, the value for "attributes"
key must be a full json object that can be parsed into WeaponAttributes object.
{
"attributes": { ... }
}
Check out the existing weapon presets to see practical examples of building from scratch.
Check out the available attack animations, bundled with Better Combat.
If you need more details, the java documentation of WeaponAttributes covers all the specifics.
When "parent"
and "attributes"
are both specified, you can customize attributes by partially (or fully) overriding the properties. Make sure the inheritance results in fully parsable WeaponAttributes object.
(Attributes are merged in parent -> child order. So parent properties are copied and overridden with child. The chain of inheritance can be any length.)
{
"parent": "bettercombat:claymore",
"attributes": {
"attack_range": 3.5
"attacks": [
{
"angle": 100
},
{
"damageMultiplier": 0.1
},
{
"damageMultiplier": 0.3,
"angle" = 90
}
]
}
}
You can create and use your own presets:
{
"parent": "my-mod-id:longsword",
"attributes": { ... }
}
Let's say you want to create a custom attack animation with the following name: big_sword_slash
Create keyframe animations using our Blender model, that includes an export script creating animation files.
Check out the Animation guide for details.
Add the created animation to the following location
resources/assets/my-mod-id/attack_animations/big_sword_slash.json
You can use your custom animation by referencing it, following the resource identifier pattern.
Make sure to specify a fitting upswing
value next to your animation (to make it look and feel nice to use).
{
// ...
"attributes": {
// ...
"attacks": [
{
"animation": "my-mod-id:big_sword_slash",
"upswing": 0.5
},
// ...
]
}
}
You can create datapacks to add dedicated compatibility for any weapon.
⚠️ Caution! Some mods may have conflicting features, that causes incorrect appearance or behaviour of weapons, even if compatibility is added. In this case mod developers need to resolve incompatibilities. (Check mod compatibility section for potential source of problems.)
Steps:
For example, adding compatibility for an item with id fruits:banana_sword
from Fruits mod, to make it act like a claymore
, would look like the following.
File path:
DataPackName/data/fruits/weapon_attributes/banana_sword.json
Content:
{
"parent": "bettercombat:claymore"
}
This mod has been created in the spirit of maximal compatibility. However since some core mechanics are overridden, mods trying to change the same thing will never be compatible.
Mods with one or more of these features are considered as a semantic incompatibility
Before committing yourself to implementing any change for the project, it is strongly suggested to check with us on Discord. The project has a strong vision for what technical solutions are accepted, and what features belong to the scope of the project.
Avoid creating pull requests with the following content: