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
+271
View File
@@ -0,0 +1,271 @@
{
"effects": {
"witcher_rpg:aard_intensity": {
"attributes": [
{
"attribute": "witcher_rpg:aard_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:axii_intensity": {
"attributes": [
{
"attribute": "witcher_rpg:axii_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:igni_intensity": {
"attributes": [
{
"attribute": "witcher_rpg:igni_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:quen_intensity": {
"attributes": [
{
"attribute": "witcher_rpg:quen_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:yrden_intensity": {
"attributes": [
{
"attribute": "witcher_rpg:yrden_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:sign_intensity": {
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:adrenaline_burst": {
"attributes": [
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:adrenaline_gain": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.025,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.025,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:aerondight_charge": {
"attributes": [
{
"attribute": "spell_power:critical_chance",
"value": 0.01,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:critical_damage",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.01,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:axii": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:axii_puppet": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:battle_trance": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:bear_school_medallion": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:quen_active": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 8.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:quen_shield": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 4.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:yrden_circle": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.1,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:yrden_glyph": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.1,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:wolf_school_medallion": {
"attributes": []
},
"witcher_rpg:azure_wrath": {
"attributes": [
{
"attribute": "spell_engine:healing_taken",
"value": -1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:iris_charge": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.025,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:lifesteal_modifier",
"value": 0.01,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:rose_of_remembrance": {
"attributes": []
},
"witcher_rpg:sunstone": {
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:yrden_griffin_master": {
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.5,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_engine:damage_taken",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:feline_injury_master": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:axii_lethargy": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:quen_explosive": {
"attributes": []
},
"witcher_rpg:quen_discharge": {
"attributes": []
},
"witcher_rpg:muscle_memory": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:strength_training": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.025,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
@@ -0,0 +1,104 @@
{
"school_weaknesses": {
"spell_power:aard": [
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#witcher_rpg:aard_vulnerable"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.3,
"critical_chance_bonus": 0.0,
"critical_damage_bonus": 0.0
}
}
}
],
"spell_power:axii": [
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#witcher_rpg:axii_vulnerable"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.3,
"critical_chance_bonus": 0.0,
"critical_damage_bonus": 0.0
}
}
}
],
"spell_power:igni": [
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#witcher_rpg:igni_vulnerable"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.0,
"critical_chance_bonus": 1.0,
"critical_damage_bonus": 0.0
}
}
}
],
"spell_power:quen": [
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#witcher_rpg:quen_vulnerable"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.3,
"critical_chance_bonus": 0.0,
"critical_damage_bonus": 0.0
}
}
}
],
"spell_power:yrden": [
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#witcher_rpg:yrden_vulnerable"
}
],
"execute": "PASS"
}
}
]
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,454 @@
{
"injectors": {
"witcher_rpg:chests/witcher_grave": {
"rolls": 0.8,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:relic_swords_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"witcher_rpg:chests/old_ruins": {
"rolls": 1.0,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:relic_swords_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:trinkets_0",
"filters_lenient": true,
"weight": 1
}
]
},
"witcher_rpg:chests/hideout_base": {
"rolls": 1.0,
"bonus_rolls": 1.0,
"entries": [
{
"id": "#witcher_rpg:trinkets_0",
"filters_lenient": true,
"weight": 3
},
{
"id": "#witcher_rpg:trinkets_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:glyphs_1",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:runestones_1",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:relic_swords_1",
"filters_lenient": true,
"weight": 2,
"enchant": {
"min_power": 1.0,
"max_power": 30.0,
"allow_treasure": true
}
},
{
"id": "#witcher_rpg:relic_swords_2",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/village/desert_herbalist": {
"rolls": 0.3,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/village/plains_herbalist": {
"rolls": 0.3,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/village/savanna_herbalist": {
"rolls": 0.3,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/village/snowy_herbalist": {
"rolls": 0.3,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/village/taiga_herbalist": {
"rolls": 0.3,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/troll/forest_troll_barrel": {
"rolls": 0.4,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:glyphs_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/troll/ice_troll_barrel": {
"rolls": 0.4,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:glyphs_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/troll/troll_barrel": {
"rolls": 0.4,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:glyphs_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_1",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:chests/ice_giant_treasure": {
"rolls": 1.0,
"bonus_rolls": 1.0,
"entries": [
{
"id": "#witcher_rpg:glyphs_2",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:runestones_2",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:trinkets_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:mastercrafted_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:grandmaster_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"tcots_witcher:entities/ice_giant": {
"rolls": 1.0,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:relic_swords_1",
"filters_lenient": true,
"weight": 1,
"enchant": {
"min_power": 1.0,
"max_power": 30.0,
"allow_treasure": true
}
}
]
},
"minecraft:chests/bastion_treasure": {
"rolls": 0.75,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:mastercrafted_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:grandmaster_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"minecraft:chests/village/village_weaponsmith": {
"rolls": 0.5,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:runestones_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"minecraft:chests/village/village_armorer": {
"rolls": 0.5,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:glyphs_0",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 2
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 1
}
]
},
"minecraft:chests/stronghold_library": {
"rolls": 0.75,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:mastercrafted_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 2
}
]
},
"minecraft:chests/woodland_mansion": {
"rolls": 0.75,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:mastercrafted_diagrams",
"filters_lenient": true,
"weight": 1
},
{
"id": "#witcher_rpg:superior_diagrams",
"filters_lenient": true,
"weight": 2
}
]
},
"minecraft:chests/pillager_outpost": {
"rolls": 0.75,
"bonus_rolls": 0.2,
"entries": [
{
"id": "#witcher_rpg:enhanced_diagrams",
"filters_lenient": true,
"weight": 1
}
]
}
},
"regex_injectors": {}
}
@@ -0,0 +1,55 @@
{
"entries": {
"minecraft:chests/village/village_weaponsmith": {
"rolls": 0.5,
"items": [
{
"itemId": "witcher_rpg:silver_ingot",
"weight": 3,
"minAmount": 1,
"maxAmount": 3
},
{
"itemId": "witcher_rpg:steel_ingot",
"weight": 3,
"minAmount": 1,
"maxAmount": 3
},
{
"itemId": "witcher_rpg:dark_iron_ingot",
"weight": 1,
"minAmount": 1,
"maxAmount": 1
},
{
"itemId": "witcher_rpg:meteorite_ingot",
"weight": 1,
"minAmount": 1,
"maxAmount": 1
}
]
},
"witcher_rpg:blocks/silver_ore": {
"rolls": 0.025,
"items": [
{
"itemId": "witcher_rpg:pure_silver",
"weight": 1,
"minAmount": 1,
"maxAmount": 1
}
]
},
"witcher_rpg:blocks/deepslate_silver_ore": {
"rolls": 0.025,
"items": [
{
"itemId": "witcher_rpg:pure_silver",
"weight": 1,
"minAmount": 1,
"maxAmount": 1
}
]
}
}
}
+603
View File
@@ -0,0 +1,603 @@
{
"entries": {
"witcher_rpg:bear_school_medallion": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "minecraft:generic.max_health",
"value": 4.0,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.12,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:cat_school_medallion": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.12,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:griffin_school_medallion": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:haste",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:wolf_school_medallion": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.12,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_aard_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:aard_intensity",
"value": 0.25,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:lesser_axii_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:axii_intensity",
"value": 0.25,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:lesser_igni_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:igni_intensity",
"value": 0.25,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:lesser_quen_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:quen_intensity",
"value": 0.25,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:lesser_yrden_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:yrden_intensity",
"value": 0.25,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:aard_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:aard_intensity",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:axii_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:axii_intensity",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:igni_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:igni_intensity",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:quen_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:quen_intensity",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:yrden_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:yrden_intensity",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:greater_aard_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:aard_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:greater_axii_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:axii_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:greater_igni_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:igni_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:greater_quen_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:quen_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:greater_yrden_glyph": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:yrden_intensity",
"value": 1.0,
"operation": "ADD_VALUE"
}
]
},
"witcher_rpg:lesser_dazhbog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:burning_chance",
"value": 0.035,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:dazhbog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:burning_chance",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_dazhbog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:burning_chance",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_chernobog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:chernobog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.03,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_chernobog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_stribog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:stagger_chance",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:stribog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:stagger_chance",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_stribog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:stagger_chance",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_svarog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:armor_piercing",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:svarog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:armor_piercing",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_svarog_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:armor_piercing",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_triglav_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:stun_chance",
"value": 0.035,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:triglav_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:stun_chance",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_triglav_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:stun_chance",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_perun_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.035,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:perun_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_perun_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:adrenaline_modifier",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_veles_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:veles_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.03,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_veles_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "witcher_rpg:sign_intensity",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_morana_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:poison_chance",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:morana_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:poison_chance",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_morana_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:poison_chance",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_zoria_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:freeze_chance",
"value": 0.035,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:zoria_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:freeze_chance",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_zoria_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:freeze_chance",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:lesser_devana_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:bleeding_chance",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:devana_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:bleeding_chance",
"value": 0.075,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:greater_devana_runestone": {
"enabled": true,
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:bleeding_chance",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"witcher_rpg:pure_silver": {
"enabled": true,
"durability": 0,
"attributes": []
},
"witcher_rpg:rose_of_remembrance": {
"enabled": true,
"durability": 0,
"attributes": []
},
"witcher_rpg:crystal_skull": {
"enabled": true,
"durability": 0,
"attributes": []
},
"witcher_rpg:sunstone": {
"enabled": true,
"durability": 0,
"attributes": []
}
}
}
+5
View File
@@ -0,0 +1,5 @@
{
"ignore_items_required_mods": false,
"adrenaline_max_amplifier": 10,
"adrenaline_max_seconds_duration": 180
}