Project MMO

Provides skills / stats / levels, that provide unique benefits!

File Details

pmmo-26.1.2-2.8.34

  • R
  • Jul 18, 2026
  • 1.79 MB
  • 64
  • 26.1.2+1
  • NeoForge

File Name

pmmo-26.1.2-2.8.34.jar

Supported Versions

  • 26.1.2
  • 26.1

Curse Maven Snippet

NeoForge

implementation "curse.maven:project-mmo-353935:8457012"

Learn more about Curse Maven

Changelog

[26.1.2-2.8.34] - 2026-07-18

Reimplemented Break_Speed perks

Since Mojang got rid of tool tiers, we had to update to use tags. So the new format matches item tags to block tags. The examples below show specifics, but here is what it looks like as a schema

"ratios": {
  "item_tag_that_tool_belongs_to" : {
    "block_tag_that_speed_should_be_applied_to": 0.000 //the speed per level      
  } 
}

old format

{
  "perk": "pmmo:break_speed",
  "pickaxe_dig": 0.005,
  "skill": "mining"
}

new format

{
  "perk": "pmmo:break_speed",
  "ratios": {
    "minecraft:pickaxes": {
      "minecraft:mineable/pickaxes": 0.005
    }
  },
  "skill": "mining"
}