Add new metal, wood, stone, and leaves types for various mods including BetterEnd, Natures Spirit, and Quark; enhance configuration clarity and organization across multiple files.

This commit is contained in:
Leonid Pershin
2026-05-08 10:47:28 +03:00
parent e0c966d37f
commit 05fd7ec484
204 changed files with 28319 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"effects": {
"druids:thorned": {
"attributes": [
{
"attribute": "minecraft:generic.armor",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"druids:poison_ritual": {
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
+149
View File
@@ -0,0 +1,149 @@
{
"weapons": {
"wand_nature": {
"attack_damage": 2.0,
"attack_speed": -2.4,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 5.0,
"operation": "ADD_VALUE"
}
]
},
"wand_netherite_nature": {
"attack_damage": 2.0,
"attack_speed": -2.4,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 5.5,
"operation": "ADD_VALUE"
}
]
},
"staff_nature": {
"attack_damage": 4.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 6.0,
"operation": "ADD_VALUE"
}
]
},
"staff_netherite_nature": {
"attack_damage": 4.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 7.0,
"operation": "ADD_VALUE"
}
]
},
"staff_moon": {
"attack_damage": 4.0,
"attack_speed": -3.0,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 8.0,
"operation": "ADD_VALUE"
}
]
}
},
"armor_sets": {
"druid_armor": {
"armor_toughness": 0.0,
"knockback_resistance": 0.0,
"head": {
"armor": 2,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"chest": {
"armor": 4,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"legs": {
"armor": 3,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"feet": {
"armor": 2,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
},
"netherite_druid_armor": {
"armor_toughness": 0.0,
"knockback_resistance": 0.0,
"head": {
"armor": 2,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"chest": {
"armor": 4,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"legs": {
"armor": 3,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"feet": {
"armor": 2,
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
}
+3
View File
@@ -0,0 +1,3 @@
{
"ignore_items_required_mods": false
}