Version 5.4
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
||||
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
ServerEvents.recipes(allthemods => {
|
||||
//Atomic Disassembler
|
||||
allthemods.remove({ id: 'mekanism:atomic_disassembler' })
|
||||
allthemods.shaped('mekanism:atomic_disassembler', ['ITI', 'IAI', ' P '], {
|
||||
I: 'mekanism:alloy_reinforced',
|
||||
T: 'mekanism:basic_induction_cell',
|
||||
A: 'mekanism:ultimate_control_circuit',
|
||||
P: 'allthemodium:allthemodium_pickaxe'
|
||||
})
|
||||
//Meka Tool
|
||||
allthemods.remove({ id: 'mekanism:meka_tool' })
|
||||
allthemods.shaped('mekanism:meka_tool', ['UCU', 'TDT', 'PBP'], {
|
||||
U: 'mekanism:ultimate_control_circuit',
|
||||
C: 'mekanism:configurator',
|
||||
T: '#c:plates/unobtainium',
|
||||
D: 'mekanism:atomic_disassembler',
|
||||
B: 'mekanism:ultimate_induction_cell',
|
||||
P: 'mekanism:pellet_polonium'
|
||||
})
|
||||
//MekaSuit Helmet
|
||||
allthemods.remove({ id: 'mekanism:mekasuit_helmet' })
|
||||
allthemods.shaped('mekanism:mekasuit_helmet', ['CAC', 'HUH', 'PIP'], {
|
||||
A: 'mekanism:pellet_antimatter',
|
||||
H: 'mekanism:hdpe_sheet',
|
||||
C: 'mekanism:ultimate_control_circuit',
|
||||
P: 'mekanism:pellet_polonium',
|
||||
I: 'mekanism:ultimate_induction_cell',
|
||||
U: 'allthemodium:unobtainium_helmet'
|
||||
})
|
||||
//MekaSuit Bodyarmor
|
||||
allthemods.remove({ id: 'mekanism:mekasuit_bodyarmor' })
|
||||
allthemods.shaped('mekanism:mekasuit_bodyarmor', ['CAC', 'HUH', 'PIP'], {
|
||||
A: 'mekanism:pellet_antimatter',
|
||||
H: 'mekanism:hdpe_sheet',
|
||||
C: 'mekanism:ultimate_control_circuit',
|
||||
P: 'mekanism:pellet_polonium',
|
||||
I: 'mekanism:ultimate_induction_cell',
|
||||
U: 'allthemodium:unobtainium_chestplate'
|
||||
})
|
||||
//MekaSuit Pants
|
||||
allthemods.remove({ id: 'mekanism:mekasuit_pants' })
|
||||
allthemods.shaped('mekanism:mekasuit_pants', ['CAC', 'HUH', 'PIP'], {
|
||||
A: 'mekanism:pellet_antimatter',
|
||||
H: 'mekanism:hdpe_sheet',
|
||||
C: 'mekanism:ultimate_control_circuit',
|
||||
P: 'mekanism:pellet_polonium',
|
||||
I: 'mekanism:ultimate_induction_cell',
|
||||
U: 'allthemodium:unobtainium_leggings'
|
||||
})
|
||||
//MekaSuit Boots
|
||||
allthemods.remove({ id: 'mekanism:mekasuit_boots' })
|
||||
allthemods.shaped('mekanism:mekasuit_boots', ['CAC', 'HUH', 'PIP'], {
|
||||
A: 'mekanism:pellet_antimatter',
|
||||
H: 'mekanism:hdpe_sheet',
|
||||
C: 'mekanism:ultimate_control_circuit',
|
||||
P: 'mekanism:pellet_polonium',
|
||||
I: 'mekanism:ultimate_induction_cell',
|
||||
U: 'allthemodium:unobtainium_boots'
|
||||
})
|
||||
})
|
||||
|
||||
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
||||
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
131
minecraft/kubejs/server_scripts/mods/Mekanism/Rebalance/Items.js
Normal file
131
minecraft/kubejs/server_scripts/mods/Mekanism/Rebalance/Items.js
Normal file
@@ -0,0 +1,131 @@
|
||||
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
||||
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
ServerEvents.recipes(allthemods => {
|
||||
|
||||
//Upgrades
|
||||
allthemods.replaceInput(
|
||||
{ output: ['mekanism:upgrade_speed', 'mekanism:upgrade_energy', 'mekanism:upgrade_filter', 'mekanism:upgrade_chemical', 'mekanism:upgrade_stone_generator' ] }, // Arg 1: the filter
|
||||
'#c:glass_blocks/cheap',
|
||||
'mekanism:structural_glass'
|
||||
)
|
||||
|
||||
//polonium
|
||||
allthemods.remove('mekanism:processing/lategame/polonium')
|
||||
allthemods.custom(
|
||||
{
|
||||
type: "mekanism:activating",
|
||||
input: {
|
||||
amount: 5,
|
||||
chemical: "mekanism:nuclear_waste"
|
||||
},
|
||||
output: {
|
||||
amount: 1,
|
||||
id: "mekanism:polonium"
|
||||
}
|
||||
}
|
||||
).id('mekanism:processing/lategame/polonium')
|
||||
//plutonium
|
||||
allthemods.remove('mekanism:processing/lategame/plutonium')
|
||||
allthemods.custom(
|
||||
{
|
||||
type: "mekanism:centrifuging",
|
||||
input: {
|
||||
amount: 5,
|
||||
chemical: "mekanism:nuclear_waste"
|
||||
},
|
||||
output: {
|
||||
amount: 1,
|
||||
id: "mekanism:plutonium"
|
||||
}
|
||||
}
|
||||
).id('mekanism:processing/lategame/plutonium')
|
||||
|
||||
//Thermal Evaporation Blocks
|
||||
allthemods.remove('mekanism:thermal_evaporation/block')
|
||||
allthemods.shaped('8x mekanism:thermal_evaporation_block', ['BSB', 'SMS', 'BSB'], {
|
||||
B: '#c:ingots/bronze',
|
||||
S: '#c:ingots/steel',
|
||||
M: 'mekanism:superheating_element'
|
||||
})
|
||||
|
||||
//Solar Neutron Activator
|
||||
allthemods.remove('mekanism:solar_neutron_activator')
|
||||
allthemods.shaped('mekanism:solar_neutron_activator', ['APA', 'CSC', 'BBB'], {
|
||||
A: 'mekanism:alloy_atomic',
|
||||
P: 'mekanismgenerators:advanced_solar_generator',
|
||||
C: 'mekanism:elite_control_circuit',
|
||||
S: 'mekanism:steel_casing',
|
||||
B: '#c:ingots/bronze'
|
||||
})
|
||||
|
||||
//Electric Pump
|
||||
allthemods.remove('mekanism:electric_pump')
|
||||
allthemods.shaped('mekanism:electric_pump', ['CBC', 'ASA', 'OTO'], {
|
||||
B: '#c:buckets/empty',
|
||||
C: 'mekanism:advanced_control_circuit',
|
||||
A: 'mekanism:alloy_reinforced',
|
||||
S: 'mekanism:steel_casing',
|
||||
O: '#c:ingots/osmium',
|
||||
T: 'mekanism:energy_tablet'
|
||||
})
|
||||
|
||||
//Wasted Combs
|
||||
allthemods.remove('productivebees:mekanism/oxidizing/honeycomb_wasted_radioactive')
|
||||
allthemods.custom(
|
||||
{
|
||||
"type": "mekanism:oxidizing",
|
||||
"input": {
|
||||
"type": "productivebees:component",
|
||||
"components": {
|
||||
"productivebees:bee_type": "productivebees:wasted_radioactive"
|
||||
},
|
||||
"items": "productivebees:configurable_honeycomb"
|
||||
},
|
||||
"output": {
|
||||
"id": "mekanism:nuclear_waste",
|
||||
"amount": 50
|
||||
},
|
||||
"neoforge:conditions": [
|
||||
{
|
||||
"type": "neoforge:mod_loaded",
|
||||
"modid": "mekanism"
|
||||
},
|
||||
{
|
||||
"type": "productivebees:bee_exists",
|
||||
"bee": "productivebees:wasted_radioactive"
|
||||
}
|
||||
]
|
||||
}
|
||||
)
|
||||
allthemods.remove('productivebees:mekanism/oxidizing/comb_block_wasted_radioactive')
|
||||
allthemods.custom(
|
||||
{
|
||||
"type": "mekanism:oxidizing",
|
||||
"input": {
|
||||
"type": "productivebees:component",
|
||||
"components": {
|
||||
"productivebees:bee_type": "productivebees:wasted_radioactive"
|
||||
},
|
||||
"items": "productivebees:configurable_comb"
|
||||
},
|
||||
"output": {
|
||||
"id": "mekanism:nuclear_waste",
|
||||
"amount": 200
|
||||
},
|
||||
"neoforge:conditions": [
|
||||
{
|
||||
"type": "neoforge:mod_loaded",
|
||||
"modid": "mekanism"
|
||||
},
|
||||
{
|
||||
"type": "productivebees:bee_exists",
|
||||
"bee": "productivebees:wasted_radioactive"
|
||||
}
|
||||
]
|
||||
}
|
||||
)
|
||||
})
|
||||
|
||||
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
||||
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
320
minecraft/kubejs/server_scripts/mods/Mekanism/Rebalance/Units.js
Normal file
320
minecraft/kubejs/server_scripts/mods/Mekanism/Rebalance/Units.js
Normal file
@@ -0,0 +1,320 @@
|
||||
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
||||
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
|
||||
ServerEvents.recipes(allthemods => {
|
||||
|
||||
function easyModuleRecipe(module, alloy, unique, extra) {
|
||||
allthemods.shaped(module, [
|
||||
'AUA',
|
||||
'AMA',
|
||||
'HEH'
|
||||
], {
|
||||
A: alloy,
|
||||
U: unique,
|
||||
M: 'mekanism:module_base',
|
||||
H: 'mekanism:hdpe_sheet',
|
||||
E: extra
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
function hardModuleRecipe(module, top, center, bottom, unique, extra) {
|
||||
allthemods.shaped(module, [
|
||||
'TUT',
|
||||
'CMC',
|
||||
'BEB'
|
||||
], {
|
||||
T: top,
|
||||
U: unique,
|
||||
C: center,
|
||||
M: 'mekanism:module_base',
|
||||
B: bottom,
|
||||
E: extra
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
|
||||
//########## MEKA UNITS ##########
|
||||
//Energy Unit
|
||||
allthemods.remove('mekanism:module_energy_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_energy_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'mekanism:elite_induction_cell',
|
||||
'#c:plates/allthemodium'
|
||||
)
|
||||
//Laser Dissipation Unit
|
||||
allthemods.remove('mekanism:module_laser_dissipation_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_laser_dissipation_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'mekanism:laser_amplifier',
|
||||
'#c:plates/osmium'
|
||||
)
|
||||
//Radiation Shielding Unit
|
||||
allthemods.remove('mekanism:module_radiation_shielding_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_radiation_shielding_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'#c:storage_blocks/lead',
|
||||
'#c:plates/unobtainium'
|
||||
)
|
||||
//Excavation Escalation Unit
|
||||
allthemods.remove('mekanism:module_excavation_escalation_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_excavation_escalation_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'allthemodium:allthemodium_pickaxe',
|
||||
'mekanism:ultimate_control_circuit'
|
||||
)
|
||||
//Attack Amplification Unit
|
||||
allthemods.remove('mekanism:module_attack_amplification_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_attack_amplification_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'minecraft:netherite_sword',
|
||||
'mekanism:ultimate_control_circuit'
|
||||
)
|
||||
//Farming Unit
|
||||
allthemods.remove('mekanism:module_farming_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_farming_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'minecraft:diamond_hoe',
|
||||
'mekanism:elite_control_circuit'
|
||||
)
|
||||
//Shearing Unit
|
||||
allthemods.remove('mekanism:module_shearing_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_shearing_unit',
|
||||
'mekanism:alloy_infused',
|
||||
'minecraft:shears',
|
||||
'mekanism:elite_control_circuit'
|
||||
)
|
||||
//Silk Touch Unit
|
||||
allthemods.remove('mekanism:module_silk_touch_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_silk_touch_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'allthemodium:allthemodium_pickaxe',
|
||||
'mekanism:elite_control_circuit',
|
||||
'mekanism:block_refined_glowstone',
|
||||
'mekanism:enriched_gold'
|
||||
)
|
||||
//Ore Refinement Unit
|
||||
allthemods.remove('mekanism:module_fortune_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_fortune_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'allthemodium:vibranium_pickaxe',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
'mekanism:block_refined_obsidian',
|
||||
'mekanism:enriched_diamond'
|
||||
)
|
||||
//Blasting Unit
|
||||
allthemods.remove('mekanism:module_blasting_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_blasting_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'minecraft:tnt',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
'minecraft:tnt',
|
||||
'mekanism:enriched_carbon'
|
||||
)
|
||||
//Vein Mining Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_vein_mining_unit'},
|
||||
'mekanism:pellet_polonium',
|
||||
'mekanism:enriched_gold'
|
||||
)
|
||||
//Teleporation Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_teleportation_unit'},
|
||||
'mekanism:pellet_antimatter',
|
||||
'mekanism:pellet_polonium'
|
||||
)
|
||||
//Electrolytic Breathing Unit
|
||||
allthemods.remove('mekanism:module_electrolytic_breathing_unit')
|
||||
easyModuleRecipe(
|
||||
'mekanism:module_electrolytic_breathing_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'mekanism:electrolytic_core',
|
||||
'mekanism:enriched_tin'
|
||||
)
|
||||
//Inhalation Purification Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_inhalation_purification_unit'},
|
||||
'mekanism:pellet_polonium',
|
||||
'mekanism:enriched_carbon'
|
||||
)
|
||||
//Vision Enhancement Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_vision_enhancement_unit'},
|
||||
'mekanism:pellet_polonium',
|
||||
'mekanism:enriched_diamond'
|
||||
)
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_vision_enhancement_unit'},
|
||||
'minecraft:emerald',
|
||||
'mekanism:ultimate_control_circuit'
|
||||
)
|
||||
//Nutritional Injection Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_nutritional_injection_unit'},
|
||||
'mekanism:pellet_polonium',
|
||||
'mekanism:hdpe_sheet'
|
||||
)
|
||||
//Dosimeter Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_dosimeter_unit'},
|
||||
'mekanism:alloy_infused',
|
||||
'mekanism:alloy_reinforced'
|
||||
)
|
||||
//Geiger Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_geiger_unit'},
|
||||
'mekanism:alloy_infused',
|
||||
'mekanism:alloy_reinforced'
|
||||
)
|
||||
//Jetpack Unit
|
||||
allthemods.remove('mekanism:module_jetpack_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_jetpack_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
'mekanism:pellet_polonium',
|
||||
'mekanism:jetpack',
|
||||
'mekanism:ingot_refined_glowstone'
|
||||
)
|
||||
//Charge Distribution Unit
|
||||
allthemods.remove('mekanism:module_charge_distribution_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_charge_distribution_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
'mekanism:ultimate_induction_provider',
|
||||
'mekanism:ultimate_induction_cell',
|
||||
'mekanism:pellet_polonium'
|
||||
)
|
||||
//Gravitational Modulating Unit
|
||||
allthemods.remove('mekanism:module_gravitational_modulating_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_gravitational_modulating_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'mekanism:module_jetpack_unit',
|
||||
'mekanism:ultimate_induction_provider',
|
||||
'minecraft:nether_star',
|
||||
'allthemodium:unobtainium_block'
|
||||
)
|
||||
//Elytra Unit
|
||||
allthemods.remove('mekanism:module_elytra_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_elytra_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'#c:plates/allthemodium',
|
||||
'#c:ingots/netherite',
|
||||
'mekanism:hdpe_elytra',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
)
|
||||
//Locomotive Boosting Unit
|
||||
allthemods.remove('mekanism:module_locomotive_boosting_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_locomotive_boosting_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'mekanism:advanced_induction_provider',
|
||||
'mekanism:ingot_refined_glowstone',
|
||||
'minecraft:netherite_leggings',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
)
|
||||
//Gyroscopic Stabilization Unit
|
||||
allthemods.remove('mekanism:module_gyroscopic_stabilization_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_gyroscopic_stabilization_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'#c:obsidians',
|
||||
'#c:plates/steel',
|
||||
'#c:ingots/allthemodium',
|
||||
'mekanism:pellet_polonium',
|
||||
)
|
||||
//Hydrostatic Repulsor Unit
|
||||
allthemods.replaceInput(
|
||||
{output: 'mekanism:module_hydrostatic_repulsor_unit'},
|
||||
'mekanism:pellet_polonium',
|
||||
'mekanism:hdpe_sheet'
|
||||
)
|
||||
//Motorized Servo
|
||||
allthemods.remove('mekanism:module_motorized_servo_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_motorized_servo_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'#c:ices/blue',
|
||||
'#c:plates/osmium',
|
||||
'#c:plates/vibranium',
|
||||
'mekanism:pellet_polonium',
|
||||
)
|
||||
//Hydraulic Propulsion
|
||||
allthemods.remove('mekanism:module_hydraulic_propulsion_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_hydraulic_propulsion_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'mekanism:elite_induction_provider',
|
||||
'#c:plates/silver',
|
||||
'mekanism:free_runners',
|
||||
'mekanism:pellet_polonium',
|
||||
)
|
||||
//Magnetic Attraction
|
||||
allthemods.remove('mekanism:module_magnetic_attraction_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_magnetic_attraction_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'mekanism:elite_control_circuit',
|
||||
'#c:storage_blocks/redstone',
|
||||
'simplemagnets:basicmagnet',
|
||||
'#c:storage_blocks/allthemodium',
|
||||
)
|
||||
//Frost Walker
|
||||
allthemods.remove('mekanism:module_frost_walker_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_frost_walker_unit',
|
||||
'mekanism:alloy_reinforced',
|
||||
'#c:ices/blue',
|
||||
'mekanism:elite_control_circuit',
|
||||
'mekanism:hydrogen_bucket',
|
||||
'mekanism:oxygen_bucket',
|
||||
)
|
||||
//Soul Surfer
|
||||
allthemods.remove('mekanism:module_soul_surfer_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanism:module_soul_surfer_unit',
|
||||
'mekanism:alloy_atomic',
|
||||
'mekanism:free_runners',
|
||||
'#c:plates/osmium',
|
||||
'#minecraft:soul_fire_base_blocks',
|
||||
'mekanism:ultimate_control_circuit',
|
||||
)
|
||||
//Solar Recharging
|
||||
allthemods.remove('mekanismgenerators:module_solar_recharging_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanismgenerators:module_solar_recharging_unit',
|
||||
'mekanismgenerators:solar_generator',
|
||||
'mekanism:alloy_reinforced',
|
||||
'mekanism:elite_induction_cell',
|
||||
'mekanismgenerators:advanced_solar_generator',
|
||||
'mekanism:elite_induction_provider',
|
||||
)
|
||||
//Solar Recharging
|
||||
allthemods.remove('mekanismgenerators:module_geothermal_generator_unit')
|
||||
hardModuleRecipe(
|
||||
'mekanismgenerators:module_geothermal_generator_unit',
|
||||
'mekanismgenerators:heat_generator',
|
||||
'mekanism:alloy_reinforced',
|
||||
'mekanism:elite_induction_cell',
|
||||
'mekanism:superheating_element',
|
||||
'mekanism:elite_induction_provider',
|
||||
)
|
||||
})
|
||||
|
||||
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
||||
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
||||
@@ -0,0 +1,141 @@
|
||||
# MEKANISM Rebalance
|
||||
|
||||
[Energy Units are in Joules: 1RF = 2.5J]
|
||||
|
||||
## Mekasuit
|
||||
|
||||
### Energy
|
||||
|
||||
[Increased to make the mekasuit slightly more of an endgame armor]
|
||||
|
||||
- **Energy Capacity:** 16.000.000J -> 40.000.000J
|
||||
- **Charging Rate:** 100.000J -> 200.000J
|
||||
- **Solar Charge Rate:** 500J -> 1.500J
|
||||
|
||||
|
||||
- **Damage Energy Usage:** 100.000J -> 250.000J
|
||||
- **Magic Damage Energy Usage:** 1.000J -> 2.500J
|
||||
- **Fall Damage Energy Usage:** 50 -> 250J
|
||||
|
||||
|
||||
- **Jump Boost Energy Usage:** 1.000J -> 2.000J
|
||||
- **Potion Reduction Energy Usage:** 40.000J -> 80.000J
|
||||
- **Sprint Boost Energy Usage:** 100J -> 250J
|
||||
|
||||
## Meka Tool
|
||||
|
||||
### Values
|
||||
|
||||
[Buffed to actually be an upgrade of the Atomic Disassembler]
|
||||
|
||||
- **Base Damage:** 4 -> 24
|
||||
- **Attack Speed:** -2.4 -> -0.8
|
||||
|
||||
### Energy
|
||||
|
||||
[Increased to make it a slightly more endgame-ish tool]
|
||||
|
||||
- **Base Energy Usage:** 10J -> 50J
|
||||
- **Silktouch Energy Usage:** 100J -> 500J
|
||||
|
||||
|
||||
- **Weapon Energy Usage:** 2000J -> 8000J
|
||||
- **Hoe Energy Usage:** 10J -> 50J
|
||||
- **Shovel Energy Usage:** 10J -> 50J
|
||||
- **Axe Energy Usage:** 10J -> 50J
|
||||
- **Shear Energy Usage:** 10J -> 50J
|
||||
- **Trim Energy Usage:** 10J -> 50J
|
||||
- **Teleportation Energy Usage:** 1000J -> 2500J
|
||||
|
||||
|
||||
- **Energy Capacity:** 16.000.000J -> 40.000.000J
|
||||
- **Charging Rate:** 100.000J -> 200.000J
|
||||
|
||||
## Generators
|
||||
|
||||
[Buffed to match the powah]
|
||||
|
||||
- **Solar Generation:** 50J -> 150J
|
||||
- **Solar Capacity:** 96.000J -> 100.000J
|
||||
- **Advanced Solar Generation:** 300J -> 1200J
|
||||
- **Advanced Solar Capacity:** 200.000J -> 250.000J
|
||||
|
||||
[Buffed to match powah]
|
||||
|
||||
- **Heat Generation:** 200J -> 800J
|
||||
|
||||
[Nerf to prevent massive melon power]
|
||||
|
||||
- **Ethene Burn Ticks:** 40 -> 20
|
||||
- **Ethene Density Multiplier:** 40 -> 8
|
||||
|
||||
[Buffed to make slightly more viable]
|
||||
|
||||
- **Wind Generation Min:** 60J -> 150J
|
||||
- **Wind Generation Max:** 480J -> 900J
|
||||
|
||||
[Nerf to promote other reactors]
|
||||
|
||||
- **Energy per Fission Fuel:** 1.000.000J -> 250.000J
|
||||
|
||||
[Buff Turbine to need less for the same]
|
||||
- **Blades per Coil:** 4 -> 8
|
||||
- **Vent Chemical Flow:** 16.000mb/t -> 43.478,262mb/t
|
||||
- [This abhorrent number makes the max flow rate exactly 15.000.000mb/t]
|
||||
- **Condeser Rate:** 64.000mb/t -> 256.000mb/t
|
||||
|
||||
[Buff Boiler so you only need one per fission reactor]
|
||||
- **Water per Tank:** = 16000mb -> 32000mb
|
||||
- **Steam per Tank:** = 16000mb -> 320000mb
|
||||
- **Heated Coolant per Tank** = 256000mb -> 512000mb
|
||||
- **Cooled Coolant per Tank:** = 25600mb -> 512000mb
|
||||
|
||||
[Nerfed to make other power viable in endgame 200MRF -> 80MRF]
|
||||
|
||||
- **Fuel Capacity:** 1.000mb -> 500mb
|
||||
- **Thermocouple Efficiency:** 0.05 -> 0.04
|
||||
- **Casing Thermal Conductivity:** 0.1 -> 0.333333333
|
||||
- **Water Heating Ratio:** 0.3 -> 272727272727
|
||||
|
||||
## Radiation
|
||||
|
||||
[Makes Radiation decay much faster]
|
||||
|
||||
- **Source Decay Rate:** 0.9995 -> 0.9975
|
||||
- **Target Decay Rate:** 0.9995 -> 0.9975
|
||||
|
||||
[Makes waste decay a bit faster in barrels]
|
||||
|
||||
- **Waste Barrel Process Ticks:** 20 -> 10
|
||||
- **Waste Barrel Decay Amount:** 1mb -> 2mb
|
||||
|
||||
## Machines
|
||||
|
||||
[Upgrades buff machines more to reduce the overall need for machines]
|
||||
|
||||
- **Max Upgrades Multiplier:** 10x -> 16x
|
||||
|
||||
[Buff so you dont need 150 of them for nuclear waste to polonium]
|
||||
|
||||
- **Solar Neutron Activator production:** 64mb/t -> 256mb/t
|
||||
|
||||
[Buff so you dont need 50 pumps for fusion]
|
||||
|
||||
- **Heavy Water Amount per 1000mb:** 10mb -> 50mb
|
||||
|
||||
|
||||
[Buff to reduce the need for many, reducing lag 1080mb/t -> 4995mb/t]
|
||||
|
||||
- **Evap Tower Temp Multiplier (Output Amount)** 0.4 -> 1.85
|
||||
- **Evap Tower Heat Capacity (Heat needed for max production):** 100 -> 600
|
||||
|
||||
[Faster charging rate]
|
||||
|
||||
- **Laser Energy Usage:** 10.000J -> 50.000J
|
||||
- **Laser Energy Capacity:** 2.000.000J -> 10.000.000J
|
||||
|
||||
[Massive SPS nerf to make other power sources besides fusion valid 400MRF -> 40MRF]
|
||||
|
||||
- **SPS Energy per mb:** 1.000.000J -> 100.000J
|
||||
|
||||
### Assume recipes are getting balanced as well to reflect the buffs here
|
||||
Reference in New Issue
Block a user