Somewhat Mending brings game balance into the Mending enchantment by disabling the XP pickup repair mechanic and giving items with Mending cheaper to repair with an anvil. https://modrinth.com/mod/somewhat-mending
Find a file
slonk ac758fe01a
Some checks failed
build / build (push) Has been cancelled
make icon smaller
2025-06-29 03:40:24 +03:00
.github/workflows Initial commit 2025-06-29 03:15:42 +03:00
gradle/wrapper Initial commit 2025-06-29 03:15:42 +03:00
src/main Initial commit 2025-06-29 03:15:42 +03:00
.gitattributes Initial commit 2025-06-29 03:15:42 +03:00
.gitignore Initial commit 2025-06-29 03:15:42 +03:00
build.gradle Initial commit 2025-06-29 03:15:42 +03:00
gradle.properties Initial commit 2025-06-29 03:15:42 +03:00
gradlew Initial commit 2025-06-29 03:15:42 +03:00
gradlew.bat Initial commit 2025-06-29 03:15:42 +03:00
LICENSE Initial commit 2025-06-29 03:15:42 +03:00
README.md make icon smaller 2025-06-29 03:40:24 +03:00
settings.gradle Initial commit 2025-06-29 03:15:42 +03:00

Somewhat Mending

Anvil with an enchantment book on top

Somewhat Mending brings game balance into the Mending enchantment by disabling the XP pickup repair mechanic and giving items with Mending cheaper to repair with an anvil.

Pairs well with Anvil Never Too Expensive.

See also: Unmending (Fabric), Mended Mending (Forge)

Configuration

{
  // Experience pickup does not repair equipment
  "blockXpRepair": false,
  // Mending affects repairing with an Anvil
  "doAnvilRepairBuff": true,
  // Anvil buff mode
  // Values:
  // - LOG2 (default): Use base 2 logarithmic scale
  // - DEFAULT; Use item base repair cost
  // - MULTIPLY: Multiply repair cost by value
  // - SUBTRACT: Subtract value from repair cost
  // - CONSTANT: Use value as repair cost
  "mode": "LOG2",
  // Value for MULTIPLY mode
  "mulValue": 0.0,
  // Value for SUBTRACT mode
  "subValue": 0,
  // Value for CONSTANT mode
  "constValue": 0
}