Compare commits

...
7 Commits
59 changed files with 2579 additions and 174 deletions
+3 -1
View File
@@ -18,6 +18,7 @@
!/PupaMLupa.json
!/TLauncherAdditional.json
!/.curseclient
!/pull_and_tl.bat
!/config/**
!/kubejs/**
@@ -68,4 +69,5 @@
shaderpacks/ComplementaryReimagined_r5.7.1 + EuphoriaPatches_1.8.6.txt
config/ars_nouveau/search_index/
config/ars_nouveau/doc_data.json
config/jei/world/server/TailServer_66b67433/lookupHistory.json
config/jei/world/server/*/lookupHistory.json
config/jei/world/server/TailServer_66b67433/bookmarks.json
@@ -0,0 +1,30 @@
#Change these settings to customize the server-side behavior of the mod.
["Travel Settings"]
#How to handle entity travel permissions:
#TAG_ONLY - Use only the 'create_hypertube:traveller_entities' tag from datapacks
#WHITELIST - Only entities in the whitelist can travel (ignores tag)
#BLACKLIST - All entities can travel except those in the blacklist
#TAG_WITH_BLACKLIST - Use tag but exclude entities in the blacklist
#Allowed Values: TAG_ONLY, WHITELIST, BLACKLIST, TAG_WITH_BLACKLIST
entityListMode = "BLACKLIST"
#Entities that CAN travel (only used when mode is WHITELIST).
#Use entity registry names like 'minecraft:villager' or 'create:package'
entityWhitelist = ["minecraft:player", "minecraft:villager", "minecraft:wandering_trader", "create:package"]
#Entities that CANNOT travel (used in BLACKLIST and TAG_WITH_BLACKLIST modes).
#Use entity registry names like 'minecraft:creeper' or 'minecraft:wither'
entityBlacklist = ["minecraft:wither", "minecraft:ender_dragon"]
#Multiplier for the speed of the tubes. Default is 1.0, which is normal speed. (THIS IS HIGHLY EXPERIMENTAL)
# Default: 1.0
# Range: 0.5 ~ 99.0
speedMultiplier = 1.0
#Stress Settings
["Stress Settings"]
#Stress impact of the Hyper Entrance block.
# Default: 4.0
# Range: 0.0 ~ 100.0
entranceStressImpact = 4.0
#Stress impact of the Hyper Accelerator block.
# Default: 4.0
# Range: 0.0 ~ 100.0
acceleratorStressImpact = 4.0
+125
View File
@@ -0,0 +1,125 @@
#Responsible for how much energy is generated per 1 stress unit in a tick
#Default value is supposed to be compatible with default configuration of Create: Crafts and Additions
# Default: 0.029296875
# Range: 0.0 ~ 1.7976931348623157E308
suToEnergy = 0.029296875
#How many coils can the carbon brushes collect energy from
# Default: 8
# Range: > 0
maxCoils = 8
#How many reactor rods can a fuel inserter or a heat vent have in a single direction
# Default: 32
# Range: > 0
maxRodsInDirection = 32
#Multiplier of wire conductivity
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
conductivityMultiplier = 1.0
#Maximum depth of network pathfinding
# Default: 24
# Range: > 1
maxPathfindingDepth = 24
#Multiplier of energising speed
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
energiserSpeedMultiplier = 1.0
#Multiplier for the temperature at which components overheat. Set to -1 to disable overheating.
# Default: 1.0
# Range: -1.0 ~ 1.7976931348623157E308
overheatingMultiplier = 1.0
#Multiplier for how much heat pipes obtain from passive heat sources like Lava or even Boilers.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
passiveHeatSourceMultiplier = 1.0
#How much heat do pipes lose per second.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
passivePipeHeatLoss = 1.0
#Multiplier for how much heat a boiler needs.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
boilerRequiredHeatMultiplier = 1.0
#How much heat per tick a nuclear reactor rod generate.
# Default: 30.0
# Range: 0.0 ~ 1.7976931348623157E308
ReactorRodHeat = 30.0
#How much heat per tick a nuclear reactor rod loses above the 16000*overheatingMultiplier.
# Default: 25.0
# Range: 0.0 ~ 1.7976931348623157E308
ReactorRodHeatLoss = 25.0
#Multiplier for how much heat solar panels output.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
solarPanelHeatMultiplier = 1.0
#Maximum wire length
# Default: 16
# Range: > 1
maxWireLength = 16
[Motors]
#Maximum motor SU multiplier
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
motorSuMultiplier = 1.0
#Internal energy capacity of a basic motor
# Default: 16000
# Range: > 1
basicMotorCapacity = 16000
#Internal energy capacity of an advanced motor
# Default: 64000
# Range: > 1
advancedMotorCapacity = 64000
#Internal energy capacity of a reinforced motor
# Default: 128000
# Range: > 1
reinforcedMotorCapacity = 128000
#Top Speed of a basic motor
# Default: 128.0
# Range: 1.0 ~ 1.7976931348623157E308
basicMotorSpeed = 128.0
#Top Speed of an advanced motor
# Default: 256.0
# Range: 1.0 ~ 1.7976931348623157E308
advancedMotorSpeed = 256.0
#Top Speed of a reinforced motor
# Default: 256.0
# Range: 1.0 ~ 1.7976931348623157E308
reinforcedMotorSpeed = 256.0
#Generated SU of a basic motor
# Default: 512.0
# Range: 1.0 ~ 1.7976931348623157E308
basicMotorStress = 512.0
#Generated SU of an advanced motor
# Default: 2048.0
# Range: 1.0 ~ 1.7976931348623157E308
advancedMotorStress = 2048.0
#Generated SU of a reinforced motor
# Default: 8192.0
# Range: 1.0 ~ 1.7976931348623157E308
reinforcedMotorStress = 8192.0
["Motor Extensions"]
#Power Multiplier of a basic motor extension
# Default: 2.0
# Range: 1.0 ~ 1.7976931348623157E308
basicMotorExtensionMultiplier = 2.0
#Power Multiplier of a basic motor extension
# Default: 8.0
# Range: 1.0 ~ 1.7976931348623157E308
advancedMotorExtensionMultiplier = 8.0
#Extra energy capacity of a basic motor extension
# Default: 64000
# Range: > 1
basicMotorExtensionExtraCapacity = 64000
#Extra energy capacity of an advanced motor extension
# Default: 256000
# Range: > 1
advancedMotorExtensionExtraCapacity = 256000
#Basic motor extension scroll step
# Default: 1
# Range: > 1
basicMotorExtensionScrollStep = 1
#Advanced motor extension scroll step
# Default: 8
# Range: > 1
advancedMotorExtensionScrollStep = 8
+7
View File
@@ -0,0 +1,7 @@
["cheat mode"]
#Enable the cheat mode for players who have an operator status (/op).
enableCheatModeForOp = true
#Enable the cheat mode for players who are in the creative mode.
enableCheatModeForCreative = true
#Enable the cheat mode for players who can use the "/give" command.
enableCheatModeForGive = false
+28
View File
@@ -0,0 +1,28 @@
{
"effects": {
"lne_archers:rangers_focus": {
"attributes": [
{
"attribute": "ranged_weapon:damage",
"value": 0.5,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:pull_time",
"value": -0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:velocity",
"value": 0.5,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.5,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
+3
View File
@@ -0,0 +1,3 @@
{
"disable_special_lne_weapons": false
}
+13
View File
@@ -0,0 +1,13 @@
{
"effects": {
"lne_paladins:sirens_song": {
"attributes": []
},
"lne_paladins:holy_weapon": {
"attributes": []
},
"lne_paladins:holy_prevention": {
"attributes": []
}
}
}
+6
View File
@@ -0,0 +1,6 @@
{
"disable_special_lne_weapons": false,
"sirens_staff_tears_debuff_chance": 0.15,
"sirens_staff_song_chance": 0.1,
"sirens_staff_song_duration": 2
}
+13
View File
@@ -0,0 +1,13 @@
{
"effects": {
"lne_rogues:second_wind": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
}
}
}
+5
View File
@@ -0,0 +1,5 @@
{
"disable_special_lne_weapons": false,
"second_wind_missing_health_heal_min_range": 0.1,
"second_wind_missing_health_heal_max_range": 0.35
}
+3
View File
@@ -0,0 +1,3 @@
{
"effects": {}
}
+5
View File
@@ -0,0 +1,5 @@
{
"disable_special_lne_weapons": false,
"elemental_evoker_default_spell_power": 6.0,
"custom_illager_variants_spawn_in_raids": true
}
+278
View File
@@ -0,0 +1,278 @@
{
"effects": {
"more_relics:lesser_rage_power": {
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:lesser_air_water": {
"attributes": [
{
"attribute": "spell_power:air",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:water",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:lesser_earth_nature": {
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:nature",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_air_power": {
"attributes": [
{
"attribute": "spell_power:air",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_earth_power": {
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_water_power": {
"attributes": [
{
"attribute": "spell_power:water",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_nature_power": {
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_rage_power": {
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_lifesteal_power": {
"attributes": [
{
"attribute": "more_rpg_classes:lifesteal_modifier",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:spell_vampire",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_rage_power": {
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_engine:damage_taken",
"value": -0.65,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_frozen_heart": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_liandrys_torment": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_madreds_bloodrazor": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_sunfire_cape": {
"attributes": []
},
"more_relics:superior_zhonyas_hourglass": {
"attributes": [
{
"attribute": "minecraft:generic.knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.explosion_knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
}
]
},
"more_relics:superior_mejais_soulstealer": {
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:fire",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:frost",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:lightning",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:soul",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:water",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:air",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:earth",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:nature",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:sign",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:aard",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:axii",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:igni",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:quen",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:yrden",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:superior_shurelyas_battlesong": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.75,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:superior_mikaels_blessing": {
"attributes": []
},
"more_relics:superior_guardian_angel": {
"attributes": [
{
"attribute": "minecraft:generic.knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.explosion_knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
}
]
}
}
}
+129
View File
@@ -0,0 +1,129 @@
{
"entries": {
"more_relics:jewel_figurine_malachite": {
"durability": 0,
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:nature",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:jewel_figurine_aquamarine": {
"durability": 0,
"attributes": [
{
"attribute": "spell_power:air",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:water",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:jewel_figurine_chain": {
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.025,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:lesser_proc_air_water": {
"durability": 0,
"attributes": []
},
"more_relics:lesser_proc_earth_nature": {
"durability": 0,
"attributes": []
},
"more_relics:lesser_use_rage": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_air_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_earth_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_water_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_nature_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_proc_rage": {
"durability": 0,
"attributes": []
},
"more_relics:medium_proc_lifesteal": {
"durability": 0,
"attributes": []
},
"more_relics:greater_frozen_heart": {
"durability": 0,
"attributes": []
},
"more_relics:greater_proc_rage": {
"durability": 0,
"attributes": []
},
"more_relics:greater_kircheis_shard": {
"durability": 0,
"attributes": []
},
"more_relics:greater_madreds_bloodrazor": {
"durability": 0,
"attributes": []
},
"more_relics:greater_liandrys_torment": {
"durability": 0,
"attributes": []
},
"more_relics:greater_sunfire_cape": {
"durability": 0,
"attributes": []
},
"more_relics:superior_mejais_soulstealer": {
"durability": 0,
"attributes": []
},
"more_relics:superior_zhonyas_hourglass": {
"durability": 0,
"attributes": []
},
"more_relics:superior_shurelyas_battlesong": {
"durability": 0,
"attributes": []
},
"more_relics:superior_mikaels_blessing": {
"durability": 0,
"attributes": []
},
"more_relics:superior_guardian_angel": {
"durability": 0,
"attributes": []
}
}
}
@@ -0,0 +1,396 @@
{
"effects": {
"mrpgc_skill_tree:impetus": {
"attributes": [
{
"attribute": "spell_power:haste",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:eye_of_the_storm": {
"attributes": []
},
"mrpgc_skill_tree:tailwind": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:air_bubble": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:earth_bender": {
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:obsidian_skin": {
"attributes": []
},
"mrpgc_skill_tree:dripstone_obstacles": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:concussion": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:damage",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:generic",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:difficult_terrain": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:seismic_entry": {
"attributes": []
},
"mrpgc_skill_tree:stone_heart": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:earthen_blessing": {
"attributes": [
{
"attribute": "minecraft:generic.armor",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:persistent_bubbles": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:hydro_boost": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.35,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:hydration": {
"attributes": []
},
"mrpgc_skill_tree:splashdown": {
"attributes": []
},
"mrpgc_skill_tree:calming_flow": {
"attributes": []
},
"mrpgc_skill_tree:torrent": {
"attributes": [
{
"attribute": "spell_power:water",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:critical_chance",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:haste",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:blind_with_rage": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": -0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:bloodflow": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:reckless_rage": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:spinning_slash": {
"attributes": []
},
"mrpgc_skill_tree:burst_of_aggression": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:ragnarok": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:tenacity",
"value": 1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:undying_rage": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": -1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:pumped_up": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:force_release": {
"attributes": [
{
"attribute": "spell_power:haste",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:critical_chance",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:flying_fists": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:surys_tenacity": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:tenacity",
"value": 1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:surys_grace": {
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:haste",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:leaping_swiftness": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:smoke_bomb": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:camouflaged": {
"attributes": [
{
"attribute": "spell_engine:evasion_chance",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:shadows_refuge": {
"attributes": []
},
"mrpgc_skill_tree:hunting_instincts": {
"attributes": [
{
"attribute": "spell_power:frost",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:winters_cloak": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:hunting_fever": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:haste",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:terrain_mastery": {
"attributes": [
{
"attribute": "more_rpg_classes:tenacity",
"value": 1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:tower_protector": {
"attributes": [
{
"attribute": "minecraft:generic.armor",
"value": 0.5,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.knockback_resistance",
"value": 0.2,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:last_stand": {
"attributes": [
{
"attribute": "ranged_weapon:haste",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.scale",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_engine:damage_taken",
"value": -0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
@@ -0,0 +1,3 @@
{
"disable_mrpgc_skilltree_changes": false
}
+174 -151
View File
@@ -31,13 +31,13 @@
],
"rpg_series:loot_tier/tier_4_armors": [],
"rpg_series:loot_tier/tier_5_armors": [
"witcher_rpg:grandmaster_diagram",
"witcher_rpg:dimeritium_ingot",
"armory_rpgs:epic_armor_upgrade",
"armory_rpgs:conqueror_upgrade_crystal",
"armory_rpgs:vanquisher_upgrade_crystal",
"armory_rpgs:redeemer_upgrade_crystal",
"armory_rpgs:champion_upgrade_crystal",
"witcher_rpg:grandmaster_diagram",
"witcher_rpg:dimeritium_ingot",
"more_rpg_classes:ascetic_upgrade_crystal",
"more_rpg_classes:warden_upgrade_crystal",
"more_rpg_classes:ravager_upgrade_crystal",
@@ -45,6 +45,30 @@
"more_rpg_classes:virtuoso_upgrade_crystal"
],
"rpg_series:loot_tier/tier_3_armors": [
"rogues:netherite_assassin_armor_head",
"rogues:netherite_assassin_armor_chest",
"rogues:netherite_assassin_armor_legs",
"rogues:netherite_assassin_armor_feet",
"rogues:netherite_berserker_armor_head",
"rogues:netherite_berserker_armor_chest",
"rogues:netherite_berserker_armor_legs",
"rogues:netherite_berserker_armor_feet",
"wizards:netherite_arcane_robe_head",
"wizards:netherite_arcane_robe_chest",
"wizards:netherite_arcane_robe_legs",
"wizards:netherite_arcane_robe_feet",
"wizards:netherite_fire_robe_head",
"wizards:netherite_fire_robe_chest",
"wizards:netherite_fire_robe_legs",
"wizards:netherite_fire_robe_feet",
"wizards:netherite_frost_robe_head",
"wizards:netherite_frost_robe_chest",
"wizards:netherite_frost_robe_legs",
"wizards:netherite_frost_robe_feet",
"artificers:artillerist_netherite_head",
"artificers:artillerist_netherite_chest",
"artificers:artillerist_netherite_legs",
"artificers:artillerist_netherite_feet",
"bards_rpg:netherite_troubadour_garb_head",
"bards_rpg:netherite_troubadour_garb_chest",
"bards_rpg:netherite_troubadour_garb_legs",
@@ -69,14 +93,6 @@
"forcemaster_rpg:aken_chest",
"forcemaster_rpg:aken_legs",
"forcemaster_rpg:aken_feet",
"rogues:netherite_assassin_armor_head",
"rogues:netherite_assassin_armor_chest",
"rogues:netherite_assassin_armor_legs",
"rogues:netherite_assassin_armor_feet",
"rogues:netherite_berserker_armor_head",
"rogues:netherite_berserker_armor_chest",
"rogues:netherite_berserker_armor_legs",
"rogues:netherite_berserker_armor_feet",
"elemental_wizards_rpg:netherite_kelp_head",
"elemental_wizards_rpg:netherite_kelp_chest",
"elemental_wizards_rpg:netherite_kelp_legs",
@@ -89,22 +105,6 @@
"elemental_wizards_rpg:netherite_wind_chest",
"elemental_wizards_rpg:netherite_wind_legs",
"elemental_wizards_rpg:netherite_wind_feet",
"wizards:netherite_arcane_robe_head",
"wizards:netherite_arcane_robe_chest",
"wizards:netherite_arcane_robe_legs",
"wizards:netherite_arcane_robe_feet",
"wizards:netherite_fire_robe_head",
"wizards:netherite_fire_robe_chest",
"wizards:netherite_fire_robe_legs",
"wizards:netherite_fire_robe_feet",
"wizards:netherite_frost_robe_head",
"wizards:netherite_frost_robe_chest",
"wizards:netherite_frost_robe_legs",
"wizards:netherite_frost_robe_feet",
"artificers:artillerist_netherite_head",
"artificers:artillerist_netherite_chest",
"artificers:artillerist_netherite_legs",
"artificers:artillerist_netherite_feet",
"archers_expansion:netherite_tundra_hunter_head",
"archers_expansion:netherite_tundra_hunter_chest",
"archers_expansion:netherite_tundra_hunter_legs",
@@ -167,6 +167,22 @@
"witcher_rpg:greater_devana_runestone"
],
"rpg_series:loot_tier/tier_1_armors": [
"rogues:rogue_armor_head",
"rogues:rogue_armor_chest",
"rogues:rogue_armor_legs",
"rogues:rogue_armor_feet",
"rogues:warrior_armor_head",
"rogues:warrior_armor_chest",
"rogues:warrior_armor_legs",
"rogues:warrior_armor_feet",
"wizards:wizard_robe_head",
"wizards:wizard_robe_chest",
"wizards:wizard_robe_legs",
"wizards:wizard_robe_feet",
"artificers:peasant_head",
"artificers:peasant_chest",
"artificers:peasant_legs",
"artificers:peasant_feet",
"witcher_rpg:witcher_head",
"witcher_rpg:witcher_chest",
"witcher_rpg:witcher_legs",
@@ -191,32 +207,23 @@
"forcemaster_rpg:oriene_chest",
"forcemaster_rpg:oriene_legs",
"forcemaster_rpg:oriene_feet",
"rogues:rogue_armor_head",
"rogues:rogue_armor_chest",
"rogues:rogue_armor_legs",
"rogues:rogue_armor_feet",
"rogues:warrior_armor_head",
"rogues:warrior_armor_chest",
"rogues:warrior_armor_legs",
"rogues:warrior_armor_feet",
"elemental_wizards_rpg:elemental_head",
"elemental_wizards_rpg:elemental_chest",
"elemental_wizards_rpg:elemental_legs",
"elemental_wizards_rpg:elemental_feet",
"wizards:wizard_robe_head",
"wizards:wizard_robe_chest",
"wizards:wizard_robe_legs",
"wizards:wizard_robe_feet",
"artificers:peasant_head",
"artificers:peasant_chest",
"artificers:peasant_legs",
"artificers:peasant_feet",
"archers:archer_armor_head",
"archers:archer_armor_chest",
"archers:archer_armor_legs",
"archers:archer_armor_feet"
],
"rpg_series:loot_tier/tier_1_weapons": [
"rogues:iron_dagger",
"rogues:iron_sickle",
"rogues:iron_double_axe",
"rogues:iron_glaive",
"wizards:staff_wizard",
"artificers:iron_pike",
"artificers:flintlock",
"witcher_rpg:iron_witcher_sword",
"witcher_rpg:steel_witcher_sword",
"witcher_rpg:silver_witcher_sword",
@@ -231,14 +238,7 @@
"paladins:holy_staff",
"paladins:iron_kite_shield",
"forcemaster_rpg:iron_knuckle",
"rogues:iron_dagger",
"rogues:iron_sickle",
"rogues:iron_double_axe",
"rogues:iron_glaive",
"elemental_wizards_rpg:staff_elemental",
"wizards:staff_wizard",
"artificers:iron_pike",
"artificers:flintlock",
"archers:iron_spear",
"archers:composite_longbow"
],
@@ -254,17 +254,17 @@
"arsenal:unique_longbow_1",
"arsenal:unique_longbow_2",
"arsenal:unique_longbow_sw",
"artificers:repeating_crossbow",
"artificers:netherite_repeating_crossbow",
"artificers:flintlock",
"artificers:netherite_flintlock",
"artificers:diamond_flintlock",
"bards_rpg:harp_crossbow",
"bards_rpg:diamond_harp_crossbow",
"bards_rpg:netherite_harp_crossbow",
"bards_rpg:aether_harp_crossbow",
"bards_rpg:unique_harp_crossbow_0",
"bards_rpg:unique_harp_crossbow_1",
"artificers:repeating_crossbow",
"artificers:netherite_repeating_crossbow",
"artificers:flintlock",
"artificers:netherite_flintlock",
"artificers:diamond_flintlock",
"archers:rapid_crossbow",
"archers:netherite_rapid_crossbow",
"archers:aether_rapid_crossbow",
@@ -278,6 +278,30 @@
"arsenal:unique_heavy_crossbow_sw"
],
"rpg_series:loot_tier/tier_2_armors": [
"rogues:assassin_armor_head",
"rogues:assassin_armor_chest",
"rogues:assassin_armor_legs",
"rogues:assassin_armor_feet",
"rogues:berserker_armor_head",
"rogues:berserker_armor_chest",
"rogues:berserker_armor_legs",
"rogues:berserker_armor_feet",
"wizards:arcane_robe_head",
"wizards:arcane_robe_chest",
"wizards:arcane_robe_legs",
"wizards:arcane_robe_feet",
"wizards:fire_robe_head",
"wizards:fire_robe_chest",
"wizards:fire_robe_legs",
"wizards:fire_robe_feet",
"wizards:frost_robe_head",
"wizards:frost_robe_chest",
"wizards:frost_robe_legs",
"wizards:frost_robe_feet",
"artificers:artillerist_head",
"artificers:artillerist_chest",
"artificers:artillerist_legs",
"artificers:artillerist_feet",
"bards_rpg:troubadour_garb_head",
"bards_rpg:troubadour_garb_chest",
"bards_rpg:troubadour_garb_legs",
@@ -302,14 +326,6 @@
"forcemaster_rpg:phasleb_chest",
"forcemaster_rpg:phasleb_legs",
"forcemaster_rpg:phasleb_feet",
"rogues:assassin_armor_head",
"rogues:assassin_armor_chest",
"rogues:assassin_armor_legs",
"rogues:assassin_armor_feet",
"rogues:berserker_armor_head",
"rogues:berserker_armor_chest",
"rogues:berserker_armor_legs",
"rogues:berserker_armor_feet",
"elemental_wizards_rpg:kelp_head",
"elemental_wizards_rpg:kelp_chest",
"elemental_wizards_rpg:kelp_legs",
@@ -322,22 +338,6 @@
"elemental_wizards_rpg:wind_chest",
"elemental_wizards_rpg:wind_legs",
"elemental_wizards_rpg:wind_feet",
"wizards:arcane_robe_head",
"wizards:arcane_robe_chest",
"wizards:arcane_robe_legs",
"wizards:arcane_robe_feet",
"wizards:fire_robe_head",
"wizards:fire_robe_chest",
"wizards:fire_robe_legs",
"wizards:fire_robe_feet",
"wizards:frost_robe_head",
"wizards:frost_robe_chest",
"wizards:frost_robe_legs",
"wizards:frost_robe_feet",
"artificers:artillerist_head",
"artificers:artillerist_chest",
"artificers:artillerist_legs",
"artificers:artillerist_feet",
"archers_expansion:tundra_hunter_head",
"archers_expansion:tundra_hunter_chest",
"archers_expansion:tundra_hunter_legs",
@@ -356,6 +356,10 @@
"archers:ranger_armor_feet"
],
"rpg_series:loot_tier/tier_0_weapons": [
"rogues:flint_dagger",
"rogues:stone_double_axe",
"wizards:wand_novice",
"artificers:stone_pike",
"berserker_rpg:flint_berserker_axe",
"berserker_rpg:stone_berserker_axe",
"paladins:stone_claymore",
@@ -364,13 +368,9 @@
"paladins:acolyte_wand",
"forcemaster_rpg:wooden_knuckle",
"forcemaster_rpg:stone_knuckle",
"rogues:flint_dagger",
"rogues:stone_double_axe",
"elemental_wizards_rpg:wand_kelp",
"elemental_wizards_rpg:wand_clay",
"elemental_wizards_rpg:wand_feather",
"wizards:wand_novice",
"artificers:stone_pike",
"archers:flint_spear"
],
"rpg_series:archetype/defense_weapon": [
@@ -437,9 +437,6 @@
"jewelry:unique_dex_ring"
],
"rpg_series:loot_tier/tier_3_accessories": [
"extraspellattributes:netheritediamondring",
"extraspellattributes:netheritediamondamulet",
"extraspellattributes:undyingsoul",
"additional_rpg_jewelry:netherite_malachite_ring",
"additional_rpg_jewelry:netherite_malachite_necklace",
"additional_rpg_jewelry:netherite_aquamarine_ring",
@@ -461,7 +458,10 @@
"jewelry:netherite_ruby_ring",
"jewelry:netherite_ruby_necklace",
"jewelry:netherite_topaz_necklace",
"jewelry:netherite_sapphire_ring"
"jewelry:netherite_sapphire_ring",
"extraspellattributes:netheritediamondring",
"extraspellattributes:netheritediamondamulet",
"extraspellattributes:undyingsoul"
],
"rpg_series:archetype/melee_damage_weapon": [
"berserker_rpg:flint_berserker_axe",
@@ -579,6 +579,16 @@
"forcemaster_rpg:aether_knuckle",
"forcemaster_rpg:unique_knuckle_0",
"forcemaster_rpg:unique_knuckle_1",
"wizards:staff_wizard",
"wizards:staff_arcane",
"wizards:staff_fire",
"wizards:staff_frost",
"wizards:staff_netherite_arcane",
"wizards:staff_netherite_fire",
"wizards:staff_netherite_frost",
"wizards:staff_crystal_arcane",
"wizards:staff_smaragdant_frost",
"wizards:aether_wizard_staff",
"druids:staff_nature",
"druids:staff_netherite_nature",
"druids:staff_moon",
@@ -593,16 +603,6 @@
"elemental_wizards_rpg:staff_aeternium_wind",
"elemental_wizards_rpg:staff_aether",
"elemental_wizards_rpg:unique_staff_1",
"wizards:staff_wizard",
"wizards:staff_arcane",
"wizards:staff_fire",
"wizards:staff_frost",
"wizards:staff_netherite_arcane",
"wizards:staff_netherite_fire",
"wizards:staff_netherite_frost",
"wizards:staff_crystal_arcane",
"wizards:staff_smaragdant_frost",
"wizards:aether_wizard_staff",
"arsenal:unique_staff_damage_1",
"arsenal:unique_staff_damage_2",
"arsenal:unique_staff_damage_3",
@@ -610,6 +610,13 @@
"arsenal:unique_staff_damage_5",
"arsenal:unique_staff_damage_6",
"arsenal:unique_staff_damage_sw",
"wizards:wand_novice",
"wizards:wand_arcane",
"wizards:wand_fire",
"wizards:wand_frost",
"wizards:wand_netherite_arcane",
"wizards:wand_netherite_fire",
"wizards:wand_netherite_frost",
"druids:wand_nature",
"druids:wand_netherite_nature",
"elemental_wizards_rpg:wand_kelp",
@@ -621,13 +628,6 @@
"elemental_wizards_rpg:wand_feather",
"elemental_wizards_rpg:wand_wind",
"elemental_wizards_rpg:wand_netherite_wind",
"wizards:wand_novice",
"wizards:wand_arcane",
"wizards:wand_fire",
"wizards:wand_frost",
"wizards:wand_netherite_arcane",
"wizards:wand_netherite_fire",
"wizards:wand_netherite_frost",
"witcher_rpg:iron_witcher_sword",
"witcher_rpg:golden_witcher_sword",
"witcher_rpg:diamond_witcher_sword",
@@ -654,6 +654,11 @@
"witcher_rpg:superior_diagram"
],
"rpg_series:loot_theme/aether": [
"rogues:aether_dagger",
"rogues:aether_sickle",
"rogues:aether_double_axe",
"rogues:aether_glaive",
"wizards:aether_wizard_staff",
"witcher_rpg:aether_witcher_sword",
"bards_rpg:aether_rapier",
"bards_rpg:aether_lute",
@@ -666,12 +671,7 @@
"paladins:aether_mace",
"paladins:aether_kite_shield",
"forcemaster_rpg:aether_knuckle",
"rogues:aether_dagger",
"rogues:aether_sickle",
"rogues:aether_double_axe",
"rogues:aether_glaive",
"elemental_wizards_rpg:staff_aether",
"wizards:aether_wizard_staff",
"archers:aether_spear",
"archers:aether_heavy_crossbow",
"archers:aether_rapid_crossbow",
@@ -710,7 +710,13 @@
"relics_rpgs:lesser_roll",
"relics_rpgs:jewel_figurine_jade",
"relics_rpgs:lesser_use_ranged",
"relics_rpgs:lesser_use_health"
"relics_rpgs:lesser_use_health",
"more_relics:jewel_figurine_chain",
"more_relics:lesser_proc_earth_nature",
"more_relics:jewel_figurine_aquamarine",
"more_relics:lesser_proc_air_water",
"more_relics:lesser_use_rage",
"more_relics:jewel_figurine_malachite"
],
"witcher_rpg:glyphs_0": [
"witcher_rpg:lesser_aard_glyph",
@@ -720,6 +726,20 @@
"witcher_rpg:lesser_yrden_glyph"
],
"rpg_series:loot_tier/tier_2_weapons": [
"rogues:diamond_dagger",
"rogues:diamond_sickle",
"rogues:diamond_double_axe",
"rogues:diamond_glaive",
"wizards:wand_arcane",
"wizards:wand_fire",
"wizards:wand_frost",
"wizards:staff_arcane",
"wizards:staff_fire",
"wizards:staff_frost",
"artificers:diamond_pike",
"artificers:diamond_flintlock",
"artificers:firecannon",
"artificers:repeating_crossbow",
"witcher_rpg:diamond_witcher_sword",
"witcher_rpg:dark_iron_witcher_sword",
"witcher_rpg:meteorite_witcher_sword",
@@ -737,26 +757,12 @@
"druids:wand_nature",
"druids:staff_nature",
"forcemaster_rpg:diamond_knuckle",
"rogues:diamond_dagger",
"rogues:diamond_sickle",
"rogues:diamond_double_axe",
"rogues:diamond_glaive",
"elemental_wizards_rpg:wand_aqua",
"elemental_wizards_rpg:wand_terra",
"elemental_wizards_rpg:wand_wind",
"elemental_wizards_rpg:staff_aqua",
"elemental_wizards_rpg:staff_terra",
"elemental_wizards_rpg:staff_wind",
"wizards:wand_arcane",
"wizards:wand_fire",
"wizards:wand_frost",
"wizards:staff_arcane",
"wizards:staff_fire",
"wizards:staff_frost",
"artificers:diamond_pike",
"artificers:diamond_flintlock",
"artificers:firecannon",
"artificers:repeating_crossbow",
"archers:diamond_spear",
"archers:royal_longbow",
"archers:heavy_crossbow",
@@ -771,6 +777,20 @@
"witcher_rpg:greater_yrden_glyph"
],
"rpg_series:loot_tier/tier_3_weapons": [
"rogues:netherite_dagger",
"rogues:netherite_sickle",
"rogues:netherite_double_axe",
"rogues:netherite_glaive",
"wizards:wand_netherite_arcane",
"wizards:wand_netherite_fire",
"wizards:wand_netherite_frost",
"wizards:staff_netherite_arcane",
"wizards:staff_netherite_fire",
"wizards:staff_netherite_frost",
"artificers:netherite_pike",
"artificers:netherite_repeating_crossbow",
"artificers:netherite_flintlock",
"artificers:netherite_firecannon",
"witcher_rpg:netherite_witcher_sword",
"witcher_rpg:dark_steel_witcher_sword",
"witcher_rpg:meteorite_silver_witcher_sword",
@@ -788,26 +808,12 @@
"druids:wand_netherite_nature",
"druids:staff_netherite_nature",
"forcemaster_rpg:netherite_knuckle",
"rogues:netherite_dagger",
"rogues:netherite_sickle",
"rogues:netherite_double_axe",
"rogues:netherite_glaive",
"elemental_wizards_rpg:wand_netherite_aqua",
"elemental_wizards_rpg:wand_netherite_terra",
"elemental_wizards_rpg:wand_netherite_wind",
"elemental_wizards_rpg:staff_netherite_aqua",
"elemental_wizards_rpg:staff_netherite_terra",
"elemental_wizards_rpg:staff_netherite_wind",
"wizards:wand_netherite_arcane",
"wizards:wand_netherite_fire",
"wizards:wand_netherite_frost",
"wizards:staff_netherite_arcane",
"wizards:staff_netherite_fire",
"wizards:staff_netherite_frost",
"artificers:netherite_pike",
"artificers:netherite_repeating_crossbow",
"artificers:netherite_flintlock",
"artificers:netherite_firecannon",
"archers:netherite_spear",
"archers:netherite_rapid_crossbow",
"archers:netherite_heavy_crossbow",
@@ -815,6 +821,13 @@
"archers:netherite_longbow"
],
"rpg_series:loot_tier/tier_4_weapons": [
"rogues:aeternium_dagger",
"rogues:aeternium_sickle",
"rogues:aeternium_double_axe",
"rogues:aeternium_glaive",
"wizards:staff_crystal_arcane",
"wizards:staff_smaragdant_frost",
"artificers:aeternium_pike",
"witcher_rpg:aeternium_witcher_sword",
"bards_rpg:aeternium_rapier",
"bards_rpg:aeternium_lyre",
@@ -825,30 +838,23 @@
"paladins:aeternium_kite_shield",
"druids:staff_moon",
"forcemaster_rpg:aeternium_knuckle",
"rogues:aeternium_dagger",
"rogues:aeternium_sickle",
"rogues:aeternium_double_axe",
"rogues:aeternium_glaive",
"elemental_wizards_rpg:staff_crystal_aqua",
"elemental_wizards_rpg:staff_aeternium_wind",
"wizards:staff_crystal_arcane",
"wizards:staff_smaragdant_frost",
"artificers:aeternium_pike",
"archers:aeternium_spear",
"archers:crystal_longbow",
"archers:crystal_shortbow"
],
"rpg_series:loot_theme/golden_weapon": [
"rogues:golden_dagger",
"rogues:golden_sickle",
"rogues:golden_double_axe",
"rogues:golden_glaive",
"berserker_rpg:golden_berserker_axe",
"paladins:golden_claymore",
"paladins:golden_great_hammer",
"paladins:golden_mace",
"paladins:golden_kite_shield",
"forcemaster_rpg:golden_knuckle",
"rogues:golden_dagger",
"rogues:golden_sickle",
"rogues:golden_double_axe",
"rogues:golden_glaive",
"archers:golden_spear"
],
"rpg_series:loot_tier/tier_3_relics": [
@@ -864,7 +870,13 @@
"relics_rpgs:greater_proc_physical_trance",
"relics_rpgs:greater_perk_evasion_attack",
"relics_rpgs:greater_proc_defense_danger",
"relics_rpgs:greater_perk_ranged_levitate"
"relics_rpgs:greater_perk_ranged_levitate",
"more_relics:greater_madreds_bloodrazor",
"more_relics:greater_frozen_heart",
"more_relics:greater_liandrys_torment",
"more_relics:greater_proc_rage",
"more_relics:greater_kircheis_shard",
"more_relics:greater_sunfire_cape"
],
"rpg_series:loot_tier/tier_5_weapons": [
"bards_rpg:unique_rapier_0",
@@ -937,13 +949,24 @@
"relics_rpgs:medium_proc_healing_power",
"relics_rpgs:medium_proc_arcane_power",
"relics_rpgs:medium_proc_attack_speed",
"relics_rpgs:medium_proc_fire_power"
"relics_rpgs:medium_proc_fire_power",
"more_relics:medium_use_water_power",
"more_relics:medium_use_air_power",
"more_relics:medium_use_nature_power",
"more_relics:medium_use_earth_power",
"more_relics:medium_proc_lifesteal",
"more_relics:medium_proc_rage"
],
"rpg_series:loot_tier/tier_4_relics": [
"relics_rpgs:superior_use_zone_healing_taken",
"relics_rpgs:superior_use_area_attack_damage",
"relics_rpgs:superior_use_area_defense_health",
"relics_rpgs:superior_use_zone_spell_power"
"relics_rpgs:superior_use_zone_spell_power",
"more_relics:superior_mikaels_blessing",
"more_relics:superior_zhonyas_hourglass",
"more_relics:superior_mejais_soulstealer",
"more_relics:superior_shurelyas_battlesong",
"more_relics:superior_guardian_angel"
]
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4
View File
@@ -0,0 +1,4 @@
#Change these settings to customize the client-side behavior of the mod.
[Gameplay]
#Allow first-person view inside the tube. Default is false for better experience.
allowFPVInsideTheTube = false
+9
View File
@@ -0,0 +1,9 @@
#Choose how many wire sections are rendered in one meter (block).
#Decreasing this value can theoretically improve performance
# Default: 10
# Range: > 1
wireSectionsPerMeter = 10
#...wire thickness...
# Default: 0.03
# Range: 0.0 ~ 1.7976931348623157E308
wireThickness = 0.03
+125
View File
@@ -0,0 +1,125 @@
#Responsible for how much energy is generated per 1 stress unit in a tick
#Default value is supposed to be compatible with default configuration of Create: Crafts and Additions
# Default: 0.029296875
# Range: 0.0 ~ 1.7976931348623157E308
suToEnergy = 0.029296875
#How many coils can the carbon brushes collect energy from
# Default: 8
# Range: > 0
maxCoils = 8
#How many reactor rods can a fuel inserter or a heat vent have in a single direction
# Default: 32
# Range: > 0
maxRodsInDirection = 32
#Multiplier of wire conductivity
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
conductivityMultiplier = 1.0
#Maximum depth of network pathfinding
# Default: 24
# Range: > 1
maxPathfindingDepth = 24
#Multiplier of energising speed
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
energiserSpeedMultiplier = 1.0
#Multiplier for the temperature at which components overheat. Set to -1 to disable overheating.
# Default: 1.0
# Range: -1.0 ~ 1.7976931348623157E308
overheatingMultiplier = 1.0
#Multiplier for how much heat pipes obtain from passive heat sources like Lava or even Boilers.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
passiveHeatSourceMultiplier = 1.0
#How much heat do pipes lose per second.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
passivePipeHeatLoss = 1.0
#Multiplier for how much heat a boiler needs.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
boilerRequiredHeatMultiplier = 1.0
#How much heat per tick a nuclear reactor rod generate.
# Default: 30.0
# Range: 0.0 ~ 1.7976931348623157E308
ReactorRodHeat = 30.0
#How much heat per tick a nuclear reactor rod loses above the 16000*overheatingMultiplier.
# Default: 25.0
# Range: 0.0 ~ 1.7976931348623157E308
ReactorRodHeatLoss = 25.0
#Multiplier for how much heat solar panels output.
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
solarPanelHeatMultiplier = 1.0
#Maximum wire length
# Default: 16
# Range: > 1
maxWireLength = 16
[Motors]
#Maximum motor SU multiplier
# Default: 1.0
# Range: 0.0 ~ 1.7976931348623157E308
motorSuMultiplier = 1.0
#Internal energy capacity of a basic motor
# Default: 16000
# Range: > 1
basicMotorCapacity = 16000
#Internal energy capacity of an advanced motor
# Default: 64000
# Range: > 1
advancedMotorCapacity = 64000
#Internal energy capacity of a reinforced motor
# Default: 128000
# Range: > 1
reinforcedMotorCapacity = 128000
#Top Speed of a basic motor
# Default: 128.0
# Range: 1.0 ~ 1.7976931348623157E308
basicMotorSpeed = 128.0
#Top Speed of an advanced motor
# Default: 256.0
# Range: 1.0 ~ 1.7976931348623157E308
advancedMotorSpeed = 256.0
#Top Speed of a reinforced motor
# Default: 256.0
# Range: 1.0 ~ 1.7976931348623157E308
reinforcedMotorSpeed = 256.0
#Generated SU of a basic motor
# Default: 512.0
# Range: 1.0 ~ 1.7976931348623157E308
basicMotorStress = 512.0
#Generated SU of an advanced motor
# Default: 2048.0
# Range: 1.0 ~ 1.7976931348623157E308
advancedMotorStress = 2048.0
#Generated SU of a reinforced motor
# Default: 8192.0
# Range: 1.0 ~ 1.7976931348623157E308
reinforcedMotorStress = 8192.0
["Motor Extensions"]
#Power Multiplier of a basic motor extension
# Default: 2.0
# Range: 1.0 ~ 1.7976931348623157E308
basicMotorExtensionMultiplier = 2.0
#Power Multiplier of a basic motor extension
# Default: 8.0
# Range: 1.0 ~ 1.7976931348623157E308
advancedMotorExtensionMultiplier = 8.0
#Extra energy capacity of a basic motor extension
# Default: 64000
# Range: > 1
basicMotorExtensionExtraCapacity = 64000
#Extra energy capacity of an advanced motor extension
# Default: 256000
# Range: > 1
advancedMotorExtensionExtraCapacity = 256000
#Basic motor extension scroll step
# Default: 1
# Range: > 1
basicMotorExtensionScrollStep = 1
#Advanced motor extension scroll step
# Default: 8
# Range: > 1
advancedMotorExtensionScrollStep = 8
@@ -131,3 +131,7 @@ Ars Nouveau
Ars Nouveau's Flavors & Delight
Create: Compat Core
Dynamic Trees Ars Nouveau
Better Weaponry
Connected Glass
Create: New Age
Create Hypertube
@@ -113,3 +113,4 @@ ars_nouveau:enchantment
ars_nouveau:glyph
ars_nouveau:imbuement
ars_nouveau:scry_ritual
create_new_age:energising
@@ -1,21 +0,0 @@
[
{"version":1},
{"ingredient":{"id":"everycomp:mcf/quark/azalea_highley_gate"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"trashcans:item_trash_can"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"minecraft:stonecutter"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"mutantmonsters:mutant_skeleton_arms"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"minecraft:lead"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"rogues:iron_dagger"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"rogues:flint_dagger"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"create_sa:copper_sword"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"everycomp:af/crabbersdelight/palm_chair"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"mcwfurnitures:oak_end_table"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"mcwfurnitures:oak_table"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"mcwfurnitures:oak_coffee_table"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"minecraft:oak_fence"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"minecraft:oak_trapdoor"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"natures_spirit:travertine"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"natures_spirit:cobbled_travertine"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"minecraft:oak_planks"},"type":"item_stack","bookmarkType":"INGREDIENT"},
{"ingredient":{"id":"aquaculture:driftwood"},"type":"item_stack","bookmarkType":"INGREDIENT"}
]
+28
View File
@@ -0,0 +1,28 @@
{
"effects": {
"lne_archers:rangers_focus": {
"attributes": [
{
"attribute": "ranged_weapon:damage",
"value": 0.5,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:pull_time",
"value": -0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:velocity",
"value": 0.5,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.5,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
+3
View File
@@ -0,0 +1,3 @@
{
"disable_special_lne_weapons": false
}
+13
View File
@@ -0,0 +1,13 @@
{
"effects": {
"lne_paladins:sirens_song": {
"attributes": []
},
"lne_paladins:holy_weapon": {
"attributes": []
},
"lne_paladins:holy_prevention": {
"attributes": []
}
}
}
+6
View File
@@ -0,0 +1,6 @@
{
"disable_special_lne_weapons": false,
"sirens_staff_tears_debuff_chance": 0.15,
"sirens_staff_song_chance": 0.1,
"sirens_staff_song_duration": 2
}
+13
View File
@@ -0,0 +1,13 @@
{
"effects": {
"lne_rogues:second_wind": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
}
}
}
+5
View File
@@ -0,0 +1,5 @@
{
"disable_special_lne_weapons": false,
"second_wind_missing_health_heal_min_range": 0.1,
"second_wind_missing_health_heal_max_range": 0.35
}
+3
View File
@@ -0,0 +1,3 @@
{
"effects": {}
}
+5
View File
@@ -0,0 +1,5 @@
{
"disable_special_lne_weapons": false,
"elemental_evoker_default_spell_power": 6.0,
"custom_illager_variants_spawn_in_raids": true
}
+278
View File
@@ -0,0 +1,278 @@
{
"effects": {
"more_relics:lesser_rage_power": {
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:lesser_air_water": {
"attributes": [
{
"attribute": "spell_power:air",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:water",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:lesser_earth_nature": {
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:nature",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_air_power": {
"attributes": [
{
"attribute": "spell_power:air",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_earth_power": {
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_water_power": {
"attributes": [
{
"attribute": "spell_power:water",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_nature_power": {
"attributes": [
{
"attribute": "spell_power:nature",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_rage_power": {
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:medium_lifesteal_power": {
"attributes": [
{
"attribute": "more_rpg_classes:lifesteal_modifier",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:spell_vampire",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_rage_power": {
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_engine:damage_taken",
"value": -0.65,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_frozen_heart": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_liandrys_torment": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_madreds_bloodrazor": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:greater_sunfire_cape": {
"attributes": []
},
"more_relics:superior_zhonyas_hourglass": {
"attributes": [
{
"attribute": "minecraft:generic.knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.explosion_knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
}
]
},
"more_relics:superior_mejais_soulstealer": {
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:fire",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:frost",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:lightning",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:soul",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:water",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:air",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:earth",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:nature",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:sign",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:aard",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:axii",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:igni",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:quen",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:yrden",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:superior_shurelyas_battlesong": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.75,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:superior_mikaels_blessing": {
"attributes": []
},
"more_relics:superior_guardian_angel": {
"attributes": [
{
"attribute": "minecraft:generic.knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.explosion_knockback_resistance",
"value": 10.0,
"operation": "ADD_VALUE"
}
]
}
}
}
+129
View File
@@ -0,0 +1,129 @@
{
"entries": {
"more_relics:jewel_figurine_malachite": {
"durability": 0,
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:nature",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:jewel_figurine_aquamarine": {
"durability": 0,
"attributes": [
{
"attribute": "spell_power:air",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:water",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:jewel_figurine_chain": {
"durability": 0,
"attributes": [
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.025,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"more_relics:lesser_proc_air_water": {
"durability": 0,
"attributes": []
},
"more_relics:lesser_proc_earth_nature": {
"durability": 0,
"attributes": []
},
"more_relics:lesser_use_rage": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_air_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_earth_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_water_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_use_nature_power": {
"durability": 0,
"attributes": []
},
"more_relics:medium_proc_rage": {
"durability": 0,
"attributes": []
},
"more_relics:medium_proc_lifesteal": {
"durability": 0,
"attributes": []
},
"more_relics:greater_frozen_heart": {
"durability": 0,
"attributes": []
},
"more_relics:greater_proc_rage": {
"durability": 0,
"attributes": []
},
"more_relics:greater_kircheis_shard": {
"durability": 0,
"attributes": []
},
"more_relics:greater_madreds_bloodrazor": {
"durability": 0,
"attributes": []
},
"more_relics:greater_liandrys_torment": {
"durability": 0,
"attributes": []
},
"more_relics:greater_sunfire_cape": {
"durability": 0,
"attributes": []
},
"more_relics:superior_mejais_soulstealer": {
"durability": 0,
"attributes": []
},
"more_relics:superior_zhonyas_hourglass": {
"durability": 0,
"attributes": []
},
"more_relics:superior_shurelyas_battlesong": {
"durability": 0,
"attributes": []
},
"more_relics:superior_mikaels_blessing": {
"durability": 0,
"attributes": []
},
"more_relics:superior_guardian_angel": {
"durability": 0,
"attributes": []
}
}
}
+396
View File
@@ -0,0 +1,396 @@
{
"effects": {
"mrpgc_skill_tree:impetus": {
"attributes": [
{
"attribute": "spell_power:haste",
"value": 0.05,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:eye_of_the_storm": {
"attributes": []
},
"mrpgc_skill_tree:tailwind": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:air_bubble": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:earth_bender": {
"attributes": [
{
"attribute": "spell_power:earth",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:obsidian_skin": {
"attributes": []
},
"mrpgc_skill_tree:dripstone_obstacles": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:concussion": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:damage",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:generic",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:difficult_terrain": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.3,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:seismic_entry": {
"attributes": []
},
"mrpgc_skill_tree:stone_heart": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:earthen_blessing": {
"attributes": [
{
"attribute": "minecraft:generic.armor",
"value": 0.5,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:persistent_bubbles": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.attack_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:hydro_boost": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.35,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:hydration": {
"attributes": []
},
"mrpgc_skill_tree:splashdown": {
"attributes": []
},
"mrpgc_skill_tree:calming_flow": {
"attributes": []
},
"mrpgc_skill_tree:torrent": {
"attributes": [
{
"attribute": "spell_power:water",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:critical_chance",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:haste",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:blind_with_rage": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": -0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:bloodflow": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:reckless_rage": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:spinning_slash": {
"attributes": []
},
"mrpgc_skill_tree:burst_of_aggression": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:rage_modifier",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:ragnarok": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.3,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:tenacity",
"value": 1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:undying_rage": {
"attributes": [
{
"attribute": "spell_engine:damage_taken",
"value": -1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:pumped_up": {
"attributes": [
{
"attribute": "minecraft:generic.attack_damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:force_release": {
"attributes": [
{
"attribute": "spell_power:haste",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:critical_chance",
"value": 0.02,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:flying_fists": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:surys_tenacity": {
"attributes": [
{
"attribute": "minecraft:generic.attack_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "more_rpg_classes:tenacity",
"value": 1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:surys_grace": {
"attributes": [
{
"attribute": "spell_power:arcane",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_power:haste",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:leaping_swiftness": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:smoke_bomb": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": -0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:camouflaged": {
"attributes": [
{
"attribute": "spell_engine:evasion_chance",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:shadows_refuge": {
"attributes": []
},
"mrpgc_skill_tree:hunting_instincts": {
"attributes": [
{
"attribute": "spell_power:frost",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:damage",
"value": 0.1,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:winters_cloak": {
"attributes": [
{
"attribute": "minecraft:generic.max_absorption",
"value": 2.0,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:hunting_fever": {
"attributes": [
{
"attribute": "minecraft:generic.movement_speed",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "ranged_weapon:haste",
"value": 0.2,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:terrain_mastery": {
"attributes": [
{
"attribute": "more_rpg_classes:tenacity",
"value": 1.0,
"operation": "ADD_MULTIPLIED_BASE"
}
]
},
"mrpgc_skill_tree:tower_protector": {
"attributes": [
{
"attribute": "minecraft:generic.armor",
"value": 0.5,
"operation": "ADD_VALUE"
},
{
"attribute": "minecraft:generic.knockback_resistance",
"value": 0.2,
"operation": "ADD_VALUE"
}
]
},
"mrpgc_skill_tree:last_stand": {
"attributes": [
{
"attribute": "ranged_weapon:haste",
"value": 0.25,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "minecraft:generic.scale",
"value": 0.15,
"operation": "ADD_MULTIPLIED_BASE"
},
{
"attribute": "spell_engine:damage_taken",
"value": -0.25,
"operation": "ADD_MULTIPLIED_BASE"
}
]
}
}
}
+3
View File
@@ -0,0 +1,3 @@
{
"disable_mrpgc_skilltree_changes": false
}
@@ -1471,6 +1471,8 @@ create\:wrench_rotate=true
create_confectionery\:the_bright_side=true
create_connected\:elevator_music=true
create_connected\:interlude_music=true
create_hypertube\:suction=true
create_hypertube\:traveling=true
create_sa\:cogs_sound=true
create_sa\:steam_noise=true
create_things_and_misc\:announcement_sound=true
@@ -3321,6 +3323,16 @@ minecraft\:ui.toast.in=true
minecraft\:ui.toast.out=true
minecraft\:weather.rain=false
minecraft\:weather.rain.above=false
more_relics\:guardian_angel_active=true
more_relics\:kircheis_shard_impact=true
more_relics\:kircheis_shard_proc=true
more_relics\:liandrys_torment_proc=true
more_relics\:madreds_bloodrazor_impact=true
more_relics\:mikaels_blesssing_active=true
more_relics\:rage_powder=true
more_relics\:shurelyas_battlesong_activate=true
more_relics\:upcut_stone=true
more_relics\:zhonyas_hourglass=true
more_rpg_classes\:air_explosion=true
more_rpg_classes\:air_magic_cast1=true
more_rpg_classes\:air_magic_channel_1=true
@@ -3565,6 +3577,37 @@ mowziesmobs\:wroughtnaut.swing2=true
mowziesmobs\:wroughtnaut.swing3=true
mowziesmobs\:wroughtnaut.undamaged=true
mowziesmobs\:wroughtnaut.whoosh=true
mrpgc_skill_tree\:air_eye_of_the_storm=true
mrpgc_skill_tree\:air_impetus_buff=true
mrpgc_skill_tree\:air_tailwind_loop=true
mrpgc_skill_tree\:air_tailwind_release=true
mrpgc_skill_tree\:air_wind_flurry_release=true
mrpgc_skill_tree\:blood_frenzy_heal=true
mrpgc_skill_tree\:burst_of_aggression=true
mrpgc_skill_tree\:calm_mind=true
mrpgc_skill_tree\:calming_flow_release=true
mrpgc_skill_tree\:cleave_impact=true
mrpgc_skill_tree\:earthen_blessing=true
mrpgc_skill_tree\:flying_fists=true
mrpgc_skill_tree\:hunting_fever=true
mrpgc_skill_tree\:icy_rebirth_spawn=true
mrpgc_skill_tree\:last_stand=true
mrpgc_skill_tree\:obsidian_skin=true
mrpgc_skill_tree\:protector_of_the_tower=true
mrpgc_skill_tree\:ragnarok_release=true
mrpgc_skill_tree\:second_wave=true
mrpgc_skill_tree\:seismic_entry=true
mrpgc_skill_tree\:shadow_refuge_loop=true
mrpgc_skill_tree\:shadow_refuge_release=true
mrpgc_skill_tree\:smokebomb_loop=true
mrpgc_skill_tree\:smokebomb_release=true
mrpgc_skill_tree\:soothing_mist_cleanse=true
mrpgc_skill_tree\:spinning_slash_impact=true
mrpgc_skill_tree\:splashdown=true
mrpgc_skill_tree\:surys_grace=true
mrpgc_skill_tree\:surys_tenacity=true
mrpgc_skill_tree\:torrent=true
mrpgc_skill_tree\:winters_cloak_freeze=true
mutantmonsters\:entity.creeper_minion.ambient=true
mutantmonsters\:entity.creeper_minion.death=true
mutantmonsters\:entity.creeper_minion.hurt=true
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+30
View File
@@ -0,0 +1,30 @@
@echo off
setlocal EnableExtensions
cd /d "%~dp0"
git pull
if errorlevel 1 (
echo Git pull failed, code: %ERRORLEVEL%
pause
exit /b 1
)
REM TLauncher — основной путь через профиль пользователя
set "TL_HOME=%USERPROFILE%\AppData\Roaming\.minecraft\TLauncher.exe"
REM Запасной вариант: относительно папки bat (…\Instances\ИмяСборки ^> … ^> USERPROFILE)
set "TL_REL=%~dp0..\..\..\..\AppData\Roaming\.minecraft\TLauncher.exe"
if exist "%TL_HOME%" (
set "TL=%TL_HOME%"
) else if exist "%TL_REL%" (
set "TL=%TL_REL%"
) else (
echo TLauncher not found. Tried:
echo %TL_HOME%
echo %TL_REL%
pause
exit /b 1
)
start "" "%TL%"
endlocal
@@ -0,0 +1,40 @@
{
"effect.lne_archers.rangers_focus": "Фокус следопыта",
"effect.lne_archers.rangers_focus.description": "Повышает урон и скорость снарядов дальнего боя, снижает скорость передвижения и время натяжения тетивы.",
"filled_map.loot_n_explore.archers_camps": "Карта скрытого лагеря следопыта",
"filled_map.loot_n_explore.archers_outposts": "Карта скрытого форпоста следопыта",
"item.archers.archer.treasure_spell_scroll": "Сокровищный свиток стрельбы из лука",
"item.archers_expansion.deadeye.treasure_spell_scroll": "Сокровищный свиток меткого стрелка",
"item.archers_expansion.tundra_hunter.treasure_spell_scroll": "Сокровищный свиток охотника тундры",
"item.archers_expansion.war_archer.treasure_spell_scroll": "Сокровищный свиток боевого лучника",
"item.lne_archers.elder_guardian_bow": "Ярость Немо",
"item.lne_archers.elder_guardian_heavy_crossbow": "Баллиста водоворота",
"item.lne_archers.elder_guardian_long_bow": "Гнев кракена",
"item.lne_archers.elder_guardian_rapid_crossbow": "Рифовый удар",
"item.lne_archers.elder_guardian_spear": "Пика левиафана",
"item.lne_archers.ender_dragon_bow": "Лук кристалла Края",
"item.lne_archers.ender_dragon_heavy_crossbow": "Челюсть дракона",
"item.lne_archers.ender_dragon_long_bow": "Дыхание дракона",
"item.lne_archers.ender_dragon_rapid_crossbow": "Эндер-зарядник",
"item.lne_archers.ender_dragon_spear": "Драконий шип",
"item.lne_archers.glacial_bow": "Лук морозного укуса",
"item.lne_archers.glacial_heavy_crossbow": "Арбалет ледникового болта",
"item.lne_archers.glacial_long_bow": "Лук ледяного осколка",
"item.lne_archers.glacial_rapid_crossbow": "Метатель сосулек",
"item.lne_archers.glacial_spear": "Ледяная вершина",
"item.lne_archers.wither_bow": "Иссохший лук",
"item.lne_archers.wither_heavy_crossbow": "Арбалет сокрушения душ",
"item.lne_archers.wither_long_bow": "Лук душевой бури",
"item.lne_archers.wither_rapid_crossbow": "Арбалест визер-болта",
"item.lne_archers.wither_spear": "Визер-шип",
"spell.lne_archers.cursed_wither_bolt.description": "При попадании стрелой: с шансом {trigger_chance} наложить проклятие визера на {effect_duration} с. и нанести дополнительно {damage} урона.",
"spell.lne_archers.cursed_wither_bolt.name": "Проклятые визер-болты",
"spell.lne_archers.dragon_breath.description": "При попадании стрелой: с шансом {trigger_chance} создать облако дыхания дракона, наносящее {damage} урона в секунду.",
"spell.lne_archers.dragon_breath.name": "Дыхание дракона Края",
"spell.lne_archers.glacial_splitter.description": "Убийство врагов создаёт ледяные снаряды, наносящие {damage} урона и замораживающие врагов на {effect_duration} с.",
"spell.lne_archers.glacial_splitter.name": "Ледяной раскол",
"spell.lne_archers.rangers_focus.description": "Сильно замедляет вас на {stash_duration} с., повышает урон и скорость снарядов дальнего боя и сокращает время натяжения, а при попадании стрелой создаёт магический удар по области.",
"spell.lne_archers.rangers_focus.name": "Фокус следопыта",
"spell.lne_archers.reef_arrows.description": "При попадании стрелой: с шансом {trigger_chance} наложить кровотечение на {effect_duration} с. и нанести дополнительно {damage} урона.",
"spell.lne_archers.reef_arrows.name": "Стрелы кораллового рифа"
}
@@ -0,0 +1,39 @@
{
"effect.lne_paladins.holy_prevention": "Предотвращение",
"effect.lne_paladins.holy_prevention.description": "Лечит вас, когда здоровье падает ниже 20% максимума; сила лечения растёт с уровнем эффекта. Если вы уже ниже 20% на момент наложения, лечение слабее.",
"effect.lne_paladins.holy_weapon": "Святое оружие",
"effect.lne_paladins.holy_weapon.description": "Усиливает удары ближнего боя исцелением и дополнительным уроном от силы исцеления; 100% шанс критического удара по нежити.",
"effect.lne_paladins.sirens_song": "Песнь сирены",
"effect.lne_paladins.sirens_song.description": "Оглушает цель.",
"item.lne_paladins.elder_guardian_claymore": "Клинок морского короля",
"item.lne_paladins.elder_guardian_great_hammer": "Гнев цунами",
"item.lne_paladins.elder_guardian_holy_staff": "Святой посох сирены",
"item.lne_paladins.elder_guardian_mace": "Морская звезда",
"item.lne_paladins.elder_guardian_shield": "Драконий бастион",
"item.lne_paladins.ender_dragon_claymore": "Клинок Края",
"item.lne_paladins.ender_dragon_great_hammer": "Когти дракона",
"item.lne_paladins.ender_dragon_mace": "Пасть дракона",
"item.lne_paladins.ender_dragon_shield": "Страж кораллового рифа",
"item.lne_paladins.glacial_claymore": "Лезвие ледника",
"item.lne_paladins.glacial_great_hammer": "Ледяная кувалда",
"item.lne_paladins.glacial_mace": "Дробитель сосулек",
"item.lne_paladins.glacial_shield": "Ледяная стена",
"item.lne_paladins.wither_claymore": "Иссохший клеймор",
"item.lne_paladins.wither_great_hammer": "Иссохший дробитель",
"item.lne_paladins.wither_mace": "Иссохшая булава",
"item.lne_paladins.wither_shield": "Пасть визера",
"spell.lne_paladins.elder_guardian_shield.description": "При блоке щитом: с шансом {trigger_chance} наложить кровотечение на {effect_duration} с. и нанести {damage} урона.",
"spell.lne_paladins.elder_guardian_shield.name": "Щит древнего стража",
"spell.lne_paladins.ender_dragon_shield.description": "При блоке щитом: с шансом {trigger_chance} создать взрывную волну, наносящую {damage} урона врагам поблизости.",
"spell.lne_paladins.ender_dragon_shield.name": "Щит дракона Края",
"spell.lne_paladins.glacial_shield.description": "При блоке щитом: с шансом {trigger_chance} заморозить врагов поблизости на {effect_duration} с.",
"spell.lne_paladins.glacial_shield.name": "Ледяной щит",
"spell.lne_paladins.holy_prevention.description": "Накладывает на цель защитный эффект на {effect_duration} с., снижая получаемый урон.",
"spell.lne_paladins.holy_prevention.name": "Святое предотвращение",
"spell.lne_paladins.holy_weapon.description": "Усиливает оружие на {stash_duration} с. Удары ближнего боя наносят {damage} урона и исцеляют вас.",
"spell.lne_paladins.holy_weapon.name": "Святое оружие",
"spell.lne_paladins.sirens_tears.description": "При исцелении: с шансом {trigger_chance} снять вредные эффекты и наложить регенерацию на {effect_duration} с.",
"spell.lne_paladins.sirens_tears.name": "Слёзы сирены",
"spell.lne_paladins.wither_shield.description": "При блоке щитом: с шансом {trigger_chance} выпустить 3 черепа визера, наносящие {damage} урона и накладывающие иссушение.",
"spell.lne_paladins.wither_shield.name": "Щит визера"
}
@@ -0,0 +1,24 @@
{
"effect.lne_rogues.second_wind": "Второе дыхание",
"effect.lne_rogues.second_wind.description": "При наложении даёт 20% максимального здоровья в виде поглощения. Каждые 2 с. можно восстановить 10–35% недостающего здоровья.",
"item.lne_rogues.elder_guardian_dagger": "Кинжал рифа",
"item.lne_rogues.elder_guardian_double_axe": "Приливный рассекатель",
"item.lne_rogues.elder_guardian_glaive": "Клык морского змея",
"item.lne_rogues.elder_guardian_sickle": "Бездонный жнец",
"item.lne_rogues.ender_dragon_dagger": "Жало пустоты",
"item.lne_rogues.ender_dragon_double_axe": "Драконий коготь",
"item.lne_rogues.ender_dragon_glaive": "Клык Края",
"item.lne_rogues.ender_dragon_sickle": "Драконий серп",
"item.lne_rogues.glacial_dagger": "Инеистый осколок",
"item.lne_rogues.glacial_double_axe": "Ледяной рассекатель",
"item.lne_rogues.glacial_glaive": "Морозный клык",
"item.lne_rogues.glacial_sickle": "Морозный жнец",
"item.lne_rogues.wither_dagger": "Рассекатель душ",
"item.lne_rogues.wither_double_axe": "Двойной топор визера",
"item.lne_rogues.wither_glaive": "Иссохшая глефа",
"item.lne_rogues.wither_sickle": "Жнец визера",
"spell.lne_rogues.dancing_dagger.description": "Бросить кинжал, отскакивающий между врагами, наносящий {damage} урона и накладывающий тяжёлые раны на {effect_duration} с.",
"spell.lne_rogues.dancing_dagger.name": "Танцующий кинжал",
"spell.lne_rogues.second_wind.description": "Перевести дыхание и получить временное усиление от максимального здоровья на {effect_duration} с.",
"spell.lne_rogues.second_wind.name": "Второе дыхание"
}
@@ -0,0 +1,50 @@
{
"effect.lne_wizards.arcane_precision": "Тайная точность",
"effect.lne_wizards.arcane_precision.description": "Делает цели уязвимее к урону тайных заклинаний",
"effect.lne_wizards.flame_rush": "Огненный рывок",
"effect.lne_wizards.flame_rush.description": "Повышает скорость передвижения и силу огненных заклинаний.",
"effect.lne_wizards.zephyrs_speed": "Скорость зефира",
"effect.lne_wizards.zephyrs_speed.description": "Повышает шанс критического удара и скорость передвижения заклинателя.",
"entity.lne_wizards.air_evoker": "Призыватель воздуха",
"entity.lne_wizards.arcane_evoker": "Призыватель тайной магии",
"entity.lne_wizards.earth_evoker": "Призыватель земли",
"entity.lne_wizards.fire_evoker": "Призыватель огня",
"entity.lne_wizards.frost_evoker": "Призыватель мороза",
"entity.lne_wizards.water_evoker": "Призыватель воды",
"item.lne_wizards.air_evoker_spawn_egg": "Яйцо призыва призывателя воздуха",
"item.lne_wizards.arcane_evoker_spawn_egg": "Яйцо призыва призывателя тайной магии",
"item.lne_wizards.earth_evoker_spawn_egg": "Яйцо призыва призывателя земли",
"item.lne_wizards.elder_guardian_staff_aqua": "Посох зовущего прилив",
"item.lne_wizards.ender_dragon_staff_arcane": "Тайный драконий посох",
"item.lne_wizards.ender_dragon_staff_wind": "Посох крыла зефира",
"item.lne_wizards.fire_evoker_spawn_egg": "Яйцо призыва призывателя огня",
"item.lne_wizards.frost_evoker_spawn_egg": "Яйцо призыва призывателя мороза",
"item.lne_wizards.glacial_staff_frost": "Посох вечного мороза",
"item.lne_wizards.water_evoker_spawn_egg": "Яйцо призыва призывателя воды",
"item.lne_wizards.wither_staff_fire": "Посох пламени Нижнего мира",
"item.lne_wizards.wither_staff_terra": "Сейсмический посох",
"spell.lne_wizards.aqua_explosive_bubbles.description": "За заклинателем появляются взрывные пузыри: при контакте наносят {bubb_damage} урона или исцеляют союзников на {bubb_heal}.",
"spell.lne_wizards.aqua_explosive_bubbles.name": "Взрывные пузыри",
"spell.lne_wizards.arcane_precision.description": "При критическом ударе активным заклинанием накладывает на цель заряд тайной точности на {effect_duration} с.",
"spell.lne_wizards.arcane_precision.name": "Тайная точность",
"spell.lne_wizards.arcane_starfall.description": "Призывает падающую звезду, наносящую {damage} урона тайной магией. Поглощает все тайные заряды.",
"spell.lne_wizards.arcane_starfall.name": "Падающая звезда",
"spell.lne_wizards.fire_flamerush.description": "Рывок вперёд оставляет за собой облака пламени с уроном {flamecloud_damage}. Также повышает скорость передвижения на {bonus2} и силу огненных заклинаний на {bonus} на {effect_duration}.",
"spell.lne_wizards.fire_flamerush.name": "Огненный рывок",
"spell.lne_wizards.frost_ray.description": "Пускает холодный луч, наносящий {damage} урона и постепенно замораживающий цель.",
"spell.lne_wizards.frost_ray.name": "Луч мороза",
"spell.lne_wizards.obsidian_shards.description": "При уроне активным заклинанием выпускает осколки обсидиана во все стороны от цели.",
"spell.lne_wizards.obsidian_shards.name": "Осколки обсидиана",
"spell.lne_wizards.pyromaniac.description": "При уроне заклинанием по горящей цели сокращает перезарядку огненных заклинаний и наносит дополнительный урон.",
"spell.lne_wizards.pyromaniac.name": "Пиромант",
"spell.lne_wizards.rimefrost.description": "При уроне активным морозным заклинанием создаёт у цели облако заморозки.",
"spell.lne_wizards.rimefrost.name": "Иней",
"spell.lne_wizards.terra_rock_crash.description": "Призывает над целью огромный камень с широким ударом по области, наносящий {damage} урона.",
"spell.lne_wizards.terra_rock_crash.name": "Обрушение скалы",
"spell.lne_wizards.water_flow.description": "При произнесении заклинания наносит урон водой и исцеляет союзников в небольшой области поблизости.",
"spell.lne_wizards.water_flow.name": "Водный поток",
"spell.lne_wizards.wind_aeroburst.description": "Взрыв воздуха во все стороны отбрасывает врагов с огромной силой и наносит {damage} урона.",
"spell.lne_wizards.wind_aeroburst.name": "Воздушный разрыв",
"spell.lne_wizards.zephyrs_speed.description": "При уроне активным заклинанием даёт заряд скорости зефира на {effect_duration} с.: шанс крита заклинаний {bonus}, скорость передвижения {bonus2}.",
"spell.lne_wizards.zephyrs_speed.name": "Скорость зефира"
}
@@ -0,0 +1,106 @@
{
"effect.more_relics.greater_frozen_heart": "Сердце льда",
"effect.more_relics.greater_frozen_heart.description": "Сильно снижает скорость атаки.",
"effect.more_relics.greater_liandrys_torment": "Мучения Лиандри",
"effect.more_relics.greater_liandrys_torment.description": "Увеличивает получаемый урон и наносит урон в секунду в зависимости от максимального здоровья цели.",
"effect.more_relics.greater_madreds_bloodrazor": "Кровавая бритва Мадреда",
"effect.more_relics.greater_madreds_bloodrazor.description": "Повышает скорость атаки.",
"effect.more_relics.greater_rage_power": "Ритуал Своблода",
"effect.more_relics.greater_rage_power.description": "Повышает ярость и скорость атаки, снижает получаемый урон.",
"effect.more_relics.greater_sunfire_cape": "Плащ солнечного пламени",
"effect.more_relics.greater_sunfire_cape.description": "Наносит урон вокруг владельца при получении или нанесении урона в ближнем бою.",
"effect.more_relics.lesser_air_water": "Сила воздуха и воды",
"effect.more_relics.lesser_air_water.description": "Повышает силу заклинаний воздуха и воды.",
"effect.more_relics.lesser_earth_nature": "Сила земли и природы",
"effect.more_relics.lesser_earth_nature.description": "Повышает силу заклинаний земли и природы.",
"effect.more_relics.lesser_rage_power": "Сила ярости",
"effect.more_relics.lesser_rage_power.description": "Повышает ярость.",
"effect.more_relics.medium_air_power": "Сила воздуха",
"effect.more_relics.medium_air_power.description": "Повышает силу заклинаний воздуха.",
"effect.more_relics.medium_earth_power": "Сила земли",
"effect.more_relics.medium_earth_power.description": "Повышает силу заклинаний земли.",
"effect.more_relics.medium_lifesteal_power": "Вампирский скипетр",
"effect.more_relics.medium_lifesteal_power.description": "Повышает вампиризм и заклинательский вампиризм.",
"effect.more_relics.medium_nature_power": "Сила природы",
"effect.more_relics.medium_nature_power.description": "Повышает силу заклинаний природы.",
"effect.more_relics.medium_rage_power": "Мардроэме",
"effect.more_relics.medium_rage_power.description": "Повышает ярость и скорость атаки, но накладывает немоту на заклинателя.",
"effect.more_relics.medium_water_power": "Сила воды",
"effect.more_relics.medium_water_power.description": "Повышает силу заклинаний воды.",
"effect.more_relics.superior_guardian_angel": "Ангел-хранитель",
"effect.more_relics.superior_guardian_angel.description": "Нельзя двигаться, прыгать или кастовать заклинания, но вы неуязвимы.",
"effect.more_relics.superior_mejais_soulstealer": "Похититель душ Меджая",
"effect.more_relics.superior_mejais_soulstealer.description": "Повышает силу заклинаний за убийства.",
"effect.more_relics.superior_mikaels_blessing": "Благословение Микаэля",
"effect.more_relics.superior_mikaels_blessing.description": "При наложении снимает все вредные эффекты.",
"effect.more_relics.superior_shurelyas_battlesong": "Боевая песнь Шурели",
"effect.more_relics.superior_shurelyas_battlesong.description": "Повышает скорость передвижения.",
"effect.more_relics.superior_zhonyas_hourglass": "Песочные часы Жони",
"effect.more_relics.superior_zhonyas_hourglass.description": "Нельзя двигаться, прыгать или кастовать заклинания, но вы неуязвимы.",
"hud.more_relics.guardian_angel": "Воскрешение",
"hud.more_relics.zhonyas": "Бессмертие",
"item.more_relics.greater_frozen_heart": "Сердце льда",
"item.more_relics.greater_kircheis_shard": "Осколок Кирхея",
"item.more_relics.greater_liandrys_torment": "Мучения Лиандри",
"item.more_relics.greater_madreds_bloodrazor": "Кровавая бритва Мадреда",
"item.more_relics.greater_proc_rage": "Тотем Своблода",
"item.more_relics.greater_sunfire_cape": "Плащ солнечного пламени",
"item.more_relics.jewel_figurine_aquamarine": "Аквамариновая фигурка карпа кои",
"item.more_relics.jewel_figurine_chain": "Металлическая фигурка волка",
"item.more_relics.jewel_figurine_malachite": "Малахитовая фигурка медоеда",
"item.more_relics.lesser_proc_air_water": "Разлитый тайфун",
"item.more_relics.lesser_proc_earth_nature": "Светящийся моховой камень",
"item.more_relics.lesser_use_rage": "Порошок ярости",
"item.more_relics.medium_proc_lifesteal": "Вампирский скипетр",
"item.more_relics.medium_proc_rage": "Гриб мардроэме",
"item.more_relics.medium_use_air_power": "Сфера воздуха",
"item.more_relics.medium_use_earth_power": "Сфера земли",
"item.more_relics.medium_use_nature_power": "Сфера природы",
"item.more_relics.medium_use_water_power": "Сфера воды",
"item.more_relics.superior_guardian_angel": "Ангел-хранитель",
"item.more_relics.superior_mejais_soulstealer": "Похититель душ Меджая",
"item.more_relics.superior_mikaels_blessing": "Благословение Микаэля",
"item.more_relics.superior_shurelyas_battlesong": "Боевая песнь Шурели",
"item.more_relics.superior_zhonyas_hourglass": "Песочные часы Жони",
"itemGroup.more_relics.generic": "More Relics",
"spell.more_relics.greater_frozen_heart.description": "При получении урона: с шансом {trigger_chance} снизить скорость атаки и передвижения врагов поблизости на {bonus} на {effect_duration} с.",
"spell.more_relics.greater_frozen_heart.name": "Сердце льда",
"spell.more_relics.greater_kircheis_shard.description": "При попадании стрелой: с шансом {trigger_chance} создать электрическое поле на {cloud_duration} с., наносящее {damage} урона.",
"spell.more_relics.greater_kircheis_shard.name": "Осколок Кирхея",
"spell.more_relics.greater_liandrys_torment.description": "При попадании заклинанием: с шансом {trigger_chance} мучить цель {effect_duration} с., нанося урон в размере 3%% макс. здоровья цели в секунду.",
"spell.more_relics.greater_liandrys_torment.name": "Мучения Лиандри",
"spell.more_relics.greater_madreds_bloodrazor.description": "При ударе в ближнем бою: с шансом {trigger_chance_1} повысить скорость атаки на {bonus} и наносить дополнительный урон в размере {max_health_damage} от макс. здоровья цели с каждого удара.",
"spell.more_relics.greater_madreds_bloodrazor.name": "Кровавая бритва Мадреда",
"spell.more_relics.greater_proc_rage.description": "При падении здоровья ниже {health_threshold}: снижение входящего урона на {bonus}, рост ярости на {bonus2} и скорости атаки на {bonus3} на {effect_duration} с.",
"spell.more_relics.greater_proc_rage.name": "Ритуал Своблода",
"spell.more_relics.greater_sunfire_cape.description": "При получении и нанесении урона: с шансом {trigger_chance_1} нанести вокруг себя {max_health_damage} урона от вашего макс. здоровья.",
"spell.more_relics.greater_sunfire_cape.name": "Плащ солнечного пламени",
"spell.more_relics.lesser_proc_air_water.description": "При попадании заклинанием: с шансом {trigger_chance} повысить силу заклинаний воздуха и воды на {bonus} на {effect_duration} с.",
"spell.more_relics.lesser_proc_air_water.name": "Сила воздуха и воды",
"spell.more_relics.lesser_proc_earth_nature.description": "При попадании заклинанием: с шансом {trigger_chance} повысить силу заклинаний земли и природы на {bonus} на {effect_duration} с.",
"spell.more_relics.lesser_proc_earth_nature.name": "Сила земли и природы",
"spell.more_relics.lesser_use_rage_power.description": "Использование: повышает ярость на {bonus} на {effect_duration} с.",
"spell.more_relics.lesser_use_rage_power.name": "Сила ярости",
"spell.more_relics.medium_perk_rage.description": "При ударе в ближнем бою: с шансом {trigger_chance} впасть в берсерк на {effect_duration} с.",
"spell.more_relics.medium_perk_rage.name": "Гриб мардроэме",
"spell.more_relics.medium_proc_lifesteal.description": "При ударе в ближнем бою и заклинанием: с шансом {trigger_chance_1} повысить вампиризм и заклинательский вампиризм на {bonus} на {effect_duration} с.",
"spell.more_relics.medium_proc_lifesteal.name": "Вампирский скипетр",
"spell.more_relics.medium_use_air_power.description": "Использование: повышает силу заклинаний воздуха на {bonus} на {effect_duration} с.",
"spell.more_relics.medium_use_air_power.name": "Сила воздуха",
"spell.more_relics.medium_use_earth_power.description": "Использование: повышает силу заклинаний земли на {bonus} на {effect_duration} с.",
"spell.more_relics.medium_use_earth_power.name": "Сила земли",
"spell.more_relics.medium_use_nature_power.description": "Использование: повышает силу заклинаний природы на {bonus} на {effect_duration} с.",
"spell.more_relics.medium_use_nature_power.name": "Сила природы",
"spell.more_relics.medium_use_water_power.description": "Использование: повышает силу заклинаний воды на {bonus} на {effect_duration} с.",
"spell.more_relics.medium_use_water_power.name": "Сила воды",
"spell.more_relics.superior_guardian_angel.description": "При падении здоровья ниже {health_threshold}: неуязвимость на {effect_duration} с. и исцеление на {health_percent} от макс. здоровья.",
"spell.more_relics.superior_guardian_angel.name": "Ангел-хранитель",
"spell.more_relics.superior_mejais_soulstealer.description": "Убийства врагов дают силу заклинаний +{bonus}, до {effect_amplifier_cap} стаков на {effect_duration} с.",
"spell.more_relics.superior_mejais_soulstealer.name": "Похититель душ Меджая",
"spell.more_relics.superior_mikaels_blessing.description": "Использование: исцеляет вас или выбранного союзника на {heal_percent} от макс. здоровья и снимает все вредные эффекты.",
"spell.more_relics.superior_mikaels_blessing.name": "Благословение Микаэля",
"spell.more_relics.superior_shurelyas_battlesong.description": "Использование: повышает скорость передвижения на {bonus} на {effect_duration} с. и сокращает перезарядку заклинаний союзникам.",
"spell.more_relics.superior_shurelyas_battlesong.name": "Боевая песнь Шурели",
"spell.more_relics.superior_zhonyas_hourglass.description": "Использование: неуязвимость на {effect_duration} с.; нельзя двигаться, атаковать или кастовать заклинания.",
"spell.more_relics.superior_zhonyas_hourglass.name": "Песочные часы Жони"
}