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
@@ -0,0 +1,98 @@
{
"school_weaknesses": {
"spell_power:fire": [
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#spell_engine:vulnerability/weak_to_fire"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.0,
"critical_chance_bonus": 0.3,
"critical_damage_bonus": 0.0
}
}
}
],
"spell_power:frost": [
{
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#spell_engine:vulnerability/weak_to_frost"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.3,
"critical_chance_bonus": 0.0,
"critical_damage_bonus": 0.0
}
}
},
{
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#spell_engine:vulnerability/resistant_to_frost"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": -0.3,
"critical_chance_bonus": 0.0,
"critical_damage_bonus": 0.0
}
}
}
],
"spell_power:healing": [
{
"impact_type": "HEAL",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#spell_engine:mechanical"
}
],
"execute": "DENY"
}
},
{
"impact_type": "DAMAGE",
"weakness": {
"all_required": false,
"conditions": [
{
"health_percent_above": 0.0,
"health_percent_below": 1.0,
"entity_type": "#spell_engine:vulnerability/weak_to_healing"
}
],
"execute": "PASS",
"modifier": {
"power_multiplier": 0.0,
"critical_chance_bonus": 1.0,
"critical_damage_bonus": 0.0
}
}
}
]
}
}