From e445ed9a283779b7eef691cb7d32ba00b9f47105 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 23 Sep 2021 07:53:35 -0400 Subject: [PATCH 001/124] Thermal Augments Thermal Power So it seems we can make our own augments for these, or alter existing ones, by slapping NBT on an item. So we could turn Powah Capacitors into thermal upgrades if we wanted to, or magical items like crystals or runes :D As a test case, this gets a dynamo to max out at 4960 FE/t with a fuel efficiency of 73%. --- .../recipetypes/thermal/replace_output.js | 102 ++++++++++++++++++ .../expert/recipetypes/thermal/shaped.js | 10 +- 2 files changed, 105 insertions(+), 7 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js new file mode 100644 index 0000000000..ee2bef6f60 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js @@ -0,0 +1,102 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + /* Any item can become an augment by giving it the proper NBT tags. + Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 + + These follow the pattern of {AugmentData:{Type:"",:,:,:}} + + Types: + TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine + TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines + TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines + TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines + TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos + TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as + TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter + TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines + + General Augments: + TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses + + TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF + TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity + TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate + + TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid + TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity + + TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items + TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity + + TAG_AUGMENT_DEPTH = "Depth" Dig Depth? + TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level + TAG_AUGMENT_RADIUS = "Radius" Dig Radius + TAG_AUGMENT_REACH = "Reach" Dig Reach + + TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing + TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control + TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config + TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling + + TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level + TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration + + Dynamo-Specific Augments: + TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" ??? + TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel + TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate + TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" ??? + + Machine-Specific Augments: + TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" ??? + TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier + TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier + + TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate + TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per Process + TAG_AUGMENT_MACHINE_POWER = "MachinePower" Energy Capacity + TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Processing Speed + TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? + */ + + const recipes = [ + // Integral Components + /* These are the default values, adding them for reference + { + type: {}, + toReplace: 'thermal:upgrade_augment_1', + replaceWith: Item.of('thermal:upgrade_augment_1', '{AugmentData:{Type:"Upgrade",BaseMod:2.0d}}') + }, + { + type: {}, + toReplace: 'thermal:upgrade_augment_2', + replaceWith: Item.of('thermal:upgrade_augment_2', '{AugmentData:{Type:"Upgrade",BaseMod:3.0d}}') + }, + { + type: {}, + toReplace: 'thermal:upgrade_augment_3', + replaceWith: Item.of('thermal:upgrade_augment_3', '{AugmentData:{Type:"Upgrade",BaseMod:4.0d}}') + }, + */ + // Dynamo Augments + { + type: {}, + toReplace: 'thermal:dynamo_output_augment', + replaceWith: Item.of( + 'thermal:dynamo_output_augment', + '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.9d,DynamoPower:10.0d}}' + ) + }, + { + type: {}, + toReplace: 'thermal:dynamo_fuel_augment', + replaceWith: Item.of('thermal:dynamo_fuel_augment', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.2d}}') + } + ]; + + recipes.forEach((recipe) => { + event.replaceOutput(recipe.type, recipe.toReplace, recipe.replaceWith); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/shaped.js index 4c63f7d2c3..d4f0e71dab 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/shaped.js @@ -15,7 +15,7 @@ onEvent('recipes', (event) => { } */ - const newRecipes = [ + const recipes = [ { output: 'thermal:machine_frame', pattern: ['ABA', 'BCB', 'ABA'], @@ -76,11 +76,7 @@ onEvent('recipes', (event) => { } ]; - newRecipes.forEach((recipe) => { - if (recipe.id) { - event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); - } else { - event.shaped(recipe.output, recipe.pattern, recipe.key); - } + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); }); }); From 642295c2536dfee4552cb4a9c8f7b06521e33912 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 23 Sep 2021 07:57:56 -0400 Subject: [PATCH 002/124] Update replace_output.js --- .../expert/recipetypes/thermal/replace_output.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js index ee2bef6f60..72b2844927 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js @@ -6,8 +6,10 @@ onEvent('recipes', (event) => { Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 These follow the pattern of {AugmentData:{Type:"",:,:,:}} + All augments use a Float to define their level. Types: + Determine what machine the item may be used in, and in some cases how many may be used. TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines @@ -17,8 +19,10 @@ onEvent('recipes', (event) => { TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines + Augments: + Determine the effects to be applied to the machine. General Augments: - TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses + TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity @@ -30,7 +34,7 @@ onEvent('recipes', (event) => { TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity - TAG_AUGMENT_DEPTH = "Depth" Dig Depth? + TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level TAG_AUGMENT_RADIUS = "Radius" Dig Radius TAG_AUGMENT_REACH = "Reach" Dig Reach @@ -44,13 +48,13 @@ onEvent('recipes', (event) => { TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration Dynamo-Specific Augments: - TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" ??? + TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel - TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" ??? + TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t + TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) Machine-Specific Augments: - TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" ??? + TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier From b91dc95fe72135758645be7ad02d7a9c3b3d71a2 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 24 Sep 2021 15:36:49 -0400 Subject: [PATCH 003/124] attempt at multiple items --- config/dummmmmmy-client-2.toml.bak | 28 +++++ .../item_modifiers/jei_add_items.js | 94 +++++++++++++++- .../recipetypes/thermal/replace_output.js | 106 ------------------ kubejs/startup_scripts/item_registry.js | 14 ++- 4 files changed, 134 insertions(+), 108 deletions(-) create mode 100644 config/dummmmmmy-client-2.toml.bak delete mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js diff --git a/config/dummmmmmy-client-2.toml.bak b/config/dummmmmmy-client-2.toml.bak new file mode 100644 index 0000000000..328525e47d --- /dev/null +++ b/config/dummmmmmy-client-2.toml.bak @@ -0,0 +1,28 @@ + +#lots of cosmetic stuff in here +[visuals] + #How much the dummy swings in degrees with respect to the damage dealt. default=0.75 + #Range: 0.0 ~ 2.0 + animationIntensity = 0.75 + #Show hearths instead of damage dealt? (1 hearth = two damage) + showHearths = false + #Does dps message update dynamically or will it only appear after each parse? + dynamicDPS = true + #Skin used by the dummy + texture = "DEFAULT" + + [visuals.damage_number_colors] + #hex color for various damage sources + genetic = "0xffffff" + crit = "0xff0000" + dragon_breath = "0xFF00FF" + wither = "0x666666" + explosion = "0xFFCC33" + magic = "0x3399FF" + trident = "0x00FFCC" + fire = "0xFF9900" + lightning = "0xFFFF00" + cactus = "0x006600" + magic_indirect = "844ce7" + true = "910038" + diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index ad65804584..5167817eaf 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -25,8 +25,100 @@ onEvent('jei.add.items', (event) => { Damage: 0, 'sword/blade:arrested': 0, 'sword/decorative_pommel_material': 'decorative_pommel/oak' - }) + }), + // Thermal Augments - See Notes Below + // Machine Speed Upgrades + Item.of('kubejs:machine_speed_augment_mk2', { + AugmentData: { Type: 'Machine', MachineEnergy: 1.43, MachinePower: 3.0 } + }), + Item.of('kubejs:machine_speed_augment_mk3', { + AugmentData: { Type: 'Machine', MachineEnergy: 1.859, MachinePower: 9.0 } + }), + Item.of('kubejs:machine_speed_augment_mk4', { + AugmentData: { Type: 'Machine', MachineEnergy: 2.4167, MachinePower: 27.0 } + }), + // Dynamo Speed Upgrades + Item.of('kubejs:dynamo_output_augment_mk2', { + AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.846, DynamoPower: 2.0 } + }), + Item.of('kubejs:dynamo_output_augment_mk3', { + AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.79524, DynamoPower: 4.0 } + }), + Item.of('kubejs:dynamo_output_augment_mk4', { + AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.7475256, DynamoPower: 8.0 } + }), + // Dynamo Efficiency Upgrades + Item.of('kubejs:dynamo_fuel_augment_mk2', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.43 } }), + Item.of('kubejs:dynamo_fuel_augment_mk3', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.859 } }), + Item.of('kubejs:dynamo_fuel_augment_mk4', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 2.4167 } }) ]; items.forEach((item) => event.add(item)); }); + +/* Any item can become an augment by giving it the proper NBT tags. + Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 + + These follow the pattern of {AugmentData:{Type:"",:,:,:}} + All augments use a Float to define their level. + + Types: + Determine what machine the item may be used in, and in some cases how many may be used. + TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine + TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines + TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines + TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines + TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos + TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as + TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter + TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines + + Augments: + Determine the effects to be applied to the machine. + General Augments: + TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components + + TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF + TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity + TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate + + TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid + TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity + + TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items + TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity + + TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) + TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level + TAG_AUGMENT_RADIUS = "Radius" Dig Radius + TAG_AUGMENT_REACH = "Reach" Dig Reach + + TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing + TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control + TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config + TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling + + TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level + TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration + + Dynamo-Specific Augments: + TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) + TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel (Fuel Energy in Tooltip) + TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t (Maximum Output in Tooltip) + TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) + + Machine-Specific Augments: + TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) + TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier + TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier + + TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate + TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per recipe (Process Energy in Tooltip) + TAG_AUGMENT_MACHINE_POWER = "MachinePower" Base Processing Speed (Base Power in Tooltip) + TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Maximum Processing Speed (Maximum Power in Tooltip) + Applies after Base Processing speed, negative reduces total speed after other bonuses (see Efficiency Upgrade) + TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? + + Notes: Default Efficiency is "MachineEnergy:0.9,MachineSpeed:-0.1" which slows the machine, but costs less energy total + + */ diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js deleted file mode 100644 index 72b2844927..0000000000 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js +++ /dev/null @@ -1,106 +0,0 @@ -onEvent('recipes', (event) => { - if (global.isExpertMode == false) { - return; - } - /* Any item can become an augment by giving it the proper NBT tags. - Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 - - These follow the pattern of {AugmentData:{Type:"",:,:,:}} - All augments use a Float to define their level. - - Types: - Determine what machine the item may be used in, and in some cases how many may be used. - TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine - TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines - TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines - TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines - TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos - TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as - TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter - TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines - - Augments: - Determine the effects to be applied to the machine. - General Augments: - TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components - - TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF - TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity - TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate - - TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid - TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity - - TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items - TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity - - TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) - TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level - TAG_AUGMENT_RADIUS = "Radius" Dig Radius - TAG_AUGMENT_REACH = "Reach" Dig Reach - - TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing - TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control - TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config - TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling - - TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level - TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration - - Dynamo-Specific Augments: - TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) - TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel - TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t - TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) - - Machine-Specific Augments: - TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) - TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier - TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier - - TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate - TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per Process - TAG_AUGMENT_MACHINE_POWER = "MachinePower" Energy Capacity - TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Processing Speed - TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? - */ - - const recipes = [ - // Integral Components - /* These are the default values, adding them for reference - { - type: {}, - toReplace: 'thermal:upgrade_augment_1', - replaceWith: Item.of('thermal:upgrade_augment_1', '{AugmentData:{Type:"Upgrade",BaseMod:2.0d}}') - }, - { - type: {}, - toReplace: 'thermal:upgrade_augment_2', - replaceWith: Item.of('thermal:upgrade_augment_2', '{AugmentData:{Type:"Upgrade",BaseMod:3.0d}}') - }, - { - type: {}, - toReplace: 'thermal:upgrade_augment_3', - replaceWith: Item.of('thermal:upgrade_augment_3', '{AugmentData:{Type:"Upgrade",BaseMod:4.0d}}') - }, - */ - // Dynamo Augments - { - type: {}, - toReplace: 'thermal:dynamo_output_augment', - replaceWith: Item.of( - 'thermal:dynamo_output_augment', - '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.9d,DynamoPower:10.0d}}' - ) - }, - { - type: {}, - toReplace: 'thermal:dynamo_fuel_augment', - replaceWith: Item.of('thermal:dynamo_fuel_augment', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.2d}}') - } - ]; - - recipes.forEach((recipe) => { - event.replaceOutput(recipe.type, recipe.toReplace, recipe.replaceWith); - }); -}); diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 53db06bb9c..8674cd3b59 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -26,7 +26,19 @@ onEvent('item.registry', (event) => { 'hot_compressed_iron_ingot', 'dimensional_storage_crystal', 'spirit_heat_exchanger', - 'amadron_survey_tools' + 'amadron_survey_tools', + + 'machine_speed_augment_mk2', + 'machine_speed_augment_mk3', + 'machine_speed_augment_mk4', + + 'dynamo_output_augment_mk2', + 'dynamo_output_augment_mk3', + 'dynamo_output_augment_mk4', + + 'dynamo_fuel_augment_mk2', + 'dynamo_fuel_augment_mk3', + 'dynamo_fuel_augment_mk4' ]; const ritualDummies = [ From d2af1927d419de8c1515b9747a338fd2d43de0df Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 24 Sep 2021 15:37:37 -0400 Subject: [PATCH 004/124] Revert "attempt at multiple items" This reverts commit b91dc95fe72135758645be7ad02d7a9c3b3d71a2. --- config/dummmmmmy-client-2.toml.bak | 28 ----- .../item_modifiers/jei_add_items.js | 94 +--------------- .../recipetypes/thermal/replace_output.js | 106 ++++++++++++++++++ kubejs/startup_scripts/item_registry.js | 14 +-- 4 files changed, 108 insertions(+), 134 deletions(-) delete mode 100644 config/dummmmmmy-client-2.toml.bak create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js diff --git a/config/dummmmmmy-client-2.toml.bak b/config/dummmmmmy-client-2.toml.bak deleted file mode 100644 index 328525e47d..0000000000 --- a/config/dummmmmmy-client-2.toml.bak +++ /dev/null @@ -1,28 +0,0 @@ - -#lots of cosmetic stuff in here -[visuals] - #How much the dummy swings in degrees with respect to the damage dealt. default=0.75 - #Range: 0.0 ~ 2.0 - animationIntensity = 0.75 - #Show hearths instead of damage dealt? (1 hearth = two damage) - showHearths = false - #Does dps message update dynamically or will it only appear after each parse? - dynamicDPS = true - #Skin used by the dummy - texture = "DEFAULT" - - [visuals.damage_number_colors] - #hex color for various damage sources - genetic = "0xffffff" - crit = "0xff0000" - dragon_breath = "0xFF00FF" - wither = "0x666666" - explosion = "0xFFCC33" - magic = "0x3399FF" - trident = "0x00FFCC" - fire = "0xFF9900" - lightning = "0xFFFF00" - cactus = "0x006600" - magic_indirect = "844ce7" - true = "910038" - diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index 5167817eaf..ad65804584 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -25,100 +25,8 @@ onEvent('jei.add.items', (event) => { Damage: 0, 'sword/blade:arrested': 0, 'sword/decorative_pommel_material': 'decorative_pommel/oak' - }), - // Thermal Augments - See Notes Below - // Machine Speed Upgrades - Item.of('kubejs:machine_speed_augment_mk2', { - AugmentData: { Type: 'Machine', MachineEnergy: 1.43, MachinePower: 3.0 } - }), - Item.of('kubejs:machine_speed_augment_mk3', { - AugmentData: { Type: 'Machine', MachineEnergy: 1.859, MachinePower: 9.0 } - }), - Item.of('kubejs:machine_speed_augment_mk4', { - AugmentData: { Type: 'Machine', MachineEnergy: 2.4167, MachinePower: 27.0 } - }), - // Dynamo Speed Upgrades - Item.of('kubejs:dynamo_output_augment_mk2', { - AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.846, DynamoPower: 2.0 } - }), - Item.of('kubejs:dynamo_output_augment_mk3', { - AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.79524, DynamoPower: 4.0 } - }), - Item.of('kubejs:dynamo_output_augment_mk4', { - AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.7475256, DynamoPower: 8.0 } - }), - // Dynamo Efficiency Upgrades - Item.of('kubejs:dynamo_fuel_augment_mk2', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.43 } }), - Item.of('kubejs:dynamo_fuel_augment_mk3', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.859 } }), - Item.of('kubejs:dynamo_fuel_augment_mk4', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 2.4167 } }) + }) ]; items.forEach((item) => event.add(item)); }); - -/* Any item can become an augment by giving it the proper NBT tags. - Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 - - These follow the pattern of {AugmentData:{Type:"",:,:,:}} - All augments use a Float to define their level. - - Types: - Determine what machine the item may be used in, and in some cases how many may be used. - TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine - TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines - TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines - TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines - TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos - TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as - TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter - TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines - - Augments: - Determine the effects to be applied to the machine. - General Augments: - TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components - - TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF - TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity - TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate - - TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid - TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity - - TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items - TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity - - TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) - TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level - TAG_AUGMENT_RADIUS = "Radius" Dig Radius - TAG_AUGMENT_REACH = "Reach" Dig Reach - - TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing - TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control - TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config - TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling - - TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level - TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration - - Dynamo-Specific Augments: - TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) - TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel (Fuel Energy in Tooltip) - TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t (Maximum Output in Tooltip) - TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) - - Machine-Specific Augments: - TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) - TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier - TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier - - TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate - TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per recipe (Process Energy in Tooltip) - TAG_AUGMENT_MACHINE_POWER = "MachinePower" Base Processing Speed (Base Power in Tooltip) - TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Maximum Processing Speed (Maximum Power in Tooltip) - Applies after Base Processing speed, negative reduces total speed after other bonuses (see Efficiency Upgrade) - TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? - - Notes: Default Efficiency is "MachineEnergy:0.9,MachineSpeed:-0.1" which slows the machine, but costs less energy total - - */ diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js new file mode 100644 index 0000000000..72b2844927 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js @@ -0,0 +1,106 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + /* Any item can become an augment by giving it the proper NBT tags. + Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 + + These follow the pattern of {AugmentData:{Type:"",:,:,:}} + All augments use a Float to define their level. + + Types: + Determine what machine the item may be used in, and in some cases how many may be used. + TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine + TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines + TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines + TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines + TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos + TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as + TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter + TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines + + Augments: + Determine the effects to be applied to the machine. + General Augments: + TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components + + TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF + TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity + TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate + + TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid + TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity + + TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items + TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity + + TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) + TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level + TAG_AUGMENT_RADIUS = "Radius" Dig Radius + TAG_AUGMENT_REACH = "Reach" Dig Reach + + TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing + TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control + TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config + TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling + + TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level + TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration + + Dynamo-Specific Augments: + TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) + TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel + TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t + TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) + + Machine-Specific Augments: + TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) + TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier + TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier + + TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate + TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per Process + TAG_AUGMENT_MACHINE_POWER = "MachinePower" Energy Capacity + TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Processing Speed + TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? + */ + + const recipes = [ + // Integral Components + /* These are the default values, adding them for reference + { + type: {}, + toReplace: 'thermal:upgrade_augment_1', + replaceWith: Item.of('thermal:upgrade_augment_1', '{AugmentData:{Type:"Upgrade",BaseMod:2.0d}}') + }, + { + type: {}, + toReplace: 'thermal:upgrade_augment_2', + replaceWith: Item.of('thermal:upgrade_augment_2', '{AugmentData:{Type:"Upgrade",BaseMod:3.0d}}') + }, + { + type: {}, + toReplace: 'thermal:upgrade_augment_3', + replaceWith: Item.of('thermal:upgrade_augment_3', '{AugmentData:{Type:"Upgrade",BaseMod:4.0d}}') + }, + */ + // Dynamo Augments + { + type: {}, + toReplace: 'thermal:dynamo_output_augment', + replaceWith: Item.of( + 'thermal:dynamo_output_augment', + '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.9d,DynamoPower:10.0d}}' + ) + }, + { + type: {}, + toReplace: 'thermal:dynamo_fuel_augment', + replaceWith: Item.of('thermal:dynamo_fuel_augment', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.2d}}') + } + ]; + + recipes.forEach((recipe) => { + event.replaceOutput(recipe.type, recipe.toReplace, recipe.replaceWith); + }); +}); diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 8674cd3b59..53db06bb9c 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -26,19 +26,7 @@ onEvent('item.registry', (event) => { 'hot_compressed_iron_ingot', 'dimensional_storage_crystal', 'spirit_heat_exchanger', - 'amadron_survey_tools', - - 'machine_speed_augment_mk2', - 'machine_speed_augment_mk3', - 'machine_speed_augment_mk4', - - 'dynamo_output_augment_mk2', - 'dynamo_output_augment_mk3', - 'dynamo_output_augment_mk4', - - 'dynamo_fuel_augment_mk2', - 'dynamo_fuel_augment_mk3', - 'dynamo_fuel_augment_mk4' + 'amadron_survey_tools' ]; const ritualDummies = [ From d5de36fd16ac5b2c881adea0ffcd1911330f7999 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 24 Sep 2021 15:40:37 -0400 Subject: [PATCH 005/124] take two without the extras... --- .../item_modifiers/jei_add_items.js | 94 +++++++++++++++- .../recipetypes/thermal/replace_output.js | 106 ------------------ kubejs/startup_scripts/item_registry.js | 14 ++- 3 files changed, 106 insertions(+), 108 deletions(-) delete mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index ad65804584..5167817eaf 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -25,8 +25,100 @@ onEvent('jei.add.items', (event) => { Damage: 0, 'sword/blade:arrested': 0, 'sword/decorative_pommel_material': 'decorative_pommel/oak' - }) + }), + // Thermal Augments - See Notes Below + // Machine Speed Upgrades + Item.of('kubejs:machine_speed_augment_mk2', { + AugmentData: { Type: 'Machine', MachineEnergy: 1.43, MachinePower: 3.0 } + }), + Item.of('kubejs:machine_speed_augment_mk3', { + AugmentData: { Type: 'Machine', MachineEnergy: 1.859, MachinePower: 9.0 } + }), + Item.of('kubejs:machine_speed_augment_mk4', { + AugmentData: { Type: 'Machine', MachineEnergy: 2.4167, MachinePower: 27.0 } + }), + // Dynamo Speed Upgrades + Item.of('kubejs:dynamo_output_augment_mk2', { + AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.846, DynamoPower: 2.0 } + }), + Item.of('kubejs:dynamo_output_augment_mk3', { + AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.79524, DynamoPower: 4.0 } + }), + Item.of('kubejs:dynamo_output_augment_mk4', { + AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.7475256, DynamoPower: 8.0 } + }), + // Dynamo Efficiency Upgrades + Item.of('kubejs:dynamo_fuel_augment_mk2', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.43 } }), + Item.of('kubejs:dynamo_fuel_augment_mk3', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.859 } }), + Item.of('kubejs:dynamo_fuel_augment_mk4', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 2.4167 } }) ]; items.forEach((item) => event.add(item)); }); + +/* Any item can become an augment by giving it the proper NBT tags. + Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 + + These follow the pattern of {AugmentData:{Type:"",:,:,:}} + All augments use a Float to define their level. + + Types: + Determine what machine the item may be used in, and in some cases how many may be used. + TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine + TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines + TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines + TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines + TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos + TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as + TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter + TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines + + Augments: + Determine the effects to be applied to the machine. + General Augments: + TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components + + TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF + TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity + TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate + + TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid + TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity + + TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items + TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity + + TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) + TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level + TAG_AUGMENT_RADIUS = "Radius" Dig Radius + TAG_AUGMENT_REACH = "Reach" Dig Reach + + TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing + TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control + TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config + TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling + + TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level + TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration + + Dynamo-Specific Augments: + TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) + TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel (Fuel Energy in Tooltip) + TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t (Maximum Output in Tooltip) + TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) + + Machine-Specific Augments: + TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) + TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier + TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier + + TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate + TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per recipe (Process Energy in Tooltip) + TAG_AUGMENT_MACHINE_POWER = "MachinePower" Base Processing Speed (Base Power in Tooltip) + TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Maximum Processing Speed (Maximum Power in Tooltip) + Applies after Base Processing speed, negative reduces total speed after other bonuses (see Efficiency Upgrade) + TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? + + Notes: Default Efficiency is "MachineEnergy:0.9,MachineSpeed:-0.1" which slows the machine, but costs less energy total + + */ diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js deleted file mode 100644 index 72b2844927..0000000000 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/replace_output.js +++ /dev/null @@ -1,106 +0,0 @@ -onEvent('recipes', (event) => { - if (global.isExpertMode == false) { - return; - } - /* Any item can become an augment by giving it the proper NBT tags. - Reference: https://github.com/KingLemming/1.16/blob/fe263e24b6f872bbacd7599c73f78ed44098d105/CoFHCore/src/main/java/cofh/lib/util/constants/NBTTags.java#L101 - - These follow the pattern of {AugmentData:{Type:"",:,:,:}} - All augments use a Float to define their level. - - Types: - Determine what machine the item may be used in, and in some cases how many may be used. - TAG_AUGMENT_TYPE_UPGRADE = "Upgrade" Component is Unique, only one will apply to the machine - TAG_AUGMENT_TYPE_RF = "RF" Adjusts RF Values of Machines - TAG_AUGMENT_TYPE_FLUID = "Fluid" Adjusts Fluid Values of Machines - TAG_AUGMENT_TYPE_MACHINE = "Machine" May only be used in Machines - TAG_AUGMENT_TYPE_DYNAMO = "Dynamo" May only be used in Dynamos - TAG_AUGMENT_TYPE_AREA_EFFECT = "Area" May only be used in machines with an AoE, such as - TAG_AUGMENT_TYPE_FILTER = "Filter" Defines an item as a Filter - TAG_AUGMENT_TYPE_POTION = "Potion" May only be used for Potion using machines - - Augments: - Determine the effects to be applied to the machine. - General Augments: - TAG_AUGMENT_BASE_MOD = "BaseMod" Multiplier for all other bonuses as seen on Integral Components - - TAG_AUGMENT_RF_CREATIVE = "RFCre" Unlimited RF - TAG_AUGMENT_RF_STORAGE = "RFMax" RF Capacity - TAG_AUGMENT_RF_XFER = "RFXfer" RF Transfer Rate - - TAG_AUGMENT_FLUID_CREATIVE = "FluidCre" Unlimited Fluid - TAG_AUGMENT_FLUID_STORAGE = "FluidMax" Fluid Capacity - - TAG_AUGMENT_ITEM_CREATIVE = "ItemCre" Unlimited Items - TAG_AUGMENT_ITEM_STORAGE = "ItemMax" Item Capacity - - TAG_AUGMENT_DEPTH = "Depth" Dig Depth (NYI) - TAG_AUGMENT_HARVEST_LEVEL = "Harvest" Block Harvest Level - TAG_AUGMENT_RADIUS = "Radius" Dig Radius - TAG_AUGMENT_REACH = "Reach" Dig Reach - - TAG_AUGMENT_FEATURE_CYCLE_PROCESS = "CycProc" Enable Cyclic Processing - TAG_AUGMENT_FEATURE_RS_CONTROL = "RSCtl" Enable Redstone Control - TAG_AUGMENT_FEATURE_SIDE_CONFIG = "SideCfg" Enable Side Config - TAG_AUGMENT_FEATURE_XP_STORAGE = "XpStr" Enable XP Handling - - TAG_AUGMENT_POTION_AMPLIFIER = "PotionAmp" Potion Level - TAG_AUGMENT_POTION_DURATION = "PotionDur" Potion Duration - - Dynamo-Specific Augments: - TAG_AUGMENT_DYNAMO_COIL = "DynamoCoil" Allows energy to be extracted from any side? (NYI) - TAG_AUGMENT_DYNAMO_ENERGY = "DynamoEnergy" Energy Efficiency per Fuel - TAG_AUGMENT_DYNAMO_POWER = "DynamoPower" Output Rate - FE/t - TAG_AUGMENT_DYNAMO_THROTTLE = "DynamoThrottle" Allows dynamo to turn off automatically when full? (NYI) - - Machine-Specific Augments: - TAG_AUGMENT_MACHINE_MIN_OUTPUT = "MachineMin" Forces minimum output? (NYI) - TAG_AUGMENT_MACHINE_PRIMARY = "MachinePri" Primary Output Modifier - TAG_AUGMENT_MACHINE_SECONDARY = "MachineSec" Secondary Output Modifier - - TAG_AUGMENT_MACHINE_CATALYST = "MachineCat" Catalyst Use Rate - TAG_AUGMENT_MACHINE_ENERGY = "MachineEnergy" Energy per Process - TAG_AUGMENT_MACHINE_POWER = "MachinePower" Energy Capacity - TAG_AUGMENT_MACHINE_SPEED = "MachineSpeed" Processing Speed - TAG_AUGMENT_MACHINE_XP = "MachineXp" XP per Process??? - */ - - const recipes = [ - // Integral Components - /* These are the default values, adding them for reference - { - type: {}, - toReplace: 'thermal:upgrade_augment_1', - replaceWith: Item.of('thermal:upgrade_augment_1', '{AugmentData:{Type:"Upgrade",BaseMod:2.0d}}') - }, - { - type: {}, - toReplace: 'thermal:upgrade_augment_2', - replaceWith: Item.of('thermal:upgrade_augment_2', '{AugmentData:{Type:"Upgrade",BaseMod:3.0d}}') - }, - { - type: {}, - toReplace: 'thermal:upgrade_augment_3', - replaceWith: Item.of('thermal:upgrade_augment_3', '{AugmentData:{Type:"Upgrade",BaseMod:4.0d}}') - }, - */ - // Dynamo Augments - { - type: {}, - toReplace: 'thermal:dynamo_output_augment', - replaceWith: Item.of( - 'thermal:dynamo_output_augment', - '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.9d,DynamoPower:10.0d}}' - ) - }, - { - type: {}, - toReplace: 'thermal:dynamo_fuel_augment', - replaceWith: Item.of('thermal:dynamo_fuel_augment', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.2d}}') - } - ]; - - recipes.forEach((recipe) => { - event.replaceOutput(recipe.type, recipe.toReplace, recipe.replaceWith); - }); -}); diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 53db06bb9c..8674cd3b59 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -26,7 +26,19 @@ onEvent('item.registry', (event) => { 'hot_compressed_iron_ingot', 'dimensional_storage_crystal', 'spirit_heat_exchanger', - 'amadron_survey_tools' + 'amadron_survey_tools', + + 'machine_speed_augment_mk2', + 'machine_speed_augment_mk3', + 'machine_speed_augment_mk4', + + 'dynamo_output_augment_mk2', + 'dynamo_output_augment_mk3', + 'dynamo_output_augment_mk4', + + 'dynamo_fuel_augment_mk2', + 'dynamo_fuel_augment_mk3', + 'dynamo_fuel_augment_mk4' ]; const ritualDummies = [ From b86fd05ae71702bc737da35f84a1a7d2505d055b Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sat, 25 Sep 2021 19:38:54 -0400 Subject: [PATCH 006/124] Update jei_add_items.js --- .../item_modifiers/jei_add_items.js | 48 +++++++++++-------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index 5167817eaf..ad332937c2 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -28,29 +28,35 @@ onEvent('jei.add.items', (event) => { }), // Thermal Augments - See Notes Below // Machine Speed Upgrades - Item.of('kubejs:machine_speed_augment_mk2', { - AugmentData: { Type: 'Machine', MachineEnergy: 1.43, MachinePower: 3.0 } - }), - Item.of('kubejs:machine_speed_augment_mk3', { - AugmentData: { Type: 'Machine', MachineEnergy: 1.859, MachinePower: 9.0 } - }), - Item.of('kubejs:machine_speed_augment_mk4', { - AugmentData: { Type: 'Machine', MachineEnergy: 2.4167, MachinePower: 27.0 } - }), + Item.of( + 'kubejs:dynamo_output_augment_mk2', + '{AugmentData:{Type:"Machine",MachineEnergy:1.43d,MachinePower:3.0d}}' + ), + Item.of( + 'kubejs:dynamo_output_augment_mk3', + '{AugmentData:{Type:"Machine",MachineEnergy:1.859d,MachinePower:9.0d}}' + ), + Item.of( + 'kubejs:dynamo_output_augment_mk4', + '{AugmentData:{Type:"Machine",MachineEnergy:2.4167d,MachinePower:27.0d}}' + ), // Dynamo Speed Upgrades - Item.of('kubejs:dynamo_output_augment_mk2', { - AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.846, DynamoPower: 2.0 } - }), - Item.of('kubejs:dynamo_output_augment_mk3', { - AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.79524, DynamoPower: 4.0 } - }), - Item.of('kubejs:dynamo_output_augment_mk4', { - AugmentData: { Type: 'Dynamo', DynamoEnergy: 0.7475256, DynamoPower: 8.0 } - }), + Item.of( + 'kubejs:dynamo_output_augment_mk2', + '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.846d,DynamoPower:2.0d}}' + ), + Item.of( + 'kubejs:dynamo_output_augment_mk3', + '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.79524d,DynamoPower:4.0d}}' + ), + Item.of( + 'kubejs:dynamo_output_augment_mk4', + '{AugmentData:{Type:"Dynamo",DynamoEnergy:0.7475256d,DynamoPower:8.0d}}' + ), // Dynamo Efficiency Upgrades - Item.of('kubejs:dynamo_fuel_augment_mk2', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.43 } }), - Item.of('kubejs:dynamo_fuel_augment_mk3', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 1.859 } }), - Item.of('kubejs:dynamo_fuel_augment_mk4', { AugmentData: { Type: 'Dynamo', DynamoEnergy: 2.4167 } }) + Item.of('kubejs:dynamo_fuel_augment_mk2', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.43d}}'), + Item.of('kubejs:dynamo_fuel_augment_mk3', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.859d}}'), + Item.of('kubejs:dynamo_fuel_augment_mk4', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}') ]; items.forEach((item) => event.add(item)); From 8c0edefcddff3282a3517347fc9c2a488f7b2fa8 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 08:18:04 -0400 Subject: [PATCH 007/124] Update to assets in case that's somehow interfering with JEI --- kubejs/assets/kubejs/lang/en_us.json | 12 +++++++++++- .../textures/item/dynamo_fuel_augment.png | Bin 0 -> 535 bytes .../textures/item/dynamo_output_augment.png | Bin 0 -> 583 bytes .../textures/item/machine_speed_augment.png | Bin 0 -> 584 bytes kubejs/client_scripts/constants.js | 10 ++++++++++ kubejs/startup_scripts/item_registry.js | 16 ++++++++++++++-- 6 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 kubejs/assets/kubejs/textures/item/dynamo_fuel_augment.png create mode 100644 kubejs/assets/kubejs/textures/item/dynamo_output_augment.png create mode 100644 kubejs/assets/kubejs/textures/item/machine_speed_augment.png diff --git a/kubejs/assets/kubejs/lang/en_us.json b/kubejs/assets/kubejs/lang/en_us.json index 430735d176..7190862a3f 100644 --- a/kubejs/assets/kubejs/lang/en_us.json +++ b/kubejs/assets/kubejs/lang/en_us.json @@ -17,7 +17,17 @@ "item.kubejs.cutting_essence": "Cutting Essence", "item.kubejs.coarse_lapis_lazuli_compound": "Coarse Lapis Lazuli Compound", "item.kubejs.smoldering_lapis_lazuli_compound": "Smoldering Lapis Lazuli Compound", - "item.kubejs.amadron_survey_tools": "Amadron Survey Tools", + + "item.kubejs.machine_speed_augment_mk2": "Machine Speed MK2", + "item.kubejs.machine_speed_augment_mk3": "Machine Speed MK3", + "item.kubejs.machine_speed_augment_mk4": "Machine Speed MK4", + "item.kubejs.dynamo_output_augment_mk2": "Dynamo Output MK2", + "item.kubejs.dynamo_output_augment_mk3": "Dynamo Output MK3", + "item.kubejs.dynamo_output_augment_mk4": "Dynamo Output MK4", + "item.kubejs.dynamo_fuel_augment_mk2": "Dynamo Efficiency MK2", + "item.kubejs.dynamo_fuel_augment_mk3": "Dynamo Efficiency MK3", + "item.kubejs.dynamo_fuel_augment_mk4": "Dynamo Efficiency MK4", + "item.kubejs.spirit_heat_exchanger": "Maxwellian Heat Exchanger", "item.kubejs.spirit_heat_exchanger.occultism_spirit_tooltip": "%s resides within, ever vigilant against entropy.", "item.magicfeather.magicfeather.occultism_spirit_tooltip": "%s is bound to this feather.", diff --git a/kubejs/assets/kubejs/textures/item/dynamo_fuel_augment.png b/kubejs/assets/kubejs/textures/item/dynamo_fuel_augment.png new file mode 100644 index 0000000000000000000000000000000000000000..da93c7c2ae53bac74259816c4c58b77ba65e7bc0 GIT binary patch literal 535 zcmV+y0_gpTP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0jxz7dy0hEhE?f6H9Zj01SNo_?3Z|pBu`9@Ie4s?9B0#4A(B* zVPJvs8MG}8p)3S=diN=Vw6Zjqh5-=&>hbeX9s|Mv5IC{p2$Y4e?eXpV3@-g03@00! z;Vyvz2?;?4CMX*WW;q`K(;&^}4Ygnl0?3*{E`Wg-FWy5807-(JnYPyft{DXO6jp%w zAo=#+^T1*t=fey`aRJC=l}q8SKYRa|0NIDZp^vy~&5PDx3H$^Z=jB}Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0o+MMK~y+TW3=-P z{?C8~ynFQ)Obdw#gJ}>z7dy0hEhE?f6H9Zj01SNo_?3Z|pBu`9@Ie4s?9B0#4A(B* zVPJvs8MG}8p)3S=diN=Vw6Zjqh5-=&>hbeX9s|Mv5IC{p2$Y4e?eXpVU>d|%ubRg2 zbWQ`94+0Vrf(%ShHVS}ghB-ZH_I$ABGv)DM7r?-a7w;LE<<+$sc=-ew7#W!vKE3;Z zqPb_^Vg{K#=NK-%V*+aifse1>g5}=6e#OAd_#fc~kjWojy#llA*Utdc*Y5s7(Tp63 zFo5EP(4Hw^%^-~+pry>hpeOVX?2=i|2Nnh;2Q=AS%QJ#(b@^3~zVbV^Gf2U=W$Oj^UP(6T{t`x4~fmcL6MLK+XiY1Z4Y) z)BoU_K>$P>cj}_Jgjq~R0q%nTe}98DgZ#Z9Hjd%5w>87s>(UH+nGG3S{+(yoJLMI_ zI-6RCeS&HXPaZsE`10ik0~07&!U6}Rd0uKFIM6_1uxJDUVGkuJ3lW$Y>0ozP6N9X( zB3uEC4Z`3s&_;~~P#9q31#Iaao7k?6+Ykmo#ZYn^jExU~4FEAjPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0o_SNK~y+TW3=-P z{?C8~ynFQ)Obdw#gJ}>z7dy0hEhE?f6H9Zj01SNo_?3Z|pBu`9@Ie4s?9B0#4A(B* zVPJvs8MG}8p)3S=diN=Vw6Zjqh5-=&>hbeX9s|Mv5IC{p2$Y4e?eXpVU>d}Sxda9z zBm^0lpllQX(+tv3!?loMR_SSm-n0W?F^~&j;Khsg5CcF8Va|kU&i_4)VL?wP!|SPk z8O~~528)3J$oVjrptt~JGP35)ZA=WmUOF+j|NIFSdo=YLTpk%&C-Mc0|Nj+ Wztqv*;^WN#0000 { 'craft_soulscythe' ]; - const assemblyTableItems = [ + const reusableItemTextures = [ + { name: 'kubejs:machine_speed_augment_mk2', texture: 'machine_speed_augment' }, + { name: 'kubejs:machine_speed_augment_mk3', texture: 'machine_speed_augment' }, + { name: 'kubejs:machine_speed_augment_mk4', texture: 'machine_speed_augment' }, + + { name: 'kubejs:dynamo_output_augment_mk2', texture: 'dynamo_output_augment' }, + { name: 'kubejs:dynamo_output_augment_mk3', texture: 'dynamo_output_augment' }, + { name: 'kubejs:dynamo_output_augment_mk4', texture: 'dynamo_output_augment' }, + + { name: 'kubejs:dynamo_fuel_augment_mk2', texture: 'dynamo_fuel_augment' }, + { name: 'kubejs:dynamo_fuel_augment_mk3', texture: 'dynamo_fuel_augment' }, + { name: 'kubejs:dynamo_fuel_augment_mk4', texture: 'dynamo_fuel_augment' }, + { name: 'basic_circuit_package', texture: 'assembly_package_filled' }, { name: 'basic_circuit_assembly', texture: 'assembly_package_processing' }, { name: 'basic_lenses_package', texture: 'assembly_package_filled' }, @@ -139,7 +151,7 @@ onEvent('item.registry', (event) => { event.create(item).type('occultism:ritual_dummy').group('KubeJS').texture('kubejs:item/pentacle'); }); - assemblyTableItems.forEach((item) => { + reusableItemTextures.forEach((item) => { event.create(item.name).group('KubeJS').texture(`kubejs:item/${item.texture}`); }); }); From 61eaf0ce911338dafbe76eb7d24e5bc84af33c94 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 08:43:36 -0400 Subject: [PATCH 008/124] Attempt to hide originals... --- kubejs/client_scripts/constants.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index ae1560c9d4..c1be5ed924 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -187,9 +187,11 @@ var itemsToHide = [ 'kubejs:machine_speed_augment_mk2', 'kubejs:machine_speed_augment_mk3', 'kubejs:machine_speed_augment_mk4', + 'kubejs:dynamo_output_augment_mk2', 'kubejs:dynamo_output_augment_mk3', 'kubejs:dynamo_output_augment_mk4', + 'kubejs:dynamo_fuel_augment_mk2', 'kubejs:dynamo_fuel_augment_mk3', 'kubejs:dynamo_fuel_augment_mk4', From dd11e7a31f57f43736a3b6044303de77d5e35715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 19:40:07 +0200 Subject: [PATCH 009/124] auto formatting --- kubejs/assets/ponderjs/lang/en_us.json | 274 ++++++++++++------------- 1 file changed, 137 insertions(+), 137 deletions(-) diff --git a/kubejs/assets/ponderjs/lang/en_us.json b/kubejs/assets/ponderjs/lang/en_us.json index acea92e205..1f5eeaa006 100644 --- a/kubejs/assets/ponderjs/lang/en_us.json +++ b/kubejs/assets/ponderjs/lang/en_us.json @@ -1,138 +1,138 @@ { - "enigmatica.ponder.tag.industrial_foregoing.description": "Learn more about the Industrial Foregoing mod and its intriguing mechanics!", - "enigmatica.ponder.latex.extracting_fluids.text_5": "Acacia Logs will produce Latex", - "enigmatica.ponder.latex.extracting_fluids.text_6": "Be sure to check JEI for more information on what kinds of fluids you can extract at what rate from different blocks!", - "enigmatica.ponder.latex.extracting_fluids.text_3": "Keep in mind that using different logs with the Fluid Extractor may give you different fluids!", - "enigmatica.ponder.latex.extracting_fluids.text_4": "Oak Logs will produce Resin", - "enigmatica.ponder.latex.processing_latex.text_9": "To get large piles of Dry Rubber...", - "enigmatica.ponder.latex.processing_latex.text_10": "...and Plastic!", - "enigmatica.ponder.latex.processing_latex.text_8": "Once you have some Tiny Dry Rubber, you can then process it further...", - "enigmatica.ponder.latex.processing_latex.text_7": "This is quite a slow process; you\u0027ll have to wait around 5 seconds for each Tiny Dry Rubber...", - "enigmatica.ponder.latex.processing_latex.text_6": "It\u0027ll start coalescing the Latex fluid into tiny balls of rubber!", - "enigmatica.ponder.latex.processing_latex.text_5": "and finally, Latex...", - "enigmatica.ponder.laser_drill.lenses.text_3": "For example, if we wanted more Uranium or Emerald Ore, we could add a lime lens to the Laser...", - "enigmatica.ponder.laser_drill.lenses.text_4": "And soon enough, our efforts shall be rewarded!", - "enigmatica.ponder.latex.processing_latex.text_4": "Power...", - "enigmatica.ponder.latex.processing_latex.text_3": "When given Water...", - "enigmatica.ponder.latex.processing_latex.text_2": "Enter: The Latex Processing Unit", - "enigmatica.ponder.laser_drill.fluid_drill.text_7": "Other, more \"involved\" requirements exist as well, and we\u0027ll touch on my personal favourite in this next and final scene.", - "enigmatica.ponder.laser_drill.lenses.text_2": "That\u0027s what lenses are for: By adding them into the Ore Laser Base, we can skew the odds of getting ores that have a certain colour in our favour.", - "enigmatica.ponder.laser_drill.lenses.text_1": "As you could see, the resources the Ore Laser drills up are random, so how can we make sure we actually get our precious rare ores rather than ten different kinds of copper?", - "enigmatica.ponder.laser_drill.ether_gas.text_9": "And that\u0027s about it for the basics of the Industrial Foregoing Laser Drill! There\u0027s more stuff we haven\u0027t covered in this tutorial, so we recommend you just give it a try yourself!", - "enigmatica.ponder.laser_drill.ether_gas.text_7": "Now that dear Bartholomew over here is trapped by the Stasis Chamber and cannot wreck our stuff, we can use the Fluid Laser to... milk him. (Seriously, Buuz? This is a kids\u0027 game!)", - "enigmatica.ponder.latex.extracting_fluids.text_1": "Latex is a renewable resource gathered from trees, and plays a vital role in Industrial Foregoing.", - "enigmatica.ponder.laser_drill.ether_gas.text_8": "This will produce Ether Gas, which we will just stow away in a Black Hole Tank for now.", - "enigmatica.ponder.latex.extracting_fluids.text_2": "To get started, you need to place a Fluid Extractor against a log of wood, such as Acacia.", - "enigmatica.ponder.laser_drill.ether_gas.text_5": "Next, we will need a willing test subject. Luckily, I know just the right one for this job!", - "enigmatica.ponder.laser_drill.ether_gas.text_6": "Say Hi to the camera, Bartholomew!", - "enigmatica.ponder.laser_drill.ether_gas.text_3": "Next, we need to place down a stasis chamber. This puppy, when provided with power, will prevent any entities within its working area (blue), including players, from moving or interacting with the world in any way, hence the name.", - "enigmatica.ponder.laser_drill.ether_gas.text_4": "Trust me when I say: You DO NOT want to let this thing run out of power for this build.", - "enigmatica.ponder.laser_drill.ether_gas.text_1": "Welcome... to the Wither Milker (patent pending)! You\u0027ll see why it\u0027s called that in a bit, but for now, let\u0027s go over the individual parts.", - "enigmatica.ponder.laser_drill.ether_gas.text_2": "First, we have our typical Fluid Laser Drill setup, with the Laser Base containing a Purple Lens. I\u0027ve also left out the energy input here because you should know that the Drills need energy by now.", - "enigmatica.ponder.laser_drill.introduction.text_3": "Next, add some Laser Drills within a 2-block radius around the Base to start powering it, for example like this:", - "enigmatica.ponder.laser_drill.introduction.text_4": "..oh, and don\u0027t forget to power them!", - "enigmatica.ponder.laser_drill.introduction.text_1": "The Laser Drill is a mid- to late-game structure in Industrial Foregoing that lets you mine up various different resources from the void.", - "enigmatica.ponder.laser_drill.introduction.text_2": "To construct it, you\u0027ll first need either an Ore Laser Base or a Fluid Laser Base. We\u0027ll go over the Ore Laser first.", - "enigmatica.ponder.laser_drill.fluid_drill.header": "Using Lenses in the Fluid Laser", - "enigmatica.ponder.laser_drill.lenses.header": "Using Lenses to improve your chances", - "enigmatica.ponder.laser_drill.introduction.text_5": "The more drills you add, the faster the Laser is going to be", - "enigmatica.ponder.laser_drill.introduction.text_6": "After a while, we finally managed to get our first ore; but it's not quite the one we wanted, so let's try to change our luck!", - "enigmatica.ponder.latex.processing_latex.header": "Processing Latex into Rubber and Plastic", - "enigmatica.ponder.laser_drill.fluid_drill.text_2": "They serve as the \"focus\" for the Fluid Laser.", - "enigmatica.ponder.laser_drill.fluid_drill.text_1": "In addition to increasing your odds with the Ore Laser, Lenses serve another important purpose:", - "enigmatica.ponder.laser_drill.fluid_drill.text_4": "For example, if you place it in any Nether biome...", - "enigmatica.ponder.tag.industrial_foregoing": "Industrial Foregoing", - "enigmatica.ponder.laser_drill.fluid_drill.text_3": "Fundamentally, the Fluid Laser is quite similar to its Ore counterpart, but it requires a Lens to function, and different recipes can have special requirements you may have to watch out for.", - "enigmatica.ponder.latex.extracting_fluids.header": "Gathering Latex From Trees", - "enigmatica.ponder.laser_drill.fluid_drill.text_6": "...it\u0027ll start drilling up Lava!", - "enigmatica.ponder.laser_drill.fluid_drill.text_5": "...and give it the corresponding focus...", - "enigmatica.ponder.latex.processing_latex.text_1": "So, now that you have a bunch of Latex, the question becomes: What do you do with it?", - "enigmatica.ponder.laser_drill.introduction.header": "How to use the Laser Drill", - "enigmatica.ponder.laser_drill.ether_gas.header": "Getting Ether Gas", - "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_3": "We should go ahead and break the cobblestone here and see what happens.", - "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_2": "When flowing lava touches water, it creates cobblestone. This generator floods a stair block to protect the water source.", - "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_5": "We can set the router to break any cobblestone in front of it for infinite cobblestone!", - "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_4": "We can automate this with a block breaker of some sort - let\u0027s use a Modular Router with a breaker module.", - "enigmatica.ponder.cobbleworks.targeted_cobblegen.text_1": "Maybe you want something other than vanilla cobblestone - let\u0027s say Scoria Cobblestone. This generator won\u0027t do.", - "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_1": "Let\u0027s start with a basic vanilla cobblestone generator.", - "enigmatica.ponder.cobbleworks.targeted_cobblegen.text_2": "If we place a specific type of Cobblestone under the cobblestone generation point, the generator will now make that type of cobblestone!", - "enigmatica.ponder.cobbleworks.targeted_cobblegen.header": "Targeted Generation - need something specific?", - "enigmatica.ponder.stoneworks.random_stonegen.header": "Random Generation - for when you don\u0027t have what you need!", - "enigmatica.ponder.tag.basics": "Basic Mechanics", - "enigmatica.ponder.stoneworks.vanilla_stonegen.text_1": "Let\u0027s start with a basic vanilla stone generator.", - "enigmatica.ponder.tag.basics.description": "Learn about some basic (sometimes vanilla!) mechanics that will come in handy.", - "enigmatica.ponder.stoneworks.vanilla_stonegen.text_2": "When flowing lava falls on flowing water, it creates stone. This generator floods a stair block to protect the water source.", - "enigmatica.ponder.stoneworks.vanilla_stonegen.text_3": "We should go ahead and break the stone here and see what happens.", - "enigmatica.ponder.stoneworks.targeted_stonegen.header": "Targeted Generation - need something specific?", - "enigmatica.ponder.stoneworks.vanilla_stonegen.text_4": "We can automate this with a block breaker of some sort - let\u0027s use a Modular Router with a breaker module. We\u0027ll clearly need silk touch on the breaker module.", - "enigmatica.ponder.stoneworks.vanilla_stonegen.text_5": "We can set the router to break any stone in front of it for infinite stone!", - "enigmatica.ponder.cobbleworks.random_cobblegen.header": "Random Generation - for when you don\u0027t have what you need!", - "enigmatica.ponder.stoneworks.vanilla_stonegen.header": "Stone Generators - so simple Vanilla has one!", - "enigmatica.ponder.stoneworks.targeted_stonegen.text_2": "If we place a specific type of Stone under the stone generation point, the generator will now make that type of stone!", - "enigmatica.ponder.stoneworks.targeted_stonegen.text_1": "Maybe you want something other than vanilla stone - let\u0027s say Scoria. This generator won\u0027t do.", - "enigmatica.ponder.cobbleworks.random_cobblegen.text_2": "If you place a block of Iron under the cobblestone generation point the generator will now make random cobblestone!", - "enigmatica.ponder.cobbleworks.random_cobblegen.text_1": "Don\u0027t have the cobblestone you need? Your cobblestone generator can produce random types of cobblestone!", - "enigmatica.ponder.stoneworks.random_stonegen.text_1": "Don\u0027t have the stone you need? Your stone generator can produce random types of stone!", - "enigmatica.ponder.stoneworks.random_stonegen.text_2": "If you place a block of Diamond under the stone generation point the generator will now make random stone!", - "enigmatica.ponder.cobbleworks.vanilla_cobblegen.header": "Cobble Generators - so simple Vanilla has one!", - "enigmatica.ponder.tag.portals.description": "Learn how to construct some of the key portals in Enigmatica.", - "portals.ponder.undergarden.undergarden_portal.text_3": "Now enter the portal - you\u0027ll find yourself less in hell, more in a damp, dark place.", - "portals.ponder.undergarden.undergarden_portal.text_2": "Click the portal with the Catalyst, as you would light a Nether Portal", - "portals.ponder.undergarden.undergarden_portal.text_1": "Want to search the deep dark Undergarden? Build a nether portal like structure with Stone Bricks.", - "portals.ponder.atum.atum_portal.text_1": "So you\u0027re low on sand, and want to travel to a desert. Build this structure out of sandstone.", - "portals.ponder.atum.atum_portal.text_4": "Now jump in - your sandy vacation awaits!", - "portals.ponder.atum.atum_portal.text_2": "Fill it with water...", - "portals.ponder.atum.atum_portal.text_3": "...then drop in a Scarab.", - "enigmatica.ponder.tag.portals": "Thinking with Portals", - "portals.ponder.undergarden.undergarden_portal.header": "Undergarden\u0027s Portal - this won\u0027t take you to Narnia.", - "portals.ponder.atum.atum_portal.header": "Atum\u0027s Portal - not a Stargate.", - "enigmatica.ponder.forge_hammer.forge_hammer.header": "Tetra Forge Hammer - Building Better Tools", - "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.header": "Ender Dragon Respawning - when you need to make an omlet", - "enigmatica.ponder.forge_hammer.forge_hammer.text_6": "It can also be crafted, and is compatible with the normal Tetra Workbench.", - "enigmatica.ponder.forge_hammer.forge_hammer.text_4": "Using the Forge Hammer will drain charge from the Magmatic Cells, which will need to be replaced when depleted.", - "enigmatica.ponder.forge_hammer.forge_hammer.text_5": "The Forge Hammer can be found in Tetra structures, found underground in cold biomes.", - "enigmatica.ponder.forge_hammer.forge_hammer.text_2": "Install Thermal Cells on both sides of the Forge Hammer.", - "enigmatica.ponder.forge_hammer.forge_hammer.text_3": "Install upgrades for the forge hammer (such as the combustion chamber) on both sides of the Forge Hammer.", - "enigmatica.ponder.forge_hammer.forge_hammer.text_1": "To make better tools, you need the Forge Hammer multiblock.", - "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_4": "Placing the last one will shut off the End Portal, and resummon the Ender Dragon.", - "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_2": "But now you need to summon it again - maybe you need another dragon egg or head.", - "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_3": "Place End Crystals on the four sides of the portal frame, like this.", - "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_1": "So, you\u0027ve killed the Ender Dragon and activated the end portal - congrats!", - "enigmatica.ponder.nori_sheet_press.growing_seaweed.header": "Seaweed - Kelp But Tasty", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_6": "The piston will compress the seaweed block, dropping nori sheets.", - "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.text_2": "Seaweed can be dried in a furnace, just like kelp.", - "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.text_3": "Now craft or pack the dried seaweed into a dried seaweed block.", - "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.text_1": "Once you\u0027ve harvested your seaweed it needs to be dried and crafted into a block.", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_1": "Nori sheets are crafted by compressing a dried seaweed block with a piston.", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_5": "Activate the piston by applying a redstone signal.", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_4": "Place the seaweed block to compress in the middle.", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_3": "Place a piston, facing down, with a gap for your seaweed block.", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_2": "Place a Block of Iron down as a base.", - "enigmatica.ponder.nori_sheet_press.nori_sheet_press.header": "Nori Sheet Press - Seaweed Plate Crafting", - "enigmatica.ponder.tag.tech.description": "Technolgy can mold the world around you - learn to harness it today!", - "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.header": "Dried Seaweed Blocks - Extra Flakey", - "enigmatica.ponder.nori_sheet_press.growing_seaweed.text_2": "Just like kelp, you can farm it by breaking segment second to the bottom.", - "enigmatica.ponder.nori_sheet_press.growing_seaweed.text_1": "Seaweed can be made into Nori sheets. It can be found in the ocean, growing like kelp.", - "enigmatica.ponder.tag.tools.description": "Better tools \u003d better survivability.", - "enigmatica.ponder.tag.tools": "Tools of the Trade", - "enigmatica.ponder.tag.tech": "Better Living through SCIENCE!", - "enigmatica.ponder.mutation.entity_mutation.text_3": "For example, the Iron Bee can mutate stone into iron ore.", - "enigmatica.ponder.mutation.entity_mutation.text_2": "Pollen can mutate things up to 2 blocks below the bee, and will pass through solid blocks to mutate things below.", - "enigmatica.ponder.mutation.entity_mutation.text_1": "Resourceful Bee pollen can trigger mutations in blocks, fluids, and entities.", - "enigmatica.ponder.mutation.entity_mutation.text_7": "It can also mutate Blizz into Blizz Bees.", - "enigmatica.ponder.mutation.pollen_mechanics.text_1": "Bees that have gathered nectar will drip pollen as they travel back to their hive.", - "enigmatica.ponder.mutation.entity_mutation.text_6": "The Blaze Bee can mutate Beepers into Ghast Bees", - "enigmatica.ponder.mutation.pollen_mechanics.text_2": "When pollen from vanilla bees falls on crops it can trigger a bone meal effect.", - "enigmatica.ponder.mutation.entity_mutation.text_5": "The I-C-Bee can mutate Water, creating Blue Ice.", - "enigmatica.ponder.mutation.entity_mutation.text_4": "It can also mutate a block of coal into a Steel Bee Egg.", - "enigmatica.ponder.tag.magic": "Harnessing the Mystical Forces", - "enigmatica.ponder.mutation.entity_mutation.header": "Pollen as Mutagen", - "enigmatica.ponder.mutation.pollen_mechanics.header": "Bee Pollen - Practically Dripping with Function", - "enigmatica.ponder.tag.magic.description": "Magic is just technology we don\u0027t understand yet.", - "enigmatica.ponder.mutation.mutation_chamber.header": "Mutating Bees the Easy Way", - "enigmatica.ponder.mutation.mutation_chamber.text_4": "Now that the Blaze Bee has gathered nectar, it will travel over to its hive, dripping pollen as it goes.", - "enigmatica.ponder.mutation.mutation_chamber.text_3": "We\u0027ll just place this Blaze Bee here and let it collect some nectar from this magma cake...", - "enigmatica.ponder.mutation.mutation_chamber.text_2": "Place the bee you\u0027d like to mutate here; today we will be sacrificing a Beeper. Since things can be mutated through solid blocks, we can use a trap door to hold the Beeper in place.", - "enigmatica.ponder.mutation.mutation_chamber.text_1": "This is a good structure for mutating bees.", - "enigmatica.ponder.mutation.mutation_chamber.text_5": "When the blaze bee passes over the Beeper it will mutate into a Ghast Bee." -} + "enigmatica.ponder.tag.industrial_foregoing.description": "Learn more about the Industrial Foregoing mod and its intriguing mechanics!", + "enigmatica.ponder.latex.extracting_fluids.text_5": "Acacia Logs will produce Latex", + "enigmatica.ponder.latex.extracting_fluids.text_6": "Be sure to check JEI for more information on what kinds of fluids you can extract at what rate from different blocks!", + "enigmatica.ponder.latex.extracting_fluids.text_3": "Keep in mind that using different logs with the Fluid Extractor may give you different fluids!", + "enigmatica.ponder.latex.extracting_fluids.text_4": "Oak Logs will produce Resin", + "enigmatica.ponder.latex.processing_latex.text_9": "To get large piles of Dry Rubber...", + "enigmatica.ponder.latex.processing_latex.text_10": "...and Plastic!", + "enigmatica.ponder.latex.processing_latex.text_8": "Once you have some Tiny Dry Rubber, you can then process it further...", + "enigmatica.ponder.latex.processing_latex.text_7": "This is quite a slow process; you\u0027ll have to wait around 5 seconds for each Tiny Dry Rubber...", + "enigmatica.ponder.latex.processing_latex.text_6": "It\u0027ll start coalescing the Latex fluid into tiny balls of rubber!", + "enigmatica.ponder.latex.processing_latex.text_5": "and finally, Latex...", + "enigmatica.ponder.laser_drill.lenses.text_3": "For example, if we wanted more Uranium or Emerald Ore, we could add a lime lens to the Laser...", + "enigmatica.ponder.laser_drill.lenses.text_4": "And soon enough, our efforts shall be rewarded!", + "enigmatica.ponder.latex.processing_latex.text_4": "Power...", + "enigmatica.ponder.latex.processing_latex.text_3": "When given Water...", + "enigmatica.ponder.latex.processing_latex.text_2": "Enter: The Latex Processing Unit", + "enigmatica.ponder.laser_drill.fluid_drill.text_7": "Other, more \"involved\" requirements exist as well, and we\u0027ll touch on my personal favourite in this next and final scene.", + "enigmatica.ponder.laser_drill.lenses.text_2": "That\u0027s what lenses are for: By adding them into the Ore Laser Base, we can skew the odds of getting ores that have a certain colour in our favour.", + "enigmatica.ponder.laser_drill.lenses.text_1": "As you could see, the resources the Ore Laser drills up are random, so how can we make sure we actually get our precious rare ores rather than ten different kinds of copper?", + "enigmatica.ponder.laser_drill.ether_gas.text_9": "And that\u0027s about it for the basics of the Industrial Foregoing Laser Drill! There\u0027s more stuff we haven\u0027t covered in this tutorial, so we recommend you just give it a try yourself!", + "enigmatica.ponder.laser_drill.ether_gas.text_7": "Now that dear Bartholomew over here is trapped by the Stasis Chamber and cannot wreck our stuff, we can use the Fluid Laser to... milk him. (Seriously, Buuz? This is a kids\u0027 game!)", + "enigmatica.ponder.latex.extracting_fluids.text_1": "Latex is a renewable resource gathered from trees, and plays a vital role in Industrial Foregoing.", + "enigmatica.ponder.laser_drill.ether_gas.text_8": "This will produce Ether Gas, which we will just stow away in a Black Hole Tank for now.", + "enigmatica.ponder.latex.extracting_fluids.text_2": "To get started, you need to place a Fluid Extractor against a log of wood, such as Acacia.", + "enigmatica.ponder.laser_drill.ether_gas.text_5": "Next, we will need a willing test subject. Luckily, I know just the right one for this job!", + "enigmatica.ponder.laser_drill.ether_gas.text_6": "Say Hi to the camera, Bartholomew!", + "enigmatica.ponder.laser_drill.ether_gas.text_3": "Next, we need to place down a stasis chamber. This puppy, when provided with power, will prevent any entities within its working area (blue), including players, from moving or interacting with the world in any way, hence the name.", + "enigmatica.ponder.laser_drill.ether_gas.text_4": "Trust me when I say: You DO NOT want to let this thing run out of power for this build.", + "enigmatica.ponder.laser_drill.ether_gas.text_1": "Welcome... to the Wither Milker (patent pending)! You\u0027ll see why it\u0027s called that in a bit, but for now, let\u0027s go over the individual parts.", + "enigmatica.ponder.laser_drill.ether_gas.text_2": "First, we have our typical Fluid Laser Drill setup, with the Laser Base containing a Purple Lens. I\u0027ve also left out the energy input here because you should know that the Drills need energy by now.", + "enigmatica.ponder.laser_drill.introduction.text_3": "Next, add some Laser Drills within a 2-block radius around the Base to start powering it, for example like this:", + "enigmatica.ponder.laser_drill.introduction.text_4": "..oh, and don\u0027t forget to power them!", + "enigmatica.ponder.laser_drill.introduction.text_1": "The Laser Drill is a mid- to late-game structure in Industrial Foregoing that lets you mine up various different resources from the void.", + "enigmatica.ponder.laser_drill.introduction.text_2": "To construct it, you\u0027ll first need either an Ore Laser Base or a Fluid Laser Base. We\u0027ll go over the Ore Laser first.", + "enigmatica.ponder.laser_drill.fluid_drill.header": "Using Lenses in the Fluid Laser", + "enigmatica.ponder.laser_drill.lenses.header": "Using Lenses to improve your chances", + "enigmatica.ponder.laser_drill.introduction.text_5": "The more drills you add, the faster the Laser is going to be", + "enigmatica.ponder.laser_drill.introduction.text_6": "After a while, we finally managed to get our first ore; but it\u0027s not quite the one we wanted, so let\u0027s try to change our luck!", + "enigmatica.ponder.latex.processing_latex.header": "Processing Latex into Rubber and Plastic", + "enigmatica.ponder.laser_drill.fluid_drill.text_2": "They serve as the \"focus\" for the Fluid Laser.", + "enigmatica.ponder.laser_drill.fluid_drill.text_1": "In addition to increasing your odds with the Ore Laser, Lenses serve another important purpose:", + "enigmatica.ponder.laser_drill.fluid_drill.text_4": "For example, if you place it in any Nether biome...", + "enigmatica.ponder.tag.industrial_foregoing": "Industrial Foregoing", + "enigmatica.ponder.laser_drill.fluid_drill.text_3": "Fundamentally, the Fluid Laser is quite similar to its Ore counterpart, but it requires a Lens to function, and different recipes can have special requirements you may have to watch out for.", + "enigmatica.ponder.latex.extracting_fluids.header": "Gathering Latex From Trees", + "enigmatica.ponder.laser_drill.fluid_drill.text_6": "...it\u0027ll start drilling up Lava!", + "enigmatica.ponder.laser_drill.fluid_drill.text_5": "...and give it the corresponding focus...", + "enigmatica.ponder.latex.processing_latex.text_1": "So, now that you have a bunch of Latex, the question becomes: What do you do with it?", + "enigmatica.ponder.laser_drill.introduction.header": "How to use the Laser Drill", + "enigmatica.ponder.laser_drill.ether_gas.header": "Getting Ether Gas", + "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_3": "We should go ahead and break the cobblestone here and see what happens.", + "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_2": "When flowing lava touches water, it creates cobblestone. This generator floods a stair block to protect the water source.", + "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_5": "We can set the router to break any cobblestone in front of it for infinite cobblestone!", + "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_4": "We can automate this with a block breaker of some sort - let\u0027s use a Modular Router with a breaker module.", + "enigmatica.ponder.cobbleworks.targeted_cobblegen.text_1": "Maybe you want something other than vanilla cobblestone - let\u0027s say Scoria Cobblestone. This generator won\u0027t do.", + "enigmatica.ponder.cobbleworks.vanilla_cobblegen.text_1": "Let\u0027s start with a basic vanilla cobblestone generator.", + "enigmatica.ponder.cobbleworks.targeted_cobblegen.text_2": "If we place a specific type of Cobblestone under the cobblestone generation point, the generator will now make that type of cobblestone!", + "enigmatica.ponder.cobbleworks.targeted_cobblegen.header": "Targeted Generation - need something specific?", + "enigmatica.ponder.stoneworks.random_stonegen.header": "Random Generation - for when you don\u0027t have what you need!", + "enigmatica.ponder.tag.basics": "Basic Mechanics", + "enigmatica.ponder.stoneworks.vanilla_stonegen.text_1": "Let\u0027s start with a basic vanilla stone generator.", + "enigmatica.ponder.tag.basics.description": "Learn about some basic (sometimes vanilla!) mechanics that will come in handy.", + "enigmatica.ponder.stoneworks.vanilla_stonegen.text_2": "When flowing lava falls on flowing water, it creates stone. This generator floods a stair block to protect the water source.", + "enigmatica.ponder.stoneworks.vanilla_stonegen.text_3": "We should go ahead and break the stone here and see what happens.", + "enigmatica.ponder.stoneworks.targeted_stonegen.header": "Targeted Generation - need something specific?", + "enigmatica.ponder.stoneworks.vanilla_stonegen.text_4": "We can automate this with a block breaker of some sort - let\u0027s use a Modular Router with a breaker module. We\u0027ll clearly need silk touch on the breaker module.", + "enigmatica.ponder.stoneworks.vanilla_stonegen.text_5": "We can set the router to break any stone in front of it for infinite stone!", + "enigmatica.ponder.cobbleworks.random_cobblegen.header": "Random Generation - for when you don\u0027t have what you need!", + "enigmatica.ponder.stoneworks.vanilla_stonegen.header": "Stone Generators - so simple Vanilla has one!", + "enigmatica.ponder.stoneworks.targeted_stonegen.text_2": "If we place a specific type of Stone under the stone generation point, the generator will now make that type of stone!", + "enigmatica.ponder.stoneworks.targeted_stonegen.text_1": "Maybe you want something other than vanilla stone - let\u0027s say Scoria. This generator won\u0027t do.", + "enigmatica.ponder.cobbleworks.random_cobblegen.text_2": "If you place a block of Iron under the cobblestone generation point the generator will now make random cobblestone!", + "enigmatica.ponder.cobbleworks.random_cobblegen.text_1": "Don\u0027t have the cobblestone you need? Your cobblestone generator can produce random types of cobblestone!", + "enigmatica.ponder.stoneworks.random_stonegen.text_1": "Don\u0027t have the stone you need? Your stone generator can produce random types of stone!", + "enigmatica.ponder.stoneworks.random_stonegen.text_2": "If you place a block of Diamond under the stone generation point the generator will now make random stone!", + "enigmatica.ponder.cobbleworks.vanilla_cobblegen.header": "Cobble Generators - so simple Vanilla has one!", + "enigmatica.ponder.tag.portals.description": "Learn how to construct some of the key portals in Enigmatica.", + "portals.ponder.undergarden.undergarden_portal.text_3": "Now enter the portal - you\u0027ll find yourself less in hell, more in a damp, dark place.", + "portals.ponder.undergarden.undergarden_portal.text_2": "Click the portal with the Catalyst, as you would light a Nether Portal", + "portals.ponder.undergarden.undergarden_portal.text_1": "Want to search the deep dark Undergarden? Build a nether portal like structure with Stone Bricks.", + "portals.ponder.atum.atum_portal.text_1": "So you\u0027re low on sand, and want to travel to a desert. Build this structure out of sandstone.", + "portals.ponder.atum.atum_portal.text_4": "Now jump in - your sandy vacation awaits!", + "portals.ponder.atum.atum_portal.text_2": "Fill it with water...", + "portals.ponder.atum.atum_portal.text_3": "...then drop in a Scarab.", + "enigmatica.ponder.tag.portals": "Thinking with Portals", + "portals.ponder.undergarden.undergarden_portal.header": "Undergarden\u0027s Portal - this won\u0027t take you to Narnia.", + "portals.ponder.atum.atum_portal.header": "Atum\u0027s Portal - not a Stargate.", + "enigmatica.ponder.forge_hammer.forge_hammer.header": "Tetra Forge Hammer - Building Better Tools", + "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.header": "Ender Dragon Respawning - when you need to make an omlet", + "enigmatica.ponder.forge_hammer.forge_hammer.text_6": "It can also be crafted, and is compatible with the normal Tetra Workbench.", + "enigmatica.ponder.forge_hammer.forge_hammer.text_4": "Using the Forge Hammer will drain charge from the Magmatic Cells, which will need to be replaced when depleted.", + "enigmatica.ponder.forge_hammer.forge_hammer.text_5": "The Forge Hammer can be found in Tetra structures, found underground in cold biomes.", + "enigmatica.ponder.forge_hammer.forge_hammer.text_2": "Install Thermal Cells on both sides of the Forge Hammer.", + "enigmatica.ponder.forge_hammer.forge_hammer.text_3": "Install upgrades for the forge hammer (such as the combustion chamber) on both sides of the Forge Hammer.", + "enigmatica.ponder.forge_hammer.forge_hammer.text_1": "To make better tools, you need the Forge Hammer multiblock.", + "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_4": "Placing the last one will shut off the End Portal, and resummon the Ender Dragon.", + "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_2": "But now you need to summon it again - maybe you need another dragon egg or head.", + "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_3": "Place End Crystals on the four sides of the portal frame, like this.", + "enigmatica.ponder.respawn_ender_dragon.respawn_ender_dragon.text_1": "So, you\u0027ve killed the Ender Dragon and activated the end portal - congrats!", + "enigmatica.ponder.nori_sheet_press.growing_seaweed.header": "Seaweed - Kelp But Tasty", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_6": "The piston will compress the seaweed block, dropping nori sheets.", + "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.text_2": "Seaweed can be dried in a furnace, just like kelp.", + "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.text_3": "Now craft or pack the dried seaweed into a dried seaweed block.", + "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.text_1": "Once you\u0027ve harvested your seaweed it needs to be dried and crafted into a block.", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_1": "Nori sheets are crafted by compressing a dried seaweed block with a piston.", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_5": "Activate the piston by applying a redstone signal.", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_4": "Place the seaweed block to compress in the middle.", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_3": "Place a piston, facing down, with a gap for your seaweed block.", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.text_2": "Place a Block of Iron down as a base.", + "enigmatica.ponder.nori_sheet_press.nori_sheet_press.header": "Nori Sheet Press - Seaweed Plate Crafting", + "enigmatica.ponder.tag.tech.description": "Technolgy can mold the world around you - learn to harness it today!", + "enigmatica.ponder.nori_sheet_press.dried_seaweed_blocks.header": "Dried Seaweed Blocks - Extra Flakey", + "enigmatica.ponder.nori_sheet_press.growing_seaweed.text_2": "Just like kelp, you can farm it by breaking segment second to the bottom.", + "enigmatica.ponder.nori_sheet_press.growing_seaweed.text_1": "Seaweed can be made into Nori sheets. It can be found in the ocean, growing like kelp.", + "enigmatica.ponder.tag.tools.description": "Better tools \u003d better survivability.", + "enigmatica.ponder.tag.tools": "Tools of the Trade", + "enigmatica.ponder.tag.tech": "Better Living through SCIENCE!", + "enigmatica.ponder.mutation.entity_mutation.text_3": "For example, the Iron Bee can mutate stone into iron ore.", + "enigmatica.ponder.mutation.entity_mutation.text_2": "Pollen can mutate things up to 2 blocks below the bee, and will pass through solid blocks to mutate things below.", + "enigmatica.ponder.mutation.entity_mutation.text_1": "Resourceful Bee pollen can trigger mutations in blocks, fluids, and entities.", + "enigmatica.ponder.mutation.entity_mutation.text_7": "It can also mutate Blizz into Blizz Bees.", + "enigmatica.ponder.mutation.pollen_mechanics.text_1": "Bees that have gathered nectar will drip pollen as they travel back to their hive.", + "enigmatica.ponder.mutation.entity_mutation.text_6": "The Blaze Bee can mutate Beepers into Ghast Bees", + "enigmatica.ponder.mutation.pollen_mechanics.text_2": "When pollen from vanilla bees falls on crops it can trigger a bone meal effect.", + "enigmatica.ponder.mutation.entity_mutation.text_5": "The I-C-Bee can mutate Water, creating Blue Ice.", + "enigmatica.ponder.mutation.entity_mutation.text_4": "It can also mutate a block of coal into a Steel Bee Egg.", + "enigmatica.ponder.tag.magic": "Harnessing the Mystical Forces", + "enigmatica.ponder.mutation.entity_mutation.header": "Pollen as Mutagen", + "enigmatica.ponder.mutation.pollen_mechanics.header": "Bee Pollen - Practically Dripping with Function", + "enigmatica.ponder.tag.magic.description": "Magic is just technology we don\u0027t understand yet.", + "enigmatica.ponder.mutation.mutation_chamber.header": "Mutating Bees the Easy Way", + "enigmatica.ponder.mutation.mutation_chamber.text_4": "Now that the Blaze Bee has gathered nectar, it will travel over to its hive, dripping pollen as it goes.", + "enigmatica.ponder.mutation.mutation_chamber.text_3": "We\u0027ll just place this Blaze Bee here and let it collect some nectar from this magma cake...", + "enigmatica.ponder.mutation.mutation_chamber.text_2": "Place the bee you\u0027d like to mutate here; today we will be sacrificing a Beeper. Since things can be mutated through solid blocks, we can use a trap door to hold the Beeper in place.", + "enigmatica.ponder.mutation.mutation_chamber.text_1": "This is a good structure for mutating bees.", + "enigmatica.ponder.mutation.mutation_chamber.text_5": "When the blaze bee passes over the Beeper it will mutate into a Ghast Bee." +} \ No newline at end of file From 007c05bd33771ed9ba5d96dc6efc27899d7ea230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 19:40:22 +0200 Subject: [PATCH 010/124] removed tags from client scripts --- .../tech/industrialforegoing/laser_drill.js | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/kubejs/client_scripts/ponder/tech/industrialforegoing/laser_drill.js b/kubejs/client_scripts/ponder/tech/industrialforegoing/laser_drill.js index 90f2104f96..64480513a1 100644 --- a/kubejs/client_scripts/ponder/tech/industrialforegoing/laser_drill.js +++ b/kubejs/client_scripts/ponder/tech/industrialforegoing/laser_drill.js @@ -5,13 +5,13 @@ onEvent('ponder.registry', (event) => { let badOres = Ingredient.of([ - '#forge:ores/iron', - '#forge:ores/coal', - '#forge:ores/apatite', - '#forge:ores/tin', - '#forge:ores/copper', - '#forge:ores/cinnabar' - ]).filter('#forge:chunks'); + 'emendatusenigmatica:iron_ore', + 'emendatusenigmatica:coal_ore', + 'emendatusenigmatica:apatite_ore', + 'emendatusenigmatica:tin_ore', + 'emendatusenigmatica:copper_ore', + 'emendatusenigmatica:cinnabar_ore' + ]); event .create('enigmatica:laser_drill', [ @@ -281,9 +281,10 @@ onEvent('ponder.registry', (event) => { .showing(PonderIcons.I_CONFIRM) .withItem( randomOf( - Ingredient.of(['#forge:ores/uranium', '#forge:ores/emerald']).filter( - '#forge:chunks' - ) + Ingredient.of([ + 'emendatusenigmatica:uranium_ore', + 'emendatusenigmatica:emerald_ore' + ]) ) ), 120 From 7221f9545cc54b71690a575939c4882175ac688c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 19:40:32 +0200 Subject: [PATCH 011/124] synced disabled item lists --- .../kubejs/constants/disabled_items.js | 45 +++++++++++++++---- 1 file changed, 37 insertions(+), 8 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/constants/disabled_items.js b/kubejs/server_scripts/enigmatica/kubejs/constants/disabled_items.js index e3ac3c75a0..0cd3031808 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/constants/disabled_items.js +++ b/kubejs/server_scripts/enigmatica/kubejs/constants/disabled_items.js @@ -18,9 +18,6 @@ const disabledItems = [ 'abnormals_delight:willow_pantry', 'abnormals_delight:wisteria_pantry', - 'aiotbotania:livingwood_shears', - 'aiotbotania:livingrock_shears', - 'aquaculture:wooden_fillet_knife', 'aquaculture:stone_fillet_knife', 'aquaculture:iron_fillet_knife', @@ -31,13 +28,13 @@ const disabledItems = [ 'betterendforge:ender_dust', + 'blockcarpentry:frame_chest', + 'blockcarpentry:illusion_chest', + 'bloodmagic:sand_netherite', 'bloodmagic:gravel_netherite_scrap', 'bloodmagic:fragment_netherite_scrap', - 'blockcarpentry:frame_chest', - 'blockcarpentry:illusion_chest', - 'byg:ametrine_block', 'byg:ametrine_boots', 'byg:ametrine_chestplate', @@ -59,8 +56,38 @@ const disabledItems = [ 'byg:emeraldite_ore', 'byg:emeraldite_shards', + 'create:dough', + 'decorative_blocks_abnormals:ender_brazier', + 'ironjetpacks:strap', + 'ironjetpacks:basic_coil', + 'ironjetpacks:advanced_coil', + 'ironjetpacks:elite_coil', + 'ironjetpacks:ultimate_coil', + 'ironjetpacks:hardened_cell', + 'ironjetpacks:hardened_capacitor', + 'ironjetpacks:invar_cell', + 'ironjetpacks:invar_capacitor', + 'ironjetpacks:blazing_cell', + 'ironjetpacks:blazing_capacitor', + 'ironjetpacks:signalum_cell', + 'ironjetpacks:signalum_capacitor', + 'ironjetpacks:niotic_cell', + 'ironjetpacks:niotic_capacitor', + 'ironjetpacks:lumium_cell', + 'ironjetpacks:lumium_capacitor', + 'ironjetpacks:spirited_cell', + 'ironjetpacks:spirited_capacitor', + 'ironjetpacks:enderium_cell', + 'ironjetpacks:enderium_capacitor', + 'ironjetpacks:nitro_cell', + 'ironjetpacks:nitro_capacitor', + + 'mekanism:sawdust', + 'mekanism:dust_lapis_lazuli', + 'mekanism:dust_lithium', + 'mythicbotany:raindeletia', 'mythicbotany:raindeletia_floating', 'mythicbotany:wither_aconite', @@ -70,6 +97,8 @@ const disabledItems = [ 'pitg:green_dye', + 'pneumaticcraft:wheat_flour', + 'quark:pipe', 'quark:potato_crate', 'quark:beetroot_crate', @@ -80,9 +109,9 @@ const disabledItems = [ 'thermal:potato_block', 'thermal:sugar_cane_block', 'thermal:apple_block', - 'simplefarming:raw_bacon', 'simplefarming:cooked_bacon', 'simplefarming:cooked_egg', - 'simplefarming:noodles' + 'simplefarming:noodles', + 'simplefarming:chocolate' ]; From ebee527d446f607aff9c4cdfee7ec73c33ea9e61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 19:40:47 +0200 Subject: [PATCH 012/124] cleanup regex hide / item hide --- kubejs/client_scripts/constants.js | 183 ++++++++---------- .../item_modifiers/jei_hide_items.js | 4 - 2 files changed, 84 insertions(+), 103 deletions(-) diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index fa2ddb023e..e25d0a1356 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -99,7 +99,7 @@ const colors = [ 'light_gray' ]; -var itemsToHide = [ +const itemsToHide = [ 'aiotbotania:livingwood_shears', 'aiotbotania:livingrock_shears', @@ -296,7 +296,63 @@ var itemsToHide = [ 'quark:backpack', 'quark:crate', 'quark:magnet', - 'quark:soul_compass' + 'quark:soul_compass', + + /emendatusenigmatica:\w+_andesite_ore/, + /emendatusenigmatica:\w+_gabbro_ore/, + /emendatusenigmatica:\w+_c_limestone_ore/, + /emendatusenigmatica:\w+_scoria_ore/, + /emendatusenigmatica:\w+_weathered_limestone_ore/, + /emendatusenigmatica:\w+_jasper_ore/, + /emendatusenigmatica:\w+_marble_ore/, + /emendatusenigmatica:\w+_slate_ore/, + /emendatusenigmatica:\w+_netherrack_ore/, + /emendatusenigmatica:\w+_blackstone_ore/, + /emendatusenigmatica:\w+_deepslate_ore/, + /emendatusenigmatica:\w+_end_stone_ore/, + /emendatusenigmatica:\w+_mossy_stone_ore/, + /emendatusenigmatica:\w+_granite_ore/, + /emendatusenigmatica:\w+_diorite_ore/, + /emendatusenigmatica:\w+_sand_ore/, + /emendatusenigmatica:\w+_gravel_ore/, + /emendatusenigmatica:\w+_violecite_ore/, + /emendatusenigmatica:\w+_sulphuric_rock_ore/, + /emendatusenigmatica:\w+_flavolite_ore/, + /emendatusenigmatica:\w+_cryptic_stone_ore/, + /emendatusenigmatica:\w+_ether_stone_ore/, + /emendatusenigmatica:\w+_nylium_soul_soil_ore/, + /emendatusenigmatica:\w+_subzero_ash_ore/, + /emendatusenigmatica:\w+_brimstone_ore/, + /emendatusenigmatica:\w+_soul_soil_ore/, + /emendatusenigmatica:\w+_basalt_ore/, + /tconstruct:copper_(ore|block|nugget)/, + /tconstruct:cobalt_(ore|block|nugget)/, + /titanium:\w+_gear/, + /thermal:\w+_dust/, + /thermal:\w+_gear$/, + /thermal:\w+_ingot/, + /thermal:\w+_nugget/, + /thermal:\w+_ore/, + /thermal:\w+_plate/, + /pedestals:dust/, + /mekanism:\w+_ore/, + /minecraft:\w+_ore/, + /immersiveengineering:plate_/, + /immersiveengineering:storage_/, + /immersiveengineering:ore_/, + /create:\w+_sheet/, + /create:\w+_nugget/, + /create:\w+_ingot/, + /immersiveposts:stick_/, + /eidolon:\w+_ore/, + /byg:pendorite/, + /byg:ametrine/, + /emendatusenigmatica:\w+certus/, + /emendatusenigmatica:\w+fluix/, + /powah:\w+_starter/, + /rftoolsbase:dimensionalshard_/, + /theoneprobe:/, + /upgrade_aquatic:\w+_jelly_torch/ ]; let ee_types = ['clump', 'crystal', 'dirty_dust', 'shard', 'fragment', 'gravel']; @@ -320,50 +376,12 @@ ee_types.forEach((type) => { ); }); -const fluidsToHide = [ - 'cofh_core:honey', - 'create:honey', - 'thermal:crude_oil', - 'immersivepetroleum:oil', - 'emendatusenigmatica:molten_zinc', - 'emendatusenigmatica:molten_quartz', - 'emendatusenigmatica:molten_uranium', - 'emendatusenigmatica:molten_tin', - 'emendatusenigmatica:molten_steel', - 'emendatusenigmatica:molten_silver', - 'emendatusenigmatica:molten_osmium', - 'emendatusenigmatica:molten_nickel', - 'emendatusenigmatica:molten_lead', - 'emendatusenigmatica:molten_iron', - 'emendatusenigmatica:molten_invar', - 'emendatusenigmatica:molten_gold', - 'emendatusenigmatica:molten_fluix', - 'emendatusenigmatica:molten_emerald', - 'emendatusenigmatica:molten_electrum', - 'emendatusenigmatica:molten_diamond', - 'emendatusenigmatica:molten_copper', - 'emendatusenigmatica:molten_constantan', - 'emendatusenigmatica:molten_cobalt', - 'emendatusenigmatica:molten_charged_certus_quartz', - 'emendatusenigmatica:molten_certus_quartz', - 'emendatusenigmatica:molten_bronze', - 'emendatusenigmatica:molten_brass', - 'emendatusenigmatica:molten_aluminum', - 'emendatusenigmatica:molten_ancient_debris', - 'emendatusenigmatica:molten_cloggrum', - 'emendatusenigmatica:molten_froststeel', - 'emendatusenigmatica:molten_utherium', - 'emendatusenigmatica:molten_regalium', - 'emendatusenigmatica:molten_iesnium' -]; - /* This allows hiding individual recipes. It's used primarily for recipes displayed in Patchouli manuals that have been changed to use a different crafting type or that have been disabled. It allows creating a recipe pointer that will display in Patchouli but not in JEI. Use the logger in the jei_hide_recipes script to discover the correct CategoryID. They do not match the recipe type. */ - const recipesToHide = [ { category: 'minecraft:crafting', @@ -479,64 +497,6 @@ const recipesToHide = [ } ]; -var regexHide = [ - /emendatusenigmatica:\w+_andesite_ore/, - /emendatusenigmatica:\w+_gabbro_ore/, - /emendatusenigmatica:\w+_c_limestone_ore/, - /emendatusenigmatica:\w+_scoria_ore/, - /emendatusenigmatica:\w+_weathered_limestone_ore/, - /emendatusenigmatica:\w+_jasper_ore/, - /emendatusenigmatica:\w+_marble_ore/, - /emendatusenigmatica:\w+_slate_ore/, - /emendatusenigmatica:\w+_netherrack_ore/, - /emendatusenigmatica:\w+_blackstone_ore/, - /emendatusenigmatica:\w+_deepslate_ore/, - /emendatusenigmatica:\w+_end_stone_ore/, - /emendatusenigmatica:\w+_mossy_stone_ore/, - /emendatusenigmatica:\w+_granite_ore/, - /emendatusenigmatica:\w+_diorite_ore/, - /emendatusenigmatica:\w+_sand_ore/, - /emendatusenigmatica:\w+_gravel_ore/, - /emendatusenigmatica:\w+_violecite_ore/, - /emendatusenigmatica:\w+_sulphuric_rock_ore/, - /emendatusenigmatica:\w+_flavolite_ore/, - /emendatusenigmatica:\w+_cryptic_stone_ore/, - /emendatusenigmatica:\w+_ether_stone_ore/, - /emendatusenigmatica:\w+_nylium_soul_soil_ore/, - /emendatusenigmatica:\w+_subzero_ash_ore/, - /emendatusenigmatica:\w+_brimstone_ore/, - /emendatusenigmatica:\w+_soul_soil_ore/, - /emendatusenigmatica:\w+_basalt_ore/, - /tconstruct:copper_(ore|block|nugget)/, - /tconstruct:cobalt_(ore|block|nugget)/, - /titanium:\w+_gear/, - /thermal:\w+_dust/, - /thermal:\w+_gear$/, - /thermal:\w+_ingot/, - /thermal:\w+_nugget/, - /thermal:\w+_ore/, - /thermal:\w+_plate/, - /pedestals:dust/, - /mekanism:\w+_ore/, - /minecraft:\w+_ore/, - /immersiveengineering:plate_/, - /immersiveengineering:storage_/, - /immersiveengineering:ore_/, - /create:\w+_sheet/, - /create:\w+_nugget/, - /create:\w+_ingot/, - /immersiveposts:stick_/, - /eidolon:\w+_ore/, - /byg:pendorite/, - /byg:ametrine/, - /emendatusenigmatica:\w+certus/, - /emendatusenigmatica:\w+fluix/, - /powah:\w+_starter/, - /rftoolsbase:dimensionalshard_/, - /theoneprobe:/, - /upgrade_aquatic:\w+_jelly_torch/ -]; - const disabledItems = [ 'abnormals_delight:adzuki_cake_slice', 'abnormals_delight:banana_cake_slice', @@ -707,5 +667,30 @@ const materialsToUnify = [ 'regalium', 'utherium', 'coal_coke', - 'starmetal' + 'starmetal', + 'amber', + 'cobalt', + 'queens_slime', + 'rose_gold', + 'tinkers_bronze', + 'knightslime', + 'slimesteel', + 'manyullyn', + 'hepatizon', + 'thallasium', + 'nebu', + 'aeternium', + 'alfsteel', + 'elementium', + 'gaia_spirit', + 'infused_iron', + 'manasteel', + 'sky', + 'terminite', + 'terrasteel', + 'energized_steel', + 'blazing', + 'niotic', + 'spirited', + 'nitro' ]; diff --git a/kubejs/client_scripts/item_modifiers/jei_hide_items.js b/kubejs/client_scripts/item_modifiers/jei_hide_items.js index cdb50d1d5c..7d3912991a 100644 --- a/kubejs/client_scripts/item_modifiers/jei_hide_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_hide_items.js @@ -39,8 +39,4 @@ onEvent('jei.hide.items', (event) => { colors.forEach((color) => { event.hide('/refinedstorage:' + color + '\\w/'); }); - - regexHide.forEach((regexExpression) => { - event.hide(regexExpression); - }); }); From 544c272cfa61320531d22bbfeac1250e5711de5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 19:40:55 +0200 Subject: [PATCH 013/124] auto format --- config/terraforged/biome_weights.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/config/terraforged/biome_weights.conf b/config/terraforged/biome_weights.conf index 0f143536b7..137af735b3 100644 --- a/config/terraforged/biome_weights.conf +++ b/config/terraforged/biome_weights.conf @@ -284,3 +284,4 @@ "projectvibrantjourneys:snowy_redwoods" = 1 "projectvibrantjourneys:willow_wetlands" = 4 "projectvibrantjourneys:windswept_cliffs" = 7 + From 21205bb754667d1680ce060a985d263001762057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 19:41:05 +0200 Subject: [PATCH 014/124] move array to file itself, as it's only used once --- .../item_modifiers/jei_hide_fluids.js | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/kubejs/client_scripts/item_modifiers/jei_hide_fluids.js b/kubejs/client_scripts/item_modifiers/jei_hide_fluids.js index 44f2a8d337..032e67b666 100644 --- a/kubejs/client_scripts/item_modifiers/jei_hide_fluids.js +++ b/kubejs/client_scripts/item_modifiers/jei_hide_fluids.js @@ -1,5 +1,40 @@ onEvent('jei.hide.fluids', (event) => { - fluidsToHide.forEach((disabledFluid) => { + [ + 'cofh_core:honey', + 'create:honey', + 'thermal:crude_oil', + 'immersivepetroleum:oil', + 'emendatusenigmatica:molten_zinc', + 'emendatusenigmatica:molten_quartz', + 'emendatusenigmatica:molten_uranium', + 'emendatusenigmatica:molten_tin', + 'emendatusenigmatica:molten_steel', + 'emendatusenigmatica:molten_silver', + 'emendatusenigmatica:molten_osmium', + 'emendatusenigmatica:molten_nickel', + 'emendatusenigmatica:molten_lead', + 'emendatusenigmatica:molten_iron', + 'emendatusenigmatica:molten_invar', + 'emendatusenigmatica:molten_gold', + 'emendatusenigmatica:molten_fluix', + 'emendatusenigmatica:molten_emerald', + 'emendatusenigmatica:molten_electrum', + 'emendatusenigmatica:molten_diamond', + 'emendatusenigmatica:molten_copper', + 'emendatusenigmatica:molten_constantan', + 'emendatusenigmatica:molten_cobalt', + 'emendatusenigmatica:molten_charged_certus_quartz', + 'emendatusenigmatica:molten_certus_quartz', + 'emendatusenigmatica:molten_bronze', + 'emendatusenigmatica:molten_brass', + 'emendatusenigmatica:molten_aluminum', + 'emendatusenigmatica:molten_ancient_debris', + 'emendatusenigmatica:molten_cloggrum', + 'emendatusenigmatica:molten_froststeel', + 'emendatusenigmatica:molten_utherium', + 'emendatusenigmatica:molten_regalium', + 'emendatusenigmatica:molten_iesnium' + ].forEach((disabledFluid) => { if (!Fluid.of(disabledFluid).isEmpty()) { event.hide(disabledFluid); } From 06c71cdb6b5d2e7c1fb344a781f525ed7bffbd8c Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 14:18:16 -0400 Subject: [PATCH 015/124] fix broken loot table entry, fix errors in apoth gear scripts, add tag to dimensional matrix for easier auto crafting --- .../enigmatica/dungeon_loot_tables.js | 1 - .../apotheosis/affix_loot_entries.js | 18 +++++++++--------- .../base/recipetypes/apotheosis/boss_gear.js | 2 +- .../tags/items/occultism/dimensional_matrix.js | 3 +++ 4 files changed, 13 insertions(+), 11 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js b/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js index ed60c4cbf9..1774818956 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js @@ -298,7 +298,6 @@ onEvent('server.datapack.low_priority', (event) => { { item: 'immersiveengineering:connector_hv', weight: 100, amount: [8.0, 16.0] }, { item: 'immersiveengineering:electron_tube', weight: 50, amount: [2.0, 4.0] }, { item: 'immersiveengineering:circuit_board', weight: 50, amount: [2.0, 4.0] }, - { item: 'create:integrated_circuit', weight: 50, amount: [2.0, 4.0] }, { item: 'create:electron_tube', weight: 50, amount: [2.0, 4.0] }, { item: 'create:chromatic_compound', weight: 20 } ] diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js index 7768e5ecfc..9fabf3bdf8 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js @@ -31,14 +31,14 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'botania:manaweave_boots', weight: 1500 }, { item: 'atum:wanderer_helmet', weight: 1500 }, - { item: 'atum:wanderer_chestplate', weight: 1500 }, - { item: 'atum:wanderer_leggings', weight: 1500 }, + { item: 'atum:wanderer_chest', weight: 1500 }, + { item: 'atum:wanderer_legs', weight: 1500 }, { item: 'atum:wanderer_boots', weight: 1500 }, - { item: 'atum:desert_boots_helmet', weight: 1000 }, - { item: 'atum:desert_boots_chestplate', weight: 1000 }, - { item: 'atum:desert_boots_leggings', weight: 1000 }, - { item: 'atum:desert_boots_boots', weight: 1000 }, + { item: 'atum:desert_helmet_iron', weight: 1000 }, + { item: 'atum:desert_chest_iron', weight: 1000 }, + { item: 'atum:desert_leggings_iron', weight: 1000 }, + { item: 'atum:desert_boots_iron', weight: 1000 }, { item: 'mekanismtools:bronze_helmet', weight: 1000 }, { item: 'mekanismtools:bronze_chestplate', weight: 1000 }, @@ -50,8 +50,8 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'mekanismtools:lapis_lazuli_leggings', weight: 1000 }, { item: 'mekanismtools:lapis_lazuli_boots', weight: 1000 }, - { item: 'ars_nouveau:novice_helmet', weight: 1500 }, - { item: 'ars_nouveau:novice_chestplate', weight: 1500 }, + { item: 'ars_nouveau:novice_hood', weight: 1500 }, + { item: 'ars_nouveau:novice_robes', weight: 1500 }, { item: 'ars_nouveau:novice_leggings', weight: 1500 }, { item: 'ars_nouveau:novice_boots', weight: 1500 }, @@ -70,7 +70,7 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'mekanismtools:lapis_lazuli_shield', weight: 1200 }, { item: 'undergarden:cloggrum_shield', weight: 1000 }, { item: 'immersiveengineering:shield', weight: 600 }, - { item: 'mekanism:osmium_shield', weight: 500 } + { item: 'mekanismtools:osmium_shield', weight: 500 } ] }, { diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js index 0f8ac4c288..b3e63aeda7 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js @@ -102,7 +102,7 @@ onEvent('server.datapack.high_priority', (event) => { mainhands: [ { weight: 4, stack: { item: 'botania:manasteel_sword' } }, { weight: 2, stack: { item: 'botania:manasteel_axe' } }, - { weight: 1, stack: { item: 'botania:manasteel_pickaxe' } }, + { weight: 1, stack: { item: 'botania:manasteel_pick' } }, { weight: 1, stack: { item: 'botania:manasteel_shovel' } } ], offhands: [{ weight: 3, stack: { item: 'atum:brigand_shield' } }], diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js new file mode 100644 index 0000000000..99525b68c1 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js @@ -0,0 +1,3 @@ +onEvent('item.tags', (event) => { + event.get('occultism:dimensional_matrix').add('occultism:dimensional_matrix'); +}); From 6c6ec4adb592b8d3415035b3d34b336faf683a16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 21:07:43 +0200 Subject: [PATCH 016/124] fixed typos in apotheosis scripts --- .../apotheosis/affix_loot_entries.js | 18 +++++++++--------- .../base/recipetypes/apotheosis/boss_gear.js | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js index 7768e5ecfc..ec7be30966 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js @@ -31,14 +31,14 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'botania:manaweave_boots', weight: 1500 }, { item: 'atum:wanderer_helmet', weight: 1500 }, - { item: 'atum:wanderer_chestplate', weight: 1500 }, - { item: 'atum:wanderer_leggings', weight: 1500 }, + { item: 'atum:wanderer_chest', weight: 1500 }, + { item: 'atum:wanderer_legs', weight: 1500 }, { item: 'atum:wanderer_boots', weight: 1500 }, - { item: 'atum:desert_boots_helmet', weight: 1000 }, - { item: 'atum:desert_boots_chestplate', weight: 1000 }, - { item: 'atum:desert_boots_leggings', weight: 1000 }, - { item: 'atum:desert_boots_boots', weight: 1000 }, + { item: 'atum:desert_helmet_iron', weight: 1000 }, + { item: 'atum:desert_chestplate_iron', weight: 1000 }, + { item: 'atum:desert_leggings_iron', weight: 1000 }, + { item: 'atum:desert_boots_iron', weight: 1000 }, { item: 'mekanismtools:bronze_helmet', weight: 1000 }, { item: 'mekanismtools:bronze_chestplate', weight: 1000 }, @@ -50,8 +50,8 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'mekanismtools:lapis_lazuli_leggings', weight: 1000 }, { item: 'mekanismtools:lapis_lazuli_boots', weight: 1000 }, - { item: 'ars_nouveau:novice_helmet', weight: 1500 }, - { item: 'ars_nouveau:novice_chestplate', weight: 1500 }, + { item: 'ars_nouveau:novice_hood', weight: 1500 }, + { item: 'ars_nouveau:novice_robes', weight: 1500 }, { item: 'ars_nouveau:novice_leggings', weight: 1500 }, { item: 'ars_nouveau:novice_boots', weight: 1500 }, @@ -70,7 +70,7 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'mekanismtools:lapis_lazuli_shield', weight: 1200 }, { item: 'undergarden:cloggrum_shield', weight: 1000 }, { item: 'immersiveengineering:shield', weight: 600 }, - { item: 'mekanism:osmium_shield', weight: 500 } + { item: 'mekanismtools:osmium_shield', weight: 500 } ] }, { diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js index 0f8ac4c288..b3e63aeda7 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js @@ -102,7 +102,7 @@ onEvent('server.datapack.high_priority', (event) => { mainhands: [ { weight: 4, stack: { item: 'botania:manasteel_sword' } }, { weight: 2, stack: { item: 'botania:manasteel_axe' } }, - { weight: 1, stack: { item: 'botania:manasteel_pickaxe' } }, + { weight: 1, stack: { item: 'botania:manasteel_pick' } }, { weight: 1, stack: { item: 'botania:manasteel_shovel' } } ], offhands: [{ weight: 3, stack: { item: 'atum:brigand_shield' } }], From feccdc01264e6228732063ec9ed4aa858b4d367b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 21:08:49 +0200 Subject: [PATCH 017/124] replaced integrated circuit with precision mekanism in dungeon_clockwork_rare loot table --- .../kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js b/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js index ed60c4cbf9..497e1af3af 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js @@ -298,7 +298,7 @@ onEvent('server.datapack.low_priority', (event) => { { item: 'immersiveengineering:connector_hv', weight: 100, amount: [8.0, 16.0] }, { item: 'immersiveengineering:electron_tube', weight: 50, amount: [2.0, 4.0] }, { item: 'immersiveengineering:circuit_board', weight: 50, amount: [2.0, 4.0] }, - { item: 'create:integrated_circuit', weight: 50, amount: [2.0, 4.0] }, + { item: 'create:precision_mechanism', weight: 50, amount: [2.0, 4.0] }, { item: 'create:electron_tube', weight: 50, amount: [2.0, 4.0] }, { item: 'create:chromatic_compound', weight: 20 } ] From 3ddd12c419e869bbde516406b0fcb13be2892769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 21:10:48 +0200 Subject: [PATCH 018/124] I had typos in my typo corrections :sweat_smile: --- .../kubejs/base/recipetypes/apotheosis/affix_loot_entries.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js index ec7be30966..2aad062cde 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js @@ -36,8 +36,8 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'atum:wanderer_boots', weight: 1500 }, { item: 'atum:desert_helmet_iron', weight: 1000 }, - { item: 'atum:desert_chestplate_iron', weight: 1000 }, - { item: 'atum:desert_leggings_iron', weight: 1000 }, + { item: 'atum:desert_chest_iron', weight: 1000 }, + { item: 'atum:desert_legs_iron', weight: 1000 }, { item: 'atum:desert_boots_iron', weight: 1000 }, { item: 'mekanismtools:bronze_helmet', weight: 1000 }, From d5dd830c232b16d7bf62c80bbb6cb113a491731d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 22:12:15 +0200 Subject: [PATCH 019/124] added default c&b client config to disable bits in jei --- defaultconfigs/chiselsandbits-client.toml | 99 +++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 defaultconfigs/chiselsandbits-client.toml diff --git a/defaultconfigs/chiselsandbits-client.toml b/defaultconfigs/chiselsandbits-client.toml new file mode 100644 index 0000000000..949ec565ab --- /dev/null +++ b/defaultconfigs/chiselsandbits-client.toml @@ -0,0 +1,99 @@ + +[client] + + #Configuration entries related to the settings of gameplay aspects. + [client.settings] + #When enabled allows cycling through the tool modes of the chisel using (sneak) right clicks. + enable-right-click-mode-change = false + #When enabled changes the "damage"-bar indicator to be completely full when the bag is completely empty. + invert-bit-bag-fullness = false + #When enabled this gives each chisel its own chisel mode, instead of having a chisel mode globally. + per-chisel-mode = true + #When enabled notifies you of changes to for example tool modes in the chat. + chat-mode-notification = true + #When enabled shows the newly selected tool-mode in the item name. + item-name-mode-display = true + + [client.settings.enable] + + [client.settings.enable.toolbar] + #When enabled shows the tool mode of tools in the toolbar. + icons = true + + [client.settings.clipboard] + #When enabled stores the data of broken chiseled blocks in your clipboard + add-broken-blocks = false + + [client.settings.undo] + #The maximum amount of undo operations that are kept in memory. If more operations are added to the undo list, the oldest operations are removed from the list. + #Range: > -2147483648 + max-count = 10 + + [client.settings.tape-measure] + #The maximum amount measurements stored before the oldest ones are removed. + #Range: > -2147483648 + max-count = 10 + #When enabled notifies you of measured sizes, measured with the tape measured, in the chat. + display-in-chat = true + + [client.settings.radial] + + [client.settings.radial.menu] + #The volume of the radial menu. Higher volume, makes the radial menu bigger. + #Range: 4.9E-324 ~ 1.7976931348623157E308 + volume = 0.10000000149011612 + + [client.client] + + #Performance related client configuration. + [client.client.performance] + + [client.client.performance.bit-storage] + + [client.client.performance.bit-storage.contents] + + [client.client.performance.bit-storage.contents.cache] + #Determines the amount of models for the bit storage content, higher means more performance but also more memory usage. + #Range: 0 ~ 9223372036854775807 + size = 100 + + [client.client.performance.max-drawn-region] + #The max hit box size of a chiselable region. Bigger requires more performance and more memory. + #Range: 4.9E-324 ~ 1.7976931348623157E308 + size = 4.0 + + [client.client.performance.lighting] + #When enabled dynamic model generation extracts light map data from the models face data. + face-lightmap-extraction = true + #When enabled extracts the light emittance data from the block-state during dynamic model generation. + use-value = true + + [client.client.performance.vertexformats] + + [client.client.performance.vertexformats.custom] + #When enabled this prevents custom vertex formats from working. + disabled = true + + [client.client.performance.models] + + [client.client.performance.models.cache] + #The size of the model cache. + #Range: 0 ~ 2000 + size = 1000 + + [client.client.client] + + #client.gui + [client.client.client.gui] + + [client.client.client.gui.radial-menu] + #radial-menu.mouse-indicator + mouse-indicator = false + + [client.client.client.compat] + + #mod.chiselsandbits.config.compat.jei.comment + [client.client.client.compat.jei] + #mod.chiselsandbits.config.compat.jei.inject-bits.comment + inject-bits = false + From 591b64ea9a5c6dc511b21f240696c54e9b6fa22c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 22:13:39 +0200 Subject: [PATCH 020/124] removed default c&b config again, force hidden bits from jei --- defaultconfigs/chiselsandbits-client.toml | 99 ----------------------- kubejs/client_scripts/constants.js | 3 +- 2 files changed, 2 insertions(+), 100 deletions(-) delete mode 100644 defaultconfigs/chiselsandbits-client.toml diff --git a/defaultconfigs/chiselsandbits-client.toml b/defaultconfigs/chiselsandbits-client.toml deleted file mode 100644 index 949ec565ab..0000000000 --- a/defaultconfigs/chiselsandbits-client.toml +++ /dev/null @@ -1,99 +0,0 @@ - -[client] - - #Configuration entries related to the settings of gameplay aspects. - [client.settings] - #When enabled allows cycling through the tool modes of the chisel using (sneak) right clicks. - enable-right-click-mode-change = false - #When enabled changes the "damage"-bar indicator to be completely full when the bag is completely empty. - invert-bit-bag-fullness = false - #When enabled this gives each chisel its own chisel mode, instead of having a chisel mode globally. - per-chisel-mode = true - #When enabled notifies you of changes to for example tool modes in the chat. - chat-mode-notification = true - #When enabled shows the newly selected tool-mode in the item name. - item-name-mode-display = true - - [client.settings.enable] - - [client.settings.enable.toolbar] - #When enabled shows the tool mode of tools in the toolbar. - icons = true - - [client.settings.clipboard] - #When enabled stores the data of broken chiseled blocks in your clipboard - add-broken-blocks = false - - [client.settings.undo] - #The maximum amount of undo operations that are kept in memory. If more operations are added to the undo list, the oldest operations are removed from the list. - #Range: > -2147483648 - max-count = 10 - - [client.settings.tape-measure] - #The maximum amount measurements stored before the oldest ones are removed. - #Range: > -2147483648 - max-count = 10 - #When enabled notifies you of measured sizes, measured with the tape measured, in the chat. - display-in-chat = true - - [client.settings.radial] - - [client.settings.radial.menu] - #The volume of the radial menu. Higher volume, makes the radial menu bigger. - #Range: 4.9E-324 ~ 1.7976931348623157E308 - volume = 0.10000000149011612 - - [client.client] - - #Performance related client configuration. - [client.client.performance] - - [client.client.performance.bit-storage] - - [client.client.performance.bit-storage.contents] - - [client.client.performance.bit-storage.contents.cache] - #Determines the amount of models for the bit storage content, higher means more performance but also more memory usage. - #Range: 0 ~ 9223372036854775807 - size = 100 - - [client.client.performance.max-drawn-region] - #The max hit box size of a chiselable region. Bigger requires more performance and more memory. - #Range: 4.9E-324 ~ 1.7976931348623157E308 - size = 4.0 - - [client.client.performance.lighting] - #When enabled dynamic model generation extracts light map data from the models face data. - face-lightmap-extraction = true - #When enabled extracts the light emittance data from the block-state during dynamic model generation. - use-value = true - - [client.client.performance.vertexformats] - - [client.client.performance.vertexformats.custom] - #When enabled this prevents custom vertex formats from working. - disabled = true - - [client.client.performance.models] - - [client.client.performance.models.cache] - #The size of the model cache. - #Range: 0 ~ 2000 - size = 1000 - - [client.client.client] - - #client.gui - [client.client.client.gui] - - [client.client.client.gui.radial-menu] - #radial-menu.mouse-indicator - mouse-indicator = false - - [client.client.client.compat] - - #mod.chiselsandbits.config.compat.jei.comment - [client.client.client.compat.jei] - #mod.chiselsandbits.config.compat.jei.inject-bits.comment - inject-bits = false - diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index e25d0a1356..c1670613aa 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -352,7 +352,8 @@ const itemsToHide = [ /powah:\w+_starter/, /rftoolsbase:dimensionalshard_/, /theoneprobe:/, - /upgrade_aquatic:\w+_jelly_torch/ + /upgrade_aquatic:\w+_jelly_torch/, + /chiselsandbits:block_bit$/ ]; let ee_types = ['clump', 'crystal', 'dirty_dust', 'shard', 'fragment', 'gravel']; From e22b1e2e50afdc18c7314c3bae5c4bdaf72beb70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 22:26:01 +0200 Subject: [PATCH 021/124] fixed aurora crystal not being crushable by occultism --- .../enigmatica/kubejs/base/recipetypes/occultism/crushing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/occultism/crushing.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/occultism/crushing.js index 04cb9acb6f..5488f5d8c5 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/occultism/crushing.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/occultism/crushing.js @@ -249,7 +249,7 @@ onEvent('recipes', (event) => { }, { input: { item: 'betterendforge:aurora_crystal' }, - output: 'betterendforge:aurora_crystal_shards', + output: 'betterendforge:crystal_shards', count: 4, time: 50, ignore_crushing_multiplier: true From 9f602d4baf1256581048adc1e687303638cdbff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 22:36:12 +0200 Subject: [PATCH 022/124] updated animal spawner scripts to more recent standards --- .../recipetypes/naturesaura/animal_spawner.js | 11 +- .../recipetypes/naturesaura/animal_spawner.js | 208 +++++++++--------- .../recipetypes/naturesaura/animal_spawner.js | 101 +++++---- 3 files changed, 152 insertions(+), 168 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js index dd543ab658..d6c0322a66 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js @@ -161,14 +161,7 @@ onEvent('recipes', (event) => { } }); - event - .custom({ - type: 'naturesaura:animal_spawner', - ingredients: ingredients, - entity: recipe.entity, - aura: recipe.aura, - time: recipe.time - }) - .id(recipe.id); + recipe.type = 'naturesaura:animal_spawner'; + event.custom(recipe).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js index 2b263b3d35..02e5fea296 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js @@ -3,119 +3,111 @@ onEvent('recipes', (event) => { return; } - var data = { - recipes: [ - { - inputs: [ - 'naturesaura:birth_spirit', - 'quark:bottled_cloud', - 'resourcefulbees:sand_honeycomb', - 'minecraft:sand' - ], - entity: 'alexsmobs:guster', - aura: 150000, - time: 120 - }, - { - inputs: [ - 'naturesaura:birth_spirit', - '#forge:dusts/fluorite', - 'resourcefulbees:electrum_honeycomb', - 'powah:charged_snowball' - ], - entity: 'thermal:blitz', - aura: 150000, - time: 120 - }, - { - inputs: [ - 'naturesaura:birth_spirit', - '#forge:dusts/lapis', - 'resourcefulbees:icy_honeycomb', - 'minecraft:blue_ice' - ], - entity: 'thermal:blizz', - aura: 150000, - time: 120 - }, - { - inputs: [ - 'naturesaura:birth_spirit', - '#forge:dusts/apatite', - 'resourcefulbees:rocky_honeycomb', - 'minecraft:basalt' - ], - entity: 'thermal:basalz', - aura: 150000, - time: 120 - }, - { - inputs: [ - 'naturesaura:birth_spirit', - '#forge:dusts/sulfur', - 'resourcefulbees:coal_honeycomb', - 'minecraft:nether_bricks' - ], - entity: 'minecraft:blaze', - aura: 150000, - time: 120, - id: 'naturesaura:animal_spawner/blaze' - }, - { - inputs: ['naturesaura:birth_spirit', 'resourcefulbees:bloody_honeycomb', 'minecraft:blue_ice'], - entity: 'ars_nouveau:wilden_guardian', - aura: 250000, - time: 120 - }, - { - inputs: [ - 'naturesaura:birth_spirit', - 'resourcefulbees:bloody_honeycomb', - 'valhelsia_structures:bone_pile' - ], - entity: 'ars_nouveau:wilden_hunter', - aura: 150000, - time: 120 - }, - { - inputs: [ - 'naturesaura:birth_spirit', - 'resourcefulbees:bloody_honeycomb', - 'astralsorcery:nocturnal_powder' - ], - entity: 'ars_nouveau:wilden_stalker', - aura: 150000, - time: 120 - }, - { - inputs: [ - 'farmersdelight:honey_glazed_ham_block', - 'naturesaura:token_anger', - 'eidolon:shadow_gem', - '#forge:ingots/forgotten_metal' - ], - entity: 'undergarden:masticator', - aura: 5000000, - time: 200 - } - ] - }; - data.recipes.forEach((recipe) => { + const id_prefix = 'enigmatica:base/naturesaura/animalspawner/'; + + const recipes = [ + { + inputs: [ + 'naturesaura:birth_spirit', + 'quark:bottled_cloud', + 'resourcefulbees:sand_honeycomb', + 'minecraft:sand' + ], + entity: 'alexsmobs:guster', + aura: 150000, + time: 120, + id: `${id_prefix}guster` + }, + { + inputs: [ + 'naturesaura:birth_spirit', + '#forge:dusts/fluorite', + 'resourcefulbees:electrum_honeycomb', + 'powah:charged_snowball' + ], + entity: 'thermal:blitz', + aura: 150000, + time: 120, + id: `${id_prefix}blitz` + }, + { + inputs: [ + 'naturesaura:birth_spirit', + '#forge:dusts/lapis', + 'resourcefulbees:icy_honeycomb', + 'minecraft:blue_ice' + ], + entity: 'thermal:blizz', + aura: 150000, + time: 120, + id: `${id_prefix}blizz` + }, + { + inputs: [ + 'naturesaura:birth_spirit', + '#forge:dusts/apatite', + 'resourcefulbees:rocky_honeycomb', + 'minecraft:basalt' + ], + entity: 'thermal:basalz', + aura: 150000, + time: 120, + id: `${id_prefix}basalz` + }, + { + inputs: [ + 'naturesaura:birth_spirit', + '#forge:dusts/sulfur', + 'resourcefulbees:coal_honeycomb', + 'minecraft:nether_bricks' + ], + entity: 'minecraft:blaze', + aura: 150000, + time: 120, + id: 'naturesaura:animal_spawner/blaze' + }, + { + inputs: ['naturesaura:birth_spirit', 'resourcefulbees:bloody_honeycomb', 'minecraft:blue_ice'], + entity: 'ars_nouveau:wilden_guardian', + aura: 250000, + time: 120, + id: `${id_prefix}wilden_guardian` + }, + { + inputs: ['naturesaura:birth_spirit', 'resourcefulbees:bloody_honeycomb', 'valhelsia_structures:bone_pile'], + entity: 'ars_nouveau:wilden_hunter', + aura: 150000, + time: 120, + id: `${id_prefix}wilden_hunter` + }, + { + inputs: ['naturesaura:birth_spirit', 'resourcefulbees:bloody_honeycomb', 'astralsorcery:nocturnal_powder'], + entity: 'ars_nouveau:wilden_stalker', + aura: 150000, + time: 120, + id: `${id_prefix}wilden_stalker` + }, + { + inputs: [ + 'farmersdelight:honey_glazed_ham_block', + 'naturesaura:token_anger', + 'eidolon:shadow_gem', + '#forge:ingots/forgotten_metal' + ], + entity: 'undergarden:masticator', + aura: 5000000, + time: 200, + id: `${id_prefix}masticator` + } + ]; + recipes.forEach((recipe) => { let ingredients = []; recipe.inputs.forEach((input) => { ingredients.push(Ingredient.of(input).toJson()); }); - const re = event.custom({ - type: 'naturesaura:animal_spawner', - ingredients: ingredients, - entity: recipe.entity, - aura: recipe.aura, - time: recipe.time - }); - if (recipe.id) { - re.id(recipe.id); - } + recipe.type = 'naturesaura:animal_spawner'; + event.custom(recipe).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js index 06f6ea3276..7c7efe69a5 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js +++ b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js @@ -2,62 +2,61 @@ onEvent('recipes', (event) => { if (global.isNormalMode == false) { return; } - var data = { - recipes: [ - { - inputs: ['thermal:blitz_rod', 'thermal:blitz_powder'], - entity: 'thermal:blitz', - aura: 150000, - time: 120 - }, - { - inputs: ['thermal:blizz_rod', 'thermal:blizz_powder'], - entity: 'thermal:blizz', - aura: 150000, - time: 120 - }, - { - inputs: ['thermal:basalz_rod', 'thermal:basalz_powder'], - entity: 'thermal:basalz', - aura: 150000, - time: 120 - }, - { - inputs: ['ars_nouveau:wilden_spike', 'minecraft:snow_block'], - entity: 'ars_nouveau:wilden_guardian', - aura: 250000, - time: 120 - }, - { - inputs: ['ars_nouveau:wilden_horn', 'minecraft:bone'], - entity: 'ars_nouveau:wilden_hunter', - aura: 150000, - time: 120 - }, - { - inputs: ['ars_nouveau:wilden_wing', 'astralsorcery:nocturnal_powder'], - entity: 'ars_nouveau:wilden_stalker', - aura: 150000, - time: 120 - } - ] - }; - data.recipes.forEach((recipe) => { + const id_prefix = 'enigmatica:normal/naturesaura/animalspawner/'; + + const recipes = [ + { + inputs: ['thermal:blitz_rod', 'thermal:blitz_powder'], + entity: 'thermal:blitz', + aura: 150000, + time: 120, + id: `${id_prefix}blitz` + }, + { + inputs: ['thermal:blizz_rod', 'thermal:blizz_powder'], + entity: 'thermal:blizz', + aura: 150000, + time: 120, + id: `${id_prefix}blizz` + }, + { + inputs: ['thermal:basalz_rod', 'thermal:basalz_powder'], + entity: 'thermal:basalz', + aura: 150000, + time: 120, + id: `${id_prefix}basalz` + }, + { + inputs: ['ars_nouveau:wilden_spike', 'minecraft:snow_block'], + entity: 'ars_nouveau:wilden_guardian', + aura: 250000, + time: 120, + id: `${id_prefix}wilden_guardian` + }, + { + inputs: ['ars_nouveau:wilden_horn', 'minecraft:bone'], + entity: 'ars_nouveau:wilden_hunter', + aura: 150000, + time: 120, + id: `${id_prefix}wilden_hunter` + }, + { + inputs: ['ars_nouveau:wilden_wing', 'astralsorcery:nocturnal_powder'], + entity: 'ars_nouveau:wilden_stalker', + aura: 150000, + time: 120, + id: `${id_prefix}wilden_stalker` + } + ]; + + recipes.forEach((recipe) => { let ingredients = [Ingredient.of('naturesaura:birth_spirit').toJson()]; recipe.inputs.forEach((input) => { ingredients.push(Ingredient.of(input).toJson()); }); - const re = event.custom({ - type: 'naturesaura:animal_spawner', - ingredients: ingredients, - entity: recipe.entity, - aura: recipe.aura, - time: recipe.time - }); - if (recipe.id) { - re.id(recipe.id); - } + recipe.type = 'naturesaura:animal_spawner'; + event.custom(recipe).id(recipe.id); }); }); From 141a339d3ba7937786ddda0e92efeb921fe7390a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 26 Sep 2021 23:01:40 +0200 Subject: [PATCH 023/124] unborked animal spawner scripts --- .../base/recipetypes/naturesaura/animal_spawner.js | 11 +++++++++-- .../expert/recipetypes/naturesaura/animal_spawner.js | 11 +++++++++-- .../normal/recipetypes/naturesaura/animal_spawner.js | 11 +++++++++-- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js index d6c0322a66..dd543ab658 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/naturesaura/animal_spawner.js @@ -161,7 +161,14 @@ onEvent('recipes', (event) => { } }); - recipe.type = 'naturesaura:animal_spawner'; - event.custom(recipe).id(recipe.id); + event + .custom({ + type: 'naturesaura:animal_spawner', + ingredients: ingredients, + entity: recipe.entity, + aura: recipe.aura, + time: recipe.time + }) + .id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js index 02e5fea296..c174b420da 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/animal_spawner.js @@ -107,7 +107,14 @@ onEvent('recipes', (event) => { ingredients.push(Ingredient.of(input).toJson()); }); - recipe.type = 'naturesaura:animal_spawner'; - event.custom(recipe).id(recipe.id); + event + .custom({ + type: 'naturesaura:animal_spawner', + ingredients: ingredients, + entity: recipe.entity, + aura: recipe.aura, + time: recipe.time + }) + .id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js index 7c7efe69a5..3e42314723 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js +++ b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/naturesaura/animal_spawner.js @@ -56,7 +56,14 @@ onEvent('recipes', (event) => { ingredients.push(Ingredient.of(input).toJson()); }); - recipe.type = 'naturesaura:animal_spawner'; - event.custom(recipe).id(recipe.id); + event + .custom({ + type: 'naturesaura:animal_spawner', + ingredients: ingredients, + entity: recipe.entity, + aura: recipe.aura, + time: recipe.time + }) + .id(recipe.id); }); }); From b86e90d5fc572485025a20cb601862a7ade20502 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 18:34:56 -0400 Subject: [PATCH 024/124] Add Botana Earth/Fire runes as machine catalysts --- .../thermal/machine/pulverizer_catalyst.js | 28 +++++++++++++++++++ .../thermal/machine/smelter_catalyst.js | 28 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/pulverizer_catalyst.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/smelter_catalyst.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/pulverizer_catalyst.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/pulverizer_catalyst.js new file mode 100644 index 0000000000..3237012c2b --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/pulverizer_catalyst.js @@ -0,0 +1,28 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/thermal/pulverizer_catalyst/'; + const recipes = [ + { + catalyst: '#botania:runes/earth', + primaryMod: 2.5, + secondaryMod: 5.0, + energyMod: 0.1, + minChance: 0.0, + useChance: 0.05, + id: `${id_prefix}earth_rune` + } + ]; + + recipes.forEach((recipe) => { + event.recipes.thermal + .pulverizer_catalyst(recipe.catalyst) + .primaryMod(recipe.primaryMod) + .secondaryMod(recipe.secondaryMod) + .energyMod(recipe.energyMod) + .minChance(recipe.minChance) + .useChance(recipe.useChance) + .id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/smelter_catalyst.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/smelter_catalyst.js new file mode 100644 index 0000000000..0905950fbd --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/smelter_catalyst.js @@ -0,0 +1,28 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/thermal/smelter_catalyst/'; + const recipes = [ + { + catalyst: '#botania:runes/fire', + primaryMod: 3.5, + secondaryMod: 5.0, + energyMod: 0.1, + minChance: 0.0, + useChance: 0.05, + id: `${id_prefix}earth_rune` + } + ]; + + recipes.forEach((recipe) => { + event.recipes.thermal + .smelter_catalyst(recipe.catalyst) + .primaryMod(recipe.primaryMod) + .secondaryMod(recipe.secondaryMod) + .energyMod(recipe.energyMod) + .minChance(recipe.minChance) + .useChance(recipe.useChance) + .id(recipe.id); + }); +}); From bc233acdbb32d6ac719a8663ae5723b4e9134cc7 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 20:31:11 -0400 Subject: [PATCH 025/124] Update item_registry.js --- kubejs/startup_scripts/item_registry.js | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index f10e4e1646..35154be8e2 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -26,19 +26,7 @@ onEvent('item.registry', (event) => { 'hot_compressed_iron_ingot', 'dimensional_storage_crystal', 'spirit_heat_exchanger', - 'amadron_survey_tools', - - 'machine_speed_augment_mk2', - 'machine_speed_augment_mk3', - 'machine_speed_augment_mk4', - - 'dynamo_output_augment_mk2', - 'dynamo_output_augment_mk3', - 'dynamo_output_augment_mk4', - - 'dynamo_fuel_augment_mk2', - 'dynamo_fuel_augment_mk3', - 'dynamo_fuel_augment_mk4' + 'amadron_survey_tools' ]; const ritualDummies = [ From 2d943b03735be1651bf823bb65f4f6da098c20b2 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 20:31:26 -0400 Subject: [PATCH 026/124] Update item_registry.js --- kubejs/startup_scripts/item_registry.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 35154be8e2..5e956c9a16 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -42,17 +42,17 @@ onEvent('item.registry', (event) => { ]; const reusableItemTextures = [ - { name: 'kubejs:machine_speed_augment_mk2', texture: 'machine_speed_augment' }, - { name: 'kubejs:machine_speed_augment_mk3', texture: 'machine_speed_augment' }, - { name: 'kubejs:machine_speed_augment_mk4', texture: 'machine_speed_augment' }, + { name: 'machine_speed_augment_mk2', texture: 'machine_speed_augment' }, + { name: 'machine_speed_augment_mk3', texture: 'machine_speed_augment' }, + { name: 'machine_speed_augment_mk4', texture: 'machine_speed_augment' }, - { name: 'kubejs:dynamo_output_augment_mk2', texture: 'dynamo_output_augment' }, - { name: 'kubejs:dynamo_output_augment_mk3', texture: 'dynamo_output_augment' }, - { name: 'kubejs:dynamo_output_augment_mk4', texture: 'dynamo_output_augment' }, + { name: 'dynamo_output_augment_mk2', texture: 'dynamo_output_augment' }, + { name: 'dynamo_output_augment_mk3', texture: 'dynamo_output_augment' }, + { name: 'dynamo_output_augment_mk4', texture: 'dynamo_output_augment' }, - { name: 'kubejs:dynamo_fuel_augment_mk2', texture: 'dynamo_fuel_augment' }, - { name: 'kubejs:dynamo_fuel_augment_mk3', texture: 'dynamo_fuel_augment' }, - { name: 'kubejs:dynamo_fuel_augment_mk4', texture: 'dynamo_fuel_augment' }, + { name: 'dynamo_fuel_augment_mk2', texture: 'dynamo_fuel_augment' }, + { name: 'dynamo_fuel_augment_mk3', texture: 'dynamo_fuel_augment' }, + { name: 'dynamo_fuel_augment_mk4', texture: 'dynamo_fuel_augment' }, { name: 'basic_circuit_package', texture: 'assembly_package_filled' }, { name: 'basic_circuit_assembly', texture: 'assembly_package_processing' }, From 7b1009b805570d6950ed5d6a0ab796ef1b79569b Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 20:50:12 -0400 Subject: [PATCH 027/124] Update jei_add_items.js --- kubejs/client_scripts/item_modifiers/jei_add_items.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index ad332937c2..77fa76e43e 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -29,15 +29,15 @@ onEvent('jei.add.items', (event) => { // Thermal Augments - See Notes Below // Machine Speed Upgrades Item.of( - 'kubejs:dynamo_output_augment_mk2', + 'kubejs:machine_speed_augment_mk2', '{AugmentData:{Type:"Machine",MachineEnergy:1.43d,MachinePower:3.0d}}' ), Item.of( - 'kubejs:dynamo_output_augment_mk3', + 'kubejs:machine_speed_augment_mk3', '{AugmentData:{Type:"Machine",MachineEnergy:1.859d,MachinePower:9.0d}}' ), Item.of( - 'kubejs:dynamo_output_augment_mk4', + 'kubejs:machine_speed_augment_mk4', '{AugmentData:{Type:"Machine",MachineEnergy:2.4167d,MachinePower:27.0d}}' ), // Dynamo Speed Upgrades From bb8bdc702f45245d21320830028d2a208674fb19 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 22:07:06 -0400 Subject: [PATCH 028/124] more fixes --- kubejs/assets/kubejs/lang/en_us.json | 2 ++ .../kubejs/expert/recipetypes/kubejs/shaped.js | 13 ------------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/kubejs/assets/kubejs/lang/en_us.json b/kubejs/assets/kubejs/lang/en_us.json index 7190862a3f..9bae46a2d1 100644 --- a/kubejs/assets/kubejs/lang/en_us.json +++ b/kubejs/assets/kubejs/lang/en_us.json @@ -18,6 +18,8 @@ "item.kubejs.coarse_lapis_lazuli_compound": "Coarse Lapis Lazuli Compound", "item.kubejs.smoldering_lapis_lazuli_compound": "Smoldering Lapis Lazuli Compound", + "item.kubejs.amadron_survey_tools": "Amadron Survey Tools", + "item.kubejs.machine_speed_augment_mk2": "Machine Speed MK2", "item.kubejs.machine_speed_augment_mk3": "Machine Speed MK3", "item.kubejs.machine_speed_augment_mk4": "Machine Speed MK4", diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js index f694adf921..4d0f6837de 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js @@ -51,19 +51,6 @@ onEvent('recipes', (event) => { }, id: `${id_prefix}basic_lenses_package` }, - { - output: 'kubejs:amadron_survey_tools', - pattern: ['ABA', 'CDE', 'AFA'], - key: { - A: Item.of('pneumaticcraft:air_canister', '{"pneumaticcraft:air":30000}').weakNBT(), - B: 'pneumaticcraft:reinforced_chest', - C: Item.of('mekanismtools:steel_paxel', '{Damage:0}').weakNBT(), - D: 'mekanism:cardboard_box', - E: 'minecraft:compass', - F: 'immersiveengineering:survey_tools' - }, - id: `${id_prefix}amadron_survey_tools` - }, // Storage Parts { From 6fc81a1a6ec84457724b52e671a4c5d3a83545d8 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 26 Sep 2021 22:20:30 -0400 Subject: [PATCH 029/124] Fix broken Apoth entries, remove missing item from loot tables, remove extra Expert amadron recipe, add dimensional matrix tag to simplifiy autocrafting Fix broken Apoth entries, remove missing item from loot tables, remove extra Expert amadron recipe, add dimensional matrix tag to simplifiy autocrafting --- .../enigmatica/dungeon_loot_tables.js | 1 - .../apotheosis/affix_loot_entries.js | 18 +++++++++--------- .../base/recipetypes/apotheosis/boss_gear.js | 2 +- .../tags/items/occultism/dimensional_matrix.js | 3 +++ .../kubejs/expert/recipetypes/kubejs/shaped.js | 13 ------------- 5 files changed, 13 insertions(+), 24 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js b/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js index ed60c4cbf9..1774818956 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/loot_tables/enigmatica/dungeon_loot_tables.js @@ -298,7 +298,6 @@ onEvent('server.datapack.low_priority', (event) => { { item: 'immersiveengineering:connector_hv', weight: 100, amount: [8.0, 16.0] }, { item: 'immersiveengineering:electron_tube', weight: 50, amount: [2.0, 4.0] }, { item: 'immersiveengineering:circuit_board', weight: 50, amount: [2.0, 4.0] }, - { item: 'create:integrated_circuit', weight: 50, amount: [2.0, 4.0] }, { item: 'create:electron_tube', weight: 50, amount: [2.0, 4.0] }, { item: 'create:chromatic_compound', weight: 20 } ] diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js index 7768e5ecfc..9fabf3bdf8 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/affix_loot_entries.js @@ -31,14 +31,14 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'botania:manaweave_boots', weight: 1500 }, { item: 'atum:wanderer_helmet', weight: 1500 }, - { item: 'atum:wanderer_chestplate', weight: 1500 }, - { item: 'atum:wanderer_leggings', weight: 1500 }, + { item: 'atum:wanderer_chest', weight: 1500 }, + { item: 'atum:wanderer_legs', weight: 1500 }, { item: 'atum:wanderer_boots', weight: 1500 }, - { item: 'atum:desert_boots_helmet', weight: 1000 }, - { item: 'atum:desert_boots_chestplate', weight: 1000 }, - { item: 'atum:desert_boots_leggings', weight: 1000 }, - { item: 'atum:desert_boots_boots', weight: 1000 }, + { item: 'atum:desert_helmet_iron', weight: 1000 }, + { item: 'atum:desert_chest_iron', weight: 1000 }, + { item: 'atum:desert_leggings_iron', weight: 1000 }, + { item: 'atum:desert_boots_iron', weight: 1000 }, { item: 'mekanismtools:bronze_helmet', weight: 1000 }, { item: 'mekanismtools:bronze_chestplate', weight: 1000 }, @@ -50,8 +50,8 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'mekanismtools:lapis_lazuli_leggings', weight: 1000 }, { item: 'mekanismtools:lapis_lazuli_boots', weight: 1000 }, - { item: 'ars_nouveau:novice_helmet', weight: 1500 }, - { item: 'ars_nouveau:novice_chestplate', weight: 1500 }, + { item: 'ars_nouveau:novice_hood', weight: 1500 }, + { item: 'ars_nouveau:novice_robes', weight: 1500 }, { item: 'ars_nouveau:novice_leggings', weight: 1500 }, { item: 'ars_nouveau:novice_boots', weight: 1500 }, @@ -70,7 +70,7 @@ onEvent('server.datapack.high_priority', (event) => { { item: 'mekanismtools:lapis_lazuli_shield', weight: 1200 }, { item: 'undergarden:cloggrum_shield', weight: 1000 }, { item: 'immersiveengineering:shield', weight: 600 }, - { item: 'mekanism:osmium_shield', weight: 500 } + { item: 'mekanismtools:osmium_shield', weight: 500 } ] }, { diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js index 0f8ac4c288..b3e63aeda7 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/apotheosis/boss_gear.js @@ -102,7 +102,7 @@ onEvent('server.datapack.high_priority', (event) => { mainhands: [ { weight: 4, stack: { item: 'botania:manasteel_sword' } }, { weight: 2, stack: { item: 'botania:manasteel_axe' } }, - { weight: 1, stack: { item: 'botania:manasteel_pickaxe' } }, + { weight: 1, stack: { item: 'botania:manasteel_pick' } }, { weight: 1, stack: { item: 'botania:manasteel_shovel' } } ], offhands: [{ weight: 3, stack: { item: 'atum:brigand_shield' } }], diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js new file mode 100644 index 0000000000..99525b68c1 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/occultism/dimensional_matrix.js @@ -0,0 +1,3 @@ +onEvent('item.tags', (event) => { + event.get('occultism:dimensional_matrix').add('occultism:dimensional_matrix'); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js index f694adf921..4d0f6837de 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js @@ -51,19 +51,6 @@ onEvent('recipes', (event) => { }, id: `${id_prefix}basic_lenses_package` }, - { - output: 'kubejs:amadron_survey_tools', - pattern: ['ABA', 'CDE', 'AFA'], - key: { - A: Item.of('pneumaticcraft:air_canister', '{"pneumaticcraft:air":30000}').weakNBT(), - B: 'pneumaticcraft:reinforced_chest', - C: Item.of('mekanismtools:steel_paxel', '{Damage:0}').weakNBT(), - D: 'mekanism:cardboard_box', - E: 'minecraft:compass', - F: 'immersiveengineering:survey_tools' - }, - id: `${id_prefix}amadron_survey_tools` - }, // Storage Parts { From df3749fe88ecc787c6643719465c8acf66f612fb Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Mon, 27 Sep 2021 10:40:08 -0400 Subject: [PATCH 030/124] Change Artifact Infinity Tools to accept Weak NBT instead of Strong Change Artifact Infinity Tools to accept Weak NBT instead of Strong Some people are reporting they aren't getting credit for a few of these. Normalized them all on weak NBT filters. As long as they have `{Selected: "ARTIFACT"}` now, they're good to go. Tests seem positive. Quest is not completing for lower tiers and completes fine when I pull the items out of JEI or from crafting them. --- .../ftbquests/quests/chapters/challenges.snbt | 204 ++++++++++-------- 1 file changed, 116 insertions(+), 88 deletions(-) diff --git a/config/ftbquests/quests/chapters/challenges.snbt b/config/ftbquests/quests/chapters/challenges.snbt index 6196e28953..3bd475c276 100644 --- a/config/ftbquests/quests/chapters/challenges.snbt +++ b/config/ftbquests/quests/chapters/challenges.snbt @@ -884,7 +884,7 @@ { id: "4801DE27B925DA50" type: "item" - title: "Infinity Drill: Artififact Tier" + title: "Infinity Drill: Artifact Tier" icon: { id: "industrialforegoing:infinity_drill" Count: 1b @@ -910,8 +910,8 @@ tag: { CanCharge: 1b Special: 0b - Selected: "ARTIFACT" - Energy: 9223372036854775807L + Selected: "POOR" + Energy: 0L Fluid: { FluidName: "biofuel" Amount: 0 @@ -919,18 +919,11 @@ } } { - id: "itemfilters:strong_nbt" + id: "itemfilters:weak_nbt" Count: 1b tag: { value: { - CanCharge: 1b - Special: 0b Selected: "ARTIFACT" - Energy: 9223372036854775807L - Fluid: { - FluidName: "biofuel" - Amount: 0 - } } } } @@ -941,7 +934,7 @@ { id: "7FD0249142690FBD" type: "item" - title: "Infinity Hammer: Artififact Tier" + title: "Infinity Hammer: Artifact Tier" icon: { id: "industrialforegoing:infinity_hammer" Count: 1b @@ -962,38 +955,30 @@ Count: 1b tag: { items: [ + { + id: "itemfilters:weak_nbt" + Count: 1b + tag: { + value: { + Selected: "ARTIFACT" + } + } + } { id: "industrialforegoing:infinity_hammer" Count: 1b tag: { - CanCharge: 1b + CanCharge: 1 Energy: 9223372036854775807L Fluid: { FluidName: "biofuel" Amount: 0 } - Special: 0b + Special: 0 Selected: "ARTIFACT" Beheading: 0 } } - { - id: "itemfilters:strong_nbt" - Count: 1b - tag: { - value: { - CanCharge: 1b - Energy: 9223372036854775807L - Fluid: { - FluidName: "biofuel" - Amount: 0 - } - Special: 0b - Selected: "ARTIFACT" - Beheading: 0 - } - } - } ] } } @@ -1001,7 +986,7 @@ { id: "625720B1A137C6DF" type: "item" - title: "Infinity Trident: Artififact Tier" + title: "Infinity Trident: Artifact Tier" icon: { id: "industrialforegoing:infinity_trident" Count: 1b @@ -1024,42 +1009,32 @@ Count: 1b tag: { items: [ + { + id: "itemfilters:weak_nbt" + Count: 1b + tag: { + value: { + Selected: "ARTIFACT" + } + } + } { id: "industrialforegoing:infinity_trident" Count: 1b tag: { - CanCharge: 1b + CanCharge: 1 Riptide: 0 - Channeling: 0b + Channeling: 0 Energy: 9223372036854775807L Fluid: { FluidName: "biofuel" Amount: 0 } - Special: 0b + Special: 0 Selected: "ARTIFACT" Loyalty: 0 } } - { - id: "itemfilters:strong_nbt" - Count: 1b - tag: { - value: { - CanCharge: 1b - Riptide: 0 - Channeling: 0b - Energy: 9223372036854775807L - Fluid: { - FluidName: "biofuel" - Amount: 0 - } - Special: 0b - Selected: "ARTIFACT" - Loyalty: 0 - } - } - } ] } } @@ -1067,7 +1042,7 @@ { id: "314182BBA59CFDD8" type: "item" - title: "Infinity Saw: Artififact Tier" + title: "Infinity Saw: Artifact Tier" icon: { id: "industrialforegoing:infinity_saw" Count: 1b @@ -1088,32 +1063,25 @@ tag: { items: [ { - id: "industrialforegoing:infinity_saw" + id: "itemfilters:weak_nbt" Count: 1b tag: { - CanCharge: 1b - Special: 0b - Selected: "ARTIFACT" - Energy: 9223372036854775807L - Fluid: { - FluidName: "biofuel" - Amount: 0 + value: { + Selected: "ARTIFACT" } } } { - id: "itemfilters:strong_nbt" + id: "industrialforegoing:infinity_saw" Count: 1b tag: { - value: { - CanCharge: 1b - Special: 0b - Selected: "ARTIFACT" - Energy: 9223372036854775807L - Fluid: { - FluidName: "biofuel" - Amount: 0 - } + CanCharge: 1 + Special: 0 + Selected: "ARTIFACT" + Energy: 9223372036854775807L + Fluid: { + FluidName: "biofuel" + Amount: 0 } } } @@ -1124,7 +1092,7 @@ { id: "09A7BEA11BB1C9B1" type: "item" - title: "Infinity Backpack: Artififact Tier" + title: "Infinity Backpack: Artifact Tier" icon: { id: "industrialforegoing:infinity_backpack" Count: 1b @@ -1141,25 +1109,22 @@ tag: { items: [ { - id: "industrialforegoing:infinity_backpack" + id: "itemfilters:weak_nbt" Count: 1b tag: { - CanCharge: 1b - Special: 0b - Selected: "ARTIFACT" - Energy: 9223372036854775807L + value: { + Selected: "ARTIFACT" + } } } { - id: "itemfilters:strong_nbt" + id: "industrialforegoing:infinity_backpack" Count: 1b tag: { - value: { - CanCharge: 1b - Special: 0b - Selected: "ARTIFACT" - Energy: 9223372036854775807L - } + CanCharge: 1 + Special: 0 + Selected: "ARTIFACT" + Energy: 9223372036854775807L } } ] @@ -1170,7 +1135,7 @@ id: "1C420C2B58ADD9F4" type: "item" title: "Infinity Nuke: Artifact Tier" - item: { + icon: { id: "industrialforegoing:infinity_nuke" Count: 1b tag: { @@ -1184,12 +1149,43 @@ } } } + item: { + id: "itemfilters:and" + Count: 1b + tag: { + items: [ + { + id: "itemfilters:weak_nbt" + Count: 1b + tag: { + value: { + Selected: "ARTIFACT" + } + } + } + { + id: "industrialforegoing:infinity_nuke" + Count: 1b + tag: { + CanCharge: 1 + Special: 0 + Selected: "ARTIFACT" + Energy: 9223372036854775807L + Fluid: { + FluidName: "biofuel" + Amount: 0 + } + } + } + ] + } + } } { id: "50D6D2760038E934" type: "item" title: "Infinity Launcher: Artifact Tier" - item: { + icon: { id: "industrialforegoing:infinity_launcher" Count: 1b tag: { @@ -1204,6 +1200,38 @@ Plunger: 0 } } + item: { + id: "itemfilters:and" + Count: 1b + tag: { + items: [ + { + id: "itemfilters:weak_nbt" + Count: 1b + tag: { + value: { + Selected: "ARTIFACT" + } + } + } + { + id: "industrialforegoing:infinity_launcher" + Count: 1b + tag: { + CanCharge: 1 + Energy: 9223372036854775807L + Fluid: { + FluidName: "biofuel" + Amount: 0 + } + Special: 0 + Selected: "ARTIFACT" + Plunger: 0 + } + } + ] + } + } } ] rewards: [ From 792119ce6678f8fc4b14dbbeec7a27d38608cbbf Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Mon, 27 Sep 2021 10:42:37 -0400 Subject: [PATCH 031/124] Update challenges.snbt --- config/ftbquests/quests/chapters/challenges.snbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/ftbquests/quests/chapters/challenges.snbt b/config/ftbquests/quests/chapters/challenges.snbt index 3bd475c276..64c5a8cffb 100644 --- a/config/ftbquests/quests/chapters/challenges.snbt +++ b/config/ftbquests/quests/chapters/challenges.snbt @@ -910,8 +910,8 @@ tag: { CanCharge: 1b Special: 0b - Selected: "POOR" - Energy: 0L + Selected: "ARTIFACT" + Energy: 9223372036854775807L Fluid: { FluidName: "biofuel" Amount: 0 From 111ac0a785dff286a46d857960a38ce3b620f18c Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Mon, 27 Sep 2021 23:14:57 -0400 Subject: [PATCH 032/124] [Expert] Occultism and Ars Nouveau tweaks Update recipes for newest Occultism Familiars Dragon Familiar ![image](https://user-images.githubusercontent.com/9543430/135011483-f77ecc50-6874-4c0e-b469-0271dcd6a91c.png) Devil Familiar ![image](https://user-images.githubusercontent.com/9543430/135011517-6d7ca211-f275-4f29-9842-aafaef9e8ff9.png) Drygmy ![image](https://user-images.githubusercontent.com/9543430/135015604-e935c34f-bc62-4f89-887f-86d9e51443b7.png) Sylph ![image](https://user-images.githubusercontent.com/9543430/135016843-9b5a6248-2501-43e2-a742-a99a855f2522.png) --- kubejs/assets/kubejs/lang/en_us.json | 2 + .../base/tags/entity/enigmatica/dropbears.js | 4 + .../tags/entity/enigmatica/rattlesnakes.js | 4 + .../ars_nouveau/enchanting_apparatus.js | 32 + .../expert/recipetypes/occultism/ritual.js | 1841 +++++++++-------- .../normal/recipetypes/occultism/ritual.js | 92 +- 6 files changed, 1041 insertions(+), 934 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/dropbears.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/rattlesnakes.js diff --git a/kubejs/assets/kubejs/lang/en_us.json b/kubejs/assets/kubejs/lang/en_us.json index 430735d176..add32511df 100644 --- a/kubejs/assets/kubejs/lang/en_us.json +++ b/kubejs/assets/kubejs/lang/en_us.json @@ -34,6 +34,8 @@ "ritual.occultism.sacrifice.cephalopods": "Cephalopod", "ritual.occultism.sacrifice.thrashers": "Thrasher", "ritual.occultism.sacrifice.dragons": "Ender Dragon", + "ritual.occultism.sacrifice.rattlesnakes": "Rattlesnake", + "ritual.occultism.sacrifice.dropbears": "Dropbear", "item.kubejs.craft_magical_feathers": "Ritual: Craft Magical Feathers.", "item.kubejs.craft_magical_feathers.tooltip": "Binds the Spirit of the Ender Dragon to grant Creative Flight.", diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/dropbears.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/dropbears.js new file mode 100644 index 0000000000..0d28c8fb93 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/dropbears.js @@ -0,0 +1,4 @@ +onEvent('entity_type.tags', (event) => { + let entities = ['alexsmobs:dropbear']; + event.get('enigmatica:dropbears').add(entities); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/rattlesnakes.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/rattlesnakes.js new file mode 100644 index 0000000000..3a4ef8b171 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/rattlesnakes.js @@ -0,0 +1,4 @@ +onEvent('entity_type.tags', (event) => { + let entities = ['alexsmobs:rattlesnake']; + event.get('enigmatica:rattlesnakes').add(entities); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js index f83dbbeb92..5249514803 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js @@ -1430,6 +1430,38 @@ onEvent('recipes', (event) => { count: 1, id: `${id_prefix}terrasteel_boots` }, + { + inputs: [ + 'alexsmobs:moose_antler', + 'environmental:thief_hood', + 'alexsmobs:moose_antler', + 'atum:wolf_pelt', + 'atum:wolf_pelt', + '#forge:storage_blocks/mana', + 'naturesaura:netherite_finder', + '#forge:storage_blocks/mana' + ], + reagent: 'ars_nouveau:drygmy_shard', + output: 'ars_nouveau:drygmy_charm', + count: 1, + id: `ars_nouveau:drygmy_charm` + }, + { + inputs: [ + 'ars_nouveau:mana_bloom_crop', + 'ars_nouveau:mana_bloom', + 'ars_nouveau:mana_bloom_crop', + 'naturesaura:ancient_sapling', + 'naturesaura:ancient_sapling', + '#forge:gems/mana', + 'botania:goddess_charm', + '#forge:gems/mana' + ], + reagent: 'ars_nouveau:sylph_shards', + output: 'ars_nouveau:sylph_charm', + count: 1, + id: `ars_nouveau:sylph_charm` + }, /// Patchouli Removals { diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js index 7645273d7c..4bc0b2023d 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js @@ -3,915 +3,948 @@ onEvent('recipes', (event) => { return; } const id_prefix = 'enigmatica:expert/occultism/ritual/'; - const data = { - recipes: [ - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_infused_lenses' - }, - ingredients: [ - { item: 'occultism:lenses' }, - { tag: 'forge:ingots/lumium' }, - { tag: 'forge:ingots/lumium' }, - { tag: 'forge:ingots/arcane_gold' }, - { item: 'bloodmagic:reagentsight' } - ], - result: { item: 'occultism:infused_lenses' }, - id: 'occultism:ritual/craft_infused_lenses' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_infused_pickaxe' - }, - ingredients: [ - { item: 'occultism:spirit_attuned_pickaxe_head' }, - { item: 'betterendforge:leather_wrapped_stick' }, - { item: 'eidolon:ender_calx' }, - { item: 'betterendforge:leather_wrapped_stick' }, - { tag: 'forge:nuggets/nebu' }, - { tag: 'forge:nuggets/nebu' } - ], - result: { item: 'occultism:infused_pickaxe' }, - id: 'occultism:ritual/craft_infused_pickaxe' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_soul_gem' - }, - ingredients: [ - { item: 'eidolon:lesser_soul_gem' }, - { item: 'eidolon:gold_inlay' }, - { item: 'bloodmagic:reagentholding' }, - { item: 'eidolon:gold_inlay' }, - { item: 'glassential:glass_ghostly' }, - { item: 'glassential:glass_ghostly' }, - { item: 'glassential:glass_ghostly' }, - { item: 'glassential:glass_ghostly' } - ], - result: { item: 'occultism:soul_gem' }, - id: 'occultism:ritual/craft_soul_gem' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, - pentacle_id: 'occultism:summon_wild_afrit', - duration: 6, - entity_to_sacrifice: { - tag: 'forge:cows', - display_name: 'ritual.occultism.sacrifice.cows' - }, - entity_to_summon: 'occultism:afrit_wild', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_wild_afrit' - }, - ingredients: [ - { item: 'eidolon:gold_inlay' }, - { tag: 'botania:runes/fire' }, - { item: 'eidolon:crimson_essence' }, - { tag: 'botania:runes/wrath' }, - { item: 'ars_nouveau:red_archwood_wood' }, - { item: 'ars_nouveau:red_archwood_wood' }, - { item: 'ars_nouveau:red_archwood_wood' }, - { item: 'ars_nouveau:red_archwood_wood' } - ], - result: { item: 'occultism:jei_dummy/none' }, - id: 'occultism:ritual/summon_wild_afrit' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_dimensional_matrix' - }, - ingredients: [ - { tag: 'quark:crystal_clusters' }, - { tag: 'quark:crystal_clusters' }, - { tag: 'quark:crystal_clusters' }, - { tag: 'quark:crystal_clusters' }, - { item: 'eidolon:ender_calx' }, - { item: 'eidolon:ender_calx' }, - { item: 'eidolon:ender_calx' }, - { item: 'eidolon:ender_calx' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' } - ], - result: { item: 'occultism:dimensional_matrix' }, - id: 'occultism:ritual/craft_dimensional_matrix' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 12, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier1' - }, - ingredients: [ - { item: 'occultism:otherstone_pedestal' }, - { tag: 'forge:storage_blocks/bronze' }, - { tag: 'botania:runes/greed' }, - { tag: 'forge:storage_blocks/bronze' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'occultism:spirit_attuned_crystal' }, - { tag: 'quark:runes' }, - { tag: 'quark:runes' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' } - ], - result: { item: 'occultism:storage_stabilizer_tier1' }, - id: 'occultism:ritual/craft_stabilizer_tier1' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier2' - }, - ingredients: [ - { item: 'occultism:storage_stabilizer_tier1' }, - { tag: 'forge:storage_blocks/silver' }, - { tag: 'botania:runes/pride' }, - { tag: 'forge:storage_blocks/silver' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'occultism:spirit_attuned_crystal' }, - { tag: 'forge:gems/dimensional' }, - { tag: 'forge:gems/dimensional' }, - { item: 'bloodmagic:defaultcrystal' }, - { item: 'bloodmagic:defaultcrystal' }, - { item: 'bloodmagic:defaultcrystal' }, - { item: 'bloodmagic:defaultcrystal' } - ], - result: { item: 'occultism:storage_stabilizer_tier2' }, - id: 'occultism:ritual/craft_stabilizer_tier2' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, - pentacle_id: 'occultism:craft_afrit', - duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier3' - }, - ingredients: [ - { item: 'occultism:storage_stabilizer_tier2' }, - { tag: 'forge:storage_blocks/electrum' }, - { tag: 'botania:runes/sloth' }, - { tag: 'forge:storage_blocks/electrum' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'astralsorcery:celestial_crystal' }, - { item: 'astralsorcery:celestial_crystal' }, - { item: 'bloodmagic:steadfastcrystal' }, - { item: 'bloodmagic:steadfastcrystal' }, - { item: 'bloodmagic:steadfastcrystal' }, - { item: 'bloodmagic:steadfastcrystal' } - ], - result: { item: 'occultism:storage_stabilizer_tier3' }, - id: 'occultism:ritual/craft_stabilizer_tier3' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_marid' - }, - pentacle_id: 'occultism:craft_marid', - duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier4' - }, - ingredients: [ - { item: 'occultism:storage_stabilizer_tier3' }, - { tag: 'forge:storage_blocks/iesnium' }, - { tag: 'botania:runes/envy' }, - { tag: 'forge:storage_blocks/iesnium' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'betterendforge:eternal_crystal' }, - { item: 'betterendforge:eternal_crystal' }, - { tag: 'atum:godshards' }, - { tag: 'atum:godshards' }, - { tag: 'atum:godshards' }, - { tag: 'atum:godshards' } - ], - result: { item: 'occultism:storage_stabilizer_tier4' }, - id: 'occultism:ritual/craft_stabilizer_tier4' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_miner_spirit', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_miner_djinni_ores' - }, - ingredients: [ - { item: 'occultism:magic_lamp_empty' }, - { item: 'occultism:iesnium_pickaxe' }, - { item: 'atum:ptah_godforged_block' }, - { tag: 'forge:storage_blocks/iesnium' }, - { item: 'occultism:spirit_attuned_crystal' } - ], - result: { item: 'occultism:miner_djinni_ores' }, - id: 'occultism:ritual/craft_miner_djinni_ores' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_miner_spirit', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_miner_foliot_unspecialized' - }, - ingredients: [ - { item: 'occultism:magic_lamp_empty' }, - { item: 'occultism:iesnium_pickaxe' }, - { tag: 'atum:relic_non_dirty/brooch' }, - { item: 'atum:limestone_gravel' } - ], - result: { item: 'occultism:miner_foliot_unspecialized' }, - id: 'occultism:ritual/craft_miner_foliot_unspecialized' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_dimensional_mineshaft' - }, - ingredients: [ - { item: 'bloodmagic:infusedslate' }, - { item: 'bloodmagic:infusedslate' }, - { item: 'bloodmagic:infusedslate' }, - { item: 'bloodmagic:infusedslate' }, - { item: 'atum:scarab' }, - { tag: 'forge:storage_blocks/iesnium' }, - { item: 'occultism:spirit_attuned_crystal' }, - { item: 'atum:scarab' } - ], - result: { item: 'occultism:dimensional_mineshaft' }, - id: 'occultism:ritual/craft_dimensional_mineshaft' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 9, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_familiar_ring' - }, - ingredients: [ - { item: 'occultism:soul_gem' }, - { item: 'eidolon:gold_inlay' }, - { tag: 'atum:relic_non_dirty/ring' }, - { item: 'eidolon:gold_inlay' } - ], - result: { item: 'occultism:familiar_ring' }, - id: 'occultism:ritual/craft_familiar_ring' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_storage_controller_base' - }, - ingredients: [ - { item: 'occultism:otherstone_pedestal' }, - { item: 'eidolon:gold_inlay' }, - { tag: 'forge:ingots/nebu' }, - { item: 'eidolon:gold_inlay' }, - { item: 'botania:corporea_spark_master' } - ], - result: { item: 'occultism:storage_controller_base' }, - id: 'occultism:ritual/craft_storage_controller_base' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 12, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stable_wormhole' - }, - ingredients: [ - { item: 'occultism:wormhole_frame' }, - { item: 'botania:corporea_spark' }, - { item: 'botania:corporea_funnel' }, - { item: 'botania:corporea_spark' } - ], - result: { item: 'occultism:stable_wormhole' }, - id: 'occultism:ritual/craft_stable_wormhole' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 12, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_storage_remote' - }, - ingredients: [ - { item: 'occultism:storage_remote_inert' }, - { item: 'botania:corporea_spark' }, - { item: 'atum:scarab' }, - { item: 'botania:corporea_spark' } - ], - result: { item: 'occultism:storage_remote' }, - id: 'occultism:ritual/craft_storage_remote' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_satchel' - }, - ingredients: [ - { item: 'ironchest:silver_chest' }, - { item: 'ars_nouveau:end_fiber' }, - { item: 'alexsmobs:kangaroo_hide' }, - { item: 'ars_nouveau:end_fiber' }, - { tag: 'forge:ingots/infused_iron' } - ], - result: { - item: 'occultism:satchel' - }, - id: 'occultism:ritual/craft_satchel' - }, - // 2x Ore Processing - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:summon_foliot', - duration: 6, - spirit_max_age: -1, - spirit_job_type: 'occultism:crush_tier1', - entity_to_summon: 'occultism:foliot', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_foliot_crusher' - }, - ingredients: [ - { item: 'naturesaura:crushing_catalyst' }, - { tag: 'forge:ingots/nebu' }, - { item: 'atum:nebu_hammer' }, - { tag: 'forge:ingots/nebu' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/water' }, - { tag: 'botania:runes/water' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/summon_foliot_crusher' - }, + recipes = [ + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 6, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_infused_lenses' + }, + ingredients: [ + { item: 'occultism:lenses' }, + { tag: 'forge:ingots/lumium' }, + { tag: 'forge:ingots/lumium' }, + { tag: 'forge:ingots/arcane_gold' }, + { item: 'bloodmagic:reagentsight' } + ], + result: { item: 'occultism:infused_lenses' }, + id: 'occultism:ritual/craft_infused_lenses' + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 6, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_infused_pickaxe' + }, + ingredients: [ + { item: 'occultism:spirit_attuned_pickaxe_head' }, + { item: 'betterendforge:leather_wrapped_stick' }, + { item: 'eidolon:ender_calx' }, + { item: 'betterendforge:leather_wrapped_stick' }, + { tag: 'forge:nuggets/nebu' }, + { tag: 'forge:nuggets/nebu' } + ], + result: { item: 'occultism:infused_pickaxe' }, + id: 'occultism:ritual/craft_infused_pickaxe' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 6, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_soul_gem' + }, + ingredients: [ + { item: 'eidolon:lesser_soul_gem' }, + { item: 'eidolon:gold_inlay' }, + { item: 'bloodmagic:reagentholding' }, + { item: 'eidolon:gold_inlay' }, + { item: 'glassential:glass_ghostly' }, + { item: 'glassential:glass_ghostly' }, + { item: 'glassential:glass_ghostly' }, + { item: 'glassential:glass_ghostly' } + ], + result: { item: 'occultism:soul_gem' }, + id: 'occultism:ritual/craft_soul_gem' + }, + { + ritual_type: 'occultism:summon', + activation_item: { + item: 'occultism:book_of_binding_bound_afrit' + }, + pentacle_id: 'occultism:summon_wild_afrit', + duration: 6, + entity_to_sacrifice: { + tag: 'forge:cows', + display_name: 'ritual.occultism.sacrifice.cows' + }, + entity_to_summon: 'occultism:afrit_wild', + ritual_dummy: { + item: 'occultism:ritual_dummy/summon_wild_afrit' + }, + ingredients: [ + { item: 'eidolon:gold_inlay' }, + { tag: 'botania:runes/fire' }, + { item: 'eidolon:crimson_essence' }, + { tag: 'botania:runes/wrath' }, + { item: 'ars_nouveau:red_archwood_wood' }, + { item: 'ars_nouveau:red_archwood_wood' }, + { item: 'ars_nouveau:red_archwood_wood' }, + { item: 'ars_nouveau:red_archwood_wood' } + ], + result: { item: 'occultism:jei_dummy/none' }, + id: 'occultism:ritual/summon_wild_afrit' + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 24, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_dimensional_matrix' + }, + ingredients: [ + { tag: 'quark:crystal_clusters' }, + { tag: 'quark:crystal_clusters' }, + { tag: 'quark:crystal_clusters' }, + { tag: 'quark:crystal_clusters' }, + { item: 'eidolon:ender_calx' }, + { item: 'eidolon:ender_calx' }, + { item: 'eidolon:ender_calx' }, + { item: 'eidolon:ender_calx' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' } + ], + result: { item: 'occultism:dimensional_matrix' }, + id: 'occultism:ritual/craft_dimensional_matrix' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 12, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_stabilizer_tier1' + }, + ingredients: [ + { item: 'occultism:otherstone_pedestal' }, + { tag: 'forge:storage_blocks/bronze' }, + { tag: 'botania:runes/greed' }, + { tag: 'forge:storage_blocks/bronze' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'occultism:spirit_attuned_crystal' }, + { tag: 'quark:runes' }, + { tag: 'quark:runes' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' } + ], + result: { item: 'occultism:storage_stabilizer_tier1' }, + id: 'occultism:ritual/craft_stabilizer_tier1' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 24, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_stabilizer_tier2' + }, + ingredients: [ + { item: 'occultism:storage_stabilizer_tier1' }, + { tag: 'forge:storage_blocks/silver' }, + { tag: 'botania:runes/pride' }, + { tag: 'forge:storage_blocks/silver' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'occultism:spirit_attuned_crystal' }, + { tag: 'forge:gems/dimensional' }, + { tag: 'forge:gems/dimensional' }, + { item: 'bloodmagic:defaultcrystal' }, + { item: 'bloodmagic:defaultcrystal' }, + { item: 'bloodmagic:defaultcrystal' }, + { item: 'bloodmagic:defaultcrystal' } + ], + result: { item: 'occultism:storage_stabilizer_tier2' }, + id: 'occultism:ritual/craft_stabilizer_tier2' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_afrit' + }, + pentacle_id: 'occultism:craft_afrit', + duration: 24, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_stabilizer_tier3' + }, + ingredients: [ + { item: 'occultism:storage_stabilizer_tier2' }, + { tag: 'forge:storage_blocks/electrum' }, + { tag: 'botania:runes/sloth' }, + { tag: 'forge:storage_blocks/electrum' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'astralsorcery:celestial_crystal' }, + { item: 'astralsorcery:celestial_crystal' }, + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'bloodmagic:steadfastcrystal' } + ], + result: { item: 'occultism:storage_stabilizer_tier3' }, + id: 'occultism:ritual/craft_stabilizer_tier3' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_marid' + }, + pentacle_id: 'occultism:craft_marid', + duration: 24, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_stabilizer_tier4' + }, + ingredients: [ + { item: 'occultism:storage_stabilizer_tier3' }, + { tag: 'forge:storage_blocks/iesnium' }, + { tag: 'botania:runes/envy' }, + { tag: 'forge:storage_blocks/iesnium' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'betterendforge:eternal_crystal' }, + { item: 'betterendforge:eternal_crystal' }, + { tag: 'atum:godshards' }, + { tag: 'atum:godshards' }, + { tag: 'atum:godshards' }, + { tag: 'atum:godshards' } + ], + result: { item: 'occultism:storage_stabilizer_tier4' }, + id: 'occultism:ritual/craft_stabilizer_tier4' + }, + { + ritual_type: 'occultism:craft_miner_spirit', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 6, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_miner_djinni_ores' + }, + ingredients: [ + { item: 'occultism:magic_lamp_empty' }, + { item: 'occultism:iesnium_pickaxe' }, + { item: 'atum:ptah_godforged_block' }, + { tag: 'forge:storage_blocks/iesnium' }, + { item: 'occultism:spirit_attuned_crystal' } + ], + result: { item: 'occultism:miner_djinni_ores' }, + id: 'occultism:ritual/craft_miner_djinni_ores' + }, + { + ritual_type: 'occultism:craft_miner_spirit', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 6, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_miner_foliot_unspecialized' + }, + ingredients: [ + { item: 'occultism:magic_lamp_empty' }, + { item: 'occultism:iesnium_pickaxe' }, + { tag: 'atum:relic_non_dirty/brooch' }, + { item: 'atum:limestone_gravel' } + ], + result: { item: 'occultism:miner_foliot_unspecialized' }, + id: 'occultism:ritual/craft_miner_foliot_unspecialized' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 24, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_dimensional_mineshaft' + }, + ingredients: [ + { item: 'bloodmagic:infusedslate' }, + { item: 'bloodmagic:infusedslate' }, + { item: 'bloodmagic:infusedslate' }, + { item: 'bloodmagic:infusedslate' }, + { item: 'atum:scarab' }, + { tag: 'forge:storage_blocks/iesnium' }, + { item: 'occultism:spirit_attuned_crystal' }, + { item: 'atum:scarab' } + ], + result: { item: 'occultism:dimensional_mineshaft' }, + id: 'occultism:ritual/craft_dimensional_mineshaft' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 9, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_familiar_ring' + }, + ingredients: [ + { item: 'occultism:soul_gem' }, + { item: 'eidolon:gold_inlay' }, + { tag: 'atum:relic_non_dirty/ring' }, + { item: 'eidolon:gold_inlay' } + ], + result: { item: 'occultism:familiar_ring' }, + id: 'occultism:ritual/craft_familiar_ring' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 6, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_storage_controller_base' + }, + ingredients: [ + { item: 'occultism:otherstone_pedestal' }, + { item: 'eidolon:gold_inlay' }, + { tag: 'forge:ingots/nebu' }, + { item: 'eidolon:gold_inlay' }, + { item: 'botania:corporea_spark_master' } + ], + result: { item: 'occultism:storage_controller_base' }, + id: 'occultism:ritual/craft_storage_controller_base' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 12, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_stable_wormhole' + }, + ingredients: [ + { item: 'occultism:wormhole_frame' }, + { item: 'botania:corporea_spark' }, + { item: 'botania:corporea_funnel' }, + { item: 'botania:corporea_spark' } + ], + result: { item: 'occultism:stable_wormhole' }, + id: 'occultism:ritual/craft_stable_wormhole' + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 12, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_storage_remote' + }, + ingredients: [ + { item: 'occultism:storage_remote_inert' }, + { item: 'botania:corporea_spark' }, + { item: 'atum:scarab' }, + { item: 'botania:corporea_spark' } + ], + result: { item: 'occultism:storage_remote' }, + id: 'occultism:ritual/craft_storage_remote' + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 24, + ritual_dummy: { + item: 'occultism:ritual_dummy/craft_satchel' + }, + ingredients: [ + { item: 'ironchest:silver_chest' }, + { item: 'ars_nouveau:end_fiber' }, + { item: 'alexsmobs:kangaroo_hide' }, + { item: 'ars_nouveau:end_fiber' }, + { tag: 'forge:ingots/infused_iron' } + ], + result: { + item: 'occultism:satchel' + }, + id: 'occultism:ritual/craft_satchel' + }, - // 3x Ore Processing - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:summon_djinni', - duration: 9, - spirit_max_age: -1, - spirit_job_type: 'occultism:crush_tier2', - entity_to_summon: 'occultism:djinni', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_djinni_crusher' - }, - ingredients: [ - { item: 'naturesaura:crushing_catalyst' }, - { tag: 'forge:ingots/sky' }, - { item: 'naturesaura:sky_pickaxe' }, - { tag: 'forge:ingots/sky' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/water' }, - { tag: 'botania:runes/water' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/summon_djinni_crusher' - }, - // 4x Ore Processing - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, - pentacle_id: 'occultism:summon_afrit', - duration: 12, - spirit_max_age: -1, - spirit_job_type: 'occultism:crush_tier3', - entity_to_summon: 'occultism:afrit', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_afrit_crusher' - }, - ingredients: [ - { item: 'naturesaura:crushing_catalyst' }, - { tag: 'botania:runes/joetunheim' }, - { item: 'botania:terra_pick' }, - { tag: 'botania:runes/joetunheim' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/water' }, - { tag: 'botania:runes/water' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/summon_afrit_crusher' - }, + // 2x Ore Processing + { + ritual_type: 'occultism:summon_spirit_with_job', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:summon_foliot', + duration: 6, + spirit_max_age: -1, + spirit_job_type: 'occultism:crush_tier1', + entity_to_summon: 'occultism:foliot', + ritual_dummy: { + item: 'occultism:ritual_dummy/summon_foliot_crusher' + }, + ingredients: [ + { item: 'naturesaura:crushing_catalyst' }, + { tag: 'forge:ingots/nebu' }, + { item: 'atum:nebu_hammer' }, + { tag: 'forge:ingots/nebu' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/water' }, + { tag: 'botania:runes/water' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/summon_foliot_crusher' + }, - // 6x Ore Processing - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_marid' - }, - pentacle_id: 'occultism:summon_marid', - duration: 3, - spirit_max_age: -1, - spirit_job_type: 'occultism:crush_tier4', - entity_to_summon: 'occultism:marid', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_marid_crusher' - }, - ingredients: [ - { item: 'naturesaura:crushing_catalyst' }, - { tag: 'botania:runes/vanaheim' }, - { item: 'mythicbotany:alfsteel_pick' }, - { tag: 'botania:runes/vanaheim' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/earth' }, - { tag: 'botania:runes/water' }, - { tag: 'botania:runes/water' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/summon_marid_crusher' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:possess_foliot', - duration: 3, - entity_to_sacrifice: { - tag: 'occultism:wild_hunt_sacrifices', - display_name: 'ritual.occultism.sacrifice.villagers_or_players' - }, - entity_to_summon: 'occultism:greedy_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_greedy' - }, - ingredients: [ - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'ironchest:silver_chest' }, - { tag: 'forge:storage_blocks/silver' }, - { item: 'minecraft:lodestone' }, - { item: 'meetyourfight:spectres_grasp' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/familiar_greedy' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon_tamed', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:possess_djinni', - duration: 3, - entity_to_sacrifice: { - tag: 'forge:parrots', - display_name: 'ritual.occultism.sacrifice.parrots' - }, - entity_to_summon: 'occultism:otherworld_bird', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_otherworld_bird' - }, - ingredients: [ - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'tconstruct:sky_cake' }, - { item: 'create:white_sail' }, - { item: 'naturesaura:token_anger' }, - { item: 'create:white_sail' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/familiar_otherworld_bird' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:possess_djinni', - duration: 3, - entity_to_sacrifice: { - tag: 'forge:bats', - display_name: 'ritual.occultism.sacrifice.bats' - }, - entity_to_summon: 'occultism:bat_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_bat' - }, - ingredients: [ - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'atum:golden_date' }, - { item: 'ars_nouveau:wilden_wing' }, - { tag: 'forge:fruits/banana' }, - { item: 'ars_nouveau:wilden_wing' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/familiar_bat' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:possess_foliot', - duration: 3, - entity_to_sacrifice: { - tag: 'enigmatica:deer', - display_name: 'ritual.occultism.sacrifice.deer' - }, - entity_to_summon: 'occultism:deer_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_deer' - }, - ingredients: [ - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'minecraft:golden_carrot' }, - { item: 'minecraft:golden_carrot' }, - { item: 'minecraft:golden_apple' }, - { item: 'minecraft:golden_apple' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/familiar_deer' - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:possess_djinni', - duration: 3, - entity_to_sacrifice: { - tag: 'enigmatica:thrashers', - display_name: 'ritual.occultism.sacrifice.thrashers' - }, - entity_to_summon: 'occultism:cthulhu_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_cthulhu' - }, - ingredients: [ - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'quark:gold_bars' }, - { item: 'aquaculture:neptunium_helmet' }, - { tag: 'forge:heads' }, - { item: 'sushigocrafting:shrimp_nigiri' }, - { item: 'sushigocrafting:shrimp_nigiri' } - ], - result: { - item: 'occultism:jei_dummy/none' - }, - id: 'occultism:ritual/familiar_cthulhu' - }, + // 3x Ore Processing + { + ritual_type: 'occultism:summon_spirit_with_job', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:summon_djinni', + duration: 9, + spirit_max_age: -1, + spirit_job_type: 'occultism:crush_tier2', + entity_to_summon: 'occultism:djinni', + ritual_dummy: { + item: 'occultism:ritual_dummy/summon_djinni_crusher' + }, + ingredients: [ + { item: 'naturesaura:crushing_catalyst' }, + { tag: 'forge:ingots/sky' }, + { item: 'naturesaura:sky_pickaxe' }, + { tag: 'forge:ingots/sky' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/water' }, + { tag: 'botania:runes/water' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/summon_djinni_crusher' + }, + // 4x Ore Processing + { + ritual_type: 'occultism:summon_spirit_with_job', + activation_item: { + item: 'occultism:book_of_binding_bound_afrit' + }, + pentacle_id: 'occultism:summon_afrit', + duration: 12, + spirit_max_age: -1, + spirit_job_type: 'occultism:crush_tier3', + entity_to_summon: 'occultism:afrit', + ritual_dummy: { + item: 'occultism:ritual_dummy/summon_afrit_crusher' + }, + ingredients: [ + { item: 'naturesaura:crushing_catalyst' }, + { tag: 'botania:runes/joetunheim' }, + { item: 'botania:terra_pick' }, + { tag: 'botania:runes/joetunheim' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/water' }, + { tag: 'botania:runes/water' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/summon_afrit_crusher' + }, + + // 6x Ore Processing + { + ritual_type: 'occultism:summon_spirit_with_job', + activation_item: { + item: 'occultism:book_of_binding_bound_marid' + }, + pentacle_id: 'occultism:summon_marid', + duration: 3, + spirit_max_age: -1, + spirit_job_type: 'occultism:crush_tier4', + entity_to_summon: 'occultism:marid', + ritual_dummy: { + item: 'occultism:ritual_dummy/summon_marid_crusher' + }, + ingredients: [ + { item: 'naturesaura:crushing_catalyst' }, + { tag: 'botania:runes/vanaheim' }, + { item: 'mythicbotany:alfsteel_pick' }, + { tag: 'botania:runes/vanaheim' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/earth' }, + { tag: 'botania:runes/water' }, + { tag: 'botania:runes/water' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/summon_marid_crusher' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:possess_foliot', + duration: 3, + entity_to_sacrifice: { + tag: 'occultism:wild_hunt_sacrifices', + display_name: 'ritual.occultism.sacrifice.villagers_or_players' + }, + entity_to_summon: 'occultism:greedy_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_greedy' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'ironchest:silver_chest' }, + { tag: 'forge:storage_blocks/silver' }, + { item: 'minecraft:lodestone' }, + { item: 'meetyourfight:spectres_grasp' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_greedy' + }, + { + ritual_type: 'occultism:summon_tamed', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'forge:parrots', + display_name: 'ritual.occultism.sacrifice.parrots' + }, + entity_to_summon: 'occultism:otherworld_bird', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_otherworld_bird' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'tconstruct:sky_cake' }, + { item: 'create:white_sail' }, + { item: 'naturesaura:token_anger' }, + { item: 'create:white_sail' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_otherworld_bird' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'forge:bats', + display_name: 'ritual.occultism.sacrifice.bats' + }, + entity_to_summon: 'occultism:bat_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_bat' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'atum:golden_date' }, + { item: 'ars_nouveau:wilden_wing' }, + { tag: 'forge:fruits/banana' }, + { item: 'ars_nouveau:wilden_wing' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_bat' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:possess_foliot', + duration: 3, + entity_to_sacrifice: { + tag: 'enigmatica:deer', + display_name: 'ritual.occultism.sacrifice.deer' + }, + entity_to_summon: 'occultism:deer_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_deer' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'minecraft:golden_carrot' }, + { item: 'minecraft:golden_carrot' }, + { item: 'minecraft:golden_apple' }, + { item: 'minecraft:golden_apple' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_deer' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'enigmatica:thrashers', + display_name: 'ritual.occultism.sacrifice.thrashers' + }, + entity_to_summon: 'occultism:cthulhu_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_cthulhu' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'aquaculture:neptunium_helmet' }, + { tag: 'forge:heads' }, + { item: 'sushigocrafting:shrimp_nigiri' }, + { item: 'sushigocrafting:shrimp_nigiri' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_cthulhu' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'enigmatica:dropbears', + display_name: 'ritual.occultism.sacrifice.dropbears' + }, + entity_to_summon: 'occultism:devil_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_devil' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'botania:cosmetic_devil_horns' }, + { item: 'botania:cosmetic_devil_tail' }, + { item: 'quark:soul_bead' }, + { item: 'quark:soul_bead' }, + { item: 'byg:hanging_bones' }, + { item: 'atum:anputs_fingers_spores' }, + { item: 'atum:anputs_fingers_spores' }, + { item: 'byg:hanging_bones' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_devil' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'enigmatica:rattlesnakes', + display_name: 'ritual.occultism.sacrifice.rattlesnakes' + }, + entity_to_summon: 'occultism:dragon_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_dragon' + }, + ingredients: [ + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'quark:gold_bars' }, + { item: 'ars_nouveau:wilden_wing' }, + { item: 'ars_nouveau:wilden_wing' }, + { tag: 'forge:clusters/emerald' }, + { tag: 'forge:clusters/emerald' }, + { item: 'alexsmobs:lava_bottle' }, + { tag: 'forge:clusters/arcane' }, + { tag: 'forge:clusters/arcane' }, + { item: 'alexsmobs:lava_bottle' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_dragon' + }, - /// Custom Rituals - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 6, - ritual_dummy: { - item: 'kubejs:craft_magicfeather' - }, - ingredients: [ - { item: 'alexsmobs:roadrunner_feather' }, - { tag: 'forge:ingots/sky' }, - { item: 'ars_nouveau:belt_of_levitation' }, - { tag: 'forge:ingots/sky' }, - { item: 'bloodmagic:reagentair' }, - { item: 'bloodmagic:reagentair' }, - { tag: 'botania:runes/air' }, - { tag: 'botania:runes/air' } - ], - result: { item: 'magicfeather:magicfeather' }, - id: `${id_prefix}magicfeather` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft', - activation_item: { - item: 'materialis:fairy_block' - }, - pentacle_id: 'occultism:craft_marid', - duration: 6, - entity_to_sacrifice: { - tag: 'enigmatica:dragons', - display_name: 'ritual.occultism.sacrifice.dragons' - }, - ritual_dummy: { - item: 'kubejs:craft_magical_feathers' - }, - ingredients: [ - { item: 'botania:flight_tiara' }, - { item: 'astralsorcery:shifting_star_vicio' }, - { item: 'ars_nouveau:wilden_tribute' }, - { item: 'astralsorcery:shifting_star_vicio' }, - { item: 'magicfeather:magicfeather' }, - { item: 'magicfeather:magicfeather' }, - { item: 'magicfeather:magicfeather' }, - { item: 'magicfeather:magicfeather' }, - { tag: 'forge:ingots/gaia' }, - { item: 'bloodmagic:steadfastcrystal' }, - { tag: 'forge:ingots/gaia' }, - { item: 'bloodmagic:steadfastcrystal' } - ], - result: { item: 'losttrinkets:magical_feathers' }, - id: `${id_prefix}magical_feathers` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:summon', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, - pentacle_id: 'occultism:summon_wild_afrit', - duration: 6, - entity_to_sacrifice: { - tag: 'occultism:wild_hunt_sacrifices', - display_name: 'ritual.occultism.sacrifice.villagers_or_players' - }, - entity_to_summon: 'atum:pharaoh', - ritual_dummy: { - item: 'kubejs:summon_pharaoh' - }, - ingredients: [ - { tag: 'atum:godshards' }, - { item: 'atum:golden_date_enchanted' }, - { tag: 'forge:storage_blocks/nebu' }, - { tag: 'forge:heads' }, - { tag: 'atum:godshards' }, - { tag: 'atum:godshards' }, - { item: 'atum:crystal_glass' }, - { item: 'atum:crystal_glass' } - ], - result: { item: 'occultism:jei_dummy/none' }, - id: `${id_prefix}pharaoh` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, - pentacle_id: 'occultism:craft_foliot', - duration: 10, - ritual_dummy: { - item: 'kubejs:craft_spirit_heat_exchanger' - }, - ingredients: [ - { item: 'ars_nouveau:void_jar' }, - { item: 'atum:shu_godshard' }, - { item: 'powah:thermoelectric_plate' }, - { item: 'atum:shu_godshard' }, - { tag: 'botania:runes/fire' }, - { tag: 'botania:runes/fire' }, - { tag: 'botania:runes/water' }, - { tag: 'botania:runes/water' } - ], - result: { item: 'kubejs:spirit_heat_exchanger' }, - id: `${id_prefix}spirit_heat_exchanger` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulsword' - }, - ingredients: [ - { item: 'undergarden:forgotten_sword' }, - { item: 'bloodmagic:soulgempetty' }, - { tag: 'botania:runes/helheim' }, - { tag: 'forge:ingots/iesnium' } - ], - result: { item: 'bloodmagic:soulsword' }, - id: `${id_prefix}soulsword` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulaxe' - }, - ingredients: [ - { item: 'undergarden:forgotten_axe' }, - { item: 'bloodmagic:soulgempetty' }, - { tag: 'botania:runes/helheim' }, - { tag: 'forge:ingots/iesnium' } - ], - result: { item: 'bloodmagic:soulaxe' }, - id: `${id_prefix}soulaxe` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulpickaxe' - }, - ingredients: [ - { item: 'undergarden:forgotten_pickaxe' }, - { item: 'bloodmagic:soulgempetty' }, - { tag: 'botania:runes/helheim' }, - { tag: 'forge:ingots/iesnium' } - ], - result: { - item: 'bloodmagic:soulpickaxe', - nbt: { - 'occultism:otherworldToolTier': 2 - } - }, - id: `${id_prefix}soulpickaxe` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulshovel' - }, - ingredients: [ - { item: 'undergarden:forgotten_shovel' }, - { item: 'bloodmagic:soulgempetty' }, - { tag: 'botania:runes/helheim' }, - { tag: 'forge:ingots/iesnium' } - ], - result: { - item: 'bloodmagic:soulshovel' - }, - id: `${id_prefix}soulshovel` - }, - { - type: 'occultism:ritual', - ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, - pentacle_id: 'occultism:craft_djinni', - duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulscythe' - }, - ingredients: [ - { item: 'undergarden:forgotten_hoe' }, - { item: 'bloodmagic:soulgempetty' }, - { tag: 'botania:runes/helheim' }, - { tag: 'forge:ingots/iesnium' } - ], - result: { - item: 'bloodmagic:soulscythe' - }, - id: `${id_prefix}soulscythe` - } - ] - }; + /// Custom Rituals + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 6, + ritual_dummy: { + item: 'kubejs:craft_magicfeather' + }, + ingredients: [ + { item: 'alexsmobs:roadrunner_feather' }, + { tag: 'forge:ingots/sky' }, + { item: 'ars_nouveau:belt_of_levitation' }, + { tag: 'forge:ingots/sky' }, + { item: 'bloodmagic:reagentair' }, + { item: 'bloodmagic:reagentair' }, + { tag: 'botania:runes/air' }, + { tag: 'botania:runes/air' } + ], + result: { item: 'magicfeather:magicfeather' }, + id: `${id_prefix}magicfeather` + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'materialis:fairy_block' + }, + pentacle_id: 'occultism:craft_marid', + duration: 6, + entity_to_sacrifice: { + tag: 'enigmatica:dragons', + display_name: 'ritual.occultism.sacrifice.dragons' + }, + ritual_dummy: { + item: 'kubejs:craft_magical_feathers' + }, + ingredients: [ + { item: 'botania:flight_tiara' }, + { item: 'astralsorcery:shifting_star_vicio' }, + { item: 'ars_nouveau:wilden_tribute' }, + { item: 'astralsorcery:shifting_star_vicio' }, + { item: 'magicfeather:magicfeather' }, + { item: 'magicfeather:magicfeather' }, + { item: 'magicfeather:magicfeather' }, + { item: 'magicfeather:magicfeather' }, + { tag: 'forge:ingots/gaia' }, + { item: 'bloodmagic:steadfastcrystal' }, + { tag: 'forge:ingots/gaia' }, + { item: 'bloodmagic:steadfastcrystal' } + ], + result: { item: 'losttrinkets:magical_feathers' }, + id: `${id_prefix}magical_feathers` + }, + { + ritual_type: 'occultism:summon', + activation_item: { + item: 'occultism:book_of_binding_bound_afrit' + }, + pentacle_id: 'occultism:summon_wild_afrit', + duration: 6, + entity_to_sacrifice: { + tag: 'occultism:wild_hunt_sacrifices', + display_name: 'ritual.occultism.sacrifice.villagers_or_players' + }, + entity_to_summon: 'atum:pharaoh', + ritual_dummy: { + item: 'kubejs:summon_pharaoh' + }, + ingredients: [ + { tag: 'atum:godshards' }, + { item: 'atum:golden_date_enchanted' }, + { tag: 'forge:storage_blocks/nebu' }, + { tag: 'forge:heads' }, + { tag: 'atum:godshards' }, + { tag: 'atum:godshards' }, + { item: 'atum:crystal_glass' }, + { item: 'atum:crystal_glass' } + ], + result: { item: 'occultism:jei_dummy/none' }, + id: `${id_prefix}pharaoh` + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_foliot' + }, + pentacle_id: 'occultism:craft_foliot', + duration: 10, + ritual_dummy: { + item: 'kubejs:craft_spirit_heat_exchanger' + }, + ingredients: [ + { item: 'ars_nouveau:void_jar' }, + { item: 'atum:shu_godshard' }, + { item: 'powah:thermoelectric_plate' }, + { item: 'atum:shu_godshard' }, + { tag: 'botania:runes/fire' }, + { tag: 'botania:runes/fire' }, + { tag: 'botania:runes/water' }, + { tag: 'botania:runes/water' } + ], + result: { item: 'kubejs:spirit_heat_exchanger' }, + id: `${id_prefix}spirit_heat_exchanger` + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 10, + ritual_dummy: { + item: 'kubejs:craft_soulsword' + }, + ingredients: [ + { item: 'undergarden:forgotten_sword' }, + { item: 'bloodmagic:soulgempetty' }, + { tag: 'botania:runes/helheim' }, + { tag: 'forge:ingots/iesnium' } + ], + result: { item: 'bloodmagic:soulsword' }, + id: `${id_prefix}soulsword` + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 10, + ritual_dummy: { + item: 'kubejs:craft_soulaxe' + }, + ingredients: [ + { item: 'undergarden:forgotten_axe' }, + { item: 'bloodmagic:soulgempetty' }, + { tag: 'botania:runes/helheim' }, + { tag: 'forge:ingots/iesnium' } + ], + result: { item: 'bloodmagic:soulaxe' }, + id: `${id_prefix}soulaxe` + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 10, + ritual_dummy: { + item: 'kubejs:craft_soulpickaxe' + }, + ingredients: [ + { item: 'undergarden:forgotten_pickaxe' }, + { item: 'bloodmagic:soulgempetty' }, + { tag: 'botania:runes/helheim' }, + { tag: 'forge:ingots/iesnium' } + ], + result: { + item: 'bloodmagic:soulpickaxe', + nbt: { + 'occultism:otherworldToolTier': 2 + } + }, + id: `${id_prefix}soulpickaxe` + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 10, + ritual_dummy: { + item: 'kubejs:craft_soulshovel' + }, + ingredients: [ + { item: 'undergarden:forgotten_shovel' }, + { item: 'bloodmagic:soulgempetty' }, + { tag: 'botania:runes/helheim' }, + { tag: 'forge:ingots/iesnium' } + ], + result: { + item: 'bloodmagic:soulshovel' + }, + id: `${id_prefix}soulshovel` + }, + { + ritual_type: 'occultism:craft_with_spirit_name', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:craft_djinni', + duration: 10, + ritual_dummy: { + item: 'kubejs:craft_soulscythe' + }, + ingredients: [ + { item: 'undergarden:forgotten_hoe' }, + { item: 'bloodmagic:soulgempetty' }, + { tag: 'botania:runes/helheim' }, + { tag: 'forge:ingots/iesnium' } + ], + result: { + item: 'bloodmagic:soulscythe' + }, + id: `${id_prefix}soulscythe` + } + ]; - data.recipes.forEach((recipe) => { + recipes.forEach((recipe) => { + recipe.type = 'occultism:ritual'; event.custom(recipe).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/occultism/ritual.js b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/occultism/ritual.js index 36126ba3d4..4ca6613105 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/occultism/ritual.js +++ b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/occultism/ritual.js @@ -5,7 +5,6 @@ onEvent('recipes', (event) => { const data = { recipes: [ { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -27,7 +26,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_infused_lenses' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft_with_spirit_name', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -50,7 +48,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_infused_pickaxe' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -76,7 +73,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_soul_gem' }, { - type: 'occultism:ritual', ritual_type: 'occultism:summon', activation_item: { item: 'occultism:book_of_binding_bound_afrit' @@ -103,7 +99,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_wild_afrit' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft_with_spirit_name', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -125,7 +120,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_dimensional_matrix' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -147,7 +141,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_stabilizer_tier1' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -170,7 +163,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_stabilizer_tier2' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_afrit' @@ -192,7 +184,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_stabilizer_tier3' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_marid' @@ -215,7 +206,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_stabilizer_tier4' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft_miner_spirit', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -238,7 +228,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_miner_djinni_ores' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft_miner_spirit', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -260,7 +249,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_miner_foliot_unspecialized' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -285,7 +273,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_dimensional_mineshaft' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -308,7 +295,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_familiar_ring' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -330,7 +316,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_storage_controller_base' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -352,7 +337,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_stable_wormhole' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -374,7 +358,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_storage_remote' }, { - type: 'occultism:ritual', ritual_type: 'occultism:craft_with_spirit_name', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -397,7 +380,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/craft_satchel' }, { - type: 'occultism:ritual', ritual_type: 'occultism:summon_spirit_with_job', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -422,7 +404,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_foliot_crusher' }, { - type: 'occultism:ritual', ritual_type: 'occultism:summon_spirit_with_job', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -447,7 +428,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_djinni_crusher' }, { - type: 'occultism:ritual', ritual_type: 'occultism:summon_spirit_with_job', activation_item: { item: 'occultism:book_of_binding_bound_afrit' @@ -472,7 +452,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_afrit_crusher' }, { - type: 'occultism:ritual', ritual_type: 'occultism:summon_spirit_with_job', activation_item: { item: 'occultism:book_of_binding_bound_marid' @@ -497,7 +476,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_marid_crusher' }, { - type: 'occultism:ritual', ritual_type: 'occultism:familiar', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -524,7 +502,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/familiar_greedy' }, { - type: 'occultism:ritual', ritual_type: 'occultism:summon_tamed', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -552,7 +529,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/familiar_otherworld_bird' }, { - type: 'occultism:ritual', ritual_type: 'occultism:familiar', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -580,7 +556,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/familiar_bat' }, { - type: 'occultism:ritual', ritual_type: 'occultism:familiar', activation_item: { item: 'occultism:book_of_binding_bound_foliot' @@ -609,7 +584,6 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/familiar_deer' }, { - type: 'occultism:ritual', ritual_type: 'occultism:familiar', activation_item: { item: 'occultism:book_of_binding_bound_djinni' @@ -638,14 +612,72 @@ onEvent('recipes', (event) => { item: 'occultism:jei_dummy/none' }, id: 'occultism:ritual/familiar_cthulhu' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'forge:horses', + display_name: 'ritual.occultism.sacrifice.horses' + }, + entity_to_summon: 'occultism:devil_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_devil' + }, + ingredients: [ + { item: 'minecraft:lava_bucket' }, + { item: 'minecraft:lava_bucket' }, + { item: 'minecraft:lava_bucket' }, + { item: 'minecraft:lava_bucket' }, + { tag: 'forge:bones' }, + { tag: 'forge:bones' }, + { tag: 'forge:bones' }, + { tag: 'forge:bones' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_devil' + }, + { + ritual_type: 'occultism:familiar', + activation_item: { + item: 'occultism:book_of_binding_bound_djinni' + }, + pentacle_id: 'occultism:possess_djinni', + duration: 3, + entity_to_sacrifice: { + tag: 'forge:horses', + display_name: 'ritual.occultism.sacrifice.horses' + }, + entity_to_summon: 'occultism:dragon_familiar', + ritual_dummy: { + item: 'occultism:ritual_dummy/familiar_dragon' + }, + ingredients: [ + { item: 'minecraft:lava_bucket' }, + { item: 'minecraft:flint_and_steel' }, + { tag: 'forge:storage_blocks/coal' }, + { tag: 'forge:storage_blocks/quartz' }, + { tag: 'forge:storage_blocks/gold' }, + { tag: 'forge:gunpowder' }, + { tag: 'forge:obsidian' }, + { tag: 'forge:obsidian' } + ], + result: { + item: 'occultism:jei_dummy/none' + }, + id: 'occultism:ritual/familiar_dragon' } ] }; data.recipes.forEach((recipe) => { - const re = event.custom(recipe); - if (recipe.id) { - re.id(recipe.id); - } + recipe.type = 'occultism:ritual'; + event.custom(recipe).id(recipe.id); }); }); From f2f93b0826b798acc889016c3621bff4c50d06fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 28 Sep 2021 07:21:38 +0200 Subject: [PATCH 033/124] fixed wirecutter only working when at full durability, fixes #3329 --- .../kubejs/base/tags/items/forge/tools/wirecutter.js | 9 +++++++++ .../kubejs/expert/unification/unify_materials.js | 2 +- .../kubejs/normal/unification/unify_materials.js | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/tools/wirecutter.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/tools/wirecutter.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/tools/wirecutter.js new file mode 100644 index 0000000000..a4b0e90fb6 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/tools/wirecutter.js @@ -0,0 +1,9 @@ +onEvent('item.tags', (event) => { + var exceptions = []; + + var tags = ['forge:tools', 'forge:tools/wirecutter']; + + tags.forEach((tag) => { + event.get(tag).add('immersiveengineering:wirecutter').remove(exceptions); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js b/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js index c5e8c99800..70fda3d9e8 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js @@ -144,7 +144,7 @@ onEvent('recipes', (event) => { event.remove({ output: wire }); - const wireCutters = 'immersiveengineering:wirecutter'; + const wireCutters = '#forge:tools/wirecutter'; let output = wire, mold = '#thermal:crafting/dies/wire'; diff --git a/kubejs/server_scripts/enigmatica/kubejs/normal/unification/unify_materials.js b/kubejs/server_scripts/enigmatica/kubejs/normal/unification/unify_materials.js index 6e82374800..c3593054ca 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/normal/unification/unify_materials.js +++ b/kubejs/server_scripts/enigmatica/kubejs/normal/unification/unify_materials.js @@ -129,7 +129,7 @@ onEvent('recipes', (event) => { event.remove({ output: wire }); - const wireCutters = 'immersiveengineering:wirecutter'; + const wireCutters = '#forge:tools/wirecutter'; let output = wire, input, mold = '#thermal:crafting/dies/wire'; From d69a1f2e30a1564f4ffdb8e5a263af7a79684b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 28 Sep 2021 07:22:08 +0200 Subject: [PATCH 034/124] Update CHANGELOG.md --- changelogs/CHANGELOG.md | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md index aa3a84e54f..0eb89bddc0 100644 --- a/changelogs/CHANGELOG.md +++ b/changelogs/CHANGELOG.md @@ -1,29 +1,36 @@ -### Enigmatica 6 v0.5.14 +### Enigmatica 6 v0.5.15 -_Using Forge-1.16.5-36.2.4_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/changelog_mods_0.5.14.md)_ | _[Modlist](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/modlist_0.5.14.md)_ +_Using Forge-1.16.5-36.2.4_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/changelog_mods_0.5.15.md)_ | _[Modlist](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/modlist_0.5.15.md)_ + +**Bug Fixes** + +- Quests: Fixed Infinity Tools quest not triggering +- Occultism: Fixed Summoning familiars not triggering the advancement + +**Changes/Improvements** +- +### Enigmatica 6 v0.5.14 + +_Using Forge-1.16.5-36.2.4_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/changelog_mods_0.5.14.md)_ | _[Modlist](https://github.com/NillerMedDild/Enigmatica6/blob/master/changelogs/modlist_0.5.14.md)_ **Info** Placed Chisel & Bits will most likely change when updating. We've updated to a new major version of the mod which hopefully makes sure this doesn't happen again. - - **Bug Fixes** -- Some ponder entries missing their text [\#3318](https://github.com/NillerMedDild/Enigmatica6/issues/3318) -- \[0.5.12\] Create Cogwheels placing [\#3317](https://github.com/NillerMedDild/Enigmatica6/issues/3317) -- \[0.5.12\] Wrenches and Block Rotation [\#3310](https://github.com/NillerMedDild/Enigmatica6/issues/3310) +- Some ponder entries missing their text [\#3318](https://github.com/NillerMedDild/Enigmatica6/issues/3318) +- \[0.5.12\] Create Cogwheels placing [\#3317](https://github.com/NillerMedDild/Enigmatica6/issues/3317) +- \[0.5.12\] Wrenches and Block Rotation [\#3310](https://github.com/NillerMedDild/Enigmatica6/issues/3310) **Changes/Improvements** -- PVJ Tree Compat [\#3319](https://github.com/NillerMedDild/Enigmatica6/pull/3319) ([MuteTiefling](https://github.com/MuteTiefling)) -- Added PVJ Trees to Market -- Added some PVJ biomes to worldgen - - +- PVJ Tree Compat [\#3319](https://github.com/NillerMedDild/Enigmatica6/pull/3319) ([MuteTiefling](https://github.com/MuteTiefling)) +- Added PVJ Trees to Market +- Added some PVJ biomes to worldgen --- From 192b893864666d34923fa8aa988d2e6f3d242e2b Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Tue, 28 Sep 2021 13:19:43 -0400 Subject: [PATCH 035/124] Hide disabled trinkets Hide disabled trinkets --- kubejs/client_scripts/constants.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index c1670613aa..e4b0e6cd77 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -583,6 +583,16 @@ const disabledItems = [ 'ironjetpacks:nitro_cell', 'ironjetpacks:nitro_capacitor', + 'losttrinkets:magical_herbs', + 'losttrinkets:octopick', + 'losttrinkets:tea_leaf', + 'losttrinkets:book_o_enchanting', + 'losttrinkets:blaze_heart', + 'losttrinkets:turtle_shell', + 'losttrinkets:tha_cloud', + 'losttrinkets:rock_candy', + 'losttrinkets:mad_aura', + 'mekanism:sawdust', 'mekanism:dust_lapis_lazuli', 'mekanism:dust_lithium', From f2f690db521d19a40cc9e986b1acb770be9d75e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 28 Sep 2021 21:13:05 +0200 Subject: [PATCH 036/124] added iChisel to quark ignored screens list, fixes #3330 --- config/quark-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/quark-common.toml b/config/quark-common.toml index ee5b577334..00ed5ee937 100644 --- a/config/quark-common.toml +++ b/config/quark-common.toml @@ -7,7 +7,7 @@ "Use Fast Worldgen" = false "Enable 'q' Button" = false #A list of screens that don't play well with quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. - "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel"] + "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel","team.chisel.client.gui.GuiHitechChisel"] "Use Anti Overlap" = true #Enables quark network profiling features. Do not enable this unless requested to. "Enable Network Profiling" = false From e64ef8bb8ef7c4e2f4643497ecf7b9d37dd06b51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 28 Sep 2021 21:13:11 +0200 Subject: [PATCH 037/124] mod updates --- minecraftinstance.json | 958 ++++++++++++++++++----------------------- 1 file changed, 416 insertions(+), 542 deletions(-) diff --git a/minecraftinstance.json b/minecraftinstance.json index 52f764cc0f..6ecf000b01 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,8 +30,8 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2021-09-26T11:25:27.7517189Z", - "playedCount": 382, + "lastPlayed": "2021-09-28T18:08:38.1582226Z", + "playedCount": 391, "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -47,8 +47,8 @@ "name": "Enigmatica6", "cachedScans": [], "isValid": true, - "lastPreviousMatchUpdate": "2021-09-25T17:29:19.3232018Z", - "lastRefreshAttempt": "2021-09-25T19:30:04.9620001+02:00", + "lastPreviousMatchUpdate": "2021-09-27T17:40:22.728668Z", + "lastRefreshAttempt": "2021-09-27T19:40:31.2680002+02:00", "isEnabled": true, "isPinned": false, "gameVersion": "1.16.5", @@ -1529,26 +1529,26 @@ "addonID": 521714, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3445009, - "displayName": "ponderjs-1.16.5-1.0.2.jar", - "fileName": "ponderjs-1.16.5-1.0.2.jar", - "fileDate": "2021-08-31T17:12:57.09Z", - "fileLength": 59597, + "id": 3473075, + "displayName": "ponderjs-1.16.5-1.0.3.jar", + "fileName": "ponderjs-1.16.5-1.0.3.jar", + "fileDate": "2021-09-26T16:30:02.683Z", + "fileLength": 60125, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3445/9/ponderjs-1.16.5-1.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3473/75/ponderjs-1.16.5-1.0.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 238086, + "addonId": 328085, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 328085, + "addonId": 238086, "type": 3, "fileId": 0 } @@ -1557,19 +1557,19 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1548608754, + "fingerprint": 2063765738, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3632383414, + "fingerprint": 3532274439, "type": 0, "invalidFingerprint": false }, { "foldername": "kubejs.plugins.txt", - "fingerprint": 453151610, + "fingerprint": 2131187925, "type": 0, "invalidFingerprint": false }, @@ -1586,7 +1586,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3274164860, + "packageFingerprint": 2123725902, "gameVersion": [ "1.16.5", "Forge" @@ -1600,11 +1600,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ponderjs-1.16.5-1.0.2.jar" + "FileNameOnDisk": "ponderjs-1.16.5-1.0.3.jar" }, "dateInstalled": "2021-09-01T20:23:23.4515179Z", - "dateUpdated": "2021-09-01T20:23:23.4615166Z", - "dateLastUpdateAttempted": "2021-09-01T20:23:23.4615166Z", + "dateUpdated": "2021-09-26T18:55:19.1333963Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:19.1333963Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2446,10 +2446,10 @@ "isServerPack": false, "FileNameOnDisk": "Apotheosis-1.16.5-4.8.0.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5095806Z", - "dateUpdated": "2021-09-08T17:53:18.9925932Z", - "dateLastUpdateAttempted": "2021-09-08T17:53:18.9925932Z", - "status": 5, + "dateInstalled": "2021-09-27T18:50:08.2167934Z", + "dateUpdated": "2021-09-27T18:50:08.2297943Z", + "dateLastUpdateAttempted": "2021-09-27T18:50:08.2297943Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -2857,14 +2857,14 @@ "addonID": 225738, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3468637, - "displayName": "MmmMmmMmmMmm-1.16.5-1.3.0.jar", - "fileName": "MmmMmmMmmMmm-1.3.0.jar", - "fileDate": "2021-09-22T18:23:50.623Z", - "fileLength": 128760, + "id": 3473005, + "displayName": "MmmMmmMmmMmm-1.16.5-1.3.1.jar", + "fileName": "MmmMmmMmmMmm-1.16.5-1.3.1.jar", + "fileDate": "2021-09-26T15:22:52.197Z", + "fileLength": 156393, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3468/637/MmmMmmMmmMmm-1.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3473/5/MmmMmmMmmMmm-1.16.5-1.3.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -2872,19 +2872,19 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4083831637, + "fingerprint": 3444351968, "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 892500372, + "fingerprint": 2972405099, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 559274669, + "fingerprint": 1443824609, "type": 0, "invalidFingerprint": false }, @@ -2912,6 +2912,12 @@ "type": 0, "invalidFingerprint": false }, + { + "foldername": "logo2.png", + "fingerprint": 3497494600, + "type": 0, + "invalidFingerprint": false + }, { "foldername": "pack.mcmeta", "fingerprint": 516985262, @@ -2925,7 +2931,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 671826944, + "packageFingerprint": 3534794908, "gameVersion": [ "1.16.3", "1.16.5", @@ -2941,12 +2947,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "MmmMmmMmmMmm-1.3.0.jar" + "FileNameOnDisk": "MmmMmmMmmMmm-1.16.5-1.3.1.jar" }, "dateInstalled": "2021-09-25T20:00:48.4929878Z", - "dateUpdated": "2021-09-25T20:00:48.5059896Z", - "dateLastUpdateAttempted": "2021-09-25T20:00:48.5059896Z", - "status": 4, + "dateUpdated": "2021-09-26T18:55:20.3454249Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:20.3454249Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -3142,10 +3148,10 @@ "alternateFileId": 0, "dependencies": [ { - "id": 59031230, + "id": 0, "addonId": 351264, "type": 3, - "fileId": 3239647 + "fileId": 0 } ], "isAvailable": true, @@ -3153,31 +3159,31 @@ { "foldername": "META-INF", "fingerprint": 2035055663, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "ejektaflex", "fingerprint": 1260082630, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", "fingerprint": 2844277695, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", "fingerprint": 3575987840, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 4253522632, - "type": 3, + "type": 0, "invalidFingerprint": false } ], @@ -3186,38 +3192,20 @@ "1.16.5", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2218124, - "projectId": 309516, - "packageFingerprintId": 624932623, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2794142, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, "FileNameOnDisk": "Bountiful-1.16.4-3.3.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5135813Z", - "dateUpdated": "2021-07-05T20:20:57.5135813Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-27T04:45:06.6421109Z", + "dateUpdated": "2021-09-27T04:45:06.6621069Z", + "dateLastUpdateAttempted": "2021-09-27T04:45:06.6621069Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3975,7 +3963,7 @@ "dateInstalled": "2021-07-05T20:19:25.2949358Z", "dateUpdated": "2021-09-26T11:24:59.1871435Z", "dateLastUpdateAttempted": "2021-09-26T11:24:59.1871435Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4737,107 +4725,89 @@ "addonID": 247007, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3292062, - "displayName": "CommonCapabilities-1.16.5-2.7.0.jar", - "fileName": "CommonCapabilities-1.16.5-2.7.0.jar", - "fileDate": "2021-04-28T17:26:40.817Z", - "fileLength": 232241, + "id": 3474905, + "displayName": "CommonCapabilities-1.16.5-2.7.1.jar", + "fileName": "CommonCapabilities-1.16.5-2.7.1.jar", + "fileDate": "2021-09-27T17:37:36.527Z", + "fileLength": 232695, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3292/62/CommonCapabilities-1.16.5-2.7.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/905/CommonCapabilities-1.16.5-2.7.1.jar", "isAlternate": false, - "alternateFileId": 3292063, + "alternateFileId": 3474906, "dependencies": [ { - "id": 62402779, + "id": 0, "addonId": 232758, "type": 3, - "fileId": 3292062 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 334273726, - "type": 3, + "fingerprint": 1750697612, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "org", + "fingerprint": 792019091, + "type": 0, "invalidFingerprint": false }, { "foldername": "net", "fingerprint": 3744435153, - "type": 3, + "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 2281239715, - "type": 3, + "foldername": "assets", + "fingerprint": 2496779235, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo_small.png", - "fingerprint": 2163496590, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 1769657426, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2496779235, - "type": 3, + "foldername": "logo_small.png", + "fingerprint": 2163496590, + "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", "fingerprint": 3091802498, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 1769657426, - "type": 3, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2092361126, + "packageFingerprint": 4255918634, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2286242, - "projectId": 247007, - "packageFingerprintId": 652538823, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2896788, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CommonCapabilities-1.16.5-2.7.0.jar" + "FileNameOnDisk": "CommonCapabilities-1.16.5-2.7.1.jar" }, "dateInstalled": "2021-07-05T20:20:57.5465805Z", - "dateUpdated": "2021-07-05T20:20:57.5465805Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateUpdated": "2021-09-27T17:47:39.9756577Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:39.9756577Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4942,14 +4912,14 @@ "addonID": 238086, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3470951, - "displayName": "kubejs-forge-1605.3.18-build.129.jar", - "fileName": "kubejs-forge-1605.3.18-build.129.jar", - "fileDate": "2021-09-25T11:54:11.507Z", - "fileLength": 836107, + "id": 3475472, + "displayName": "kubejs-forge-1605.3.18-build.133.jar", + "fileName": "kubejs-forge-1605.3.18-build.133.jar", + "fileDate": "2021-09-28T10:51:20.613Z", + "fileLength": 836673, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3470/951/kubejs-forge-1605.3.18-build.129.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3475/472/kubejs-forge-1605.3.18-build.133.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -4961,14 +4931,14 @@ }, { "id": 0, - "addonId": 419699, - "type": 3, + "addonId": 238222, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 238222, - "type": 2, + "addonId": 419699, + "type": 3, "fileId": 0 }, { @@ -5030,19 +5000,19 @@ }, { "foldername": "META-INF", - "fingerprint": 2971353835, + "fingerprint": 3849080814, "type": 0, "invalidFingerprint": false }, { "foldername": "dev", - "fingerprint": 3761172815, + "fingerprint": 635302901, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_KubeJS1165_common_43b63bde11bb4ae29ed2ac6f9c2a9732", - "fingerprint": 2603937740, + "foldername": "architectury_inject_KubeJS1165_common_29e9a7ae4f31492c8664d180d4b96f78", + "fingerprint": 4142082995, "type": 0, "invalidFingerprint": false }, @@ -5053,7 +5023,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2736804321, + "packageFingerprint": 354582382, "gameVersion": [ "1.16.5", "Forge", @@ -5068,12 +5038,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kubejs-forge-1605.3.18-build.129.jar" + "FileNameOnDisk": "kubejs-forge-1605.3.18-build.133.jar" }, - "dateInstalled": "2021-09-24T19:37:07.8852887Z", - "dateUpdated": "2021-09-25T14:37:07.5023991Z", - "dateLastUpdateAttempted": "2021-09-25T14:37:07.5023991Z", - "status": 4, + "dateInstalled": "2021-09-28T18:08:09.9226898Z", + "dateUpdated": "2021-09-28T18:08:09.9337029Z", + "dateLastUpdateAttempted": "2021-09-28T18:08:09.9337029Z", + "status": 3, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -5082,7 +5052,7 @@ "isFuzzyMatch": false, "preferenceReleaseType": null, "manifestName": null, - "installedTargets": null + "installedTargets": [] }, { "addonID": 268250, @@ -6494,26 +6464,26 @@ "addonID": 361026, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472626, - "displayName": "occultism-1.14.1.jar", - "fileName": "occultism-1.16.5-1.14.1.jar", - "fileDate": "2021-09-26T06:13:13.947Z", - "fileLength": 4211415, + "id": 3474665, + "displayName": "occultism-1.14.2.jar", + "fileName": "occultism-1.16.5-1.14.2.jar", + "fileDate": "2021-09-27T11:27:14.7Z", + "fileLength": 4213931, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/626/occultism-1.16.5-1.14.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/665/occultism-1.16.5-1.14.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 306770, + "addonId": 309927, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 309927, + "addonId": 306770, "type": 3, "fileId": 0 } @@ -6522,19 +6492,19 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1773355792, + "fingerprint": 753493468, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 669926920, + "fingerprint": 105957825, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1737752004, + "fingerprint": 524464720, "type": 0, "invalidFingerprint": false }, @@ -6546,7 +6516,7 @@ }, { "foldername": "data", - "fingerprint": 919053852, + "fingerprint": 963583224, "type": 0, "invalidFingerprint": false }, @@ -6557,7 +6527,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1809785777, + "packageFingerprint": 2031475472, "gameVersion": [ "1.16.3", "1.16.5", @@ -6574,11 +6544,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "occultism-1.16.5-1.14.1.jar" + "FileNameOnDisk": "occultism-1.16.5-1.14.2.jar" }, "dateInstalled": "2021-09-25T14:41:32.7416314Z", - "dateUpdated": "2021-09-26T11:25:10.5802419Z", - "dateLastUpdateAttempted": "2021-09-26T11:25:10.5802419Z", + "dateUpdated": "2021-09-27T17:47:36.8356511Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:36.8356511Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8284,14 +8254,14 @@ "addonID": 376737, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3357326, - "displayName": "PrettyPipes-1.9.4.jar", - "fileName": "PrettyPipes-1.9.4.jar", - "fileDate": "2021-06-19T12:52:10.403Z", - "fileLength": 1551667, + "id": 3472990, + "displayName": "PrettyPipes-1.9.5.jar", + "fileName": "PrettyPipes-1.9.5.jar", + "fileDate": "2021-09-26T15:07:24.677Z", + "fileLength": 1552424, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3357/326/PrettyPipes-1.9.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3472/990/PrettyPipes-1.9.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -8299,92 +8269,62 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3306170496, - "type": 3, + "fingerprint": 2643377313, + "type": 0, "invalidFingerprint": false }, { "foldername": "de", - "fingerprint": 4265450121, - "type": 3, + "fingerprint": 2171597558, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2538160271, - "type": 3, + "fingerprint": 2911328373, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", "fingerprint": 2242770304, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 2949935882, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "org", "fingerprint": 2104039922, - "type": 3, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2441514164, + "packageFingerprint": 3727158791, "gameVersion": [ "1.16.3", "1.16.5", "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2369365, - "projectId": 376737, - "packageFingerprintId": 687119406, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3057408, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "PrettyPipes-1.9.4.jar" + "FileNameOnDisk": "PrettyPipes-1.9.5.jar" }, "dateInstalled": "2021-07-05T20:20:57.519581Z", - "dateUpdated": "2021-07-05T20:20:57.519581Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateUpdated": "2021-09-26T18:55:18.5073968Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:18.5073968Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8747,7 +8687,7 @@ "dateInstalled": "2021-07-05T20:21:03.3831197Z", "dateUpdated": "2021-09-25T14:37:02.399646Z", "dateLastUpdateAttempted": "2021-09-25T14:37:02.399646Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -10580,40 +10520,40 @@ "addonID": 232758, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3443983, - "displayName": "CyclopsCore-1.16.5-1.11.9.jar", - "fileName": "CyclopsCore-1.16.5-1.11.9.jar", - "fileDate": "2021-08-30T17:31:18.22Z", - "fileLength": 844244, + "id": 3474910, + "displayName": "CyclopsCore-1.16.5-1.11.10.jar", + "fileName": "CyclopsCore-1.16.5-1.11.10.jar", + "fileDate": "2021-09-27T17:37:47.15Z", + "fileLength": 844480, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3443/983/CyclopsCore-1.16.5-1.11.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/910/CyclopsCore-1.16.5-1.11.10.jar", "isAlternate": false, - "alternateFileId": 3443984, + "alternateFileId": 3474911, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3863693073, + "fingerprint": 3548156480, "type": 0, "invalidFingerprint": false }, { "foldername": "org", - "fingerprint": 1959540720, + "fingerprint": 780530223, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3536622113, + "foldername": "assets", + "fingerprint": 3876077990, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3876077990, + "foldername": "pack.mcmeta", + "fingerprint": 3536622113, "type": 0, "invalidFingerprint": false }, @@ -10624,19 +10564,19 @@ "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2866114932, + "foldername": "data", + "fingerprint": 2620577581, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2620577581, + "foldername": "logo.png", + "fingerprint": 2866114932, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2421314292, + "packageFingerprint": 297894024, "gameVersion": [ "1.16.5", "Forge" @@ -10650,12 +10590,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CyclopsCore-1.16.5-1.11.9.jar" + "FileNameOnDisk": "CyclopsCore-1.16.5-1.11.10.jar" }, "dateInstalled": "2021-07-05T20:20:47.9741847Z", - "dateUpdated": "2021-08-31T18:21:54.0722003Z", - "dateLastUpdateAttempted": "2021-08-31T18:21:54.0722003Z", - "status": 5, + "dateUpdated": "2021-09-27T17:47:39.8746612Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:39.8746612Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -10782,7 +10722,7 @@ "dateInstalled": "2021-07-05T20:21:18.9750637Z", "dateUpdated": "2021-09-26T11:25:08.1429425Z", "dateLastUpdateAttempted": "2021-09-26T11:25:08.1429425Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12494,9 +12434,9 @@ "isServerPack": false, "FileNameOnDisk": "JustEnoughResources-1.16.5-0.12.1.128.jar" }, - "dateInstalled": "2021-08-05T21:38:36.5173719Z", - "dateUpdated": "2021-08-25T05:56:55.0415025Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:55.0415025Z", + "dateInstalled": "2021-09-26T19:22:53.8191174Z", + "dateUpdated": "2021-09-26T19:22:53.8311161Z", + "dateLastUpdateAttempted": "2021-09-26T19:22:53.8311161Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -12772,14 +12712,14 @@ "addonID": 361276, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3443390, + "id": 3474391, "displayName": "lootr-1.16.5-0.0.8.23.jar", "fileName": "lootr-1.16.5-0.0.8.23.jar", - "fileDate": "2021-08-30T01:04:57.617Z", - "fileLength": 196166, + "fileDate": "2021-09-27T00:13:51.543Z", + "fileLength": 198584, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3443/390/lootr-1.16.5-0.0.8.23.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/391/lootr-1.16.5-0.0.8.23.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -12787,13 +12727,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 736246485, + "fingerprint": 429005880, "type": 0, "invalidFingerprint": false }, { "foldername": "noobanidus", - "fingerprint": 2935664419, + "fingerprint": 3566295206, "type": 0, "invalidFingerprint": false }, @@ -12811,7 +12751,7 @@ }, { "foldername": "lootr.mixins.json", - "fingerprint": 2741521940, + "fingerprint": 3491726392, "type": 0, "invalidFingerprint": false }, @@ -12823,12 +12763,12 @@ }, { "foldername": "lootr.refmap.json", - "fingerprint": 2992893873, + "fingerprint": 2384464821, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1544651913, + "packageFingerprint": 3645318813, "gameVersion": [ "1.16.5", "Forge", @@ -12846,9 +12786,9 @@ "FileNameOnDisk": "lootr-1.16.5-0.0.8.23.jar" }, "dateInstalled": "2021-07-05T20:21:03.3531188Z", - "dateUpdated": "2021-08-31T18:22:25.1477535Z", - "dateLastUpdateAttempted": "2021-08-31T18:22:25.1477535Z", - "status": 5, + "dateUpdated": "2021-09-27T17:47:35.5904154Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:35.5904154Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13925,9 +13865,9 @@ "isServerPack": false, "FileNameOnDisk": "kotlinforforge-1.15.1-obf.jar" }, - "dateInstalled": "2021-07-14T06:13:29.1642669Z", - "dateUpdated": "2021-09-08T17:54:19.9791854Z", - "dateLastUpdateAttempted": "2021-09-08T17:54:19.9791854Z", + "dateInstalled": "2021-09-27T04:02:25.6149583Z", + "dateUpdated": "2021-09-27T04:02:25.6269586Z", + "dateLastUpdateAttempted": "2021-09-27T04:02:25.6269586Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15039,126 +14979,96 @@ "addonID": 306626, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3255666, - "displayName": "NaturesAura-34.2.jar", - "fileName": "NaturesAura-34.2.jar", - "fileDate": "2021-03-30T14:25:16.343Z", - "fileLength": 1356579, + "id": 3472977, + "displayName": "NaturesAura-34.3.jar", + "fileName": "NaturesAura-34.3.jar", + "fileDate": "2021-09-26T14:53:52.83Z", + "fileLength": 1381468, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3255/666/NaturesAura-34.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3472/977/NaturesAura-34.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 60183527, - "addonId": 313272, - "type": 2, - "fileId": 3255666 - }, - { - "id": 60183529, + "id": 0, "addonId": 306770, "type": 3, - "fileId": 3255666 + "fileId": 0 + }, + { + "id": 0, + "addonId": 309927, + "type": 2, + "fileId": 0 }, { - "id": 60183528, + "id": 0, "addonId": 238222, "type": 2, - "fileId": 3255666 + "fileId": 0 }, { - "id": 60183526, - "addonId": 309927, + "id": 0, + "addonId": 313272, "type": 2, - "fileId": 3255666 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2175767982, - "type": 3, + "fingerprint": 3699649426, + "type": 0, "invalidFingerprint": false }, { "foldername": "de", - "fingerprint": 620215593, - "type": 3, + "fingerprint": 4245162054, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2612152546, - "type": 3, + "fingerprint": 3254365699, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1957742032, - "type": 3, + "fingerprint": 539793675, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 4034026680, - "type": 3, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2315005427, + "packageFingerprint": 358643820, "gameVersion": [ "1.16.3", "1.16.5", "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2240211, - "projectId": 306626, - "packageFingerprintId": 634612607, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2827944, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "NaturesAura-34.2.jar" + "FileNameOnDisk": "NaturesAura-34.3.jar" }, "dateInstalled": "2021-07-05T20:20:52.5333929Z", - "dateUpdated": "2021-07-05T20:20:52.5333929Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateUpdated": "2021-09-26T18:55:19.9934226Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:19.9934226Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16557,37 +16467,37 @@ { "foldername": "META-INF", "fingerprint": 2347795336, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "me", "fingerprint": 43392969, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "icon.png", "fingerprint": 1040627429, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "lazydfu.mixins.json", "fingerprint": 672362357, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 808515154, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "lazydfu.refmap.json", "fingerprint": 3595148347, - "type": 3, + "type": 0, "invalidFingerprint": false } ], @@ -16599,57 +16509,21 @@ "1.16.4", "1.16.2" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2231501, - "projectId": 460819, - "packageFingerprintId": 630765443, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2020-06-24T12:41:11.823Z", - "gameVersionMappingId": 2813381, - "gameVersionId": 7892, - "gameId": 432, + "gameId": 0, "isServerPack": false, "FileNameOnDisk": "lazydfu-0.1.3.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9700645Z", - "dateUpdated": "2021-07-05T20:21:18.9700645Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-09-27T20:15:33.5393303Z", + "dateUpdated": "2021-09-27T20:15:33.6088625Z", + "dateLastUpdateAttempted": "2021-09-27T20:15:33.6088625Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18005,14 +17879,14 @@ "addonID": 228525, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3459818, - "displayName": "Bookshelf-Forge-1.16.5-10.2.28.jar", - "fileName": "Bookshelf-Forge-1.16.5-10.2.28.jar", - "fileDate": "2021-09-14T22:26:21.063Z", - "fileLength": 309734, - "releaseType": 3, + "id": 3474499, + "displayName": "Bookshelf-Forge-1.16.5-10.3.29.jar", + "fileName": "Bookshelf-Forge-1.16.5-10.3.29.jar", + "fileDate": "2021-09-27T03:30:20.037Z", + "fileLength": 315420, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3459/818/Bookshelf-Forge-1.16.5-10.2.28.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/499/Bookshelf-Forge-1.16.5-10.3.29.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18020,7 +17894,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 873910133, + "fingerprint": 3805763113, "type": 0, "invalidFingerprint": false }, @@ -18038,7 +17912,7 @@ }, { "foldername": "net", - "fingerprint": 3875375272, + "fingerprint": 573849751, "type": 0, "invalidFingerprint": false }, @@ -18049,7 +17923,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2100889102, + "packageFingerprint": 3146577677, "gameVersion": [ "1.16.5", "Forge" @@ -18063,12 +17937,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Bookshelf-Forge-1.16.5-10.2.28.jar" + "FileNameOnDisk": "Bookshelf-Forge-1.16.5-10.3.29.jar" }, "dateInstalled": "2021-07-05T20:20:52.5233912Z", - "dateUpdated": "2021-09-18T21:19:01.7193664Z", - "dateLastUpdateAttempted": "2021-09-18T21:19:01.7193664Z", - "status": 5, + "dateUpdated": "2021-09-27T17:47:39.7686603Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:39.7686603Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18766,7 +18640,7 @@ "dateInstalled": "2021-07-10T17:55:07.2513379Z", "dateUpdated": "2021-09-26T11:25:12.4724169Z", "dateLastUpdateAttempted": "2021-09-26T11:25:12.4724169Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -22520,7 +22394,7 @@ "dateInstalled": "2021-09-16T06:15:58.9533579Z", "dateUpdated": "2021-09-25T14:37:05.8983263Z", "dateLastUpdateAttempted": "2021-09-25T14:37:05.8983263Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -23533,9 +23407,9 @@ "isServerPack": false, "FileNameOnDisk": "TerraForged-1.16.5-0.2.16-BETA-2.jar" }, - "dateInstalled": "2021-08-04T21:39:34.9134975Z", - "dateUpdated": "2021-09-18T21:22:13.3589963Z", - "dateLastUpdateAttempted": "2021-09-18T21:22:13.3589963Z", + "dateInstalled": "2021-09-27T04:45:03.6608098Z", + "dateUpdated": "2021-09-27T04:45:03.6788058Z", + "dateLastUpdateAttempted": "2021-09-27T04:45:03.6788058Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28822,14 +28696,14 @@ "addonID": 231095, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472725, - "displayName": "Rebuild: 1.0.5", - "fileName": "chiselsandbits-1.0.5-BETA-universal.jar", - "fileDate": "2021-09-26T09:44:59.783Z", - "fileLength": 907228, + "id": 3473110, + "displayName": "Rebuild: 1.0.7", + "fileName": "chiselsandbits-1.0.7-BETA-universal.jar", + "fileDate": "2021-09-26T17:25:56.8Z", + "fileLength": 912434, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/725/chiselsandbits-1.0.5-BETA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3473/110/chiselsandbits-1.0.7-BETA-universal.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -28844,13 +28718,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2167914267, + "fingerprint": 2916636839, "type": 0, "invalidFingerprint": false }, { "foldername": "mod", - "fingerprint": 1768749856, + "fingerprint": 1862326792, "type": 0, "invalidFingerprint": false }, @@ -28879,7 +28753,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3857114036, + "packageFingerprint": 3738740391, "gameVersion": [ "1.16.3", "1.16.5", @@ -28895,12 +28769,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "chiselsandbits-1.0.5-BETA-universal.jar" + "FileNameOnDisk": "chiselsandbits-1.0.7-BETA-universal.jar" }, "dateInstalled": "2021-09-24T18:21:26.2309502Z", - "dateUpdated": "2021-09-26T11:25:03.2953349Z", - "dateLastUpdateAttempted": "2021-09-26T11:25:03.2953349Z", - "status": 4, + "dateUpdated": "2021-09-26T18:55:23.0527018Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:23.0527018Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -32170,108 +32044,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 298187, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3205295, - "displayName": "buildinggadgets-1.16.5-3.8.0.jar", - "fileName": "buildinggadgets-1.16.5-3.8.0.jar", - "fileDate": "2021-02-15T19:42:19.863Z", - "fileLength": 909445, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3205/295/buildinggadgets-1.16.5-3.8.0.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 56916937, - "addonId": 399757, - "type": 2, - "fileId": 3205295 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 267054609, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 962286206, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 597267807, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "buildinggadgets_logo.png", - "fingerprint": 2374162731, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3840510572, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3547210442, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 3456565023, - "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2173986, - "projectId": 298187, - "packageFingerprintId": 606375272, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2725255, - "gameVersionId": 4458, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "buildinggadgets-1.16.5-3.8.0.jar" - }, - "dateInstalled": "2021-07-05T20:20:57.5145815Z", - "dateUpdated": "2021-07-05T20:20:57.5145815Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 390898, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", @@ -32469,61 +32241,67 @@ "installedTargets": null }, { - "addonID": 479142, + "addonID": 298187, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3368538, - "displayName": "PrettyPipesFluids-0.4.1.jar", - "fileName": "PrettyPipesFluids-0.4.1.jar", - "fileDate": "2021-06-29T06:57:01.207Z", - "fileLength": 82918, - "releaseType": 2, + "id": 3205295, + "displayName": "buildinggadgets-1.16.5-3.8.0.jar", + "fileName": "buildinggadgets-1.16.5-3.8.0.jar", + "fileDate": "2021-02-15T19:42:19.863Z", + "fileLength": 909445, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3368/538/PrettyPipesFluids-0.4.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3205/295/buildinggadgets-1.16.5-3.8.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 67567994, - "addonId": 376737, - "type": 3, - "fileId": 3368538 + "id": 56916937, + "addonId": 399757, + "type": 2, + "fileId": 3205295 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 480572702, + "fingerprint": 267054609, "type": 3, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 961421603, + "foldername": "com", + "fingerprint": 962286206, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2089877027, + "foldername": "data", + "fingerprint": 597267807, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1771029295, + "foldername": "buildinggadgets_logo.png", + "fingerprint": 2374162731, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3840510572, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, + "fingerprint": 3547210442, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3884147275, + "packageFingerprint": 3456565023, "gameVersion": [ "1.16.5" ], @@ -32540,18 +32318,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2383865, - "projectId": 479142, - "packageFingerprintId": 694154310, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 3085190, - "gameVersionId": 8203, + "renderCacheId": 2173986, + "projectId": 298187, + "packageFingerprintId": 606375272, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2725255, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "PrettyPipesFluids-0.4.1.jar" + "FileNameOnDisk": "buildinggadgets-1.16.5-3.8.0.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5233912Z", - "dateUpdated": "2021-07-05T20:20:52.5233912Z", + "dateInstalled": "2021-07-05T20:20:57.5145815Z", + "dateUpdated": "2021-07-05T20:20:57.5145815Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -32666,6 +32444,102 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 479142, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3368538, + "displayName": "PrettyPipesFluids-0.4.1.jar", + "fileName": "PrettyPipesFluids-0.4.1.jar", + "fileDate": "2021-06-29T06:57:01.207Z", + "fileLength": 82918, + "releaseType": 2, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3368/538/PrettyPipesFluids-0.4.1.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 67567994, + "addonId": 376737, + "type": 3, + "fileId": 3368538 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 480572702, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 961421603, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2089877027, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1771029295, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3380797652, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 3884147275, + "gameVersion": [ + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2383865, + "projectId": 479142, + "packageFingerprintId": 694154310, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 3085190, + "gameVersionId": 8203, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "PrettyPipesFluids-0.4.1.jar" + }, + "dateInstalled": "2021-07-05T20:20:52.5233912Z", + "dateUpdated": "2021-07-05T20:20:52.5233912Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 291493, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", From b69e24c86645a307ddd738c3ead110740c5ba28b Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Tue, 28 Sep 2021 23:27:24 -0400 Subject: [PATCH 038/124] [Expert] Blood Magic Updates Drop Occultism crusher outputs for expert to 1x, 2x, 3x, and 4x More BM tooltips added and other helper text Update recipes for new anointments. Made enhanced versions cheaper to promote use. New Archer's Polish ![image](https://user-images.githubusercontent.com/9543430/135195927-12b8d324-b53b-413e-aa77-f19ac348b0d7.png) Upgrades follow similar format of tau oil for the extended duration and saturated tau for the improved power ![image](https://user-images.githubusercontent.com/9543430/135195999-547cbdc9-0750-48de-ae30-9082e0cd01b2.png) Removed new default blood shard recipe in expert --- config/configswapper/expert/occultism.txt | 6 ++ config/configswapper/normal/occultism.txt | 6 ++ .../expert/item_modifiers/tooltips.js | 2 +- .../item_modifiers/jei_descriptions.js | 12 ++++ .../client_scripts/item_modifiers/tooltips.js | 22 ++++--- .../kubejs/expert/recipes/remove.js | 3 + .../recipetypes/bloodmagic/alchemytable.js | 58 ++++++++++++++++++- 7 files changed, 96 insertions(+), 13 deletions(-) create mode 100644 config/configswapper/expert/occultism.txt create mode 100644 config/configswapper/normal/occultism.txt diff --git a/config/configswapper/expert/occultism.txt b/config/configswapper/expert/occultism.txt new file mode 100644 index 0000000000..151fd51982 --- /dev/null +++ b/config/configswapper/expert/occultism.txt @@ -0,0 +1,6 @@ +$occultism.server.spirit_job { + spirit_job.tier1CrusherOutputMultiplier = 0.5 + spirit_job.tier2CrusherOutputMultiplier = 1.0 + spirit_job.tier3CrusherOutputMultiplier = 1.5 + spirit_job.tier4CrusherOutputMultiplier = 2.0 +} \ No newline at end of file diff --git a/config/configswapper/normal/occultism.txt b/config/configswapper/normal/occultism.txt new file mode 100644 index 0000000000..ba110ef92f --- /dev/null +++ b/config/configswapper/normal/occultism.txt @@ -0,0 +1,6 @@ +$occultism.server.spirit_job { + spirit_job.tier1CrusherOutputMultiplier = 1.0 + spirit_job.tier2CrusherOutputMultiplier = 1.5 + spirit_job.tier3CrusherOutputMultiplier = 2.0 + spirit_job.tier4CrusherOutputMultiplier = 3.0 +} \ No newline at end of file diff --git a/kubejs/client_scripts/expert/item_modifiers/tooltips.js b/kubejs/client_scripts/expert/item_modifiers/tooltips.js index 89509ca5b7..cc7e4b4086 100644 --- a/kubejs/client_scripts/expert/item_modifiers/tooltips.js +++ b/kubejs/client_scripts/expert/item_modifiers/tooltips.js @@ -26,7 +26,7 @@ onEvent('item.tooltip', (event) => { const recipes = [ { items: ['bloodmagic:soulpickaxe'], - text: ['Capable of mining Iesnium.'] + text: [Text.of('Capable of mining Iesnium.').color('#7e24b3')] }, { items: ['tconstruct:seared_melter'], diff --git a/kubejs/client_scripts/item_modifiers/jei_descriptions.js b/kubejs/client_scripts/item_modifiers/jei_descriptions.js index 051df13656..5efe5745c1 100644 --- a/kubejs/client_scripts/item_modifiers/jei_descriptions.js +++ b/kubejs/client_scripts/item_modifiers/jei_descriptions.js @@ -310,6 +310,18 @@ onEvent('jei.information', (event) => { description: [ `Mungus may be summoned through the Altar of Birthing, while Crimson Mosquitos may be created by bringing a Fly into the Nether.` ] + }, + { + items: ['bloodmagic:weak_tau'], + description: [`Found in chests within the Demon Realm.`] + }, + { + items: ['bloodmagic:strong_tau'], + description: [`Produced by growing Tau near mobs.`] + }, + { + items: ['eidolon:unholy_symbol'], + description: [`Produced by chanting the Touch of Darkness at Pewter Inlay dropped on the ground.`] } ]; diff --git a/kubejs/client_scripts/item_modifiers/tooltips.js b/kubejs/client_scripts/item_modifiers/tooltips.js index 721b16d62c..eceb8965ca 100644 --- a/kubejs/client_scripts/item_modifiers/tooltips.js +++ b/kubejs/client_scripts/item_modifiers/tooltips.js @@ -92,41 +92,45 @@ onEvent('item.tooltip', (event) => { text: [Text.of('Shield Projections are immune to the Wither').color('#4F0D75')] }, { - items: ['bloodmagic:quick_draw_anointment'], + items: [/bloodmagic:quick_draw_anointment/], text: [Text.of('Grants Quick-Draw on Bows and Crossbows').color('#7e24b3')] }, { - items: ['bloodmagic:fortune_anointment'], + items: [/bloodmagic:fortune_anointment/], text: [Text.of('Grants additional Fortune on Tools').color('#7e24b3')] }, { - items: ['bloodmagic:holy_water_anointment'], + items: [/bloodmagic:holy_water_anointment/], text: [Text.of('Grants bonus Smite damage on Melee Attacks.').color('#7e24b3')] }, { - items: ['bloodmagic:melee_anointment'], + items: [/bloodmagic:melee_anointment/], text: [Text.of('Grants bonus damage on Melee Attacks').color('#7e24b3')] }, { - items: ['bloodmagic:bow_power_anointment'], + items: [/bloodmagic:bow_power_anointment/], text: [Text.of('Grants bonus damage on Bows and Crossbows').color('#7e24b3')] }, { - items: ['bloodmagic:silk_touch_anointment'], + items: [/bloodmagic:silk_touch_anointment/], text: [Text.of('Grants Silk Touch').color('#7e24b3')] }, { - items: ['bloodmagic:hidden_knowledge_anointment'], + items: [/bloodmagic:hidden_knowledge_anointment/], text: [Text.of('Grants bonus Experience from block harvests.').color('#7e24b3')] }, { - items: ['bloodmagic:smelting_anointment'], + items: [/bloodmagic:smelting_anointment/], text: [Text.of('Grants Auto Smelt').color('#7e24b3')] }, { - items: ['bloodmagic:looting_anointment'], + items: [/bloodmagic:looting_anointment/], text: [Text.of('Grants additional Looting on Weapons').color('#7e24b3')] }, + { + items: [/bloodmagic:bow_velocity_anointment/], + text: [Text.of('Grants additional projectile velocity on Bows and Crossbows').color('#7e24b3')] + }, { items: ['#enigmatica:burning_hot'], text: [Text.of('Extremely hot!').darkRed()] diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js index 010b1007da..2d71e2626f 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js @@ -20,6 +20,9 @@ onEvent('recipes', (event) => { 'betterendforge:leather_to_stripes', + 'bloodmagic:arc/weakbloodshard_tau', + /bloodmagic:alchemytable\/melee_damage_anointment/, + 'botania:mana_infusion/mana_diamond_block', /create:pressing\/\w*_ingot/, diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js index 431652f477..41615339a0 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js @@ -213,7 +213,7 @@ onEvent('recipes', (event) => { syphon: 20000, ticks: 200, orbLevel: 3, - id: 'bloodmagic:arc/weakbloodshard' + id: `${id_prefix}weakbloodshard` }, { inputs: [ @@ -392,7 +392,7 @@ onEvent('recipes', (event) => { 'bloodmagic:slate_vial', Item.of('naturesaura:aura_bottle', '{stored_type:"naturesaura:overworld"}'), '#forge:nuggets/aluminum', - 'undergarden:gloomper_leg' + 'undergarden:raw_gloomper_leg' ], output: 'bloodmagic:quick_draw_anointment', count: 1, @@ -401,6 +401,20 @@ onEvent('recipes', (event) => { orbLevel: 1, id: 'bloodmagic:alchemytable/quick_draw_anointment' }, + { + inputs: [ + 'bloodmagic:slate_vial', + Item.of('naturesaura:aura_bottle', '{stored_type:"naturesaura:overworld"}'), + 'undergarden:utheric_shard', + 'undergarden:raw_gwibling' + ], + output: 'bloodmagic:bow_velocity_anointment', + count: 1, + syphon: 500, + ticks: 100, + orbLevel: 1, + id: 'bloodmagic:alchemytable/bow_velocity_anointment' + }, { inputs: [ 'undergarden:glowing_kelp', @@ -532,8 +546,46 @@ onEvent('recipes', (event) => { id: 'bloodmagic:alchemytable/basic_cutting_fluid_sigil' } ]; + + let anointmentTypes = [ + 'holy_water_anointment', + 'looting_anointment', + 'melee_anointment', + 'hidden_knowledge_anointment', + 'fortune_anointment', + 'bow_power_anointment', + 'smelting_anointment', + 'silk_touch_anointment', + 'quick_draw_anointment', + 'bow_velocity_anointment' + ]; + + anointmentTypes.forEach((anointmentType) => { + recipes.push({ + inputs: [`bloodmagic:${anointmentType}`, 'bloodmagic:tauoil'], + output: `bloodmagic:${anointmentType}_l`, + count: 1, + syphon: 1000, + ticks: 100, + orbLevel: 3, + id: `bloodmagic:alchemytable/${anointmentType}_l` + }); + if (anointmentType !== 'smelting_anointment' && anointmentType !== 'silk_touch_anointment') { + recipes.push({ + inputs: [`bloodmagic:${anointmentType}`, 'bloodmagic:strong_tau'], + output: `bloodmagic:${anointmentType}_2`, + count: 1, + syphon: 1000, + ticks: 100, + orbLevel: 3, + id: `bloodmagic:alchemytable/${anointmentType}_2` + }); + } + }); + recipes.forEach((recipe) => { - const re = event.recipes.bloodmagic + console.log(`Adding Recipe for ${recipe.output}`); + event.recipes.bloodmagic .alchemytable(Item.of(recipe.output, recipe.count), recipe.inputs) .syphon(recipe.syphon) .ticks(recipe.ticks) From 8093a0030804dea9497e772218f1edcacd73c20f Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Tue, 28 Sep 2021 23:36:41 -0400 Subject: [PATCH 039/124] Update shaped.js --- .../expert/recipetypes/botania/shaped.js | 38 +++++++++++-------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/shaped.js index 67e4967291..5ee5d881d1 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/shaped.js @@ -99,10 +99,10 @@ onEvent('recipes', (event) => { output: 'botania:knockback_belt', pattern: ['B ', ' C ', 'D A'], key: { - A: { tag: 'botania:runes/earth' }, - B: { tag: 'botania:runes/fire' }, - C: { item: 'eidolon:basic_belt' }, - D: { tag: 'forge:ingots/manasteel' } + A: '#botania:runes/earth', + B: '#botania:runes/fire', + C: 'eidolon:basic_belt', + D: '#forge:ingots/manasteel' }, id: 'botania:knockback_belt' }, @@ -110,10 +110,10 @@ onEvent('recipes', (event) => { output: 'botania:travel_belt', pattern: ['B ', ' C ', 'D A'], key: { - A: { tag: 'botania:runes/air' }, - B: { tag: 'botania:runes/earth' }, - C: { item: 'eidolon:basic_belt' }, - D: { tag: 'forge:ingots/manasteel' } + A: '#botania:runes/air', + B: '#botania:runes/earth', + C: 'eidolon:basic_belt', + D: '#forge:ingots/manasteel' }, id: 'botania:travel_belt' }, @@ -121,19 +121,25 @@ onEvent('recipes', (event) => { output: 'botania:crafting_halo', pattern: [' A ', 'BCB', ' B '], key: { - A: { item: 'botania:corporea_spark' }, - B: { item: 'ars_nouveau:marvelous_clay' }, - C: { item: 'ars_nouveau:glyph_craft' } + A: 'botania:corporea_spark', + B: 'ars_nouveau:marvelous_clay', + C: 'ars_nouveau:glyph_craft' }, id: 'botania:crafting_halo' + }, + { + output: 'botania:glass_pickaxe', + pattern: ['ABA', ' C ', ' C '], + key: { + A: 'glassential:glass_ghostly', + B: '#forge:gems/mana', + C: 'naturesaura:ancient_stick' + }, + id: 'botania:glass_pickaxe' } ]; newRecipes.forEach((recipe) => { - if (recipe.id) { - event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); - } else { - event.shaped(recipe.output, recipe.pattern, recipe.key); - } + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); }); }); From 3dfb6442a3772ff483bd340050703633481ce863 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Tue, 28 Sep 2021 23:59:28 -0400 Subject: [PATCH 040/124] more stuffs --- .../recipetypes/bloodmagic/alchemytable.js | 484 +++++++++--------- .../kubejs/expert/recipes/remove.js | 2 +- .../recipetypes/bloodmagic/alchemytable.js | 9 + .../recipetypes/bloodmagic/alchemytable.js | 34 ++ 4 files changed, 282 insertions(+), 247 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/bloodmagic/alchemytable.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/bloodmagic/alchemytable.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/bloodmagic/alchemytable.js index d333b10031..7531744d84 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/bloodmagic/alchemytable.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/bloodmagic/alchemytable.js @@ -1,252 +1,244 @@ onEvent('recipes', (event) => { const id_prefix = 'enigmatica:base/bloodmagic/alchemytable/'; - data = { - recipes: [ - { - inputs: ['minecraft:gravel', 'minecraft:gravel', 'minecraft:gravel'], - output: 'minecraft:flint', - count: 3, - syphon: 50, - ticks: 20, - orbLevel: 0, - id: 'bloodmagic:alchemytable/flint_from_gravel' - }, - { - inputs: ['#forge:crops/potato', '#forge:crops/potato', '#forge:crops/potato', 'minecraft:bone_meal'], - output: 'bloodmagic:plantoil', - count: 1, - syphon: 100, - ticks: 100, - orbLevel: 1, - id: 'bloodmagic:alchemytable/plantoil_from_taters' - }, - { - inputs: ['#forge:crops', '#forge:crops', '#forge:crops', 'minecraft:bone_meal'], - output: 'bloodmagic:plantoil', - count: 1, - syphon: 100, - ticks: 100, - orbLevel: 1, - id: 'bloodmagic:alchemytable/plantoil_from_wheat' - }, - { - inputs: ['minecraft:coal', 'minecraft:coal'], - output: 'emendatusenigmatica:coal_dust', - count: 2, - syphon: 400, - ticks: 200, - orbLevel: 1, - id: 'bloodmagic:alchemytable/sand_coal' - }, - { - inputs: ['#minecraft:wool'], - output: 'minecraft:string', - count: 4, - syphon: 100, - ticks: 100, - orbLevel: 0, - id: 'bloodmagic:alchemytable/string' - }, - { - inputs: ['#forge:sand', '#forge:sand', 'minecraft:water_bucket'], - output: 'minecraft:clay', - count: 2, - syphon: 50, - ticks: 100, - orbLevel: 2, - id: 'bloodmagic:alchemytable/clay_from_sand' - }, - { - inputs: ['#forge:rods/blaze'], - output: 'minecraft:blaze_powder', - count: 4, - syphon: 50, - ticks: 20, - orbLevel: 1, - id: `${id_prefix}blaze_powder` - }, - { - inputs: ['#forge:rods/basalz'], - output: 'thermal:basalz_powder', - count: 4, - syphon: 50, - ticks: 20, - orbLevel: 1, - id: `${id_prefix}basalz_powder` - }, - { - inputs: ['#forge:rods/blizz'], - output: 'thermal:blizz_powder', - count: 4, - syphon: 50, - ticks: 20, - orbLevel: 1, - id: `${id_prefix}blizz_powder` - }, - { - inputs: ['#forge:rods/blitz'], - output: 'thermal:blitz_powder', - count: 4, - syphon: 50, - ticks: 20, - orbLevel: 1, - id: `${id_prefix}blitz_powder` - }, - { - inputs: ['minecraft:dirt', 'minecraft:bone_meal', '#forge:mushrooms'], - output: 'minecraft:mycelium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}mycelium` - }, - { - inputs: ['minecraft:dirt', 'minecraft:bone_meal', '#minecraft:leaves'], - output: 'minecraft:podzol', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}podzol` - }, - { - inputs: ['byg:quartzite_sand', 'byg:quartzite_sand', 'byg:quartzite_sand'], - output: 'minecraft:quartz', - count: 3, - syphon: 50, - ticks: 20, - orbLevel: 0, - id: `${id_prefix}quartz` - }, - { - inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:bulbis_sprouts'], - output: 'byg:bulbis_phycelium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}bulbis_phycelium` - }, - { - inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:imparius_vine'], - output: 'byg:imparius_phylium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}imparius_phylium` - }, - { - inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:shulkren_moss_blanket'], - output: 'byg:shulkren_phylium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}shulkren_phylium` - }, - { - inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:nightshade_sprouts'], - output: 'byg:nightshade_phylium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}nightshade_phylium` - }, - { - inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:ivis_sprout'], - output: 'byg:ivis_phylium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}ivis_phylium` - }, - { - inputs: ['byg:ether_soil', 'minecraft:bone_meal', 'byg:ether_foliage'], - output: 'byg:ether_phylium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}ether_phylium` - }, - { - inputs: ['minecraft:dirt', 'minecraft:bone_meal', 'byg:ether_foliage'], - output: 'byg:ether_soil', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}ether_soil` - }, - { - inputs: ['byg:ether_stone', 'minecraft:bone_meal', 'byg:vermilion_sculk_growth'], - output: 'byg:vermilion_sculk', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}vermilion_sculk` - }, - { - inputs: ['minecraft:netherrack', 'minecraft:bone_meal', '#forge:mushrooms'], - output: 'byg:mycelium_netherrack', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}mycelium_netherrack` - }, - { - inputs: ['#forge:dusts/sulfur', 'industrialforegoing:dryrubber', 'industrialforegoing:dryrubber'], - output: 'thermal:cured_rubber', - count: 2, - syphon: 400, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}cured_rubber` - }, - { - inputs: ['minecraft:end_stone', 'minecraft:bone_meal', '#forge:mushrooms'], - output: 'betterendforge:end_mycelium', - count: 1, - syphon: 200, - ticks: 200, - orbLevel: 1, - id: `${id_prefix}end_mycelium` - }, - { - inputs: ['minecraft:nether_wart_block'], - output: 'minecraft:nether_wart', - count: 4, - syphon: 50, - ticks: 40, - orbLevel: 0, - id: 'bloodmagic:alchemytable/nether_wart_from_block' - }, - { - inputs: [ - 'bloodmagic:tauoil', - '#forge:dusts/glowstone', - 'minecraft:gunpowder', - 'minecraft:sugar', - '#forge:dusts/sulfur', - Item.of('minecraft:potion', '{Potion:"minecraft:water"}') - ], - output: 'bloodmagic:intermediatecuttingfluid', - count: 1, - syphon: 2000, - ticks: 200, - orbLevel: 3, - id: 'bloodmagic:alchemytable/intermediate_cutting_fluid' - } - ] - }; - data.recipes.forEach((recipe) => { + recipes = [ + { + inputs: ['minecraft:gravel', 'minecraft:gravel', 'minecraft:gravel'], + output: 'minecraft:flint', + count: 3, + syphon: 50, + ticks: 20, + orbLevel: 0, + id: 'bloodmagic:alchemytable/flint_from_gravel' + }, + { + inputs: ['#forge:crops/potato', '#forge:crops/potato', '#forge:crops/potato', 'minecraft:bone_meal'], + output: 'bloodmagic:plantoil', + count: 1, + syphon: 100, + ticks: 100, + orbLevel: 1, + id: 'bloodmagic:alchemytable/plantoil_from_taters' + }, + { + inputs: ['#forge:crops', '#forge:crops', '#forge:crops', 'minecraft:bone_meal'], + output: 'bloodmagic:plantoil', + count: 1, + syphon: 100, + ticks: 100, + orbLevel: 1, + id: 'bloodmagic:alchemytable/plantoil_from_wheat' + }, + { + inputs: ['minecraft:coal', 'minecraft:coal'], + output: 'emendatusenigmatica:coal_dust', + count: 2, + syphon: 400, + ticks: 200, + orbLevel: 1, + id: 'bloodmagic:alchemytable/sand_coal' + }, + { + inputs: ['#minecraft:wool'], + output: 'minecraft:string', + count: 4, + syphon: 100, + ticks: 100, + orbLevel: 0, + id: 'bloodmagic:alchemytable/string' + }, + { + inputs: ['#forge:sand', '#forge:sand', 'minecraft:water_bucket'], + output: 'minecraft:clay', + count: 2, + syphon: 50, + ticks: 100, + orbLevel: 2, + id: 'bloodmagic:alchemytable/clay_from_sand' + }, + { + inputs: ['#forge:sand', '#forge:sand', 'bloodmagic:watersigil'], + output: 'minecraft:clay', + count: 2, + syphon: 150, + ticks: 100, + orbLevel: 2, + id: `${id_prefix}clay_from_sand_sigil` + }, + { + inputs: ['#forge:rods/blaze'], + output: 'minecraft:blaze_powder', + count: 4, + syphon: 50, + ticks: 20, + orbLevel: 1, + id: `${id_prefix}blaze_powder` + }, + { + inputs: ['#forge:rods/basalz'], + output: 'thermal:basalz_powder', + count: 4, + syphon: 50, + ticks: 20, + orbLevel: 1, + id: `${id_prefix}basalz_powder` + }, + { + inputs: ['#forge:rods/blizz'], + output: 'thermal:blizz_powder', + count: 4, + syphon: 50, + ticks: 20, + orbLevel: 1, + id: `${id_prefix}blizz_powder` + }, + { + inputs: ['#forge:rods/blitz'], + output: 'thermal:blitz_powder', + count: 4, + syphon: 50, + ticks: 20, + orbLevel: 1, + id: `${id_prefix}blitz_powder` + }, + { + inputs: ['minecraft:dirt', 'minecraft:bone_meal', '#forge:mushrooms'], + output: 'minecraft:mycelium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}mycelium` + }, + { + inputs: ['minecraft:dirt', 'minecraft:bone_meal', '#minecraft:leaves'], + output: 'minecraft:podzol', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}podzol` + }, + { + inputs: ['byg:quartzite_sand', 'byg:quartzite_sand', 'byg:quartzite_sand'], + output: 'minecraft:quartz', + count: 3, + syphon: 50, + ticks: 20, + orbLevel: 0, + id: `${id_prefix}quartz` + }, + { + inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:bulbis_sprouts'], + output: 'byg:bulbis_phycelium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}bulbis_phycelium` + }, + { + inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:imparius_vine'], + output: 'byg:imparius_phylium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}imparius_phylium` + }, + { + inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:shulkren_moss_blanket'], + output: 'byg:shulkren_phylium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}shulkren_phylium` + }, + { + inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:nightshade_sprouts'], + output: 'byg:nightshade_phylium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}nightshade_phylium` + }, + { + inputs: ['minecraft:end_stone', 'minecraft:bone_meal', 'byg:ivis_sprout'], + output: 'byg:ivis_phylium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}ivis_phylium` + }, + { + inputs: ['byg:ether_soil', 'minecraft:bone_meal', 'byg:ether_foliage'], + output: 'byg:ether_phylium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}ether_phylium` + }, + { + inputs: ['minecraft:dirt', 'minecraft:bone_meal', 'byg:ether_foliage'], + output: 'byg:ether_soil', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}ether_soil` + }, + { + inputs: ['byg:ether_stone', 'minecraft:bone_meal', 'byg:vermilion_sculk_growth'], + output: 'byg:vermilion_sculk', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}vermilion_sculk` + }, + { + inputs: ['minecraft:netherrack', 'minecraft:bone_meal', '#forge:mushrooms'], + output: 'byg:mycelium_netherrack', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}mycelium_netherrack` + }, + { + inputs: ['#forge:dusts/sulfur', 'industrialforegoing:dryrubber', 'industrialforegoing:dryrubber'], + output: 'thermal:cured_rubber', + count: 2, + syphon: 400, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}cured_rubber` + }, + { + inputs: ['minecraft:end_stone', 'minecraft:bone_meal', '#forge:mushrooms'], + output: 'betterendforge:end_mycelium', + count: 1, + syphon: 200, + ticks: 200, + orbLevel: 1, + id: `${id_prefix}end_mycelium` + }, + { + inputs: ['minecraft:nether_wart_block'], + output: 'minecraft:nether_wart', + count: 4, + syphon: 50, + ticks: 40, + orbLevel: 0, + id: 'bloodmagic:alchemytable/nether_wart_from_block' + } + ]; + + recipes.forEach((recipe) => { event.recipes.bloodmagic .alchemytable(Item.of(recipe.output, recipe.count), recipe.inputs) .syphon(recipe.syphon) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js index 2d71e2626f..c88db0bc37 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js @@ -76,7 +76,7 @@ onEvent('recipes', (event) => { /emendatusenigmatica:alloy_dust/ ]; - const outputRemovals = ['tiab:timeinabottle', 'minecraft:nautilus_shell']; + const outputRemovals = ['tiab:timeinabottle', 'minecraft:nautilus_shell', 'bloodmagic:intermediatecuttingfluid']; const patchouli_safe_removals = [ { output: 'apotheosis:hellshelf', id: 'apotheosis:hellshelf' }, diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js index 41615339a0..a1220651ff 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js @@ -534,6 +534,15 @@ onEvent('recipes', (event) => { orbLevel: 1, id: `${id_prefix}light_gray_rune` }, + { + inputs: ['bloodmagic:basiccuttingfluid', 'bloodmagic:tauoil', 'bloodmagic:lavasigil'], + output: 'bloodmagic:intermediatecuttingfluid', + count: 2, + syphon: 2100, + ticks: 200, + orbLevel: 3, + id: `${id_prefix}intermediatecuttingfluid` + }, /// Patchouli Removals { diff --git a/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/bloodmagic/alchemytable.js b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/bloodmagic/alchemytable.js new file mode 100644 index 0000000000..9699b20d7e --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/normal/recipetypes/bloodmagic/alchemytable.js @@ -0,0 +1,34 @@ +onEvent('recipes', (event) => { + if (global.isNormalMode == false) { + return; + } + const id_prefix = 'enigmatica:normal/bloodmagic/alchemytable/'; + + recipes = [ + { + inputs: [ + 'bloodmagic:tauoil', + '#forge:dusts/glowstone', + 'minecraft:gunpowder', + 'minecraft:sugar', + '#forge:dusts/sulfur', + Item.of('minecraft:potion', '{Potion:"minecraft:water"}') + ], + output: 'bloodmagic:intermediatecuttingfluid', + count: 1, + syphon: 2000, + ticks: 200, + orbLevel: 3, + id: 'bloodmagic:alchemytable/intermediate_cutting_fluid' + } + ]; + + recipes.forEach((recipe) => { + event.recipes.bloodmagic + .alchemytable(Item.of(recipe.output, recipe.count), recipe.inputs) + .syphon(recipe.syphon) + .ticks(recipe.ticks) + .upgradeLevel(recipe.orbLevel) + .id(recipe.id); + }); +}); From 4aa50d5ca54d75767d15f5d80b871386c43eafbd Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Wed, 29 Sep 2021 13:30:59 -0400 Subject: [PATCH 041/124] Make Morph o Tool work with Compact Machine Shrink Device Make Morph o Tool work with Compact Machine Shrink Device Came up in #suggestions and seemed reasonable. --- config/morphtool-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/morphtool-common.toml b/config/morphtool-common.toml index 12c2f4c32e..10d445c95e 100644 --- a/config/morphtool-common.toml +++ b/config/morphtool-common.toml @@ -1,6 +1,6 @@ "Allow all items to be added" = false "Morph in the offhand instead of mainhand" = false -"Whitelisted Items" = ["botania:twig_wand", "immersiveengineering:tool", "bloodmagic:ritual_reader", "bloodmagic:ritualtinkerer", "astralsorcery:wand", "transport:rail_breaker", "storagedrawers:drawer_key", "resourcefulbees_scraper", "ars_nouveau:dominion_wand"] +"Whitelisted Items" = ["compactmachines:personal_shrinking_device", "botania:twig_wand", "immersiveengineering:tool", "bloodmagic:ritual_reader", "bloodmagic:ritualtinkerer", "astralsorcery:wand", "transport:rail_breaker", "storagedrawers:drawer_key", "resourcefulbees_scraper", "ars_nouveau:dominion_wand"] "Whitelisted Names" = ["wrench", "screwdriver", "hammer", "rotator", "configurator", "crowbar"] "Blacklisted Mods" = [] "Mod Aliases" = ["mythicbotany=botania", "rsrequestify=refinedstorage", "framedcompactdrawers=storagedrawers", "extrastorage=refinedstorage", "thermalexpansion=thermalfoundation", "thermaldynamics=thermalfoundation", "thermalcultivation=thermalfoundation", "integrateddynamics=integratedtunnels", "mekanismgenerators=mekanism", "mekanismtools=mekanism", "xnet=rftoolsbase", "rftoolspower=rftoolsbase", "rftoolsutility=rftoolsbase", "rftoolsstorage=rftoolsbase", "rftoolscontrol=rftoolsbase", "rftoolsbuilder=rftoolsbase", "rftoolsdimensions=rftoolsbase"] From f88098a12eaccc847e5f3b6f74131e4524d4d422 Mon Sep 17 00:00:00 2001 From: theboo Date: Wed, 29 Sep 2021 17:43:51 -0700 Subject: [PATCH 042/124] Disables computercraft village structures --- config/advancedperipherals-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/advancedperipherals-common.toml b/config/advancedperipherals-common.toml index de7e73339d..ca8d6fc951 100644 --- a/config/advancedperipherals-common.toml +++ b/config/advancedperipherals-common.toml @@ -131,7 +131,7 @@ [world] #Enable the villager structures for the computer scientist. - enableVillagerStructures = true + enableVillagerStructures = false #Gives the ap documentation to new players on a world. givePlayerBookOnJoin = false From 68de9bac45e0b4a0c9d2ba3fe28e9cdb4054720b Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Wed, 29 Sep 2021 22:11:50 -0400 Subject: [PATCH 043/124] [Expert] Astral Shuffle --- .../quests/chapters/expert__tier_2_wip.snbt | 35 ++++++++++++------- .../expert/recipetypes/astralsorcery/altar.js | 2 +- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt index 3189341306..160617d0e9 100644 --- a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt +++ b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt @@ -129,8 +129,8 @@ ] } { - x: -12.0d - y: 8.0d + x: -10.5d + y: 1.5d hide_dependency_lines: true dependencies: ["0CA3D2BAD8F2B868"] id: "102775CD7F9CD338" @@ -715,8 +715,8 @@ ] } { - x: -2.0d - y: 11.5d + x: -2.5d + y: 12.0d dependencies: ["269C18852281A11E"] id: "7E3B061EC45D3617" tasks: [{ @@ -985,8 +985,8 @@ }] } { - x: -10.5d - y: 7.0d + x: -9.5d + y: 8.0d dependencies: ["5BE151C00A0DAFF3"] id: "68292593CF029DEE" tasks: [{ @@ -1029,8 +1029,8 @@ }] } { - x: -1.0d - y: 12.5d + x: -1.5d + y: 13.0d dependencies: ["7E3B061EC45D3617"] id: "0B38C9F879EAAB18" tasks: [{ @@ -1040,8 +1040,8 @@ }] } { - x: -1.0d - y: 13.5d + x: -0.5d + y: 14.0d dependencies: ["0B38C9F879EAAB18"] id: "6784887421DAB91C" tasks: [{ @@ -1051,8 +1051,8 @@ }] } { - x: -1.0d - y: 14.5d + x: 0.5d + y: 15.0d dependencies: ["6784887421DAB91C"] id: "1766CBDDEFE97113" tasks: [{ @@ -1116,5 +1116,16 @@ hide: true id: "48BA066E1B977D32" } + { + x: -9.5d + y: 7.0d + dependencies: ["5BE151C00A0DAFF3"] + id: "346CA3855A33FE7F" + tasks: [{ + id: "5E151DEE9A6849C8" + type: "item" + item: "astralsorcery:well" + }] + } ] } diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js index d59297b6cb..236a15541c 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js @@ -85,7 +85,7 @@ onEvent('recipes', (event) => { type: 'astralsorcery:fluid', fluid: [{ fluid: 'astralsorcery:liquid_starlight', amount: 1000 }] }, - E: { tag: 'botania:runes/envy' } + E: { tag: 'botania:runes/summer' } }, altar_type: 0, duration: 100, From 60837801568e52706349414bfc4a1dc4fd6eb081 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 30 Sep 2021 01:10:12 -0400 Subject: [PATCH 044/124] updates --- .../quests/chapters/expert__tier_2_wip.snbt | 155 ++- kubejs/assets/kubejs/lang/en_us.json | 8 + kubejs/client_scripts/constants.js | 5 + .../tags/entity/enigmatica/gaia_guardian.js | 4 + .../kubejs/expert/recipes/remove.js | 1 + .../ars_nouveau/enchanting_apparatus.js | 16 - .../expert/recipetypes/astralsorcery/altar.js | 80 +- .../recipetypes/naturesaura/tree_ritual.js | 944 +++++++++--------- .../expert/recipetypes/occultism/ritual.js | 31 + kubejs/startup_scripts/item_registry.js | 3 +- 10 files changed, 643 insertions(+), 604 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/gaia_guardian.js diff --git a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt index 160617d0e9..655891fa59 100644 --- a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt +++ b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt @@ -129,10 +129,8 @@ ] } { - x: -10.5d - y: 1.5d - hide_dependency_lines: true - dependencies: ["0CA3D2BAD8F2B868"] + x: -10.0d + y: 1.0d id: "102775CD7F9CD338" tasks: [{ id: "0F780C3F50CF951D" @@ -220,7 +218,6 @@ dependencies: [ "2ECA82ED72DA6D61" "5BC50DE75421CAAA" - "2422557696EB83F3" ] id: "46221D2561D076D1" tasks: [{ @@ -237,7 +234,7 @@ } { x: -6.5d - y: 3.0d + y: 2.5d dependencies: ["598A3BD34A7DD40B"] id: "2422557696EB83F3" tasks: [{ @@ -379,8 +376,8 @@ ] } { - x: -4.0d - y: 16.0d + x: -2.0d + y: 15.5d dependencies: ["56015C7ABFB5BF44"] id: "7F8A19BA987B1F85" tasks: [{ @@ -413,12 +410,9 @@ }] } { - x: -7.5d + x: -9.0d y: 4.0d - dependencies: [ - "2422557696EB83F3" - "1980E9BF6A705EC6" - ] + dependencies: ["1980E9BF6A705EC6"] id: "181E9A83AED8515E" tasks: [ { @@ -434,8 +428,8 @@ ] } { - x: -4.0d - y: 14.5d + x: -3.0d + y: 14.0d dependencies: ["4C38CF2CADE34234"] id: "56015C7ABFB5BF44" tasks: [{ @@ -462,8 +456,8 @@ }] } { - x: -8.5d - y: 3.0d + x: -9.0d + y: 2.5d dependencies: ["1B149A20BDD0E282"] id: "1980E9BF6A705EC6" tasks: [{ @@ -473,9 +467,12 @@ }] } { - x: -7.5d - y: 2.0d - dependencies: ["598A3BD34A7DD40B"] + x: -8.0d + y: 1.5d + dependencies: [ + "598A3BD34A7DD40B" + "102775CD7F9CD338" + ] id: "1B149A20BDD0E282" tasks: [{ id: "2A2244AC80666A1E" @@ -485,7 +482,7 @@ } { title: "Basic Runes" - x: -8.5d + x: -8.0d y: 5.0d dependencies: ["181E9A83AED8515E"] id: "00C3DF16F878672A" @@ -605,7 +602,7 @@ } { x: -6.5d - y: 5.0d + y: 4.0d dependencies: ["2422557696EB83F3"] id: "0BE325624337E5B5" tasks: [{ @@ -615,7 +612,7 @@ }] } { - x: -7.5d + x: -6.5d y: 6.0d dependencies: [ "0BE325624337E5B5" @@ -636,13 +633,9 @@ ] } { - x: -8.5d - y: 12.5d - dependencies: [ - "2B4F57731186E24E" - "5D33A061D195DD08" - "1D7FA9A7F1F20502" - ] + x: -9.5d + y: 14.0d + dependencies: ["1D7FA9A7F1F20502"] id: "3619843EA1DC18EE" tasks: [{ id: "653DEB2B5A600A05" @@ -651,12 +644,9 @@ }] } { - x: -6.5d - y: 9.0d - dependencies: [ - "13E2F8AEFECF661A" - "5BE151C00A0DAFF3" - ] + x: -7.0d + y: 9.5d + dependencies: ["0C8A82F038C0C647"] id: "3EDBC6F0B3A54589" tasks: [{ id: "49C4E9BAF5D6DE4E" @@ -665,8 +655,8 @@ }] } { - x: -6.5d - y: 15.0d + x: -7.0d + y: 13.5d dependencies: ["2B4F57731186E24E"] id: "36C882808C98F78B" tasks: [ @@ -683,7 +673,7 @@ ] } { - x: -5.5d + x: -1.0d y: 17.0d dependencies: ["7F8A19BA987B1F85"] id: "5B8648C9395C13AA" @@ -737,8 +727,8 @@ }] } { - x: -6.5d - y: 10.5d + x: -7.0d + y: 11.0d dependencies: ["3EDBC6F0B3A54589"] id: "1C94CAC4F670B313" tasks: [{ @@ -748,8 +738,8 @@ }] } { - x: -8.5d - y: 15.0d + x: -9.0d + y: 15.5d dependencies: ["3619843EA1DC18EE"] id: "233FA393E8A84033" tasks: [{ @@ -770,8 +760,8 @@ }] } { - x: -6.5d - y: 11.5d + x: -7.5d + y: 12.0d dependencies: ["1C94CAC4F670B313"] id: "2B4F57731186E24E" tasks: [{ @@ -782,8 +772,8 @@ } { title: "Seasonal Runes" - x: -8.5d - y: 7.0d + x: -9.5d + y: 6.0d description: [""] dependencies: ["00C3DF16F878672A"] id: "5BE151C00A0DAFF3" @@ -818,8 +808,8 @@ }] } { - x: -6.5d - y: 7.0d + x: -7.0d + y: 7.5d dependencies: ["573020A85882D835"] id: "13E2F8AEFECF661A" tasks: [{ @@ -830,8 +820,8 @@ } { title: "Sinful Runes" - x: -8.5d - y: 9.0d + x: -10.0d + y: 8.5d dependencies: ["5BE151C00A0DAFF3"] id: "2337948E863C0F3B" tasks: [{ @@ -878,7 +868,7 @@ } { title: "Runes of the Realms" - x: -8.5d + x: -10.0d y: 10.5d description: [""] dependencies: ["2337948E863C0F3B"] @@ -934,12 +924,11 @@ }] } { - x: -10.5d - y: 9.0d + x: -8.0d + y: 8.5d dependencies: [ - "102775CD7F9CD338" "68292593CF029DEE" - "2337948E863C0F3B" + "13E2F8AEFECF661A" ] id: "0C8A82F038C0C647" tasks: [{ @@ -949,11 +938,11 @@ }] } { - x: -10.5d - y: 11.5d + x: -9.0d + y: 12.5d dependencies: [ - "0C8A82F038C0C647" "5D33A061D195DD08" + "2B4F57731186E24E" ] id: "1D7FA9A7F1F20502" tasks: [{ @@ -963,9 +952,9 @@ }] } { - x: -10.5d - y: 15.0d - dependencies: ["1D7FA9A7F1F20502"] + x: -7.5d + y: 16.5d + dependencies: ["233FA393E8A84033"] id: "648EF41AAF02D3D7" tasks: [{ id: "3BF79D408EB1D87E" @@ -974,9 +963,8 @@ }] } { - x: -12.0d - y: 10.0d - dependencies: ["0C8A82F038C0C647"] + x: -4.5d + y: 15.5d id: "6A471B48BCD9CD11" tasks: [{ id: "49D7E4729811C70E" @@ -985,19 +973,26 @@ }] } { - x: -9.5d - y: 8.0d + x: -9.0d + y: 7.5d dependencies: ["5BE151C00A0DAFF3"] id: "68292593CF029DEE" - tasks: [{ - id: "253D5F6276F25CA8" - type: "item" - item: "astralsorcery:hand_telescope" - }] + tasks: [ + { + id: "253D5F6276F25CA8" + type: "item" + item: "astralsorcery:hand_telescope" + } + { + id: "6803264751793544" + type: "item" + item: "astralsorcery:well" + } + ] } { - x: -12.0d - y: 16.0d + x: -5.5d + y: 17.5d dependencies: ["648EF41AAF02D3D7"] id: "6D9116DBF9989AA9" tasks: [{ @@ -1117,14 +1112,14 @@ id: "48BA066E1B977D32" } { - x: -9.5d - y: 7.0d - dependencies: ["5BE151C00A0DAFF3"] - id: "346CA3855A33FE7F" + x: -5.5d + y: 13.0d + dependencies: ["2B4F57731186E24E"] + id: "204A968B1687B26E" tasks: [{ - id: "5E151DEE9A6849C8" + id: "622FD07386E5B2A0" type: "item" - item: "astralsorcery:well" + item: "botania:gaia_pylon" }] } ] diff --git a/kubejs/assets/kubejs/lang/en_us.json b/kubejs/assets/kubejs/lang/en_us.json index add32511df..b9d7951e0e 100644 --- a/kubejs/assets/kubejs/lang/en_us.json +++ b/kubejs/assets/kubejs/lang/en_us.json @@ -36,6 +36,7 @@ "ritual.occultism.sacrifice.dragons": "Ender Dragon", "ritual.occultism.sacrifice.rattlesnakes": "Rattlesnake", "ritual.occultism.sacrifice.dropbears": "Dropbear", + "ritual.occultism.sacrifice.gaia_guardian": "Guardian of Gaia", "item.kubejs.craft_magical_feathers": "Ritual: Craft Magical Feathers.", "item.kubejs.craft_magical_feathers.tooltip": "Binds the Spirit of the Ender Dragon to grant Creative Flight.", @@ -100,6 +101,13 @@ "ritual.enigmatica.occultism/ritual/soulscythe.interrupted": "Binding of djinni interrupted.", "ritual.enigmatica.occultism/ritual/soulscythe.conditions": "Not all requirements for this ritual are met.", + "item.kubejs.craft_attunement_altar": "Ritual: Craft Attunement Altar.", + "item.kubejs.craft_attunement_altar.tooltip": "Bind the Guardian of Gaia to obtain great power", + "ritual.enigmatica.occultism/ritual/attunement_altar.started": "Started binding of Gaia's Guardian.", + "ritual.enigmatica.occultism/ritual/attunement_altar.finished": "Successfully bound Gaia's Guardian.", + "ritual.enigmatica.occultism/ritual/attunement_altar.interrupted": "Binding of Gaia's Guardian interrupted.", + "ritual.enigmatica.occultism/ritual/attunement_altar.conditions": "Not all requirements for this ritual are met.", + "item.kubejs.suffused_aluminum": "Mana Suffused Aluminum Chunk", "item.kubejs.suffused_cloggrum": "Mana Suffused Cloggrum Chunk", "item.kubejs.suffused_cobalt": "Mana Suffused Cobalt Chunk", diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index e4b0e6cd77..53c040e03f 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -443,6 +443,7 @@ const recipesToHide = [ 'botania:pixie_ring', 'botania:reach_ring', 'botania:flighttiara_0', + 'botania:runic_altar', 'mythicbotany:wither_aconite_floating', 'mythicbotany:raindeletia_floating', @@ -478,6 +479,10 @@ const recipesToHide = [ category: 'ars_nouveau:apparatus', recipes_by_id: ['ars_nouveau:jar_of_light', 'ars_nouveau:void_jar'] }, + { + category: 'astralsorcery:altar_attunement', + recipes_by_id: ['astralsorcery:altar/attunement_altar'] + }, { category: 'botania:petals', recipes_by_id: ['mythicbotany:petal_apothecary/wither_aconite', 'mythicbotany:petal_apothecary/raindeletia'] diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/gaia_guardian.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/gaia_guardian.js new file mode 100644 index 0000000000..b6d6817d75 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/gaia_guardian.js @@ -0,0 +1,4 @@ +onEvent('entity_type.tags', (event) => { + let entities = ['botania:doppleganger']; + event.get('enigmatica:gaia_guardian').add(entities); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js index 010b1007da..50cb73ed38 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js @@ -135,6 +135,7 @@ onEvent('recipes', (event) => { { output: 'botania:pixie_ring', id: 'botania:pixie_ring' }, { output: 'botania:reach_ring', id: 'botania:reach_ring' }, { output: 'botania:flight_tiara', id: 'botania:flighttiara_0' }, + { output: 'botania:runic_altar', id: 'botania:runic_altar' }, { output: 'botania:gaia_pylon', id: 'mythicbotany:modified_gaia_pylon_with_alfsteel' }, { output: 'mythicbotany:alfsteel_pylon', id: 'mythicbotany:alfsteel_pylon' }, diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js index 5249514803..2d7564af97 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/ars_nouveau/enchanting_apparatus.js @@ -257,22 +257,6 @@ onEvent('recipes', (event) => { count: 1, id: 'ars_nouveau:wand' }, - { - inputs: [ - '#resourcefulbees:resourceful_honeycomb_block', - 'ars_nouveau:summoning_crystal', - '#resourcefulbees:resourceful_honeycomb_block', - 'naturesaura:token_joy', - 'naturesaura:token_anger', - '#resourcefulbees:resourceful_honeycomb_block', - 'ars_nouveau:summoning_crystal', - '#resourcefulbees:resourceful_honeycomb_block' - ], - reagent: 'minecraft:spawner', - output: 'naturesaura:animal_spawner', - count: 1, - id: `${id_prefix}animal_spawner` - }, { inputs: [ 'ars_nouveau:glyph_amplify', diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js index 236a15541c..26dcfbb57c 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js @@ -85,7 +85,7 @@ onEvent('recipes', (event) => { type: 'astralsorcery:fluid', fluid: [{ fluid: 'astralsorcery:liquid_starlight', amount: 1000 }] }, - E: { tag: 'botania:runes/summer' } + E: { tag: 'botania:runes/mana' } }, altar_type: 0, duration: 100, @@ -94,6 +94,37 @@ onEvent('recipes', (event) => { effects: ['astralsorcery:built_in_effect_discovery_central_beam', 'astralsorcery:upgrade_altar'], id: 'astralsorcery:altar/altar_attunement' }, + { + output: Item.of('naturesaura:animal_spawner', 1), + pattern: ['_____', '_ABA_', '_CDE_', '_ABA_', '_____'], + key: { + A: { tag: 'resourcefulbees:resourceful_honeycomb_block' }, + B: { item: 'ars_nouveau:summoning_crystal' }, + C: { item: 'naturesaura:token_joy' }, + D: { item: 'minecraft:spawner' }, + E: { item: 'naturesaura:token_anger' } + }, + altar_type: 0, + duration: 100, + starlight: 700, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: `${id_prefix}animal_spawner` + }, + { + output: Item.of('botania:runic_altar', 1), + pattern: ['_____', '_AAA_', '_ABA_', '_CDC_', '_____'], + key: { + A: { item: 'botania:livingrock' }, + B: { item: 'minecraft:conduit' }, + C: { tag: 'forge:ingots/infused_iron' }, + D: { item: 'naturesaura:aura_cache' } + }, + altar_type: 0, + duration: 100, + starlight: 700, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: `${id_prefix}runic_altar` + }, { output: Item.of('astralsorcery:altar_constellation', 1), pattern: ['B___B', '_CDC_', '_EAE_', '_FGF_', 'B___B'], @@ -109,7 +140,7 @@ onEvent('recipes', (event) => { C: { tag: 'forge:dusts/starmetal' }, D: { tag: 'botania:runes/vanaheim' }, E: { item: 'create:refined_radiance' }, - F: { item: 'astralsorcery:infused_wood_arch' }, + F: { item: 'botania:spectral_platform' }, G: { tag: 'forge:storage_blocks/starmetal' } }, altar_type: 1, @@ -160,30 +191,6 @@ onEvent('recipes', (event) => { ], id: 'astralsorcery:altar/altar_radiance' }, - { - output: Item.of('astralsorcery:attunement_altar', 1), - pattern: ['A___A', '_BCB_', '_DED_', '_FGF_', 'A___A'], - key: { - A: { item: 'astralsorcery:marble_runed' }, - B: { item: 'astralsorcery:resonating_gem' }, - C: { item: 'bloodmagic:weakbloodshard' }, - D: { tag: 'forge:ingots/starmetal' }, - E: { item: 'astralsorcery:spectral_relay' }, - F: { item: 'eidolon:gold_inlay' }, - G: { item: 'create:shadow_steel' } - }, - altar_type: 1, - duration: 200, - starlight: 1600, - effects: [ - 'astralsorcery:pillar_sparkle', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_lightbeams', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/attunement_altar' - }, { output: Item.of('kubejs:observatory_lens', 1), pattern: ['_DCD_', 'DEBED', 'CBABC', 'DEBED', '_DCD_'], @@ -541,6 +548,27 @@ onEvent('recipes', (event) => { 'astralsorcery:built_in_effect_attunement_sparkle' ], id: `${id_prefix}flight_tiara` + }, + + /// Guidebook safe removals + + { + output: Item.of('astralsorcery:attunement_altar', 1), + pattern: ['_____', '_____', '__A__', '_____', '_____'], + key: { + A: { item: 'kubejs:altered_recipe_indicator' } + }, + altar_type: 1, + duration: 200, + starlight: 1600, + effects: [ + 'astralsorcery:pillar_sparkle', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_lightbeams', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/attunement_altar' } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/tree_ritual.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/tree_ritual.js index a3c984b646..bdacd7aaeb 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/tree_ritual.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/naturesaura/tree_ritual.js @@ -2,476 +2,461 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } + const id_prefix = 'enigmatica:expert/naturesaura/tree_ritual/'; + const recipes = [ + { + inputs: [ + { item: 'ars_nouveau:warding_stone' }, + { item: 'ars_nouveau:warding_stone' }, + { item: 'naturesaura:token_joy' }, + { item: 'naturesaura:gold_leaf' }, + { item: 'thermal:ice_charge' }, + { item: 'thermal:lightning_charge' }, + { item: 'thermal:earth_charge' }, + { item: 'minecraft:fire_charge' } + ], + output: { item: 'naturesaura:nature_altar' }, + time: 500, + sapling: 'quark:yellow_blossom_sapling', + id: 'naturesaura:tree_ritual/nature_altar' + }, + { + inputs: [ + { + type: 'forge:nbt', + item: 'naturesaura:aura_bottle', + count: 1, + nbt: '{stored_type:"naturesaura:overworld"}' + }, + { item: 'botania:pink_shiny_flower' }, + { item: 'naturesaura:gold_leaf' }, + { item: 'minecraft:golden_apple' }, + { item: 'architects_palette:sunmetal_blend' }, + { item: 'botania:pink_shiny_flower' }, + { item: 'architects_palette:sunmetal_blend' }, + { item: 'botania:pink_shiny_flower' } + ], + output: { item: 'naturesaura:token_joy', count: 2 }, + time: 200, + sapling: 'quark:yellow_blossom_sapling', + id: 'naturesaura:tree_ritual/token_joy' + }, + { + inputs: [ + { + type: 'forge:nbt', + item: 'naturesaura:aura_bottle', + count: 1, + nbt: '{stored_type:"naturesaura:end"}' + }, + { item: 'upgrade_aquatic:thrasher_tooth' }, + { item: 'naturesaura:gold_leaf' }, + { item: 'eidolon:ender_calx' }, + { item: 'astralsorcery:nocturnal_powder' }, + { item: 'upgrade_aquatic:thrasher_tooth' }, + { item: 'astralsorcery:nocturnal_powder' }, + { item: 'upgrade_aquatic:thrasher_tooth' } + ], + output: { item: 'naturesaura:token_fear', count: 2 }, + time: 200, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:tree_ritual/token_fear' + }, + { + inputs: [ + { item: 'quark:bottled_cloud' }, + { item: 'powah:charged_snowball' }, + { item: 'naturesaura:gold_leaf' }, + { item: 'minecraft:diamond_axe' }, + { item: 'alexsmobs:komodo_spit' }, + { item: 'powah:charged_snowball' }, + { item: 'alexsmobs:komodo_spit' }, + { item: 'powah:charged_snowball' } + ], + output: { item: 'naturesaura:token_anger', count: 2 }, + time: 200, + sapling: 'quark:red_blossom_sapling', + id: 'naturesaura:tree_ritual/token_anger' + }, + { + inputs: [ + { + type: 'forge:nbt', + item: 'naturesaura:aura_bottle', + count: 1, + nbt: '{stored_type:"naturesaura:nether"}' + }, + { item: 'botania:black_shiny_flower' }, + { item: 'naturesaura:gold_leaf' }, + { item: 'quark:soul_bead' }, + { item: 'minecraft:ghast_tear' }, + { item: 'botania:black_shiny_flower' }, + { item: 'minecraft:ghast_tear' }, + { item: 'botania:black_shiny_flower' } + ], + output: { item: 'naturesaura:token_sorrow', count: 2 }, + time: 200, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:tree_ritual/token_sorrow' + }, + { + inputs: [ + { item: 'naturesaura:infused_iron' }, //top + { item: 'architects_palette:sunstone' }, //bottom + { item: 'ars_nouveau:glyph_grow' }, //left + { item: 'naturesaura:token_joy' }, //right + { item: 'thermal:phytogro' }, //topleft + { item: 'botania:livingwood' }, //bottomright + { item: 'thermal:phytogro' }, //topright + { item: 'botania:livingwood' } //bottomleft + ], + output: { item: 'naturesaura:oak_generator' }, + time: 600, + sapling: 'quark:yellow_blossom_sapling', + id: 'naturesaura:oak_generator' + }, + { + inputs: [ + { item: 'naturesaura:tainted_gold' }, //top + { item: 'architects_palette:moonstone' }, //bottom + { item: 'eidolon:reaper_scythe' }, //left + { item: 'naturesaura:token_sorrow' }, //right + { tag: 'forge:ingots/nether_brick' }, //topleft + { item: 'minecraft:soul_sand' }, //bottomright + { tag: 'forge:ingots/nether_brick' }, //topright + { item: 'minecraft:soul_sand' } //bottomleft + ], + output: { item: 'naturesaura:animal_generator' }, + time: 600, + sapling: 'quark:blue_blossom_sapling', + id: 'naturesaura:animal_generator' + }, + { + inputs: [ + { item: 'naturesaura:sky_ingot' }, //top + { item: 'kubejs:firmament' }, //bottom + { item: 'ars_nouveau:glyph_launch' }, //left + { item: 'minecraft:fire_charge' }, //right + { item: 'minecraft:firework_rocket' }, //topleft + { item: 'naturesaura:token_joy' }, //bottomright + { item: 'minecraft:firework_rocket' }, //topright + { item: 'naturesaura:token_rage' } //bottomleft + ], + output: { item: 'naturesaura:firework_generator' }, + time: 600, + sapling: 'quark:blue_blossom_sapling', + id: 'naturesaura:firework_generator' + }, + { + inputs: [ + { item: 'naturesaura:infused_iron' }, //top + { item: 'architects_palette:sunstone' }, //bottom + { item: 'ars_nouveau:glyph_harvest' }, //left + { item: 'naturesaura:token_joy' }, //right + { item: 'botania:livingwood' }, //topleft + { item: 'botania:livingwood' }, //bottomright + { item: 'botania:livingwood' }, //topright + { item: 'botania:livingwood' } //bottomleft + ], + output: { item: 'naturesaura:flower_generator' }, + time: 600, + sapling: 'quark:yellow_blossom_sapling', + id: 'naturesaura:flower_generator' + }, + { + inputs: [ + { item: 'naturesaura:tainted_gold' }, //top + { item: 'architects_palette:moonstone' }, //bottom + { item: 'ars_nouveau:glyph_split' }, //left + { item: 'supplementaries:bamboo_spikes' }, //right + { tag: 'forge:ingots/nether_brick' }, //topleft + { item: 'naturesaura:token_sorrow' }, //bottomright + { tag: 'forge:ingots/nether_brick' }, //topright + { item: 'naturesaura:token_joy' } //bottomleft + ], + output: { item: 'naturesaura:slime_split_generator' }, + time: 600, + sapling: 'quark:lavender_blossom_sapling', + id: 'naturesaura:slime_split_generator' + }, + { + inputs: [ + { item: 'eidolon:ender_calx' }, //top + { item: 'quark:ender_watcher' }, //bottom + { item: 'ars_nouveau:glyph_blink' }, //left + { item: 'minecraft:chorus_flower' }, //right + { item: 'integratedterminals:chorus_glass' }, //topleft + { item: 'naturesaura:token_joy' }, //bottomright + { item: 'integratedterminals:chorus_glass' }, //topright + { item: 'naturesaura:token_rage' } //bottomleft + ], + output: { item: 'naturesaura:chorus_generator' }, + time: 600, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:chorus_generator' + }, + { + inputs: [ + { item: 'naturesaura:tainted_gold' }, //top + { item: 'architects_palette:moonstone' }, //bottom + { item: 'ars_nouveau:glyph_aoe' }, //left + { item: 'naturesaura:token_fear' }, //right + { item: 'eidolon:fungus_sprouts' }, //topleft + { tag: 'forge:ingots/nether_brick' }, //bottomright + { item: 'eidolon:fungus_sprouts' }, //topright + { tag: 'forge:ingots/nether_brick' } //bottomleft + ], + output: { item: 'naturesaura:potion_generator' }, + time: 600, + sapling: 'quark:lavender_blossom_sapling', + id: 'naturesaura:potion_generator' + }, + { + inputs: [ + { item: 'naturesaura:infused_iron' }, //top + { item: 'ars_nouveau:glyph_wither' }, //bottom + { item: 'naturesaura:token_terror' }, //left + { item: 'naturesaura:token_grief' }, //right + { item: 'architects_palette:moonstone' }, //topleft + { item: 'architects_palette:sunstone' }, //bottomright + { item: 'botania:mossy_livingwood_planks' }, //topright + { item: 'botania:mossy_livingwood_planks' } //bottomleft + ], + output: { item: 'naturesaura:moss_generator' }, + time: 600, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:moss_generator' + }, + { + inputs: [ + { item: 'naturesaura:infused_iron' }, //top + { item: 'architects_palette:sunstone' }, //bottom + { item: 'ars_nouveau:glyph_amplify' }, //left + { item: 'ars_nouveau:glyph_projectile' }, //right + { item: 'rsgauges:arrow_target' }, //topleft + { item: 'naturesaura:token_anger' }, //bottomright + { item: 'rsgauges:arrow_target' }, //topright + { item: 'naturesaura:token_anger' } //bottomleft + ], + output: { item: 'naturesaura:projectile_generator' }, + time: 600, + sapling: 'quark:yellow_blossom_sapling', + id: 'naturesaura:projectile_generator' + }, + { + inputs: [ + { item: 'naturesaura:infused_iron' }, //top + { item: 'architects_palette:moonstone' }, //bottom + { item: 'ars_nouveau:glyph_grow' }, //left + { item: 'naturesaura:token_joy' }, //right + { item: 'astralsorcery:rock_crystal' }, //topleft + { tag: 'forge:ingots/starmetal' }, //bottomright + { item: 'astralsorcery:rock_crystal' }, //topright + { tag: 'forge:ingots/starmetal' } //bottomleft + ], + output: { item: 'naturesstarlight:crystal_generator' }, + time: 600, + sapling: 'quark:lavender_blossom_sapling', + id: 'naturesstarlight:crystal_generator' + }, + { + inputs: [ + { item: 'naturesaura:token_joy' }, //top + { item: 'resourcefulbees:t2_apiary' }, //bottom + { tag: 'botania:runes/summer' }, //left + { tag: 'botania:runes/spring' }, //right + { tag: 'resourcefulbees:resourceful_honeycomb_block' }, //topleft + { tag: 'resourcefulbees:resourceful_honeycomb_block' }, //bottomright + { item: 'resourcefulbees:honey_fluid_bucket' }, //topright + { item: 'resourcefulbees:honey_fluid_bucket' } //bottomleft + ], + output: { item: 'resourcefulbees:t3_apiary' }, + time: 300, + sapling: 'quark:yellow_blossom_sapling', + id: 'resourcefulbees:t3_apiary' + }, + { + inputs: [ + { item: 'meetyourfight:spectres_eye' }, //top + { tag: 'forge:ingots/silver' }, //bottom + { item: 'naturesaura:gold_leaf' }, //left + { item: 'naturesaura:gold_leaf' }, //right + { item: 'farmersdelight:tree_bark' }, //topleft + { item: 'farmersdelight:tree_bark' }, //bottomright + { item: 'farmersdelight:tree_bark' }, //topright + { item: 'farmersdelight:tree_bark' } //bottomleft + ], + output: { item: 'naturesaura:eye' }, + time: 250, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:tree_ritual/eye' + }, + { + inputs: [ + { item: 'naturesaura:eye' }, //top + { tag: 'forge:ingots/sky' }, //bottom + { tag: 'forge:ingots/sky' }, //left + { item: 'naturesaura:end_flower' }, //right + { item: 'naturesaura:gold_leaf' }, //topleft + { item: 'naturesaura:gold_leaf' }, //bottomright + { item: 'botania:lens_normal' }, //topright + { item: 'upgrade_aquatic:elder_eye' } //bottomleft + ], + output: { item: 'naturesaura:eye_improved' }, + time: 500, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:tree_ritual/eye_improved' + }, + { + inputs: [ + { item: 'naturesaura:gold_brick' }, //top + { item: 'naturesaura:infused_stone' }, //bottom + { item: 'botania:brewery' }, //left + { tag: 'forge:ingots/sky' }, //right + { item: 'naturesaura:gold_leaf' }, //topleft + { item: 'eidolon:gold_inlay' } //bottomright + ], + output: { item: 'naturesaura:conversion_catalyst' }, + time: 600, + sapling: 'architects_palette:twisted_sapling', + id: 'naturesaura:tree_ritual/conversion_catalyst' + }, + { + inputs: [ + { item: 'naturesaura:gold_brick' }, //top + { item: 'naturesaura:infused_stone' }, //bottom + { tag: 'forge:ingots/andesite_alloy' }, //left + { tag: 'forge:ingots/andesite_alloy' }, //right + { item: 'naturesaura:token_anger' } //topleft + ], + output: { item: 'naturesaura:crushing_catalyst' }, + time: 600, + sapling: 'undergarden:wigglewood_sapling', + id: 'naturesaura:tree_ritual/crushing_catalyst' + }, + { + inputs: [ + { item: 'naturesaura:infused_stone' }, + { item: 'naturesaura:infused_stone' }, + { tag: 'forge:ingots/tainted_gold' }, + { tag: 'forge:ingots/infused_iron' }, + { item: 'minecraft:fire_charge' }, + { item: 'minecraft:flint_and_steel' }, + { item: 'tconstruct:magma_cake' }, + { item: 'naturesaura:token_anger' } + ], + sapling: 'quark:red_blossom_sapling', + output: { item: 'naturesaura:furnace_heater' }, + time: 600, + id: 'naturesaura:tree_ritual/furnace_heater' + }, + { + inputs: [ + { tag: 'forge:gems/mana_diamond' }, + { tag: 'forge:ingots/tainted_gold' }, + { tag: 'forge:ingots/sky' }, + { item: 'naturesaura:token_fear' } + ], + sapling: 'quark:yellow_blossom_sapling', + output: { item: 'naturesaura:break_prevention' }, + time: 200, + id: 'naturesaura:tree_ritual/break_prevention' + }, + { + inputs: [ + { item: 'atum:palm_sapling' }, + { item: 'atum:date' }, + { item: 'undergarden:veil_mushroom' }, + { item: 'atum:emmer_seeds' }, + { item: 'undergarden:glowing_kelp' }, + { item: 'naturesaura:gold_leaf' } + ], + sapling: 'quark:lavender_blossom_sapling', + output: { item: 'naturesaura:ancient_sapling', count: 2 }, + time: 200, + id: 'naturesaura:tree_ritual/ancient_sapling' + }, + { + inputs: [ + { item: 'naturesaura:gold_powder' }, + { item: 'naturesaura:gold_powder' }, + { tag: 'forge:ores/emerald' }, + { tag: 'forge:ores/cobalt' }, + { tag: 'botania:runes/spring' } + ], + sapling: 'quark:yellow_blossom_sapling', + output: { nbt: { effect: 'naturesaura:ore_spawn' }, item: 'naturesaura:effect_powder', count: 4 }, + time: 400, + id: 'naturesaura:tree_ritual/ore_spawn_powder' + }, - const data = { - recipes: [ - { - inputs: [ - { item: 'ars_nouveau:warding_stone' }, - { item: 'ars_nouveau:warding_stone' }, - { item: 'naturesaura:token_joy' }, - { item: 'naturesaura:gold_leaf' }, - { item: 'thermal:ice_charge' }, - { item: 'thermal:lightning_charge' }, - { item: 'thermal:earth_charge' }, - { item: 'minecraft:fire_charge' } - ], - output: { item: 'naturesaura:nature_altar' }, - time: 500, - sapling: 'quark:yellow_blossom_sapling', - id: 'naturesaura:tree_ritual/nature_altar' - }, - { - inputs: [ - { - type: 'forge:nbt', - item: 'naturesaura:aura_bottle', - count: 1, - nbt: '{stored_type:"naturesaura:overworld"}' - }, - { item: 'botania:pink_shiny_flower' }, - { item: 'naturesaura:gold_leaf' }, - { item: 'minecraft:golden_apple' }, - { item: 'architects_palette:sunmetal_blend' }, - { item: 'botania:pink_shiny_flower' }, - { item: 'architects_palette:sunmetal_blend' }, - { item: 'botania:pink_shiny_flower' } - ], - output: { item: 'naturesaura:token_joy', count: 2 }, - time: 200, - sapling: 'quark:yellow_blossom_sapling', - id: 'naturesaura:tree_ritual/token_joy' - }, - { - inputs: [ - { - type: 'forge:nbt', - item: 'naturesaura:aura_bottle', - count: 1, - nbt: '{stored_type:"naturesaura:end"}' - }, - { item: 'upgrade_aquatic:thrasher_tooth' }, - { item: 'naturesaura:gold_leaf' }, - { item: 'eidolon:ender_calx' }, - { item: 'astralsorcery:nocturnal_powder' }, - { item: 'upgrade_aquatic:thrasher_tooth' }, - { item: 'astralsorcery:nocturnal_powder' }, - { item: 'upgrade_aquatic:thrasher_tooth' } - ], - output: { item: 'naturesaura:token_fear', count: 2 }, - time: 200, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:tree_ritual/token_fear' - }, - { - inputs: [ - { item: 'quark:bottled_cloud' }, - { item: 'powah:charged_snowball' }, - { item: 'naturesaura:gold_leaf' }, - { item: 'minecraft:diamond_axe' }, - { item: 'alexsmobs:komodo_spit' }, - { item: 'powah:charged_snowball' }, - { item: 'alexsmobs:komodo_spit' }, - { item: 'powah:charged_snowball' } - ], - output: { item: 'naturesaura:token_anger', count: 2 }, - time: 200, - sapling: 'quark:red_blossom_sapling', - id: 'naturesaura:tree_ritual/token_anger' - }, - { - inputs: [ - { - type: 'forge:nbt', - item: 'naturesaura:aura_bottle', - count: 1, - nbt: '{stored_type:"naturesaura:nether"}' - }, - { item: 'botania:black_shiny_flower' }, - { item: 'naturesaura:gold_leaf' }, - { item: 'quark:soul_bead' }, - { item: 'minecraft:ghast_tear' }, - { item: 'botania:black_shiny_flower' }, - { item: 'minecraft:ghast_tear' }, - { item: 'botania:black_shiny_flower' } - ], - output: { item: 'naturesaura:token_sorrow', count: 2 }, - time: 200, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:tree_ritual/token_sorrow' - }, - { - inputs: [ - { item: 'naturesaura:infused_iron' }, //top - { item: 'architects_palette:sunstone' }, //bottom - { item: 'ars_nouveau:glyph_grow' }, //left - { item: 'naturesaura:token_joy' }, //right - { item: 'thermal:phytogro' }, //topleft - { item: 'botania:livingwood' }, //bottomright - { item: 'thermal:phytogro' }, //topright - { item: 'botania:livingwood' } //bottomleft - ], - output: { item: 'naturesaura:oak_generator' }, - time: 600, - sapling: 'quark:yellow_blossom_sapling', - id: 'naturesaura:oak_generator' - }, - { - inputs: [ - { item: 'naturesaura:tainted_gold' }, //top - { item: 'architects_palette:moonstone' }, //bottom - { item: 'eidolon:reaper_scythe' }, //left - { item: 'naturesaura:token_sorrow' }, //right - { tag: 'forge:ingots/nether_brick' }, //topleft - { item: 'minecraft:soul_sand' }, //bottomright - { tag: 'forge:ingots/nether_brick' }, //topright - { item: 'minecraft:soul_sand' } //bottomleft - ], - output: { item: 'naturesaura:animal_generator' }, - time: 600, - sapling: 'quark:blue_blossom_sapling', - id: 'naturesaura:animal_generator' - }, - { - inputs: [ - { item: 'naturesaura:sky_ingot' }, //top - { item: 'kubejs:firmament' }, //bottom - { item: 'ars_nouveau:glyph_launch' }, //left - { item: 'minecraft:fire_charge' }, //right - { item: 'minecraft:firework_rocket' }, //topleft - { item: 'naturesaura:token_joy' }, //bottomright - { item: 'minecraft:firework_rocket' }, //topright - { item: 'naturesaura:token_rage' } //bottomleft - ], - output: { item: 'naturesaura:firework_generator' }, - time: 600, - sapling: 'quark:blue_blossom_sapling', - id: 'naturesaura:firework_generator' - }, - { - inputs: [ - { item: 'naturesaura:infused_iron' }, //top - { item: 'architects_palette:sunstone' }, //bottom - { item: 'ars_nouveau:glyph_harvest' }, //left - { item: 'naturesaura:token_joy' }, //right - { item: 'botania:livingwood' }, //topleft - { item: 'botania:livingwood' }, //bottomright - { item: 'botania:livingwood' }, //topright - { item: 'botania:livingwood' } //bottomleft - ], - output: { item: 'naturesaura:flower_generator' }, - time: 600, - sapling: 'quark:yellow_blossom_sapling', - id: 'naturesaura:flower_generator' - }, - { - inputs: [ - { item: 'naturesaura:tainted_gold' }, //top - { item: 'architects_palette:moonstone' }, //bottom - { item: 'ars_nouveau:glyph_split' }, //left - { item: 'supplementaries:bamboo_spikes' }, //right - { tag: 'forge:ingots/nether_brick' }, //topleft - { item: 'naturesaura:token_sorrow' }, //bottomright - { tag: 'forge:ingots/nether_brick' }, //topright - { item: 'naturesaura:token_joy' } //bottomleft - ], - output: { item: 'naturesaura:slime_split_generator' }, - time: 600, - sapling: 'quark:lavender_blossom_sapling', - id: 'naturesaura:slime_split_generator' - }, - { - inputs: [ - { item: 'eidolon:ender_calx' }, //top - { item: 'quark:ender_watcher' }, //bottom - { item: 'ars_nouveau:glyph_blink' }, //left - { item: 'minecraft:chorus_flower' }, //right - { item: 'integratedterminals:chorus_glass' }, //topleft - { item: 'naturesaura:token_joy' }, //bottomright - { item: 'integratedterminals:chorus_glass' }, //topright - { item: 'naturesaura:token_rage' } //bottomleft - ], - output: { item: 'naturesaura:chorus_generator' }, - time: 600, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:chorus_generator' - }, - { - inputs: [ - { item: 'naturesaura:tainted_gold' }, //top - { item: 'architects_palette:moonstone' }, //bottom - { item: 'ars_nouveau:glyph_aoe' }, //left - { item: 'naturesaura:token_fear' }, //right - { item: 'eidolon:fungus_sprouts' }, //topleft - { tag: 'forge:ingots/nether_brick' }, //bottomright - { item: 'eidolon:fungus_sprouts' }, //topright - { tag: 'forge:ingots/nether_brick' } //bottomleft - ], - output: { item: 'naturesaura:potion_generator' }, - time: 600, - sapling: 'quark:lavender_blossom_sapling', - id: 'naturesaura:potion_generator' - }, - { - inputs: [ - { item: 'naturesaura:infused_iron' }, //top - { item: 'ars_nouveau:glyph_wither' }, //bottom - { item: 'naturesaura:token_terror' }, //left - { item: 'naturesaura:token_grief' }, //right - { item: 'architects_palette:moonstone' }, //topleft - { item: 'architects_palette:sunstone' }, //bottomright - { item: 'botania:mossy_livingwood_planks' }, //topright - { item: 'botania:mossy_livingwood_planks' } //bottomleft - ], - output: { item: 'naturesaura:moss_generator' }, - time: 600, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:moss_generator' - }, - { - inputs: [ - { item: 'naturesaura:infused_iron' }, //top - { item: 'architects_palette:sunstone' }, //bottom - { item: 'ars_nouveau:glyph_amplify' }, //left - { item: 'ars_nouveau:glyph_projectile' }, //right - { item: 'rsgauges:arrow_target' }, //topleft - { item: 'naturesaura:token_anger' }, //bottomright - { item: 'rsgauges:arrow_target' }, //topright - { item: 'naturesaura:token_anger' } //bottomleft - ], - output: { item: 'naturesaura:projectile_generator' }, - time: 600, - sapling: 'quark:yellow_blossom_sapling', - id: 'naturesaura:projectile_generator' - }, - { - inputs: [ - { item: 'naturesaura:infused_iron' }, //top - { item: 'architects_palette:moonstone' }, //bottom - { item: 'ars_nouveau:glyph_grow' }, //left - { item: 'naturesaura:token_joy' }, //right - { item: 'astralsorcery:rock_crystal' }, //topleft - { tag: 'forge:ingots/starmetal' }, //bottomright - { item: 'astralsorcery:rock_crystal' }, //topright - { tag: 'forge:ingots/starmetal' } //bottomleft - ], - output: { item: 'naturesstarlight:crystal_generator' }, - time: 600, - sapling: 'quark:lavender_blossom_sapling', - id: 'naturesstarlight:crystal_generator' - }, - { - inputs: [ - { item: 'botania:livingrock' }, //top - { item: 'botania:livingrock' }, //bottom - { item: 'botania:livingrock' }, //left - { item: 'botania:livingrock' }, //right - { item: 'minecraft:conduit' }, //topleft - { item: 'botania:livingrock' } //bottomright - ], - output: { item: 'botania:runic_altar' }, - time: 600, - sapling: 'quark:lavender_blossom_sapling', - id: 'botania:runic_altar' - }, - { - inputs: [ - { item: 'naturesaura:token_joy' }, //top - { item: 'resourcefulbees:t2_apiary' }, //bottom - { tag: 'botania:runes/summer' }, //left - { tag: 'botania:runes/spring' }, //right - { tag: 'resourcefulbees:resourceful_honeycomb_block' }, //topleft - { tag: 'resourcefulbees:resourceful_honeycomb_block' }, //bottomright - { item: 'resourcefulbees:honey_fluid_bucket' }, //topright - { item: 'resourcefulbees:honey_fluid_bucket' } //bottomleft - ], - output: { item: 'resourcefulbees:t3_apiary' }, - time: 300, - sapling: 'quark:yellow_blossom_sapling', - id: 'resourcefulbees:t3_apiary' - }, - { - inputs: [ - { item: 'meetyourfight:spectres_eye' }, //top - { tag: 'forge:ingots/silver' }, //bottom - { item: 'naturesaura:gold_leaf' }, //left - { item: 'naturesaura:gold_leaf' }, //right - { item: 'farmersdelight:tree_bark' }, //topleft - { item: 'farmersdelight:tree_bark' }, //bottomright - { item: 'farmersdelight:tree_bark' }, //topright - { item: 'farmersdelight:tree_bark' } //bottomleft - ], - output: { item: 'naturesaura:eye' }, - time: 250, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:tree_ritual/eye' - }, - { - inputs: [ - { item: 'naturesaura:eye' }, //top - { tag: 'forge:ingots/sky' }, //bottom - { tag: 'forge:ingots/sky' }, //left - { item: 'naturesaura:end_flower' }, //right - { item: 'naturesaura:gold_leaf' }, //topleft - { item: 'naturesaura:gold_leaf' }, //bottomright - { item: 'botania:lens_normal' }, //topright - { item: 'upgrade_aquatic:elder_eye' } //bottomleft - ], - output: { item: 'naturesaura:eye_improved' }, - time: 500, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:tree_ritual/eye_improved' - }, - { - inputs: [ - { item: 'naturesaura:gold_brick' }, //top - { item: 'naturesaura:infused_stone' }, //bottom - { item: 'botania:brewery' }, //left - { tag: 'forge:ingots/sky' }, //right - { item: 'naturesaura:gold_leaf' }, //topleft - { item: 'eidolon:gold_inlay' } //bottomright - ], - output: { item: 'naturesaura:conversion_catalyst' }, - time: 600, - sapling: 'architects_palette:twisted_sapling', - id: 'naturesaura:tree_ritual/conversion_catalyst' - }, - { - inputs: [ - { item: 'naturesaura:gold_brick' }, //top - { item: 'naturesaura:infused_stone' }, //bottom - { tag: 'forge:ingots/andesite_alloy' }, //left - { tag: 'forge:ingots/andesite_alloy' }, //right - { item: 'naturesaura:token_anger' } //topleft - ], - output: { item: 'naturesaura:crushing_catalyst' }, - time: 600, - sapling: 'undergarden:wigglewood_sapling', - id: 'naturesaura:tree_ritual/crushing_catalyst' - }, - { - inputs: [ - { item: 'naturesaura:infused_stone' }, - { item: 'naturesaura:infused_stone' }, - { tag: 'forge:ingots/tainted_gold' }, - { tag: 'forge:ingots/infused_iron' }, - { item: 'minecraft:fire_charge' }, - { item: 'minecraft:flint_and_steel' }, - { item: 'tconstruct:magma_cake' }, - { item: 'naturesaura:token_anger' } - ], - sapling: 'quark:red_blossom_sapling', - output: { item: 'naturesaura:furnace_heater' }, - time: 600, - id: 'naturesaura:tree_ritual/furnace_heater' - }, - { - inputs: [ - { tag: 'forge:gems/mana_diamond' }, - { tag: 'forge:ingots/tainted_gold' }, - { tag: 'forge:ingots/sky' }, - { item: 'naturesaura:token_fear' } - ], - sapling: 'quark:yellow_blossom_sapling', - output: { item: 'naturesaura:break_prevention' }, - time: 200, - id: 'naturesaura:tree_ritual/break_prevention' - }, - { - inputs: [ - { item: 'atum:palm_sapling' }, - { item: 'atum:date' }, - { item: 'undergarden:veil_mushroom' }, - { item: 'atum:emmer_seeds' }, - { item: 'undergarden:glowing_kelp' }, - { item: 'naturesaura:gold_leaf' } - ], - sapling: 'quark:lavender_blossom_sapling', - output: { item: 'naturesaura:ancient_sapling', count: 2 }, - time: 200, - id: 'naturesaura:tree_ritual/ancient_sapling' - }, - { - inputs: [ - { item: 'naturesaura:gold_powder' }, - { item: 'naturesaura:gold_powder' }, - { tag: 'forge:ores/emerald' }, - { tag: 'forge:ores/cobalt' }, - { tag: 'botania:runes/spring' } - ], - sapling: 'quark:yellow_blossom_sapling', - output: { nbt: { effect: 'naturesaura:ore_spawn' }, item: 'naturesaura:effect_powder', count: 4 }, - time: 400, - id: 'naturesaura:tree_ritual/ore_spawn_powder' - }, - - // Recipes below this point have not yet been expertified. To Do. + // Recipes below this point have not yet been expertified. To Do. - { - inputs: [ - { item: 'naturesaura:gold_powder' }, - { item: 'naturesaura:gold_powder' }, - { tag: 'forge:ingots/sky' }, - { item: 'naturesaura:aura_cache' } - ], - sapling: 'quark:yellow_blossom_sapling', - output: { nbt: { effect: 'naturesaura:cache_recharge' }, item: 'naturesaura:effect_powder', count: 32 }, - time: 400, - id: 'naturesaura:tree_ritual/cache_powder' + { + inputs: [ + { item: 'naturesaura:gold_powder' }, + { item: 'naturesaura:gold_powder' }, + { tag: 'forge:ingots/sky' }, + { item: 'naturesaura:aura_cache' } + ], + sapling: 'quark:yellow_blossom_sapling', + output: { nbt: { effect: 'naturesaura:cache_recharge' }, item: 'naturesaura:effect_powder', count: 32 }, + time: 400, + id: 'naturesaura:tree_ritual/cache_powder' + }, + { + inputs: [ + { item: 'naturesaura:gold_powder' }, + { item: 'naturesaura:gold_powder' }, + { tag: 'forge:ingots/sky' }, + { item: 'minecraft:egg' } + ], + sapling: 'quark:lavender_blossom_sapling', + output: { nbt: { effect: 'naturesaura:animal' }, item: 'naturesaura:effect_powder', count: 8 }, + time: 400, + id: 'naturesaura:tree_ritual/animal_powder' + }, + { + inputs: [ + { item: 'naturesaura:gold_powder' }, + { item: 'naturesaura:gold_powder' }, + { tag: 'forge:ingots/sky' }, + { item: 'minecraft:wheat' } + ], + sapling: 'quark:yellow_blossom_sapling', + output: { nbt: { effect: 'naturesaura:plant_boost' }, item: 'naturesaura:effect_powder', count: 24 }, + time: 400, + id: 'naturesaura:tree_ritual/plant_powder' + }, + { + inputs: [ + { item: 'naturesaura:gold_powder' }, + { item: 'naturesaura:gold_powder' }, + { item: 'minecraft:netherrack' }, + { item: 'minecraft:grass' } + ], + sapling: 'quark:yellow_blossom_sapling', + output: { nbt: { effect: 'naturesaura:nether_grass' }, item: 'naturesaura:effect_powder', count: 24 }, + time: 400, + id: 'naturesaura:tree_ritual/nether_grass_powder' + }, + { + inputs: [ + { item: 'naturesaura:gold_powder' }, + { item: 'naturesaura:gold_powder' }, + { item: 'astralsorcery:illumination_powder' }, + { item: 'astralsorcery:aquamarine' } + ], + sapling: 'quark:yellow_blossom_sapling', + output: { + nbt: { effect: 'naturesstarlight:starlight_increase' }, + item: 'naturesaura:effect_powder', + count: 8 }, - { - inputs: [ - { item: 'naturesaura:gold_powder' }, - { item: 'naturesaura:gold_powder' }, - { tag: 'forge:ingots/sky' }, - { item: 'minecraft:egg' } - ], - sapling: 'quark:lavender_blossom_sapling', - output: { nbt: { effect: 'naturesaura:animal' }, item: 'naturesaura:effect_powder', count: 8 }, - time: 400, - id: 'naturesaura:tree_ritual/animal_powder' - }, - { - inputs: [ - { item: 'naturesaura:gold_powder' }, - { item: 'naturesaura:gold_powder' }, - { tag: 'forge:ingots/sky' }, - { item: 'minecraft:wheat' } - ], - sapling: 'quark:yellow_blossom_sapling', - output: { nbt: { effect: 'naturesaura:plant_boost' }, item: 'naturesaura:effect_powder', count: 24 }, - time: 400, - id: 'naturesaura:tree_ritual/plant_powder' - }, - { - inputs: [ - { item: 'naturesaura:gold_powder' }, - { item: 'naturesaura:gold_powder' }, - { item: 'minecraft:netherrack' }, - { item: 'minecraft:grass' } - ], - sapling: 'quark:yellow_blossom_sapling', - output: { nbt: { effect: 'naturesaura:nether_grass' }, item: 'naturesaura:effect_powder', count: 24 }, - time: 400, - id: 'naturesaura:tree_ritual/nether_grass_powder' - }, - { - inputs: [ - { item: 'naturesaura:gold_powder' }, - { item: 'naturesaura:gold_powder' }, - { item: 'astralsorcery:illumination_powder' }, - { item: 'astralsorcery:aquamarine' } - ], - sapling: 'quark:yellow_blossom_sapling', - output: { - nbt: { effect: 'naturesstarlight:starlight_increase' }, - item: 'naturesaura:effect_powder', - count: 8 - }, - time: 400, - id: 'naturesstarlight:tree_ritual/starlight_increase_powder' - } - /* + time: 400, + id: 'naturesstarlight:tree_ritual/starlight_increase_powder' + } + /* , { inputs: [ @@ -490,19 +475,16 @@ onEvent('recipes', (event) => { id: 'naturesaura:oak_generator' } */ - ] - }; - - data.recipes.forEach((recipe) => { - const re = event.custom({ - type: 'naturesaura:tree_ritual', - ingredients: recipe.inputs, - sapling: { item: recipe.sapling }, - output: recipe.output, - time: recipe.time - }); - if (recipe.id) { - re.id(recipe.id); - } + ]; + recipes.forEach((recipe) => { + event + .custom({ + type: 'naturesaura:tree_ritual', + ingredients: recipe.inputs, + sapling: { item: recipe.sapling }, + output: recipe.output, + time: recipe.time + }) + .id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js index 4bc0b2023d..65358af50e 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js @@ -940,6 +940,37 @@ onEvent('recipes', (event) => { item: 'bloodmagic:soulscythe' }, id: `${id_prefix}soulscythe` + }, + { + ritual_type: 'occultism:craft', + activation_item: { + item: 'occultism:book_of_binding_bound_marid' + }, + pentacle_id: 'occultism:craft_marid', + duration: 24, + entity_to_sacrifice: { + tag: 'enigmatica:gaia_guardian', + display_name: 'ritual.occultism.sacrifice.gaia_guardian' + }, + ritual_dummy: { + item: 'kubejs:craft_attunement_altar' + }, + ingredients: [ + { tag: 'botania:runes/asgard' }, + { tag: 'botania:runes/mana' }, + { tag: 'botania:runes/midgard' }, + { tag: 'botania:runes/mana' }, + { tag: 'forge:ingots/gaia_spirit' }, + { item: 'bloodmagic:corrosivecrystal' }, + { tag: 'forge:ingots/gaia_spirit' }, + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'bloodmagic:destructivecrystal' }, + { tag: 'forge:ingots/gaia_spirit' }, + { item: 'bloodmagic:vengefulcrystal' }, + { tag: 'forge:ingots/gaia_spirit' } + ], + result: { item: 'astralsorcery:attunement_altar' }, + id: `${id_prefix}attunement_altar` } ]; diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 53db06bb9c..60893f7d3b 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -38,7 +38,8 @@ onEvent('item.registry', (event) => { 'craft_soulaxe', 'craft_soulpickaxe', 'craft_soulshovel', - 'craft_soulscythe' + 'craft_soulscythe', + 'craft_attunement_altar' ]; const assemblyTableItems = [ From a6092926aad6872a738cc8f3f8b12fa7767666cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Thu, 30 Sep 2021 09:03:57 +0200 Subject: [PATCH 045/124] fixed #3334 --- config/quark-common.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/quark-common.toml b/config/quark-common.toml index 00ed5ee937..5b7c1b5e1f 100644 --- a/config/quark-common.toml +++ b/config/quark-common.toml @@ -7,14 +7,14 @@ "Use Fast Worldgen" = false "Enable 'q' Button" = false #A list of screens that don't play well with quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. - "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel","team.chisel.client.gui.GuiHitechChisel"] + "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel", "team.chisel.client.gui.GuiHitechChisel", "me.desht.modularrouters.client.gui.filter.GuiBulkItemFilter"] "Use Anti Overlap" = true #Enables quark network profiling features. Do not enable this unless requested to. "Enable Network Profiling" = false #Quark replaces the Piston logic to allow for its piston features to work. If you're having troubles, try turning this off. "Use Piston Logic Replacement" = true #Set to true if you need to find the class name for a screen that's causing problems - "Print Screen Classnames" = false + "Print Screen Classnames" = true #Blocks that Quark should treat as Shulker Boxes. "Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"] #Set to true to enable a system that debugs quark's worldgen features. This should ONLY be used if you're asked to by a dev. From 4a04264214719daae1aa217e2de75f6d303dc9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Thu, 30 Sep 2021 09:06:57 +0200 Subject: [PATCH 046/124] added personal shrinking device to morph-o-tool filling recipe #3341 --- .../enigmatica/kubejs/base/recipetypes/enigmatica/shaped.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/enigmatica/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/enigmatica/shaped.js index 114bc554b9..d26f9b1e22 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/enigmatica/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/enigmatica/shaped.js @@ -620,7 +620,8 @@ onEvent('recipes', (event) => { prettypipes: { id: 'prettypipes:wrench', Count: 1 }, storagedrawers: { id: 'storagedrawers:drawer_key', Count: 1 }, fluxnetworks: { id: 'fluxnetworks:flux_configurator', Count: 1 }, - integratedtunnels: { id: 'integrateddynamics:wrench', Count: 1 } + integratedtunnels: { id: 'integrateddynamics:wrench', Count: 1 }, + compactmachines: { id: 'compactmachines:personal_shrinking_device', Count: 1 } } }), pattern: ['ABA', 'CFD', 'AEA'], From 5da94fd0a0b0cb1a9a6ecadef1d54138e109e6af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Thu, 30 Sep 2021 19:20:37 +0200 Subject: [PATCH 047/124] set expert mode quest in getting started to be optional #3323 --- config/ftbquests/quests/chapters/getting_started.snbt | 1 + 1 file changed, 1 insertion(+) diff --git a/config/ftbquests/quests/chapters/getting_started.snbt b/config/ftbquests/quests/chapters/getting_started.snbt index bd4bd95f29..5bfce52c14 100644 --- a/config/ftbquests/quests/chapters/getting_started.snbt +++ b/config/ftbquests/quests/chapters/getting_started.snbt @@ -170,6 +170,7 @@ "0000000000000045" ] hide: true + optional: true id: "0000000000000FE9" tasks: [{ id: "0000000000000FEA" From ab39d3ce07c4c96fc9b8d867bcb210caf34bc07f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Thu, 30 Sep 2021 19:21:17 +0200 Subject: [PATCH 048/124] latex ponder: idle 1 tick before modifying nbt on newly placed block, fixes a rare crash --- kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js b/kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js index 5947b7b549..059ea7e952 100644 --- a/kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js +++ b/kubejs/client_scripts/ponder/tech/industrialforegoing/latex.js @@ -107,6 +107,7 @@ onEvent('ponder.registry', (event) => { Block.id('industrialforegoing:common_black_hole_tank').with('subfacing', 'north').blockState, true ); + scene.idle(1); scene.world().modifyTileNBT(tank1, { tank: { FluidName: 'thermal:resin', Amount: Utils.random.nextInt(64000) } }); @@ -119,6 +120,7 @@ onEvent('ponder.registry', (event) => { Block.id('industrialforegoing:common_black_hole_tank').with('subfacing', 'north').blockState, true ); + scene.idle(1); scene.world().modifyTileNBT(tank2, { tank: { FluidName: 'industrialforegoing:latex', Amount: Utils.random.nextInt(64000) } }); From 6dcd1b2823b6f8dada24f4b298a383f94e904703 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 30 Sep 2021 16:15:08 -0400 Subject: [PATCH 049/124] update --- .../quests/chapters/expert__tier_2_wip.snbt | 67 ++-- .../interactio/item_anvil_smashing.js | 40 ++- .../expert/recipetypes/occultism/ritual.js | 324 +++++------------- 3 files changed, 137 insertions(+), 294 deletions(-) diff --git a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt index 655891fa59..2b61eaffa6 100644 --- a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt +++ b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt @@ -281,8 +281,11 @@ } { x: -4.0d - y: 10.5d - dependencies: ["6EECDEC09A67787E"] + y: 10.0d + dependencies: [ + "6EECDEC09A67787E" + "590D4ABAC13B92E0" + ] id: "269C18852281A11E" tasks: [{ id: "1721226282B4C95E" @@ -315,7 +318,7 @@ } { x: -4.0d - y: 12.5d + y: 12.0d dependencies: ["269C18852281A11E"] id: "4C38CF2CADE34234" tasks: [{ @@ -377,7 +380,7 @@ } { x: -2.0d - y: 15.5d + y: 14.0d dependencies: ["56015C7ABFB5BF44"] id: "7F8A19BA987B1F85" tasks: [{ @@ -429,7 +432,7 @@ } { x: -3.0d - y: 14.0d + y: 13.0d dependencies: ["4C38CF2CADE34234"] id: "56015C7ABFB5BF44" tasks: [{ @@ -655,8 +658,8 @@ }] } { - x: -7.0d - y: 13.5d + x: -7.5d + y: 14.0d dependencies: ["2B4F57731186E24E"] id: "36C882808C98F78B" tasks: [ @@ -674,7 +677,7 @@ } { x: -1.0d - y: 17.0d + y: 15.0d dependencies: ["7F8A19BA987B1F85"] id: "5B8648C9395C13AA" tasks: [ @@ -706,25 +709,21 @@ } { x: -2.5d - y: 12.0d + y: 11.5d dependencies: ["269C18852281A11E"] id: "7E3B061EC45D3617" - tasks: [{ - id: "7485B9CF28536D07" - type: "item" - item: "bloodmagic:demoncrucible" - }] - } - { - x: -2.0d - y: 10.5d - dependencies: ["269C18852281A11E"] - id: "09B55B3D016FA0C0" - tasks: [{ - id: "12352CCA58358D01" - type: "item" - item: "bloodmagic:demoncrystallizer" - }] + tasks: [ + { + id: "7485B9CF28536D07" + type: "item" + item: "bloodmagic:demoncrucible" + } + { + id: "7BA52E050F7AA19A" + type: "item" + item: "bloodmagic:demoncrystallizer" + } + ] } { x: -7.0d @@ -965,6 +964,7 @@ { x: -4.5d y: 15.5d + dependencies: ["204A968B1687B26E"] id: "6A471B48BCD9CD11" tasks: [{ id: "49D7E4729811C70E" @@ -1002,9 +1002,8 @@ }] } { - x: -1.0d - y: 10.5d - dependencies: ["2ECA82ED72DA6D61"] + x: -2.0d + y: 10.0d id: "590D4ABAC13B92E0" tasks: [{ id: "0B13FA7CE1ABD0C9" @@ -1013,8 +1012,8 @@ }] } { - x: 0.0d - y: 11.5d + x: -1.0d + y: 11.0d dependencies: ["590D4ABAC13B92E0"] id: "31CB7C1723DE957B" tasks: [{ @@ -1025,7 +1024,7 @@ } { x: -1.5d - y: 13.0d + y: 12.5d dependencies: ["7E3B061EC45D3617"] id: "0B38C9F879EAAB18" tasks: [{ @@ -1036,7 +1035,7 @@ } { x: -0.5d - y: 14.0d + y: 13.5d dependencies: ["0B38C9F879EAAB18"] id: "6784887421DAB91C" tasks: [{ @@ -1047,7 +1046,7 @@ } { x: 0.5d - y: 15.0d + y: 14.5d dependencies: ["6784887421DAB91C"] id: "1766CBDDEFE97113" tasks: [{ @@ -1092,7 +1091,7 @@ }] } { - x: -2.5d + x: -2.0d y: 7.5d dependencies: ["2ECA82ED72DA6D61"] id: "1D1BD002FC8614E1" diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_anvil_smashing.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_anvil_smashing.js index 53f62556e6..1d3c908482 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_anvil_smashing.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_anvil_smashing.js @@ -2,7 +2,7 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - + const id_prefix = 'enigmatica:expert/interactio/item_anvil_smashing/'; const recipes = [ { inputs: [ @@ -10,33 +10,35 @@ onEvent('recipes', (event) => { type: 'forge:nbt', item: 'minecraft:potion', count: 1, - nbt: { - Potion: 'minecraft:long_swiftness' - } + nbt: { Potion: 'minecraft:long_swiftness' } }, [Item.of('eidolon:soul_shard'), Item.of('create:cuckoo_clock')] ], output: { - entries: [ - { - result: { - item: 'tiab:timeinabottle' - }, - weight: 1 - } - ], + entries: [{ result: { item: 'tiab:timeinabottle' }, weight: 1 }], + rolls: 1 + }, + damage: 2, + id: `${id_prefix}timeinabottle` + }, + { + inputs: [ + Item.of('naturesaura:hopper_upgrade'), + Item.of('botania:ender_eye_block'), + Item.of('naturesaura:grated_chute'), + Item.of('botania:red_string') + ], + output: { + entries: [{ result: { item: 'darkutils:ender_hopper' }, weight: 1 }], rolls: 1 }, - damage: 2 + damage: 2, + id: 'darkutils:crafting/ender_hopper' } ]; recipes.forEach((recipe) => { - event.custom({ - type: 'interactio:item_anvil_smashing', - inputs: recipe.inputs, - output: recipe.output, - damage: recipe.damage - }); + recipe.type = 'interactio:item_anvil_smashing'; + event.custom(recipe).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js index 65358af50e..f91ab9ee8c 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js @@ -7,14 +7,10 @@ onEvent('recipes', (event) => { recipes = [ { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:craft_foliot', duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_infused_lenses' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_infused_lenses' }, ingredients: [ { item: 'occultism:lenses' }, { tag: 'forge:ingots/lumium' }, @@ -27,14 +23,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_infused_pickaxe' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_infused_pickaxe' }, ingredients: [ { item: 'occultism:spirit_attuned_pickaxe_head' }, { item: 'betterendforge:leather_wrapped_stick' }, @@ -48,14 +40,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_soul_gem' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_soul_gem' }, ingredients: [ { item: 'eidolon:lesser_soul_gem' }, { item: 'eidolon:gold_inlay' }, @@ -71,9 +59,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:summon', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, + activation_item: { item: 'occultism:book_of_binding_bound_afrit' }, pentacle_id: 'occultism:summon_wild_afrit', duration: 6, entity_to_sacrifice: { @@ -81,9 +67,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.cows' }, entity_to_summon: 'occultism:afrit_wild', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_wild_afrit' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/summon_wild_afrit' }, ingredients: [ { item: 'eidolon:gold_inlay' }, { tag: 'botania:runes/fire' }, @@ -99,14 +83,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_dimensional_matrix' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_dimensional_matrix' }, ingredients: [ { tag: 'quark:crystal_clusters' }, { tag: 'quark:crystal_clusters' }, @@ -126,14 +106,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:craft_foliot', duration: 12, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier1' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_stabilizer_tier1' }, ingredients: [ { item: 'occultism:otherstone_pedestal' }, { tag: 'forge:storage_blocks/bronze' }, @@ -153,14 +129,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier2' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_stabilizer_tier2' }, ingredients: [ { item: 'occultism:storage_stabilizer_tier1' }, { tag: 'forge:storage_blocks/silver' }, @@ -180,14 +152,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, + activation_item: { item: 'occultism:book_of_binding_bound_afrit' }, pentacle_id: 'occultism:craft_afrit', duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier3' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_stabilizer_tier3' }, ingredients: [ { item: 'occultism:storage_stabilizer_tier2' }, { tag: 'forge:storage_blocks/electrum' }, @@ -207,14 +175,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_marid' - }, + activation_item: { item: 'occultism:book_of_binding_bound_marid' }, pentacle_id: 'occultism:craft_marid', duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stabilizer_tier4' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_stabilizer_tier4' }, ingredients: [ { item: 'occultism:storage_stabilizer_tier3' }, { tag: 'forge:storage_blocks/iesnium' }, @@ -254,14 +218,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_miner_spirit', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:craft_foliot', duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_miner_foliot_unspecialized' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_miner_foliot_unspecialized' }, ingredients: [ { item: 'occultism:magic_lamp_empty' }, { item: 'occultism:iesnium_pickaxe' }, @@ -273,14 +233,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_dimensional_mineshaft' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_dimensional_mineshaft' }, ingredients: [ { item: 'bloodmagic:infusedslate' }, { item: 'bloodmagic:infusedslate' }, @@ -296,14 +252,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 9, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_familiar_ring' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_familiar_ring' }, ingredients: [ { item: 'occultism:soul_gem' }, { item: 'eidolon:gold_inlay' }, @@ -315,14 +267,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:craft_foliot', duration: 6, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_storage_controller_base' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_storage_controller_base' }, ingredients: [ { item: 'occultism:otherstone_pedestal' }, { item: 'eidolon:gold_inlay' }, @@ -335,14 +283,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:craft_foliot', duration: 12, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_stable_wormhole' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_stable_wormhole' }, ingredients: [ { item: 'occultism:wormhole_frame' }, { item: 'botania:corporea_spark' }, @@ -354,14 +298,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 12, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_storage_remote' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_storage_remote' }, ingredients: [ { item: 'occultism:storage_remote_inert' }, { item: 'botania:corporea_spark' }, @@ -378,9 +318,7 @@ onEvent('recipes', (event) => { }, pentacle_id: 'occultism:craft_foliot', duration: 24, - ritual_dummy: { - item: 'occultism:ritual_dummy/craft_satchel' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/craft_satchel' }, ingredients: [ { item: 'ironchest:silver_chest' }, { item: 'ars_nouveau:end_fiber' }, @@ -388,26 +326,20 @@ onEvent('recipes', (event) => { { item: 'ars_nouveau:end_fiber' }, { tag: 'forge:ingots/infused_iron' } ], - result: { - item: 'occultism:satchel' - }, + result: { item: 'occultism:satchel' }, id: 'occultism:ritual/craft_satchel' }, - // 2x Ore Processing + // 1x Ore Processing { ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:summon_foliot', duration: 6, spirit_max_age: -1, spirit_job_type: 'occultism:crush_tier1', entity_to_summon: 'occultism:foliot', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_foliot_crusher' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/summon_foliot_crusher' }, ingredients: [ { item: 'naturesaura:crushing_catalyst' }, { tag: 'forge:ingots/nebu' }, @@ -424,20 +356,16 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_foliot_crusher' }, - // 3x Ore Processing + // 2x Ore Processing { ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:summon_djinni', duration: 9, spirit_max_age: -1, spirit_job_type: 'occultism:crush_tier2', entity_to_summon: 'occultism:djinni', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_djinni_crusher' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/summon_djinni_crusher' }, ingredients: [ { item: 'naturesaura:crushing_catalyst' }, { tag: 'forge:ingots/sky' }, @@ -448,25 +376,19 @@ onEvent('recipes', (event) => { { tag: 'botania:runes/water' }, { tag: 'botania:runes/water' } ], - result: { - item: 'occultism:jei_dummy/none' - }, + result: { item: 'occultism:jei_dummy/none' }, id: 'occultism:ritual/summon_djinni_crusher' }, - // 4x Ore Processing + // 3x Ore Processing { ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, + activation_item: { item: 'occultism:book_of_binding_bound_afrit' }, pentacle_id: 'occultism:summon_afrit', duration: 12, spirit_max_age: -1, spirit_job_type: 'occultism:crush_tier3', entity_to_summon: 'occultism:afrit', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_afrit_crusher' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/summon_afrit_crusher' }, ingredients: [ { item: 'naturesaura:crushing_catalyst' }, { tag: 'botania:runes/joetunheim' }, @@ -483,20 +405,16 @@ onEvent('recipes', (event) => { id: 'occultism:ritual/summon_afrit_crusher' }, - // 6x Ore Processing + // 4x Ore Processing { ritual_type: 'occultism:summon_spirit_with_job', - activation_item: { - item: 'occultism:book_of_binding_bound_marid' - }, + activation_item: { item: 'occultism:book_of_binding_bound_marid' }, pentacle_id: 'occultism:summon_marid', duration: 3, spirit_max_age: -1, spirit_job_type: 'occultism:crush_tier4', entity_to_summon: 'occultism:marid', - ritual_dummy: { - item: 'occultism:ritual_dummy/summon_marid_crusher' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/summon_marid_crusher' }, ingredients: [ { item: 'naturesaura:crushing_catalyst' }, { tag: 'botania:runes/vanaheim' }, @@ -507,16 +425,12 @@ onEvent('recipes', (event) => { { tag: 'botania:runes/water' }, { tag: 'botania:runes/water' } ], - result: { - item: 'occultism:jei_dummy/none' - }, + result: { item: 'occultism:jei_dummy/none' }, id: 'occultism:ritual/summon_marid_crusher' }, { ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:possess_foliot', duration: 3, entity_to_sacrifice: { @@ -524,9 +438,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.villagers_or_players' }, entity_to_summon: 'occultism:greedy_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_greedy' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_greedy' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -544,9 +456,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:summon_tamed', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:possess_djinni', duration: 3, entity_to_sacrifice: { @@ -554,9 +464,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.parrots' }, entity_to_summon: 'occultism:otherworld_bird', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_otherworld_bird' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_otherworld_bird' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -574,9 +482,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:possess_djinni', duration: 3, entity_to_sacrifice: { @@ -584,9 +490,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.bats' }, entity_to_summon: 'occultism:bat_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_bat' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_bat' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -604,9 +508,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:possess_foliot', duration: 3, entity_to_sacrifice: { @@ -614,9 +516,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.deer' }, entity_to_summon: 'occultism:deer_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_deer' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_deer' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -634,9 +534,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:possess_djinni', duration: 3, entity_to_sacrifice: { @@ -644,9 +542,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.thrashers' }, entity_to_summon: 'occultism:cthulhu_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_cthulhu' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_cthulhu' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -664,9 +560,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:possess_djinni', duration: 3, entity_to_sacrifice: { @@ -674,9 +568,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.dropbears' }, entity_to_summon: 'occultism:devil_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_devil' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_devil' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -698,9 +590,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:familiar', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:possess_djinni', duration: 3, entity_to_sacrifice: { @@ -708,9 +598,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.rattlesnakes' }, entity_to_summon: 'occultism:dragon_familiar', - ritual_dummy: { - item: 'occultism:ritual_dummy/familiar_dragon' - }, + ritual_dummy: { item: 'occultism:ritual_dummy/familiar_dragon' }, ingredients: [ { item: 'quark:gold_bars' }, { item: 'quark:gold_bars' }, @@ -734,14 +622,10 @@ onEvent('recipes', (event) => { /// Custom Rituals { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 6, - ritual_dummy: { - item: 'kubejs:craft_magicfeather' - }, + ritual_dummy: { item: 'kubejs:craft_magicfeather' }, ingredients: [ { item: 'alexsmobs:roadrunner_feather' }, { tag: 'forge:ingots/sky' }, @@ -757,18 +641,14 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'materialis:fairy_block' - }, + activation_item: { item: 'materialis:fairy_block' }, pentacle_id: 'occultism:craft_marid', duration: 6, entity_to_sacrifice: { tag: 'enigmatica:dragons', display_name: 'ritual.occultism.sacrifice.dragons' }, - ritual_dummy: { - item: 'kubejs:craft_magical_feathers' - }, + ritual_dummy: { item: 'kubejs:craft_magical_feathers' }, ingredients: [ { item: 'botania:flight_tiara' }, { item: 'astralsorcery:shifting_star_vicio' }, @@ -788,9 +668,7 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:summon', - activation_item: { - item: 'occultism:book_of_binding_bound_afrit' - }, + activation_item: { item: 'occultism:book_of_binding_bound_afrit' }, pentacle_id: 'occultism:summon_wild_afrit', duration: 6, entity_to_sacrifice: { @@ -798,9 +676,7 @@ onEvent('recipes', (event) => { display_name: 'ritual.occultism.sacrifice.villagers_or_players' }, entity_to_summon: 'atum:pharaoh', - ritual_dummy: { - item: 'kubejs:summon_pharaoh' - }, + ritual_dummy: { item: 'kubejs:summon_pharaoh' }, ingredients: [ { tag: 'atum:godshards' }, { item: 'atum:golden_date_enchanted' }, @@ -816,14 +692,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_foliot' - }, + activation_item: { item: 'occultism:book_of_binding_bound_foliot' }, pentacle_id: 'occultism:craft_foliot', duration: 10, - ritual_dummy: { - item: 'kubejs:craft_spirit_heat_exchanger' - }, + ritual_dummy: { item: 'kubejs:craft_spirit_heat_exchanger' }, ingredients: [ { item: 'ars_nouveau:void_jar' }, { item: 'atum:shu_godshard' }, @@ -839,14 +711,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulsword' - }, + ritual_dummy: { item: 'kubejs:craft_soulsword' }, ingredients: [ { item: 'undergarden:forgotten_sword' }, { item: 'bloodmagic:soulgempetty' }, @@ -858,14 +726,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulaxe' - }, + ritual_dummy: { item: 'kubejs:craft_soulaxe' }, ingredients: [ { item: 'undergarden:forgotten_axe' }, { item: 'bloodmagic:soulgempetty' }, @@ -877,14 +741,10 @@ onEvent('recipes', (event) => { }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulpickaxe' - }, + ritual_dummy: { item: 'kubejs:craft_soulpickaxe' }, ingredients: [ { item: 'undergarden:forgotten_pickaxe' }, { item: 'bloodmagic:soulgempetty' }, @@ -893,68 +753,50 @@ onEvent('recipes', (event) => { ], result: { item: 'bloodmagic:soulpickaxe', - nbt: { - 'occultism:otherworldToolTier': 2 - } + nbt: { 'occultism:otherworldToolTier': 2 } }, id: `${id_prefix}soulpickaxe` }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulshovel' - }, + ritual_dummy: { item: 'kubejs:craft_soulshovel' }, ingredients: [ { item: 'undergarden:forgotten_shovel' }, { item: 'bloodmagic:soulgempetty' }, { tag: 'botania:runes/helheim' }, { tag: 'forge:ingots/iesnium' } ], - result: { - item: 'bloodmagic:soulshovel' - }, + result: { item: 'bloodmagic:soulshovel' }, id: `${id_prefix}soulshovel` }, { ritual_type: 'occultism:craft_with_spirit_name', - activation_item: { - item: 'occultism:book_of_binding_bound_djinni' - }, + activation_item: { item: 'occultism:book_of_binding_bound_djinni' }, pentacle_id: 'occultism:craft_djinni', duration: 10, - ritual_dummy: { - item: 'kubejs:craft_soulscythe' - }, + ritual_dummy: { item: 'kubejs:craft_soulscythe' }, ingredients: [ { item: 'undergarden:forgotten_hoe' }, { item: 'bloodmagic:soulgempetty' }, { tag: 'botania:runes/helheim' }, { tag: 'forge:ingots/iesnium' } ], - result: { - item: 'bloodmagic:soulscythe' - }, + result: { item: 'bloodmagic:soulscythe' }, id: `${id_prefix}soulscythe` }, { ritual_type: 'occultism:craft', - activation_item: { - item: 'occultism:book_of_binding_bound_marid' - }, + activation_item: { item: 'botania:runic_altar' }, pentacle_id: 'occultism:craft_marid', duration: 24, entity_to_sacrifice: { tag: 'enigmatica:gaia_guardian', display_name: 'ritual.occultism.sacrifice.gaia_guardian' }, - ritual_dummy: { - item: 'kubejs:craft_attunement_altar' - }, + ritual_dummy: { item: 'kubejs:craft_attunement_altar' }, ingredients: [ { tag: 'botania:runes/asgard' }, { tag: 'botania:runes/mana' }, From ffd5acb3af0eba99e95bb03730735a490cc84ff8 Mon Sep 17 00:00:00 2001 From: theboo Date: Thu, 30 Sep 2021 20:32:03 -0700 Subject: [PATCH 050/124] refreshes byg config --- config/byg/byg-biomes.json | 1797 ++++++++++++++++------------ config/byg/byg-end-biomes.json | 314 +++-- config/byg/byg-end-sub-biomes.json | 34 +- config/byg/byg-sub-biomes.json | 1140 +++++++++++------- 4 files changed, 1988 insertions(+), 1297 deletions(-) diff --git a/config/byg/byg-biomes.json b/config/byg/byg-biomes.json index cd0016438e..5c30a7da80 100644 --- a/config/byg/byg-biomes.json +++ b/config/byg/byg-biomes.json @@ -1,1173 +1,1412 @@ { "biomes": { - "byg:allium_fields": { - "climate": "WARM", - "dictionary": "LUSH,OVERWORLD,PLAINS,RARE", - "weight": 2, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:zelkova_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 5 + "weight": 4, + "data": "byg:zelkova_clearing" + }, + { + "weight": 3, + "data": "byg:zelkova_forest_hills" }, { - "data": "byg:red_oak_forest", - "weight": 5 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 5, + "dictionary": [ + "CONIFEROUS", + "COLD", + "FOREST", + "OVERWORLD" ] }, - "byg:alps": { - "climate": "ICY", - "dictionary": "COLD,MOUNTAIN,OVERWORLD,SNOWY", - "weight": 5, - "river": "byg:alps", - "beach": "minecraft:beach", - "edge": "byg:alpine_foothills", + "byg:allium_fields": { "hills": [ { - "data": "byg:alpine_foothills", - "weight": 10 + "weight": 5, + "data": "byg:fresh_water_lake" + }, + { + "weight": 5, + "data": "byg:red_oak_forest" } - ] - }, - "byg:amaranth_fields": { + ], + "beach": "minecraft:beach", + "river": "minecraft:river", "climate": "WARM", - "dictionary": "LUSH,OVERWORLD,PLAINS,RARE", "weight": 2, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "dictionary": [ + "PLAINS", + "RARE", + "LUSH", + "OVERWORLD" + ] + }, + "byg:jacaranda_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 5 + "weight": 4, + "data": "byg:jacaranda_forest_hills" }, { - "data": "byg:jacaranda_forest", - "weight": 5 + "weight": 3, + "data": "byg:jacaranda_clearing" + }, + { + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 4, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:ancient_forest": { - "climate": "WARM", - "dictionary": "FOREST,MAGICAL,OVERWORLD,RARE", - "weight": 1, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:meadow": { "hills": [ { - "data": "byg:flowering_ancient_forest", - "weight": 5 + "weight": 6, + "data": "byg:flowering_meadow" }, { - "data": "byg:glowing_ancient_forest", - "weight": 5 + "weight": 5, + "data": "byg:wooded_meadow" + }, + { + "weight": 4, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 7, + "dictionary": [ + "PLAINS", + "LUSH", + "OVERWORLD" ] }, - "byg:araucaria_savanna": { - "climate": "DESERT", - "dictionary": "FOREST,OVERWORLD", - "weight": 2, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:seasonal_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 5 + "weight": 7, + "data": "byg:seasonal_forest" }, { - "data": "byg:araucaria_forest", - "weight": 5 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 7, + "dictionary": [ + "FOREST", + "COLD", + "OVERWORLD" ] }, - "byg:aspen_forest": { - "climate": "WARM", - "dictionary": "FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:twilight_valley": { "hills": [ { - "data": "byg:aspen_forest_hills", - "weight": 6 + "weight": 7, + "data": "byg:twilight_valley_hills" }, { - "data": "byg:aspen_clearing", - "weight": 8 - }, + "weight": 3, + "data": "byg:fresh_water_lake" + } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 2, + "dictionary": [ + "COLD", + "WASTELAND", + "MAGICAL", + "OVERWORLD" + ] + }, + "byg:evergreen_taiga": { + "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 5 + "weight": 4, + "data": "byg:evergreen_hills" }, { - "data": "byg:flowering_grove", - "weight": 1 + "weight": 3, + "data": "byg:evergreen_clearing" }, { - "data": "byg:grove", - "weight": 7 + "weight": 3, + "data": "byg:evergreen_clearing" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COLD", + "weight": 6, + "dictionary": [ + "CONIFEROUS", + "FOREST", + "COLD", + "OVERWORLD" ] }, - "byg:autumnal_valley": { - "climate": "COOL", - "dictionary": "DRY,OVERWORLD,PLAINS", - "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:dunes": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 8 - }, - { - "data": "byg:cika_woods", - "weight": 5 + "weight": 10, + "data": "byg:oasis" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "HOT", + "weight": 6, + "dictionary": [ + "DRY", + "HOT", + "SANDY", + "OVERWORLD" ] }, - "byg:baobab_savanna": { - "climate": "DESERT", - "dictionary": "DRY,OVERWORLD,SAVANNA,SPARSE", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:grassland_plateau": { "hills": [ { - "data": "minecraft:savanna", - "weight": 5 + "weight": 10, + "data": "byg:wooded_grassland_plateau" } - ] - }, - "byg:bayou": { + ], + "beach": "byg:rocky_beach", + "river": "byg:grassland_plateau", "climate": "WARM", - "dictionary": "FOREST,OVERWORLD,SWAMP,WET", "weight": 5, - "river": "byg:bayou", - "beach": "byg:bayou", - "edge": "", - "hills": [] + "dictionary": [ + "PLAINS", + "OVERWORLD" + ] }, - "byg:blue_taiga": { + "byg:bluff_steeps": { + "hills": [ + { + "weight": 10, + "data": "byg:bluff_peaks" + } + ], + "beach": "byg:rocky_beach", + "river": "byg:bluff_steeps", "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "dictionary": [ + "MOUNTAIN", + "CONIFEROUS", + "COLD", + "OVERWORLD" + ] + }, + "byg:alps": { "hills": [ { - "data": "byg:blue_giant_taiga", - "weight": 2 - }, + "weight": 10, + "data": "byg:alpine_foothills" + } + ], + "edge": "byg:alpine_foothills", + "beach": "minecraft:beach", + "river": "byg:alps", + "climate": "COLD", + "weight": 5, + "dictionary": [ + "MOUNTAIN", + "COLD", + "SNOWY", + "OVERWORLD" + ] + }, + "byg:red_desert": { + "hills": [ { - "data": "byg:blue_taiga_hills", - "weight": 4 + "weight": 5, + "data": "byg:lush_red_desert" }, { - "data": "byg:fresh_water_lake", - "weight": 4 + "weight": 5, + "data": "byg:red_desert_dunes" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "HOT", + "weight": 2, + "dictionary": [ + "DRY", + "HOT", + "SANDY", + "OVERWORLD" ] }, - "byg:bluff_steeps": { - "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,MOUNTAIN,OVERWORLD", - "weight": 6, - "river": "byg:bluff_steeps", - "beach": "byg:rocky_beach", - "edge": "", + "byg:snowy_blue_taiga": { "hills": [ { - "data": "byg:bluff_peaks", - "weight": 10 + "weight": 8, + "data": "byg:snowy_blue_taiga_hills" + }, + { + "weight": 2, + "data": "byg:snowy_blue_giant_taiga" } + ], + "beach": "byg:snowy_rocky_black_beach", + "river": "minecraft:frozen_river", + "climate": "COLD", + "weight": 5, + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" ] }, - "byg:boreal_forest": { - "climate": "COOL", - "dictionary": "FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:tropical_fungal_forest": { "hills": [ { - "data": "byg:boreal_forest_hills", - "weight": 4 + "weight": 4, + "data": "byg:fungal_patch" }, { - "data": "byg:boreal_clearing", - "weight": 3 + "weight": 3, + "data": "byg:tropical_fungal_rainforest_hills" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 3, + "data": "byg:fresh_water_lake" } - ] - }, - "byg:canyons": { + ], + "beach": "minecraft:beach", + "river": "minecraft:river", "climate": "WARM", - "dictionary": "MOUNTAIN,OVERWORLD,PLATEAU", - "weight": 0, - "river": "byg:canyons", - "beach": "byg:canyon_edge", - "edge": "byg:canyon_edge", - "hills": [] + "weight": 3, + "dictionary": [ + "JUNGLE", + "HOT", + "DENSE", + "MAGICAL", + "OVERWORLD" + ] }, - "byg:cherry_blossom_forest": { - "climate": "WARM", - "dictionary": "FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:aspen_forest": { "hills": [ { - "data": "byg:cherry_blossom_clearing", - "weight": 8 + "weight": 6, + "data": "byg:aspen_forest_hills" }, { - "data": "byg:bamboo_forest", - "weight": 2 + "weight": 8, + "data": "byg:aspen_clearing" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 5, + "data": "byg:fresh_water_lake" }, { - "data": "byg:flowering_grove", - "weight": 1 + "weight": 1, + "data": "byg:flowering_grove" }, { - "data": "byg:grove", - "weight": 5 + "weight": 7, + "data": "byg:grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 6, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:cika_woods": { + "byg:dead_sea": { + "hills": [], + "beach": "minecraft:beach", + "river": "byg:dead_sea", + "climate": "HOT", + "weight": 2, + "dictionary": [ + "OCEAN", + "WASTELAND", + "SPOOKY", + "OVERWORLD" + ] + }, + "byg:dover_mountains": { + "hills": [], + "beach": "byg:white_beach", + "river": "byg:dover_mountains", "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "", + "weight": 3, + "dictionary": [ + "MOUNTAIN", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ] + }, + "byg:ancient_forest": { "hills": [ { - "data": "byg:cika_mountains", - "weight": 8 - }, - { - "data": "byg:fresh_water_lake", - "weight": 5 + "weight": 5, + "data": "byg:flowering_ancient_forest" }, { - "data": "byg:autumnal_valley", - "weight": 6 + "weight": 5, + "data": "byg:glowing_ancient_forest" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 1, + "dictionary": [ + "FOREST", + "MAGICAL", + "RARE", + "OVERWORLD" ] }, - "byg:cold_swamplands": { - "climate": "COOL", - "dictionary": "OVERWORLD,SWAMP", - "weight": 6, - "river": "byg:cold_swamplands", - "beach": "byg:cold_swamplands", - "edge": "", + "byg:sierra_valley": { "hills": [ { - "data": "byg:cold_swamplands", - "weight": 10 + "weight": 8, + "data": "byg:sierra_range" + }, + { + "weight": 2, + "data": "byg:fresh_water_lake" } + ], + "edge": "byg:sierra_range", + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "HOT", + "weight": 5, + "dictionary": [ + "DRY", + "HOT", + "PLAINS", + "OVERWORLD" ] }, - "byg:coniferous_forest": { - "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:seasonal_birch_forest": { "hills": [ { - "data": "byg:coniferous_clearing", - "weight": 4 - }, - { - "data": "byg:coniferous_forest_hills", - "weight": 3 + "weight": 7, + "data": "byg:seasonal_birch_forest_hills" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 7, + "dictionary": [ + "FOREST", + "COLD", + "OVERWORLD" ] }, - "byg:crag_gardens": { - "climate": "WARM", - "dictionary": "JUNGLE,MAGICAL,OVERWORLD,PLATEAU,RARE,WET", - "weight": 1, - "river": "byg:crag_gardens", + "byg:guiana_shield": { + "hills": [ + { + "weight": 8, + "data": "byg:guiana_clearing" + }, + { + "weight": 2, + "data": "byg:guiana_springs" + } + ], + "edge": "byg:guiana_clearing", "beach": "minecraft:beach", - "edge": "minecraft:river", - "hills": [] - }, - "byg:cypress_swamplands": { + "river": "byg:guiana_shield", "climate": "WARM", - "dictionary": "OVERWORLD,SWAMP", - "weight": 5, - "river": "byg:cypress_swamplands", - "beach": "byg:cypress_swamplands", - "edge": "", - "hills": [] - }, - "byg:dead_sea": { - "climate": "DESERT", - "dictionary": "OCEAN,OVERWORLD,SPOOKY,WASTELAND", - "weight": 2, - "river": "byg:dead_sea", - "beach": "minecraft:beach", - "edge": "", - "hills": [] + "weight": 3, + "dictionary": [ + "JUNGLE", + "HOT", + "DENSE", + "FOREST", + "MOUNTAIN", + "OVERWORLD" + ] }, - "byg:deciduous_forest": { - "climate": "WARM", - "dictionary": "FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:enchanted_forest": { "hills": [ { - "data": "byg:deciduous_forest_hills", - "weight": 5 - }, - { - "data": "byg:deciduous_clearing", - "weight": 8 + "weight": 2, + "data": "byg:fresh_water_lake" }, { - "data": "byg:fresh_water_lake", - "weight": 4 + "weight": 6, + "data": "byg:enchanted_forest_hills" }, { - "data": "byg:flowering_grove", - "weight": 1 + "weight": 10, + "data": "byg:enchanted_grove" }, { - "data": "byg:grove", - "weight": 7 + "weight": 2, + "data": "byg:flowering_enchanted_grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 1, + "dictionary": [ + "FOREST", + "RARE", + "MAGICAL", + "OVERWORLD" ] }, - "byg:dover_mountains": { - "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,MOUNTAIN,OVERWORLD", - "weight": 3, - "river": "byg:dover_mountains", - "beach": "byg:white_beach", - "edge": "", - "hills": [] - }, - "byg:dunes": { - "climate": "DESERT", - "dictionary": "DRY,HOT,OVERWORLD,SANDY", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:seasonal_taiga": { "hills": [ { - "data": "byg:oasis", - "weight": 10 + "weight": 8, + "data": "byg:seasonal_taiga_hills" + }, + { + "weight": 2, + "data": "byg:seasonal_giant_taiga" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 5, + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" ] }, - "byg:ebony_woods": { - "climate": "WARM", - "dictionary": "DENSE,FOREST,OVERWORLD", - "weight": 4, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:weeping_witch_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 3 - }, - { - "data": "byg:ebony_hills", - "weight": 6 + "weight": 3, + "data": "byg:pumpkin_forest" }, { - "data": "byg:flowering_grove", - "weight": 1 - }, - { - "data": "byg:grove", - "weight": 7 + "weight": 7, + "data": "byg:weeping_witch_clearing" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 1, + "dictionary": [ + "FOREST", + "COLD", + "MAGICAL", + "RARE", + "OVERWORLD" ] }, - "byg:enchanted_forest": { - "climate": "WARM", - "dictionary": "FOREST,MAGICAL,OVERWORLD,RARE", - "weight": 1, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:mojave_desert": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 2 - }, - { - "data": "byg:enchanted_forest_hills", - "weight": 6 - }, - { - "data": "byg:enchanted_grove", - "weight": 10 - }, - { - "data": "byg:flowering_enchanted_grove", - "weight": 2 + "weight": 10, + "data": "minecraft:desert" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "HOT", + "weight": 3, + "dictionary": [ + "DRY", + "HOT", + "SANDY", + "OVERWORLD" ] }, - "byg:evergreen_taiga": { - "climate": "ICY", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:cherry_blossom_forest": { "hills": [ { - "data": "byg:evergreen_hills", - "weight": 4 + "weight": 8, + "data": "byg:cherry_blossom_clearing" }, { - "data": "byg:evergreen_clearing", - "weight": 3 + "weight": 2, + "data": "byg:bamboo_forest" }, { - "data": "byg:evergreen_clearing", - "weight": 3 + "weight": 3, + "data": "byg:fresh_water_lake" + }, + { + "weight": 1, + "data": "byg:flowering_grove" + }, + { + "weight": 5, + "data": "byg:grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 6, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:glowshroom_bayou": { + "byg:canyons": { + "hills": [], + "edge": "byg:canyon_edge", + "beach": "byg:canyon_edge", + "river": "byg:canyons", "climate": "WARM", - "dictionary": "FOREST,MAGICAL,OVERWORLD,RARE,SWAMP,WET", - "weight": 1, - "river": "byg:glowshroom_bayou", - "beach": "byg:glowshroom_bayou", - "edge": "", - "hills": [] + "dictionary": [ + "OVERWORLD", + "MOUNTAIN", + "PLATEAU" + ] }, - "byg:grassland_plateau": { + "byg:glowshroom_bayou": { + "hills": [], + "beach": "byg:glowshroom_bayou", + "river": "byg:glowshroom_bayou", "climate": "WARM", - "dictionary": "OVERWORLD,PLAINS", - "weight": 5, - "river": "byg:grassland_plateau", - "beach": "byg:rocky_beach", - "edge": "", - "hills": [ - { - "data": "byg:wooded_grassland_plateau", - "weight": 10 - } + "weight": 1, + "dictionary": [ + "SWAMP", + "FOREST", + "WET", + "MAGICAL", + "RARE", + "OVERWORLD" ] }, - "byg:great_lakes": { - "climate": "COOL", - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,WATER", - "weight": 3, - "river": "byg:great_lakes", - "beach": "byg:great_lake_isles", - "edge": "", + "byg:autumnal_valley": { "hills": [ { - "data": "byg:great_lake_isles", - "weight": 3 + "weight": 8, + "data": "byg:fresh_water_lake" }, { - "data": "byg:great_lakes", - "weight": 7 + "weight": 5, + "data": "byg:cika_woods" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 5, + "dictionary": [ + "PLAINS", + "DRY", + "OVERWORLD" ] }, - "byg:guiana_shield": { - "climate": "WARM", - "dictionary": "DENSE,FOREST,HOT,JUNGLE,MOUNTAIN,OVERWORLD", - "weight": 3, - "river": "byg:guiana_shield", - "beach": "minecraft:beach", - "edge": "byg:guiana_clearing", + "byg:mangrove_marshes": { "hills": [ { - "data": "byg:guiana_clearing", - "weight": 8 - }, - { - "data": "byg:guiana_springs", - "weight": 2 + "weight": 10, + "data": "byg:coral_mangroves" } - ] - }, - "byg:jacaranda_forest": { + ], + "beach": "byg:mangrove_marshes", + "river": "byg:mangrove_marshes", "climate": "WARM", - "dictionary": "FOREST,OVERWORLD", "weight": 4, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "dictionary": [ + "SWAMP", + "FOREST", + "WET", + "DENSE", + "OVERWORLD" + ] + }, + "byg:seasonal_deciduous_forest": { "hills": [ { - "data": "byg:jacaranda_forest_hills", - "weight": 4 + "weight": 4, + "data": "byg:seasonal_deciduous_forest_hills" }, { - "data": "byg:jacaranda_clearing", - "weight": 3 + "weight": 4, + "data": "byg:seasonal_deciduous_clearing" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 2, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 6, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:lush_tundra": { - "climate": "ICY", - "dictionary": "COLD,LUSH,OVERWORLD,PLAINS", - "weight": 6, - "river": "minecraft:river", - "beach": "byg:basalt_barrera", - "edge": "", + "byg:amaranth_fields": { "hills": [ { - "data": "byg:frozen_lake", - "weight": 4 + "weight": 5, + "data": "byg:fresh_water_lake" }, { - "data": "byg:northern_forest", - "weight": 6 + "weight": 5, + "data": "byg:jacaranda_forest" } - ] - }, - "byg:mangrove_marshes": { + ], + "beach": "minecraft:beach", + "river": "minecraft:river", "climate": "WARM", - "dictionary": "DENSE,FOREST,OVERWORLD,SWAMP,WET", - "weight": 4, - "river": "byg:mangrove_marshes", - "beach": "byg:mangrove_marshes", - "edge": "", - "hills": [ - { - "data": "byg:coral_mangroves", - "weight": 10 - } + "weight": 2, + "dictionary": [ + "PLAINS", + "RARE", + "LUSH", + "OVERWORLD" ] }, - "byg:maple_taiga": { - "climate": "COOL", - "dictionary": "COLD,FOREST,OVERWORLD", - "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", - "hills": [] - }, - "byg:meadow": { - "climate": "WARM", - "dictionary": "LUSH,OVERWORLD,PLAINS", - "weight": 7, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:the_black_forest": { "hills": [ { - "data": "byg:flowering_meadow", - "weight": 6 + "weight": 3, + "data": "byg:black_forest_clearing" }, { - "data": "byg:wooded_meadow", - "weight": 5 + "weight": 3, + "data": "byg:black_forest_hills" }, { - "data": "byg:fresh_water_lake", - "weight": 4 - } - ] - }, - "byg:mojave_desert": { - "climate": "DESERT", - "dictionary": "DRY,HOT,OVERWORLD,SANDY", - "weight": 3, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", - "hills": [ + "weight": 2, + "data": "byg:forest_fault" + }, { - "data": "minecraft:desert", - "weight": 10 + "weight": 2, + "data": "byg:fresh_water_lake" } + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 4, + "dictionary": [ + "CONIFEROUS", + "COLD", + "FOREST", + "OVERWORLD" ] }, - "byg:orchard": { - "climate": "WARM", - "dictionary": "FOREST,LUSH,OVERWORLD,PLAINS", - "weight": 3, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:snowy_deciduous_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 4 + "weight": 4, + "data": "byg:snowy_deciduous_forest_hills" }, { - "data": "byg:flowering_grove", - "weight": 1 + "weight": 3, + "data": "byg:snowy_deciduous_clearing" }, { - "data": "byg:grove", - "weight": 6 + "weight": 3, + "data": "byg:frozen_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:frozen_river", + "climate": "COLD", + "weight": 6, + "dictionary": [ + "FOREST", + "SNOWY", + "OVERWORLD" ] }, - "byg:prairie": { - "climate": "WARM", - "dictionary": "DRY,OVERWORLD,PLAINS", - "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:stone_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 2 + "weight": 7, + "data": "byg:pointed_stone_forest" }, { - "data": "byg:prairie_clearing", - "weight": 8 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 1, + "dictionary": [ + "OVERWORLD", + "DENSE", + "PLATEAU" ] }, - "byg:red_desert": { - "climate": "DESERT", - "dictionary": "DRY,HOT,OVERWORLD,SANDY", - "weight": 2, - "river": "minecraft:river", + "byg:crag_gardens": { + "hills": [], + "edge": "minecraft:river", "beach": "minecraft:beach", - "edge": "", + "river": "byg:crag_gardens", + "climate": "WARM", + "weight": 1, + "dictionary": [ + "JUNGLE", + "WET", + "PLATEAU", + "RARE", + "MAGICAL", + "OVERWORLD" + ] + }, + "byg:prairie": { "hills": [ { - "data": "byg:lush_red_desert", - "weight": 5 + "weight": 2, + "data": "byg:fresh_water_lake" }, { - "data": "byg:red_desert_dunes", - "weight": 5 + "weight": 8, + "data": "byg:prairie_clearing" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 5, + "dictionary": [ + "PLAINS", + "DRY", + "OVERWORLD" ] }, - "byg:red_oak_forest": { - "climate": "WARM", - "dictionary": "FOREST,OVERWORLD", - "weight": 7, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:snowy_coniferous_forest": { "hills": [ { - "data": "byg:red_oak_forest_hills", - "weight": 7 + "weight": 4, + "data": "byg:snowy_coniferous_clearing" }, { - "data": "byg:fresh_water_lake", - "weight": 4 + "weight": 3, + "data": "byg:snowy_coniferous_forest_hills" }, { - "data": "byg:flowering_grove", - "weight": 1 + "weight": 3, + "data": "byg:frozen_lake" + } + ], + "beach": "byg:snowy_rocky_black_beach", + "river": "minecraft:frozen_river", + "climate": "COLD", + "weight": 4, + "dictionary": [ + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" + ] + }, + "byg:vibrant_swamplands": { + "hills": [], + "beach": "byg:vibrant_swamplands", + "river": "byg:vibrant_swamplands", + "climate": "COOL", + "weight": 6, + "dictionary": [ + "SWAMP", + "WET", + "LUSH", + "WATER", + "OVERWORLD" + ] + }, + "byg:araucaria_savanna": { + "hills": [ + { + "weight": 5, + "data": "byg:fresh_water_lake" }, { - "data": "byg:grove", - "weight": 6 + "weight": 5, + "data": "byg:araucaria_forest" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "HOT", + "weight": 2, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:red_rock_mountains": { - "climate": "DESERT", - "dictionary": "DRY,HOT,MOUNTAIN,OVERWORLD", - "weight": 4, - "river": "byg:red_rock_mountains", + "byg:baobab_savanna": { + "hills": [ + { + "weight": 5, + "data": "minecraft:savanna" + } + ], "beach": "minecraft:beach", - "edge": "byg:red_rock_lowlands", + "river": "minecraft:river", + "climate": "HOT", + "weight": 6, + "dictionary": [ + "SAVANNA", + "SPARSE", + "DRY", + "OVERWORLD" + ] + }, + "byg:maple_taiga": { + "hills": [], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 5, + "dictionary": [ + "FOREST", + "COLD", + "OVERWORLD" + ] + }, + "byg:lush_tundra": { "hills": [ { - "data": "byg:red_rock_highlands", - "weight": 4 - }, - { - "data": "byg:red_rock_lowlands", - "weight": 2 + "weight": 4, + "data": "byg:frozen_lake" }, { - "data": "byg:wooded_red_rock_mountains", - "weight": 4 + "weight": 6, + "data": "byg:northern_forest" } + ], + "beach": "byg:basalt_barrera", + "river": "minecraft:river", + "climate": "COLD", + "weight": 6, + "dictionary": [ + "PLAINS", + "COLD", + "LUSH", + "OVERWORLD" ] }, - "byg:redwood_tropics": { - "climate": "WARM", - "dictionary": "DENSE,FOREST,OVERWORLD,RARE", - "weight": 1, - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "", + "byg:snowy_evergreen_taiga": { "hills": [ { - "data": "byg:redwood_clearing", - "weight": 5 + "weight": 4, + "data": "byg:snowy_evergreen_clearing" }, { - "data": "byg:redwood_mountains", - "weight": 3 + "weight": 3, + "data": "byg:snowy_evergreen_hills" }, { - "data": "byg:fresh_water_lake", - "weight": 2 + "weight": 3, + "data": "byg:frozen_lake" } + ], + "beach": "byg:snowy_rocky_black_beach", + "river": "minecraft:frozen_river", + "climate": "COLD", + "weight": 6, + "dictionary": [ + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" ] }, - "byg:rose_fields": { + "byg:bayou": { + "hills": [], + "beach": "byg:bayou", + "river": "byg:bayou", "climate": "WARM", - "dictionary": "LUSH,OVERWORLD,PLAINS,RARE", - "weight": 2, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "weight": 5, + "dictionary": [ + "SWAMP", + "FOREST", + "WET", + "OVERWORLD" + ] + }, + "byg:rose_fields": { "hills": [ { - "data": "byg:red_spruce_taiga", - "weight": 7 + "weight": 7, + "data": "byg:red_spruce_taiga" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 2, + "dictionary": [ + "OVERWORLD", + "PLAINS", + "RARE", + "LUSH" ] }, - "byg:seasonal_birch_forest": { - "climate": "COOL", - "dictionary": "COLD,FOREST,OVERWORLD", - "weight": 7, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:woodlands": { "hills": [ { - "data": "byg:seasonal_birch_forest_hills", - "weight": 7 + "weight": 7, + "data": "byg:fresh_water_lake" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 1, + "data": "byg:flowering_grove" + }, + { + "weight": 8, + "data": "byg:grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 4, + "dictionary": [ + "FOREST", + "DENSE", + "MAGICAL", + "OVERWORLD" ] }, - "byg:seasonal_deciduous_forest": { - "climate": "COOL", - "dictionary": "FOREST,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:ebony_woods": { "hills": [ { - "data": "byg:seasonal_deciduous_forest_hills", - "weight": 4 + "weight": 3, + "data": "byg:fresh_water_lake" }, { - "data": "byg:seasonal_deciduous_clearing", - "weight": 4 + "weight": 6, + "data": "byg:ebony_hills" }, { - "data": "byg:fresh_water_lake", - "weight": 2 + "weight": 1, + "data": "byg:flowering_grove" + }, + { + "weight": 7, + "data": "byg:grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 4, + "dictionary": [ + "FOREST", + "DENSE", + "OVERWORLD" ] }, - "byg:seasonal_forest": { - "climate": "COOL", - "dictionary": "COLD,FOREST,OVERWORLD", - "weight": 7, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:red_rock_mountains": { "hills": [ { - "data": "byg:seasonal_forest", - "weight": 7 + "weight": 4, + "data": "byg:red_rock_highlands" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 2, + "data": "byg:red_rock_lowlands" + }, + { + "weight": 4, + "data": "byg:wooded_red_rock_mountains" } + ], + "edge": "byg:red_rock_lowlands", + "beach": "minecraft:beach", + "river": "byg:red_rock_mountains", + "climate": "HOT", + "weight": 4, + "dictionary": [ + "DRY", + "HOT", + "MOUNTAIN", + "OVERWORLD" ] }, - "byg:seasonal_taiga": { - "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:red_oak_forest": { "hills": [ { - "data": "byg:seasonal_taiga_hills", - "weight": 8 + "weight": 7, + "data": "byg:red_oak_forest_hills" + }, + { + "weight": 4, + "data": "byg:fresh_water_lake" + }, + { + "weight": 1, + "data": "byg:flowering_grove" }, { - "data": "byg:seasonal_giant_taiga", - "weight": 2 + "weight": 6, + "data": "byg:grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 7, + "dictionary": [ + "FOREST", + "OVERWORLD" + ] + }, + "byg:cypress_swamplands": { + "hills": [], + "beach": "byg:cypress_swamplands", + "river": "byg:cypress_swamplands", + "climate": "WARM", + "weight": 5, + "dictionary": [ + "SWAMP", + "OVERWORLD" ] }, "byg:shattered_glacier": { - "climate": "ICY", - "dictionary": "OVERWORLD,RARE,SNOWY", - "weight": 2, - "river": "byg:shattered_glacier", + "hills": [], "beach": "byg:basalt_barrera", - "edge": "", - "hills": [] + "river": "byg:shattered_glacier", + "climate": "COLD", + "weight": 2, + "dictionary": [ + "SNOWY", + "OVERWORLD", + "RARE" + ] }, - "byg:shrublands": { - "climate": "DESERT", - "dictionary": "DRY,OVERWORLD,PLAINS,SPARSE", - "weight": 6, - "river": "byg:shrublands", - "beach": "minecraft:beach", - "edge": "", + "byg:skyris_highlands": { "hills": [ { - "data": "byg:polluted_lake", - "weight": 3 + "weight": 4, + "data": "byg:skyris_highlands_clearing" }, { - "data": "byg:shrublands", - "weight": 7 - } - ] - }, - "byg:sierra_valley": { - "climate": "DESERT", - "dictionary": "DRY,HOT,OVERWORLD,PLAINS", - "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "byg:sierra_range", - "hills": [ - { - "data": "byg:sierra_range", - "weight": 8 + "weight": 5, + "data": "byg:skyris_peaks" }, { - "data": "byg:fresh_water_lake", - "weight": 2 + "weight": 1, + "data": "byg:skyris_steeps" } - ] - }, - "byg:skyris_highlands": { + ], + "edge": "byg:skyris_steeps", + "beach": "minecraft:beach", + "river": "byg:skyris_highlands", "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,MOUNTAIN,OVERWORLD", "weight": 2, - "river": "byg:skyris_highlands", - "beach": "minecraft:beach", - "edge": "byg:skyris_steeps", + "dictionary": [ + "CONIFEROUS", + "COLD", + "MOUNTAIN", + "OVERWORLD" + ] + }, + "byg:great_lakes": { "hills": [ { - "data": "byg:skyris_highlands_clearing", - "weight": 4 - }, - { - "data": "byg:skyris_peaks", - "weight": 5 + "weight": 3, + "data": "byg:great_lake_isles" }, { - "data": "byg:skyris_steeps", - "weight": 1 + "weight": 7, + "data": "byg:great_lakes" } + ], + "beach": "byg:great_lake_isles", + "river": "byg:great_lakes", + "climate": "COOL", + "weight": 3, + "dictionary": [ + "FOREST", + "WATER", + "CONIFEROUS", + "OVERWORLD" ] }, - "byg:snowy_blue_taiga": { - "climate": "ICY", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "weight": 5, - "river": "minecraft:frozen_river", - "beach": "byg:snowy_rocky_black_beach", - "edge": "", + "byg:tropical_rainforest": { "hills": [ { - "data": "byg:snowy_blue_taiga_hills", - "weight": 8 + "weight": 7, + "data": "byg:tropical_rainforest_hills" }, { - "data": "byg:snowy_blue_giant_taiga", - "weight": 2 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 6, + "dictionary": [ + "JUNGLE", + "HOT", + "DENSE", + "OVERWORLD" ] }, - "byg:snowy_coniferous_forest": { - "climate": "ICY", - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,SNOWY", - "weight": 4, - "river": "minecraft:frozen_river", - "beach": "byg:snowy_rocky_black_beach", - "edge": "", + "byg:boreal_forest": { "hills": [ { - "data": "byg:snowy_coniferous_clearing", - "weight": 4 + "weight": 4, + "data": "byg:boreal_forest_hills" }, { - "data": "byg:snowy_coniferous_forest_hills", - "weight": 3 + "weight": 3, + "data": "byg:boreal_clearing" }, { - "data": "byg:frozen_lake", - "weight": 3 + "weight": 3, + "data": "byg:fresh_water_lake" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 6, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:snowy_deciduous_forest": { - "climate": "ICY", - "dictionary": "FOREST,OVERWORLD,SNOWY", - "weight": 6, - "river": "minecraft:frozen_river", - "beach": "minecraft:beach", - "edge": "", + "byg:deciduous_forest": { "hills": [ { - "data": "byg:snowy_deciduous_forest_hills", - "weight": 4 + "weight": 5, + "data": "byg:deciduous_forest_hills" }, { - "data": "byg:snowy_deciduous_clearing", - "weight": 3 + "weight": 8, + "data": "byg:deciduous_clearing" }, { - "data": "byg:frozen_lake", - "weight": 3 + "weight": 4, + "data": "byg:fresh_water_lake" + }, + { + "weight": 1, + "data": "byg:flowering_grove" + }, + { + "weight": 7, + "data": "byg:grove" } + ], + "beach": "minecraft:beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 6, + "dictionary": [ + "FOREST", + "OVERWORLD" ] }, - "byg:snowy_evergreen_taiga": { - "climate": "ICY", - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,SNOWY", - "weight": 6, - "river": "minecraft:frozen_river", - "beach": "byg:snowy_rocky_black_beach", - "edge": "", + "byg:cika_woods": { "hills": [ { - "data": "byg:snowy_evergreen_clearing", - "weight": 4 + "weight": 8, + "data": "byg:cika_mountains" }, { - "data": "byg:snowy_evergreen_hills", - "weight": 3 + "weight": 5, + "data": "byg:fresh_water_lake" }, { - "data": "byg:frozen_lake", - "weight": 3 + "weight": 6, + "data": "byg:autumnal_valley" } + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river", + "climate": "COOL", + "weight": 6, + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" ] }, - "byg:stone_forest": { - "climate": "WARM", - "dictionary": "DENSE,OVERWORLD,PLATEAU", - "weight": 1, - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "", + "byg:cold_swamplands": { "hills": [ { - "data": "byg:pointed_stone_forest", - "weight": 7 - }, - { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 10, + "data": "byg:cold_swamplands" } + ], + "beach": "byg:cold_swamplands", + "river": "byg:cold_swamplands", + "climate": "COOL", + "weight": 6, + "dictionary": [ + "SWAMP", + "OVERWORLD" ] }, - "byg:the_black_forest": { - "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "weight": 4, - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "", + "byg:orchard": { "hills": [ { - "data": "byg:black_forest_clearing", - "weight": 3 - }, - { - "data": "byg:black_forest_hills", - "weight": 3 + "weight": 4, + "data": "byg:fresh_water_lake" }, { - "data": "byg:forest_fault", - "weight": 2 + "weight": 1, + "data": "byg:flowering_grove" }, { - "data": "byg:fresh_water_lake", - "weight": 2 + "weight": 6, + "data": "byg:grove" } - ] - }, - "byg:tropical_fungal_forest": { + ], + "beach": "minecraft:beach", + "river": "minecraft:river", "climate": "WARM", - "dictionary": "DENSE,HOT,JUNGLE,MAGICAL,OVERWORLD", "weight": 3, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "dictionary": [ + "PLAINS", + "LUSH", + "FOREST", + "OVERWORLD" + ] + }, + "byg:redwood_tropics": { "hills": [ { - "data": "byg:fungal_patch", - "weight": 4 + "weight": 5, + "data": "byg:redwood_clearing" }, { - "data": "byg:tropical_fungal_rainforest_hills", - "weight": 3 + "weight": 3, + "data": "byg:redwood_mountains" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 2, + "data": "byg:fresh_water_lake" } + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river", + "climate": "WARM", + "weight": 1, + "dictionary": [ + "FOREST", + "DENSE", + "RARE", + "OVERWORLD" ] }, - "byg:tropical_rainforest": { - "climate": "WARM", - "dictionary": "DENSE,HOT,JUNGLE,OVERWORLD", - "weight": 6, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:blue_taiga": { "hills": [ { - "data": "byg:tropical_rainforest_hills", - "weight": 7 + "weight": 2, + "data": "byg:blue_giant_taiga" }, { - "data": "byg:fresh_water_lake", - "weight": 3 - } - ] - }, - "byg:twilight_valley": { - "climate": "COOL", - "dictionary": "COLD,MAGICAL,OVERWORLD,WASTELAND", - "weight": 2, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", - "hills": [ - { - "data": "byg:twilight_valley_hills", - "weight": 7 + "weight": 4, + "data": "byg:blue_taiga_hills" }, { - "data": "byg:fresh_water_lake", - "weight": 3 + "weight": 4, + "data": "byg:fresh_water_lake" } - ] - }, - "byg:vibrant_swamplands": { + ], + "beach": "minecraft:beach", + "river": "minecraft:river", "climate": "COOL", - "dictionary": "LUSH,OVERWORLD,SWAMP,WATER,WET", "weight": 6, - "river": "byg:vibrant_swamplands", - "beach": "byg:vibrant_swamplands", - "edge": "", - "hills": [] + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ] }, - "byg:weeping_witch_forest": { - "climate": "COOL", - "dictionary": "COLD,FOREST,MAGICAL,OVERWORLD,RARE", - "weight": 1, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:shrublands": { "hills": [ { - "data": "byg:pumpkin_forest", - "weight": 3 + "weight": 3, + "data": "byg:polluted_lake" }, { - "data": "byg:weeping_witch_clearing", - "weight": 7 + "weight": 7, + "data": "byg:shrublands" } + ], + "beach": "minecraft:beach", + "river": "byg:shrublands", + "climate": "HOT", + "weight": 6, + "dictionary": [ + "PLAINS", + "DRY", + "SPARSE", + "OVERWORLD" ] }, - "byg:woodlands": { - "climate": "WARM", - "dictionary": "DENSE,FOREST,MAGICAL,OVERWORLD", - "weight": 4, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", + "byg:coniferous_forest": { "hills": [ { - "data": "byg:fresh_water_lake", - "weight": 7 + "weight": 4, + "data": "byg:coniferous_clearing" }, { - "data": "byg:flowering_grove", - "weight": 1 + "weight": 3, + "data": "byg:coniferous_forest_hills" }, { - "data": "byg:grove", - "weight": 8 + "weight": 3, + "data": "byg:fresh_water_lake" } - ] - }, - "byg:zelkova_forest": { + ], + "beach": "minecraft:beach", + "river": "minecraft:river", "climate": "COOL", - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", "weight": 5, - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "", - "hills": [ - { - "data": "byg:zelkova_clearing", - "weight": 4 - }, - { - "data": "byg:zelkova_forest_hills", - "weight": 3 - }, - { - "data": "byg:fresh_water_lake", - "weight": 3 - } + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" ] } } diff --git a/config/byg/byg-end-biomes.json b/config/byg/byg-end-biomes.json index f9e0fde6ff..ac6e2fa989 100644 --- a/config/byg/byg-end-biomes.json +++ b/config/byg/byg-end-biomes.json @@ -1,211 +1,317 @@ { "biomes": { - "betterendforge:amber_land": { - "dictionary": "END", + "betterendforge:megalake_grove": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:blossoming_spires": { - "dictionary": "END", + "betterendforge:sulphur_springs": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:chorus_forest": { - "dictionary": "END", + "minecraft:end_highlands": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:crystal_mountains": { - "dictionary": "END", + "byg:bulbis_gardens_edge": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:dragon_graveyards": { - "dictionary": "END", + "byg:cryptic_wastes": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:dry_shrubland": { - "dictionary": "END", + "byg:imparius_clearing": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:dust_wastelands": { - "dictionary": "END", + "betterendforge:umbrella_jungle": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:foggy_mushroomland": { - "dictionary": "END", + "byg:ethereal_islands": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], + "edge": "byg:ethereal_clearing", + "hills": [ + { + "weight": 10, + "data": "byg:ethereal_forest" + }, + { + "weight": 5, + "data": "byg:ethereal_clearing" + } + ] + }, + "betterendforge:dragon_graveyards": { + "weight": 5, + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:glowing_grasslands": { - "dictionary": "END", + "byg:purpur_peaks": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:ice_starfield": { - "dictionary": "END", + "minecraft:end_barrens": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:lantern_woods": { - "dictionary": "END", + "betterendforge:glowing_grasslands": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:megalake": { - "dictionary": "END", + "byg:shattered_viscal_isles": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:megalake_grove": { - "dictionary": "END", + "minecraft:the_end": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:neon_oasis": { - "dictionary": "END", + "byg:shulkren_forest": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:painted_mountains": { - "dictionary": "END", + "byg:ethereal_clearing": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:shadow_forest": { - "dictionary": "END", + "byg:shattered_desert_isles": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:sulphur_springs": { - "dictionary": "END", + "betterendforge:lantern_woods": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "betterendforge:umbrella_jungle": { - "dictionary": "END", + "byg:ethereal_forest": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, + "betterendforge:shadow_forest": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, "byg:bulbis_gardens": { - "dictionary": "END", "weight": 5, + "dictionary": [ + "END" + ], "edge": "byg:bulbis_gardens_edge", "hills": [] }, - "byg:cryptic_wastes": { - "dictionary": "END", + "minecraft:end_midlands": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "byg:ethereal_islands": { - "dictionary": "END", + "betterendforge:blossoming_spires": { "weight": 5, - "edge": "byg:ethereal_clearing", - "hills": [ - { - "data": "byg:ethereal_forest", - "weight": 10 - }, - { - "data": "byg:ethereal_clearing", - "weight": 5 - } - ] + "dictionary": [ + "END" + ], + "hills": [] + }, + "betterendforge:painted_mountains": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, + "betterendforge:crystal_mountains": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, + "betterendforge:neon_oasis": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] }, "byg:imparius_grove": { - "dictionary": "END", "weight": 5, + "dictionary": [ + "END" + ], "edge": "byg:imparius_clearing", "hills": [ { - "data": "byg:imparius_clearing", - "weight": 10 + "weight": 10, + "data": "byg:imparius_clearing" } ] }, + "betterendforge:foggy_mushroomland": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, + "byg:viscal_isles": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, + "byg:shattered_desert": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, "byg:ivis_fields": { - "dictionary": "END", "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "byg:nightshade_forest": { - "dictionary": "END", + "betterendforge:dust_wastelands": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "byg:purpur_peaks": { - "dictionary": "END", + "betterendforge:chorus_forest": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "byg:shattered_desert": { - "dictionary": "END", + "betterendforge:dry_shrubland": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "byg:shulkren_forest": { - "dictionary": "END", + "betterendforge:ice_starfield": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "minecraft:end_highlands": { - "dictionary": "END", + "betterendforge:amber_land": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] }, - "minecraft:end_midlands": { - "dictionary": "END", + "betterendforge:megalake": { + "weight": 5, + "dictionary": [ + "END" + ], + "hills": [] + }, + "byg:nightshade_forest": { "weight": 5, - "edge": "", + "dictionary": [ + "END" + ], "hills": [] } }, "void-biomes": { - "byg:shattered_desert_isles": { - "dictionary": "END,VOID", - "weight": 5, - "edge": "", - "hills": [] - }, "byg:viscal_isles": { - "dictionary": "END,VOID", "weight": 5, - "edge": "", + "dictionary": [ + "END", + "VOID" + ], "hills": [ { - "data": "byg:shattered_viscal_isles", - "weight": 10 + "weight": 10, + "data": "byg:shattered_viscal_isles" } ] + }, + "byg:shattered_desert_isles": { + "weight": 5, + "dictionary": [ + "END", + "VOID" + ], + "hills": [] + }, + "minecraft:small_end_islands": { + "weight": 5, + "dictionary": [ + "VOID" + ], + "hills": [] } } } \ No newline at end of file diff --git a/config/byg/byg-end-sub-biomes.json b/config/byg/byg-end-sub-biomes.json index 9a3332bcfa..d2daf86ade 100644 --- a/config/byg/byg-end-sub-biomes.json +++ b/config/byg/byg-end-sub-biomes.json @@ -1,26 +1,32 @@ { "biomes": { - "byg:bulbis_gardens_edge": { - "dictionary": "END", - "edge": "" - }, - "byg:ethereal_forest": { - "dictionary": "END", - "edge": "" - }, "byg:ethereal_clearing": { - "dictionary": "END", - "edge": "" + "dictionary": [ + "END" + ] + }, + "byg:bulbis_gardens_edge": { + "dictionary": [ + "END" + ] }, "byg:imparius_clearing": { - "dictionary": "END", - "edge": "" + "dictionary": [ + "END" + ] + }, + "byg:ethereal_forest": { + "dictionary": [ + "END" + ] } }, "void-biomes": { "byg:shattered_viscal_isles": { - "dictionary": "END,VOID", - "edge": "" + "dictionary": [ + "END", + "VOID" + ] } } } \ No newline at end of file diff --git a/config/byg/byg-sub-biomes.json b/config/byg/byg-sub-biomes.json index 506d34b2e8..3d0ec6f4b9 100644 --- a/config/byg/byg-sub-biomes.json +++ b/config/byg/byg-sub-biomes.json @@ -1,556 +1,896 @@ { - "sub-biomes": { - "byg:alpine_foothills": { - "dictionary": "COLD,HILLS,OVERWORLD,SNOWY", - "river": "byg:alpine_foothills", - "beach": "minecraft:beach", - "edge": "" + "biomes": { + "byg:black_forest_clearing": { + "dictionary": [ + "OVERWORLD", + "FOREST", + "CONIFEROUS", + "COLD" + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river" }, - "byg:araucaria_forest": { - "dictionary": "DENSE,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:blue_taiga_hills": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "HILLS", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:aspen_clearing": { - "dictionary": "FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:enchanted_grove": { + "dictionary": [ + "PLAINS", + "LUSH", + "MAGICAL", + "RARE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:aspen_forest_hills": { - "dictionary": "FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:snowy_coniferous_clearing": { + "dictionary": [ + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "byg:snowy_black_beach", + "river": "minecraft:frozen_river" }, - "byg:bamboo_forest": { - "dictionary": "DENSE,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:evergreen_hills": { + "dictionary": [ + "HILLS", + "CONIFEROUS", + "FOREST", + "COLD", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" - }, - "byg:basalt_barrera": { - "dictionary": "BEACH,OVERWORLD", - "river": "minecraft:river", - "beach": "", - "edge": "" + "river": "minecraft:river" }, - "byg:black_forest_clearing": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "" + "byg:aspen_clearing": { + "dictionary": [ + "OVERWORLD", + "FOREST" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:black_forest_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "" + "byg:coniferous_forest_hills": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "FOREST", + "OVERWORLD", + "HILLS" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:blue_giant_taiga": { - "dictionary": "OVERWORLD,RARE", - "river": "minecraft:river", + "byg:twilight_valley_hills": { + "dictionary": [ + "HILLS", + "COLD", + "WASTELAND", + "MAGICAL", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:blue_taiga_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:deciduous_clearing": { + "dictionary": [ + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:bluff_peaks": { - "dictionary": "COLD,MOUNTAIN,OVERWORLD,SNOWY", - "river": "minecraft:river", + "byg:redwood_mountains": { + "dictionary": [ + "DRY", + "HOT", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "byg:rocky_beach", - "edge": "" + "river": "minecraft:river" }, - "byg:bog": { - "dictionary": "OVERWORLD,SWAMP,WATER,WET", - "river": "byg:bog", - "beach": "byg:bog", - "edge": "" - }, - "byg:boreal_clearing": { - "dictionary": "CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:great_lake_isles": { + "dictionary": [ + "OVERWORLD", + "CONIFEROUS" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:boreal_forest_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:marshlands": { + "dictionary": [ + "SWAMP", + "WET", + "WATER", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:marshlands" }, - "byg:canyon_edge": { - "dictionary": "OVERWORLD,WATER,WET", - "river": "byg:canyon_edge", + "byg:red_oak_forest_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:cherry_blossom_clearing": { - "dictionary": "FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:sierra_range": { + "dictionary": [ + "DRY", + "HOT", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:cika_mountains": { - "dictionary": "COLD,CONIFEROUS,FOREST,MOUNTAIN,OVERWORLD", - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "" - }, - "byg:coniferous_clearing": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:weeping_witch_clearing": { + "dictionary": [ + "FOREST", + "COLD", + "MAGICAL", + "RARE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:coniferous_forest_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:rainbow_beach": { + "dictionary": [ + "OVERWORLD", + "BEACH" + ], + "river": "minecraft:river" }, - "byg:coral_mangroves": { - "dictionary": "OVERWORLD,SWAMP,WATER,WET", - "river": "byg:coral_mangroves", - "beach": "byg:coral_mangroves", - "edge": "" + "byg:snowy_rocky_black_beach": { + "dictionary": [ + "OVERWORLD", + "BEACH", + "SNOWY" + ], + "river": "minecraft:frozen_river" }, - "byg:deciduous_clearing": { - "dictionary": "FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:bamboo_forest": { + "dictionary": [ + "OVERWORLD", + "FOREST", + "DENSE" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:deciduous_forest_hills": { - "dictionary": "FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:prairie_clearing": { + "dictionary": [ + "PLAINS", + "DRY", + "SPARSE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:dummy": { - "dictionary": "OVERWORLD", - "river": "minecraft:river", + "byg:wooded_meadow": { + "dictionary": [ + "PLAINS", + "LUSH", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:ebony_hills": { - "dictionary": "DENSE,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:flowering_meadow": { + "dictionary": [ + "PLAINS", + "LUSH", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:enchanted_forest_hills": { - "dictionary": "FOREST,HILLS,MAGICAL,OVERWORLD,RARE", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:snowy_blue_taiga_hills": { + "dictionary": [ + "FOREST", + "COLD", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "minecraft:snowy_beach", + "river": "minecraft:frozen_river" }, - "byg:enchanted_grove": { - "dictionary": "LUSH,MAGICAL,OVERWORLD,PLAINS,RARE", - "river": "minecraft:river", + "byg:wooded_red_rock_mountains": { + "dictionary": [ + "DRY", + "HOT", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:evergreen_clearing": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:skyris_peaks": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:skyris_peaks" }, - "byg:evergreen_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:flowering_enchanted_grove": { + "dictionary": [ + "PLAINS", + "LUSH", + "MAGICAL", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:flowering_ancient_forest": { - "dictionary": "DENSE,FOREST,MAGICAL,OVERWORLD,RARE", - "river": "minecraft:river", + "byg:alpine_foothills": { + "dictionary": [ + "OVERWORLD", + "HILLS", + "COLD", + "SNOWY" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:alpine_foothills" }, - "byg:flowering_enchanted_grove": { - "dictionary": "LUSH,MAGICAL,OVERWORLD,PLAINS", - "river": "minecraft:river", + "byg:deciduous_forest_hills": { + "dictionary": [ + "FOREST", + "OVERWORLD", + "HILLS" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:flowering_grove": { - "dictionary": "LUSH,OVERWORLD,PLAINS", - "river": "minecraft:river", + "byg:oasis": { + "dictionary": [ + "WET", + "WATER", + "SANDY", + "HOT", + "LUSH", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:oasis" }, - "byg:flowering_meadow": { - "dictionary": "LUSH,OVERWORLD,PLAINS", - "river": "minecraft:river", + "byg:flowering_ancient_forest": { + "dictionary": [ + "FOREST", + "MAGICAL", + "DENSE", + "RARE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" + }, + "byg:coral_mangroves": { + "dictionary": [ + "OVERWORLD", + "SWAMP", + "WATER", + "WET" + ], + "beach": "byg:coral_mangroves", + "river": "byg:coral_mangroves" }, "byg:forest_fault": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD,RARE", - "river": "minecraft:river", + "dictionary": [ + "CONIFEROUS", + "COLD", + "FOREST", + "OVERWORLD", + "RARE" + ], "beach": "byg:rocky_beach", - "edge": "" + "river": "minecraft:river" }, - "byg:fresh_water_lake": { - "dictionary": "OVERWORLD,WATER,WET", - "river": "byg:fresh_water_lake", - "beach": "minecraft:beach", - "edge": "" + "byg:tropical_islands": { + "dictionary": [ + "OVERWORLD" + ], + "beach": "byg:rainbow_beach", + "river": "byg:tropical_islands" }, - "byg:frozen_lake": { - "dictionary": "OVERWORLD,SNOWY,WATER,WET", - "river": "byg:frozen_lake", + "byg:cherry_blossom_clearing": { + "dictionary": [ + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:fungal_patch": { - "dictionary": "DENSE,HOT,JUNGLE,MAGICAL,OVERWORLD", - "river": "minecraft:river", + "byg:enchanted_forest_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "RARE", + "MAGICAL", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:glowing_ancient_forest": { - "dictionary": "DENSE,FOREST,MAGICAL,OVERWORLD,RARE", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:snowy_deciduous_forest_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "SNOWY", + "OVERWORLD" + ], + "beach": "minecraft:snowy_beach", + "river": "minecraft:frozen_river" }, - "byg:great_lake_isles": { - "dictionary": "CONIFEROUS,OVERWORLD", - "river": "minecraft:river", + "byg:zelkova_forest_hills": { + "dictionary": [ + "HILLS", + "CONIFEROUS", + "COLD", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:grove": { - "dictionary": "LUSH,OVERWORLD,PLAINS", - "river": "minecraft:river", + "byg:frozen_lake": { + "dictionary": [ + "SNOWY", + "WET", + "WATER", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:frozen_lake" }, - "byg:guiana_clearing": { - "dictionary": "FOREST,JUNGLE,OVERWORLD", - "river": "minecraft:river", + "byg:grove": { + "dictionary": [ + "PLAINS", + "LUSH", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:guiana_springs": { - "dictionary": "FOREST,JUNGLE,OVERWORLD", - "river": "minecraft:river", + "byg:ebony_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "DENSE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:jacaranda_clearing": { - "dictionary": "FOREST,JUNGLE,OVERWORLD", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:white_beach": { + "dictionary": [ + "OVERWORLD", + "BEACH" + ], + "river": "minecraft:river" }, - "byg:jacaranda_forest_hills": { - "dictionary": "DENSE,FOREST,HILLS,HOT,JUNGLE,OVERWORLD", - "river": "minecraft:river", + "byg:tropical_rainforest_hills": { + "dictionary": [ + "HILLS", + "JUNGLE", + "HOT", + "DENSE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:lush_red_desert": { - "dictionary": "DRY,HOT,OVERWORLD,SANDY", - "river": "minecraft:river", + "byg:guiana_clearing": { + "dictionary": [ + "FOREST", + "JUNGLE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:maple_hills": { - "dictionary": "COLD,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:boreal_clearing": { + "dictionary": [ + "FOREST", + "CONIFEROUS", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:marshlands": { - "dictionary": "OVERWORLD,SWAMP,WATER,WET", - "river": "byg:marshlands", + "byg:seasonal_forest_hills": { + "dictionary": [ + "FOREST", + "COLD", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:northern_forest": { - "dictionary": "COLD,FOREST,LUSH,OVERWORLD,SNOWY", - "river": "minecraft:river", + "byg:fresh_water_lake": { + "dictionary": [ + "WET", + "WATER", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:fresh_water_lake" }, - "byg:oasis": { - "dictionary": "HOT,LUSH,OVERWORLD,SANDY,WATER,WET", - "river": "byg:oasis", + "byg:coniferous_clearing": { + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, "byg:pointed_stone_forest": { - "dictionary": "FOREST,MOUNTAIN,OVERWORLD,PLATEAU", - "river": "minecraft:river", + "dictionary": [ + "PLATEAU", + "MOUNTAIN", + "FOREST", + "OVERWORLD" + ], "beach": "byg:rocky_beach", - "edge": "" + "river": "minecraft:river" }, - "byg:polluted_lake": { - "dictionary": "OVERWORLD,WASTELAND,WATER,WET", - "river": "byg:polluted_lake", + "byg:red_rock_highlands": { + "dictionary": [ + "MOUNTAIN", + "OVERWORLD", + "HOT" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:prairie_clearing": { - "dictionary": "DRY,OVERWORLD,PLAINS,SPARSE", - "river": "minecraft:river", + "byg:glowing_ancient_forest": { + "dictionary": [ + "FOREST", + "MAGICAL", + "DENSE", + "RARE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:pumpkin_forest": { - "dictionary": "COLD,FOREST,MAGICAL,OVERWORLD,RARE", - "river": "minecraft:river", + "byg:seasonal_taiga_hills": { + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" - }, - "byg:rainbow_beach": { - "dictionary": "BEACH,OVERWORLD", - "river": "minecraft:river", - "beach": "", - "edge": "" + "river": "minecraft:river" }, "byg:red_desert_dunes": { - "dictionary": "HILLS,HOT,OVERWORLD,SANDY,WASTELAND", - "river": "byg:red_desert_dunes", + "dictionary": [ + "SANDY", + "WASTELAND", + "HOT", + "OVERWORLD", + "HILLS" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:red_desert_dunes" }, - "byg:red_oak_forest_hills": { - "dictionary": "FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:boreal_forest_hills": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "FOREST", + "HILLS", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:red_rock_highlands": { - "dictionary": "HOT,MOUNTAIN,OVERWORLD", - "river": "minecraft:river", + "byg:blue_giant_taiga": { + "dictionary": [ + "RARE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:red_rock_lowlands": { - "dictionary": "HOT,OVERWORLD", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:black_forest_hills": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "FOREST", + "HILLS", + "OVERWORLD" + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river" }, - "byg:red_spruce_taiga": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:tropical_fungal_rainforest_hills": { + "dictionary": [ + "HILLS", + "JUNGLE", + "HOT", + "DENSE", + "MAGICAL", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:redwood_clearing": { - "dictionary": "FOREST,OVERWORLD,SPARSE", - "river": "minecraft:river", + "byg:cika_mountains": { + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "byg:rocky_beach", - "edge": "" + "river": "minecraft:river" }, - "byg:redwood_mountains": { - "dictionary": "DRY,HOT,MOUNTAIN,OVERWORLD", - "river": "minecraft:river", - "beach": "byg:rocky_beach", - "edge": "" + "byg:snowy_deciduous_clearing": { + "dictionary": [ + "FOREST", + "SNOWY", + "OVERWORLD" + ], + "beach": "minecraft:snowy_beach", + "river": "minecraft:frozen_river" }, - "byg:rocky_beach": { - "dictionary": "OVERWORLD", - "river": "minecraft:river", + "byg:lush_red_desert": { + "dictionary": [ + "DRY", + "HOT", + "SANDY", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:seasonal_birch_forest_hills": { - "dictionary": "COLD,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:skyris_highlands_clearing": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:skyris_highlands_clearing" }, - "byg:seasonal_deciduous_clearing": { - "dictionary": "FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:araucaria_forest": { + "dictionary": [ + "DENSE", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:seasonal_deciduous_forest_hills": { - "dictionary": "FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:polluted_lake": { + "dictionary": [ + "WET", + "WATER", + "WASTELAND", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:polluted_lake" }, - "byg:seasonal_forest_hills": { - "dictionary": "COLD,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:red_spruce_taiga": { + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:seasonal_giant_taiga": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:snowy_coniferous_forest_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "byg:snowy_black_beach", + "river": "minecraft:frozen_river" }, - "byg:seasonal_taiga_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:maple_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "COLD", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:sierra_range": { - "dictionary": "DRY,HOT,MOUNTAIN,OVERWORLD", - "river": "minecraft:river", - "beach": "minecraft:beach", - "edge": "" + "byg:bluff_peaks": { + "dictionary": [ + "SNOWY", + "MOUNTAIN", + "COLD", + "OVERWORLD" + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river" }, - "byg:skyris_highlands_clearing": { - "dictionary": "COLD,CONIFEROUS,MOUNTAIN,OVERWORLD", - "river": "byg:skyris_highlands_clearing", + "byg:canyon_edge": { + "dictionary": [ + "OVERWORLD", + "WET", + "WATER" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:canyon_edge" }, - "byg:skyris_peaks": { - "dictionary": "COLD,CONIFEROUS,MOUNTAIN,OVERWORLD", - "river": "byg:skyris_peaks", + "byg:rocky_beach": { + "dictionary": [ + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:skyris_steeps": { - "dictionary": "COLD,CONIFEROUS,MOUNTAIN,OVERWORLD", - "river": "byg:skyris_steeps", + "byg:dummy": { + "dictionary": [ + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:snowy_black_beach": { - "dictionary": "BEACH,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "", - "edge": "" - }, - "byg:snowy_blue_giant_taiga": { - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,RARE,SNOWY", - "river": "minecraft:river", + "byg:red_rock_lowlands": { + "dictionary": [ + "OVERWORLD", + "HOT" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:snowy_blue_taiga_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "minecraft:snowy_beach", - "edge": "" + "byg:seasonal_giant_taiga": { + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:snowy_coniferous_clearing": { - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "byg:snowy_black_beach", - "edge": "" + "byg:evergreen_clearing": { + "dictionary": [ + "CONIFEROUS", + "FOREST", + "COLD", + "OVERWORLD" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:snowy_coniferous_forest_hills": { - "dictionary": "CONIFEROUS,FOREST,HILLS,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "byg:snowy_black_beach", - "edge": "" + "byg:aspen_forest_hills": { + "dictionary": [ + "HILLS", + "OVERWORLD", + "FOREST" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:snowy_deciduous_clearing": { - "dictionary": "FOREST,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "minecraft:snowy_beach", - "edge": "" + "byg:bog": { + "dictionary": [ + "OVERWORLD", + "SWAMP", + "WATER", + "WET" + ], + "beach": "byg:bog", + "river": "byg:bog" }, - "byg:snowy_deciduous_forest_hills": { - "dictionary": "FOREST,HILLS,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "minecraft:snowy_beach", - "edge": "" + "byg:zelkova_clearing": { + "dictionary": [ + "FOREST", + "COLD", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:snowy_evergreen_clearing": { - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "byg:snowy_black_beach", - "edge": "" + "byg:wooded_grassland_plateau": { + "dictionary": [ + "PLAINS", + "FOREST", + "OVERWORLD" + ], + "beach": "byg:rocky_beach", + "river": "minecraft:river" }, - "byg:snowy_evergreen_hills": { - "dictionary": "CONIFEROUS,FOREST,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "byg:snowy_black_beach", - "edge": "" + "byg:guiana_springs": { + "dictionary": [ + "FOREST", + "JUNGLE", + "OVERWORLD" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:snowy_rocky_black_beach": { - "dictionary": "BEACH,OVERWORLD,SNOWY", - "river": "minecraft:frozen_river", - "beach": "", - "edge": "" + "byg:northern_forest": { + "dictionary": [ + "FOREST", + "COLD", + "SNOWY", + "LUSH", + "OVERWORLD" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:tropical_fungal_rainforest_hills": { - "dictionary": "DENSE,HILLS,HOT,JUNGLE,MAGICAL,OVERWORLD", - "river": "minecraft:river", + "byg:jacaranda_forest_hills": { + "dictionary": [ + "HILLS", + "JUNGLE", + "HOT", + "DENSE", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:tropical_islands": { - "dictionary": "OVERWORLD", - "river": "byg:tropical_islands", - "beach": "byg:rainbow_beach", - "edge": "" + "byg:fungal_patch": { + "dictionary": [ + "JUNGLE", + "HOT", + "DENSE", + "MAGICAL", + "OVERWORLD" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" }, - "byg:tropical_rainforest_hills": { - "dictionary": "DENSE,HILLS,HOT,JUNGLE,OVERWORLD", - "river": "minecraft:river", + "byg:seasonal_deciduous_forest_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:twilight_valley_hills": { - "dictionary": "COLD,HILLS,MAGICAL,OVERWORLD,WASTELAND", - "river": "minecraft:river", + "byg:skyris_steeps": { + "dictionary": [ + "CONIFEROUS", + "COLD", + "MOUNTAIN", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "byg:skyris_steeps" }, - "byg:weeping_witch_clearing": { - "dictionary": "COLD,FOREST,MAGICAL,OVERWORLD,RARE", - "river": "minecraft:river", + "byg:seasonal_birch_forest_hills": { + "dictionary": [ + "HILLS", + "FOREST", + "COLD", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:white_beach": { - "dictionary": "BEACH,OVERWORLD", - "river": "minecraft:river", - "beach": "", - "edge": "" + "byg:snowy_evergreen_hills": { + "dictionary": [ + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "byg:snowy_black_beach", + "river": "minecraft:frozen_river" }, - "byg:wooded_grassland_plateau": { - "dictionary": "FOREST,OVERWORLD,PLAINS", - "river": "minecraft:river", + "byg:basalt_barrera": { + "dictionary": [ + "OVERWORLD", + "BEACH" + ], + "river": "minecraft:river" + }, + "byg:redwood_clearing": { + "dictionary": [ + "FOREST", + "SPARSE", + "OVERWORLD" + ], "beach": "byg:rocky_beach", - "edge": "" + "river": "minecraft:river" }, - "byg:wooded_meadow": { - "dictionary": "FOREST,LUSH,OVERWORLD,PLAINS", - "river": "minecraft:river", + "byg:snowy_evergreen_clearing": { + "dictionary": [ + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD" + ], + "beach": "byg:snowy_black_beach", + "river": "minecraft:frozen_river" + }, + "byg:jacaranda_clearing": { + "dictionary": [ + "FOREST", + "JUNGLE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:wooded_red_rock_mountains": { - "dictionary": "DRY,HOT,MOUNTAIN,OVERWORLD", - "river": "minecraft:river", + "byg:seasonal_deciduous_clearing": { + "dictionary": [ + "FOREST", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:zelkova_clearing": { - "dictionary": "COLD,CONIFEROUS,FOREST,OVERWORLD", - "river": "minecraft:river", + "byg:flowering_grove": { + "dictionary": [ + "PLAINS", + "LUSH", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" }, - "byg:zelkova_forest_hills": { - "dictionary": "COLD,CONIFEROUS,FOREST,HILLS,OVERWORLD", - "river": "minecraft:river", + "byg:pumpkin_forest": { + "dictionary": [ + "FOREST", + "COLD", + "MAGICAL", + "RARE", + "OVERWORLD" + ], "beach": "minecraft:beach", - "edge": "" + "river": "minecraft:river" + }, + "byg:snowy_black_beach": { + "dictionary": [ + "OVERWORLD", + "BEACH", + "SNOWY" + ], + "river": "minecraft:frozen_river" + }, + "byg:snowy_blue_giant_taiga": { + "dictionary": [ + "FOREST", + "SNOWY", + "CONIFEROUS", + "OVERWORLD", + "RARE" + ], + "beach": "minecraft:beach", + "river": "minecraft:river" } } } \ No newline at end of file From 61673ec0f805b914cbabd8efa910275754102f4b Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 1 Oct 2021 12:14:52 -0400 Subject: [PATCH 051/124] lenses --- .../quests/chapters/expert__tier_2_wip.snbt | 6 +- kubejs/client_scripts/constants.js | 4 + .../item_modifiers/jei_descriptions.js | 20 +- .../expert/recipetypes/astralsorcery/altar.js | 385 +++++++++++++++++- 4 files changed, 397 insertions(+), 18 deletions(-) diff --git a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt index 2b61eaffa6..a1fc96d11b 100644 --- a/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt +++ b/config/ftbquests/quests/chapters/expert__tier_2_wip.snbt @@ -282,10 +282,7 @@ { x: -4.0d y: 10.0d - dependencies: [ - "6EECDEC09A67787E" - "590D4ABAC13B92E0" - ] + dependencies: ["6EECDEC09A67787E"] id: "269C18852281A11E" tasks: [{ id: "1721226282B4C95E" @@ -1004,6 +1001,7 @@ { x: -2.0d y: 10.0d + dependencies: ["269C18852281A11E"] id: "590D4ABAC13B92E0" tasks: [{ id: "0B13FA7CE1ABD0C9" diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index 53c040e03f..01eb485fd4 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -387,6 +387,10 @@ const recipesToHide = [ { category: 'minecraft:crafting', recipes_by_id: [ + 'apotheosis:hellshelf', + 'apotheosis:seashelf', + 'apotheosis:endshelf', + 'ars_nouveau:arcane_stone', 'ars_nouveau:crystallizer', 'ars_nouveau:potion_melder', diff --git a/kubejs/client_scripts/item_modifiers/jei_descriptions.js b/kubejs/client_scripts/item_modifiers/jei_descriptions.js index 051df13656..022f03c357 100644 --- a/kubejs/client_scripts/item_modifiers/jei_descriptions.js +++ b/kubejs/client_scripts/item_modifiers/jei_descriptions.js @@ -11,7 +11,7 @@ onEvent('jei.information', (event) => { { items: ['astralsorcery:stardust'], description: [ - 'Obtained by left-clicking a Starmetal Ingot in-world. See the Astral Tome for more information.' + 'Obtained by left-clicking a Starmetal Ingot in-world with a Starmetal Cutting Tool. See the Astral Tome for more information.' ] }, { @@ -310,6 +310,24 @@ onEvent('jei.information', (event) => { description: [ `Mungus may be summoned through the Altar of Birthing, while Crimson Mosquitos may be created by bringing a Fly into the Nether.` ] + }, + { + items: ['astralsorcery:gem_crystal_cluster'], + description: [ + `Formed by dropping a Rock Crystal or Celestial Crystal in Liquid Starlight with an Illumination Powder.`, + ` `, + `Different varieties form at different times of the day.` + ] + }, + { + items: ['astralsorcery:celestial_crystal_cluster'], + description: [`Formed by dropping a Rock Crystal or Celestial Crystal in Liquid Starlight with a Stardust.`] + }, + { + items: ['astralsorcery:celestial_crystal_cluster'], + description: [ + `If grown on Starmetal Ore, the growth rate is increased. The ore may revert during this process, so linking a Collector Crystal to it is important to convert it back.` + ] } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js index 26dcfbb57c..2ffe095bde 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js @@ -318,18 +318,19 @@ onEvent('recipes', (event) => { }, { output: Item.of('apotheosis:hellshelf', 1), - pattern: ['A___A', '__BC_', '_DED_', '_FB__', 'A___A'], + pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], key: { A: { item: 'tconstruct:scorched_bricks' }, B: { tag: 'botania:runes/fire' }, C: { item: 'resourcefulbees:ghast_honeycomb' }, D: { tag: 'botania:runes/muspelheim' }, E: { tag: 'forge:bookshelves' }, - F: { item: 'powah:crystal_blazing' } + F: { item: 'powah:crystal_blazing' }, + G: { item: 'bloodmagic:reagentlava' } }, - altar_type: 1, + altar_type: 2, duration: 200, - starlight: 1400, + starlight: 3000, effects: [ 'astralsorcery:built_in_effect_discovery_central_beam', 'astralsorcery:gateway_edge', @@ -339,18 +340,19 @@ onEvent('recipes', (event) => { }, { output: Item.of('apotheosis:seashelf', 1), - pattern: ['A___A', '__BC_', '_DED_', '_FB__', 'A___A'], + pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], key: { A: { item: 'upgrade_aquatic:prismarine_coral_block' }, B: { tag: 'botania:runes/water' }, C: { item: 'resourcefulbees:icy_honeycomb' }, D: { tag: 'botania:runes/vanaheim' }, E: { tag: 'forge:bookshelves' }, - F: { item: 'powah:crystal_niotic' } + F: { item: 'powah:crystal_niotic' }, + G: { item: 'bloodmagic:reagentwater' } }, - altar_type: 1, + altar_type: 2, duration: 200, - starlight: 1400, + starlight: 3000, effects: [ 'astralsorcery:built_in_effect_discovery_central_beam', 'astralsorcery:gateway_edge', @@ -360,18 +362,19 @@ onEvent('recipes', (event) => { }, { output: Item.of('apotheosis:endshelf', 1), - pattern: ['A___A', '__BC_', '_DED_', '_FB__', 'A___A'], + pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], key: { A: { item: 'betterendforge:flavolite_runed' }, B: { tag: 'botania:runes/mana' }, C: { item: 'resourcefulbees:enderium_honeycomb' }, D: { tag: 'botania:runes/nidavellir' }, E: { tag: 'forge:bookshelves' }, - F: { item: 'betterendforge:eternal_crystal' } + F: { item: 'betterendforge:eternal_crystal' }, + G: { item: 'bloodmagic:reagentvoid' } }, - altar_type: 1, + altar_type: 2, duration: 200, - starlight: 1400, + starlight: 3000, effects: [ 'astralsorcery:built_in_effect_discovery_central_beam', 'astralsorcery:gateway_edge', @@ -549,11 +552,367 @@ onEvent('recipes', (event) => { ], id: `${id_prefix}flight_tiara` }, + { + output: Item.of('astralsorcery:shifting_star'), + altar_type: 1, + duration: 200, + starlight: 1600, + pattern: ['A___A', '_ECB_', '_CDC_', '_BCE_', 'A___A'], + key: { + A: { tag: 'forge:gems/niotic' }, + B: { tag: 'astralsorcery:stardust' }, + C: { item: 'astralsorcery:illumination_powder' }, + D: { + type: 'astralsorcery:fluid', + fluid: [ + { + fluid: 'industrialforegoing:ether_gas', + amount: 1000 + } + ] + }, + E: { item: 'bloodmagic:reagentbinding' } + }, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star' + }, + { + output: Item.of('astralsorcery:shifting_star_armara'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentbinding' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:armara', + relay_inputs: [ + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_armara' + }, + { + output: Item.of('astralsorcery:shifting_star_discidia'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentlava' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:discidia', + relay_inputs: [ + { item: 'bloodmagic:vengefulcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:vengefulcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_discidia' + }, + { + output: Item.of('astralsorcery:shifting_star_evorsio'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentfastminer' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:evorsio', + relay_inputs: [ + { item: 'bloodmagic:destructivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:destructivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_evorsio' + }, + { + output: Item.of('astralsorcery:shifting_star_vicio'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentair' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:vicio', + relay_inputs: [ + { item: 'bloodmagic:defaultcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:defaultcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_vicio' + }, + { + output: Item.of('astralsorcery:shifting_star_aevitas'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentgrowth' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:aevitas', + relay_inputs: [ + { item: 'bloodmagic:corrosivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:corrosivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_aevitas' + }, + { + output: Item.of('astralsorcery:colored_lens_regeneration', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_S_S_', 'R_Q_R', '_ALA_', 'S_Q_S', 'R___R'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:holy_water_anointment_l' }, + Q: { item: 'quark:pink_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_regeneration' + }, + { + output: Item.of('astralsorcery:colored_lens_damage', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_S_S_', 'R_Q_R', '_ALA_', '_SQS_', 'R___R'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:melee_anointment_l' }, + Q: { item: 'quark:red_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_damage' + }, + { + output: Item.of('astralsorcery:colored_lens_fire', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_S_S_', 'S_Q_S', '_ALA_', 'R_Q_R', '_R_R_'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:smelting_anointment_l' }, + Q: { item: 'quark:orange_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_fire' + }, + { + output: Item.of('astralsorcery:colored_lens_break', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['R___R', 'RSQSR', '_ALA_', '_SQS_', '_____'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:hidden_knowledge_anointment_l' }, + Q: { item: 'quark:yellow_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_break' + }, + { + output: Item.of('astralsorcery:colored_lens_growth', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_R_R_', 'R_Q_R', '_ALA_', '_SQS_', 'S___S'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'naturesaura:gold_powder' }, + A: { item: 'bloodmagic:fortune_anointment_l' }, + Q: { item: 'quark:lime_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_growth' + }, + { + output: Item.of('astralsorcery:colored_lens_push', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['___R_', 'SSQR_', '_ALA_', '_RQSS', '_R___'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:bow_velocity_anointment_l' }, + Q: { item: 'quark:light_blue_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_push' + }, + { + output: Item.of('astralsorcery:colored_lens_spectral', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['S___S', '_SQS_', '_ALA_', 'R_Q_R', '_R_R_'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'atum:ectoplasm' }, + A: { item: 'bloodmagic:silk_touch_anointment_l' }, + Q: { item: 'quark:purple_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_spectral' + }, /// Guidebook safe removals { - output: Item.of('astralsorcery:attunement_altar', 1), + output: Item.of('astralsorcery:attunement_altar'), pattern: ['_____', '_____', '__A__', '_____', '_____'], key: { A: { item: 'kubejs:altered_recipe_indicator' } From dbc7038673547fddfb09f264c0bb8c34cfede3a9 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 1 Oct 2021 16:31:57 -0400 Subject: [PATCH 052/124] mana spreaders AS Altars script getting unwieldly. splitting by altar type. --- config/alexsmobs/komodo_dragon_spawns.json | 52 +- kubejs/assets/kubejs/lang/en_us.json | 8 + kubejs/client_scripts/constants.js | 4 + .../base/tags/entity/enigmatica/pharaohs.js | 4 + .../kubejs/expert/recipes/remove.js | 4 + .../expert/recipetypes/astralsorcery/altar.js | 959 +----------------- .../astralsorcery/altar/altar_0_luminous.js | 163 +++ .../astralsorcery/altar/altar_1_starlight.js | 189 ++++ .../astralsorcery/altar/altar_2_celestial.js | 386 +++++++ .../astralsorcery/altar/altar_3_iridescent.js | 415 ++++++++ .../recipetypes/astralsorcery/infuser.js | 32 +- .../expert/recipetypes/occultism/ritual.js | 51 +- kubejs/startup_scripts/item_registry.js | 3 +- 13 files changed, 1280 insertions(+), 990 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/pharaohs.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_3_iridescent.js diff --git a/config/alexsmobs/komodo_dragon_spawns.json b/config/alexsmobs/komodo_dragon_spawns.json index c1bcd89f2b..4bbbe269bc 100644 --- a/config/alexsmobs/komodo_dragon_spawns.json +++ b/config/alexsmobs/komodo_dragon_spawns.json @@ -1,16 +1,40 @@ { - "biomes": [ - [ - { - "type": "BIOME_DICT", - "negate": false, - "value": "overworld" - }, - { - "type": "BIOME_DICT", - "negate": false, - "value": "mesa" - } + "biomes": [ + [ + { + "type": "BIOME_DICT", + "negate": false, + "value": "overworld" + }, + { + "type": "BIOME_DICT", + "negate": false, + "value": "mesa" + } + ], + [ + { + "type": "BIOME_DICT", + "negate": false, + "value": "overworld" + }, + { + "type": "BIOME_DICT", + "negate": false, + "value": "savanna" + } + ], + [ + { + "type": "BIOME_DICT", + "negate": false, + "value": "overworld" + }, + { + "type": "BIOME_CATEGORY", + "negate": false, + "value": "desert" + } + ] ] - ] -} \ No newline at end of file +} diff --git a/kubejs/assets/kubejs/lang/en_us.json b/kubejs/assets/kubejs/lang/en_us.json index b9d7951e0e..a4f4482e05 100644 --- a/kubejs/assets/kubejs/lang/en_us.json +++ b/kubejs/assets/kubejs/lang/en_us.json @@ -37,6 +37,7 @@ "ritual.occultism.sacrifice.rattlesnakes": "Rattlesnake", "ritual.occultism.sacrifice.dropbears": "Dropbear", "ritual.occultism.sacrifice.gaia_guardian": "Guardian of Gaia", + "ritual.occultism.sacrifice.pharaohs": "Pharaoh of Atum", "item.kubejs.craft_magical_feathers": "Ritual: Craft Magical Feathers.", "item.kubejs.craft_magical_feathers.tooltip": "Binds the Spirit of the Ender Dragon to grant Creative Flight.", @@ -108,6 +109,13 @@ "ritual.enigmatica.occultism/ritual/attunement_altar.interrupted": "Binding of Gaia's Guardian interrupted.", "ritual.enigmatica.occultism/ritual/attunement_altar.conditions": "Not all requirements for this ritual are met.", + "item.kubejs.craft_mana_collector": "Ritual: Craft Mana Collector.", + "item.kubejs.craft_mana_collector.tooltip": "Bind the essence of the Great Pharaohs to gain their control over the flow of mana", + "ritual.enigmatica.occultism/ritual/mana_collector.started": "Started binding of the Great Pharaoh.", + "ritual.enigmatica.occultism/ritual/mana_collector.finished": "Successfully bound the Great Pharaoh.", + "ritual.enigmatica.occultism/ritual/mana_collector.interrupted": "Binding of the Great Pharaoh interrupted.", + "ritual.enigmatica.occultism/ritual/mana_collector.conditions": "Not all requirements for this ritual are met.", + "item.kubejs.suffused_aluminum": "Mana Suffused Aluminum Chunk", "item.kubejs.suffused_cloggrum": "Mana Suffused Cloggrum Chunk", "item.kubejs.suffused_cobalt": "Mana Suffused Cobalt Chunk", diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index 01eb485fd4..889941b8f8 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -448,6 +448,9 @@ const recipesToHide = [ 'botania:reach_ring', 'botania:flighttiara_0', 'botania:runic_altar', + 'botania:mana_spreader', + 'botania:elven_spreader', + 'botania:gaia_spreader', 'mythicbotany:wither_aconite_floating', 'mythicbotany:raindeletia_floating', @@ -456,6 +459,7 @@ const recipesToHide = [ 'mythicbotany:mana_infuser', 'mythicbotany:fire_ring', 'mythicbotany:ice_ring', + 'mythicbotany:mana_collector', 'naturesaura:calling_spirit', 'naturesaura:animal_spawner', diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/pharaohs.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/pharaohs.js new file mode 100644 index 0000000000..be5c8a9643 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/entity/enigmatica/pharaohs.js @@ -0,0 +1,4 @@ +onEvent('entity_type.tags', (event) => { + let entities = ['atum:pharaoh']; + event.get('enigmatica:pharaohs').add(entities); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js index 50cb73ed38..40b7f5315c 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js @@ -136,12 +136,16 @@ onEvent('recipes', (event) => { { output: 'botania:reach_ring', id: 'botania:reach_ring' }, { output: 'botania:flight_tiara', id: 'botania:flighttiara_0' }, { output: 'botania:runic_altar', id: 'botania:runic_altar' }, + { output: 'botania:mana_spreader', id: 'botania:mana_spreader' }, + { output: 'botania:elven_spreader', id: 'botania:elven_spreader' }, + { output: 'botania:gaia_spreader', id: 'botania:gaia_spreader' }, { output: 'botania:gaia_pylon', id: 'mythicbotany:modified_gaia_pylon_with_alfsteel' }, { output: 'mythicbotany:alfsteel_pylon', id: 'mythicbotany:alfsteel_pylon' }, { output: 'mythicbotany:mana_infuser', id: 'mythicbotany:mana_infuser' }, { output: 'mythicbotany:fire_ring', id: 'mythicbotany:fire_ring' }, { output: 'mythicbotany:ice_ring', id: 'mythicbotany:ice_ring' }, + { output: 'mythicbotany:mana_collector', id: 'mythicbotany:mana_collector' }, { output: 'naturesaura:calling_spirit', id: 'naturesaura:calling_spirit' }, { output: 'naturesaura:animal_spawner', id: 'naturesaura:animal_spawner' }, diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js index 2ffe095bde..638cd78dda 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar.js @@ -1,958 +1 @@ -onEvent('recipes', (event) => { - /* - Note, max starlight is theoretical. In practice, assume roughly 95% as the max reasonable level - - Luminous Crafting Table - altar_type: 0 - max_starlight: 1000 - - Starlight Crafting Altar - altar_type: 1 - max_starlight: 2000 - - Celestial Altar - altar_type: 2 - max_starlight: 4000 - - Iridescent Altar - altar_type: 3 - max_starlight: 8000 - - */ - - if (global.isExpertMode == false) { - return; - } - const id_prefix = 'enigmatica:expert/astralsorcery/altar/'; - const recipes = [ - { - output: Item.of('astralsorcery:well', 1), - pattern: ['_____', '_B_B_', '_CDC_', '_ABA_', '_____'], - key: { - A: { item: 'astralsorcery:resonating_gem' }, - B: { item: 'astralsorcery:marble_runed' }, - C: { item: 'create:refined_radiance' }, - D: { tag: 'botania:runes/winter' } - }, - altar_type: 0, - duration: 100, - starlight: 200, - effects: ['astralsorcery:built_in_effect_discovery_central_beam'], - id: 'astralsorcery:altar/well' - }, - { - output: Item.of('astralsorcery:spectral_relay', 1), - pattern: ['_____', '_ABA_', '_DCD_', '_____', '_____'], - key: { - A: { item: 'eidolon:gold_inlay' }, - B: { item: 'astralsorcery:glass_lens' }, - C: { item: 'create:refined_radiance' }, - D: { tag: 'botania:runes/air' } - }, - altar_type: 0, - duration: 100, - starlight: 200, - effects: ['astralsorcery:built_in_effect_discovery_central_beam'], - id: 'astralsorcery:altar/spectral_relay' - }, - { - output: Item.of('astralsorcery:glass_lens', 2), - pattern: ['_____', '__A__', '_ABA_', '__A__', '_____'], - key: { - A: { item: 'astralsorcery:resonating_gem' }, - B: { item: 'occultism:infused_lenses' } - }, - altar_type: 0, - duration: 100, - starlight: 200, - effects: ['astralsorcery:built_in_effect_discovery_central_beam'], - id: 'astralsorcery:altar/glass_lens' - }, - { - output: Item.of('astralsorcery:altar_attunement', 1), - pattern: ['_____', '_BAB_', '_CDC_', '_BEB_', '_____'], - key: { - A: { - type: 'astralsorcery:crystal', - hasToBeAttuned: false, - hasToBeCelestial: false, - canBeAttuned: true, - canBeCelestialCrystal: true - }, - B: { item: 'astralsorcery:marble_pillar' }, - C: { item: 'create:refined_radiance' }, - D: { - type: 'astralsorcery:fluid', - fluid: [{ fluid: 'astralsorcery:liquid_starlight', amount: 1000 }] - }, - E: { tag: 'botania:runes/mana' } - }, - altar_type: 0, - duration: 100, - starlight: 700, - recipe_class: 'astralsorcery:attunement_upgrade', - effects: ['astralsorcery:built_in_effect_discovery_central_beam', 'astralsorcery:upgrade_altar'], - id: 'astralsorcery:altar/altar_attunement' - }, - { - output: Item.of('naturesaura:animal_spawner', 1), - pattern: ['_____', '_ABA_', '_CDE_', '_ABA_', '_____'], - key: { - A: { tag: 'resourcefulbees:resourceful_honeycomb_block' }, - B: { item: 'ars_nouveau:summoning_crystal' }, - C: { item: 'naturesaura:token_joy' }, - D: { item: 'minecraft:spawner' }, - E: { item: 'naturesaura:token_anger' } - }, - altar_type: 0, - duration: 100, - starlight: 700, - effects: ['astralsorcery:built_in_effect_discovery_central_beam'], - id: `${id_prefix}animal_spawner` - }, - { - output: Item.of('botania:runic_altar', 1), - pattern: ['_____', '_AAA_', '_ABA_', '_CDC_', '_____'], - key: { - A: { item: 'botania:livingrock' }, - B: { item: 'minecraft:conduit' }, - C: { tag: 'forge:ingots/infused_iron' }, - D: { item: 'naturesaura:aura_cache' } - }, - altar_type: 0, - duration: 100, - starlight: 700, - effects: ['astralsorcery:built_in_effect_discovery_central_beam'], - id: `${id_prefix}runic_altar` - }, - { - output: Item.of('astralsorcery:altar_constellation', 1), - pattern: ['B___B', '_CDC_', '_EAE_', '_FGF_', 'B___B'], - key: { - A: { - type: 'astralsorcery:crystal', - hasToBeAttuned: false, - hasToBeCelestial: false, - canBeAttuned: true, - canBeCelestialCrystal: true - }, - B: { tag: 'forge:storage_blocks/bronze' }, - C: { tag: 'forge:dusts/starmetal' }, - D: { tag: 'botania:runes/vanaheim' }, - E: { item: 'create:refined_radiance' }, - F: { item: 'botania:spectral_platform' }, - G: { tag: 'forge:storage_blocks/starmetal' } - }, - altar_type: 1, - duration: 200, - starlight: 1400, - recipe_class: 'astralsorcery:constellation_upgrade', - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:upgrade_altar', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/altar_constellation' - }, - { - output: Item.of('astralsorcery:altar_radiance', 1), - pattern: ['BC_CB', 'DEFED', '_JAK_', 'DGHGD', 'BC_CB'], - key: { - A: { - type: 'astralsorcery:crystal', - hasToBeAttuned: false, - hasToBeCelestial: true, - canBeAttuned: true, - canBeCelestialCrystal: true - }, - B: { tag: 'forge:storage_blocks/hepatizon' }, - C: { item: 'create:shadow_steel' }, - D: { item: 'astralsorcery:resonating_gem' }, - E: { item: 'astralsorcery:colored_lens_spectral' }, - F: { tag: 'botania:runes/asgard' }, - G: { item: 'astralsorcery:marble_runed' }, - H: { tag: 'forge:storage_blocks/alfsteel' }, - J: { tag: 'botania:runes/alfheim' }, - K: { tag: 'botania:runes/midgard' } - }, - altar_type: 2, - duration: 400, - starlight: 3800, - recipe_class: 'astralsorcery:trait_upgrade', - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:pillar_sparkle', - 'astralsorcery:luminescence_flare', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:upgrade_altar', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/altar_radiance' - }, - { - output: Item.of('kubejs:observatory_lens', 1), - pattern: ['_DCD_', 'DEBED', 'CBABC', 'DEBED', '_DCD_'], - key: { - A: { - type: 'astralsorcery:crystal', - hasToBeAttuned: true, - hasToBeCelestial: true, - canBeAttuned: true, - canBeCelestialCrystal: true - }, - B: { item: 'astralsorcery:resonating_gem' }, - C: { tag: 'botania:runes/air' }, - D: { item: 'create:shadow_steel' }, - E: { item: 'astralsorcery:colored_lens_spectral' } - }, - relay_inputs: [ - { item: 'astralsorcery:illumination_powder' }, - { item: 'astralsorcery:nocturnal_powder' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' }, - { item: 'astralsorcery:illumination_powder' }, - { item: 'astralsorcery:nocturnal_powder' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' } - ], - altar_type: 3, - duration: 600, - starlight: 7500, - focus_constellation: 'astralsorcery:lucerna', - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/observatory' - }, - { - output: Item.of('resourcefulbees:t4_apiary', 1), - pattern: ['__B__', '_C_D_', 'E_A_E', '_D_C_', '__B__'], - key: { - A: { item: 'resourcefulbees:t3_apiary' }, - B: Item.of('naturesaura:effect_powder', { effect: 'naturesaura:animal' }).toJson(), - C: { tag: 'resourcefulbees:resourceful_honeycomb_block' }, - D: { item: 'resourcefulbees:honey_fluid_bucket' }, - E: { item: 'astralsorcery:illumination_powder' } - }, - relay_inputs: [ - { item: 'naturesaura:token_euphoria' }, - { tag: 'botania:runes/lust' }, - { item: 'ars_nouveau:ritual_fertility' } - ], - altar_type: 3, - duration: 600, - starlight: 7500, - focus_constellation: 'astralsorcery:aevitas', - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'resourcefulbees:t4_apiary' - }, - { - output: Item.of('pedestals:coin/xpenchanter', 1), - pattern: ['AA_AA', 'ACB_A', '_DED_', 'A_FCA', 'AA_AA'], - key: { - A: { item: 'ars_nouveau:greater_experience_gem' }, - B: { item: 'botania:gaia_pylon' }, - C: { tag: 'botania:runes/vanaheim' }, - D: { tag: 'botania:runes/mana' }, - E: { item: 'pedestals:coin/default' }, - F: { item: 'ars_nouveau:glyph_pickup' } - }, - relay_inputs: [ - { item: 'eidolon:shadow_gem' }, - { tag: 'forge:inlays/arcane_gold' }, - { tag: 'forge:inlays/arcane_gold' } - ], - altar_type: 3, - duration: 600, - starlight: 7500, - focus_constellation: 'astralsorcery:lucerna', - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:gateway_edge', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'pedestals:upgrades/enchanter' - }, - { - output: Item.of('pedestals:coin/xpanvil', 1), - pattern: ['AA_AA', 'ACB_A', '_DED_', 'A_FCA', 'AA_AA'], - key: { - A: { item: 'ars_nouveau:greater_experience_gem' }, - B: { item: 'mythicbotany:alfsteel_pylon' }, - C: { tag: 'botania:runes/vanaheim' }, - D: { tag: 'botania:runes/mana' }, - E: { item: 'pedestals:coin/default' }, - F: { item: 'ars_nouveau:glyph_pickup' } - }, - relay_inputs: [ - { item: 'betterendforge:aeternium_hammer' }, - { tag: 'forge:ingots/netherite' }, - { tag: 'forge:ingots/netherite' } - ], - altar_type: 3, - duration: 600, - starlight: 7500, - focus_constellation: 'astralsorcery:fornax', - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:gateway_edge', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'pedestals:upgrades/anvil' - }, - { - output: Item.of('apotheosis:hellshelf', 1), - pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], - key: { - A: { item: 'tconstruct:scorched_bricks' }, - B: { tag: 'botania:runes/fire' }, - C: { item: 'resourcefulbees:ghast_honeycomb' }, - D: { tag: 'botania:runes/muspelheim' }, - E: { tag: 'forge:bookshelves' }, - F: { item: 'powah:crystal_blazing' }, - G: { item: 'bloodmagic:reagentlava' } - }, - altar_type: 2, - duration: 200, - starlight: 3000, - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:gateway_edge', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}hellshelf` - }, - { - output: Item.of('apotheosis:seashelf', 1), - pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], - key: { - A: { item: 'upgrade_aquatic:prismarine_coral_block' }, - B: { tag: 'botania:runes/water' }, - C: { item: 'resourcefulbees:icy_honeycomb' }, - D: { tag: 'botania:runes/vanaheim' }, - E: { tag: 'forge:bookshelves' }, - F: { item: 'powah:crystal_niotic' }, - G: { item: 'bloodmagic:reagentwater' } - }, - altar_type: 2, - duration: 200, - starlight: 3000, - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:gateway_edge', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}seashelf` - }, - { - output: Item.of('apotheosis:endshelf', 1), - pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], - key: { - A: { item: 'betterendforge:flavolite_runed' }, - B: { tag: 'botania:runes/mana' }, - C: { item: 'resourcefulbees:enderium_honeycomb' }, - D: { tag: 'botania:runes/nidavellir' }, - E: { tag: 'forge:bookshelves' }, - F: { item: 'betterendforge:eternal_crystal' }, - G: { item: 'bloodmagic:reagentvoid' } - }, - altar_type: 2, - duration: 200, - starlight: 3000, - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:gateway_edge', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}endshelf` - }, - { - output: Item.of('botania:alfheim_portal', 1), - pattern: ['A___A', '__F__', '_EDG_', '_BHB_', 'C___C'], - key: { - A: { item: 'resourcefulbees:emerald_honeycomb' }, - B: { item: 'botania:glimmering_livingwood' }, - C: { tag: 'forge:ingots/terrasteel' }, - D: { item: 'astralsorcery:celestial_gateway' }, - E: { tag: 'botania:runes/summer' }, - F: { item: 'naturesaura:gold_leaf' }, - G: { tag: 'botania:runes/air' }, - H: { tag: 'botania:runes/lust' } - }, - altar_type: 1, - duration: 200, - starlight: 1900, - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:gateway_edge', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}alfheim_portal` - }, - { - output: Item.of('astralsorcery:mantle', 1), - pattern: ['_____', 'A_B_A', 'ACDCA', 'ECFCE', 'E___E'], - key: { - A: { item: 'astralsorcery:resonating_gem' }, - B: { - type: 'astralsorcery:crystal', - hasToBeAttuned: false, - hasToBeCelestial: true, - canBeAttuned: true, - canBeCelestialCrystal: true - }, - C: { item: 'astralsorcery:illumination_powder' }, - D: { item: 'botania:balance_cloak' }, - E: { tag: 'astralsorcery:stardust' }, - F: { tag: 'botania:runes/mana' } - }, - relay_inputs: [ - { tag: 'astralsorcery:starmetal' }, - { tag: 'botania:runes/envy' }, - { item: 'magicfeather:magicfeather' }, - { tag: 'botania:runes/pride' } - ], - altar_type: 3, - duration: 600, - starlight: 4800, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/mantle' - }, - { - output: Item.of('astralsorcery:telescope', 1), - pattern: ['E___E', '__B__', '_CDC_', '_AAA_', 'F___F'], - key: { - A: { tag: 'forge:rods/treated_wood' }, - B: { item: 'astralsorcery:hand_telescope' }, - C: { tag: 'forge:ingots/sky' }, - D: { item: 'eidolon:polished_planks' }, - E: { tag: 'botania:runes/air' }, - F: { item: 'astralsorcery:nocturnal_powder' } - }, - altar_type: 1, - duration: 200, - starlight: 800, - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/telescope' - }, - { - output: Item.of('mythicbotany:mana_infuser', 1), - pattern: ['AE_EB', 'EGHGE', '_IJI_', 'FKLKF', 'CF_FD'], - key: { - A: { tag: 'botania:runes/spring' }, - B: { tag: 'botania:runes/summer' }, - C: { tag: 'botania:runes/winter' }, - D: { tag: 'botania:runes/autumn' }, - E: { tag: 'forge:ingots/refined_radiance' }, - F: { tag: 'forge:ingots/shadow_steel' }, - G: { tag: 'forge:ingots/elementium' }, - H: { tag: 'botania:runes/muspelheim' }, - I: { item: 'kubejs:firmament' }, - J: { tag: 'botania:runes/asgard' }, - K: { item: 'botania:glimmering_dreamwood' }, - L: { tag: 'botania:runes/niflheim' } - }, - altar_type: 2, - duration: 400, - starlight: 3800, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}mana_infuser` - }, - { - output: Item.of('botania:terra_plate', 1), - pattern: ['A___B', '_FGF_', '_IEI_', '_JHJ_', 'D___C'], - key: { - A: { tag: 'botania:runes/water' }, - B: { tag: 'botania:runes/earth' }, - C: { tag: 'botania:runes/fire' }, - D: { tag: 'botania:runes/air' }, - E: { tag: 'botania:runes/mana' }, - F: { item: 'pneumaticcraft:upgrade_matrix' }, - G: { tag: 'forge:storage_blocks/starmetal' }, - H: { tag: 'forge:storage_blocks/manasteel' }, - I: { item: 'kubejs:firmament' }, - J: { item: 'naturesaura:infused_stone' } - }, - altar_type: 1, - duration: 200, - starlight: 1600, - effects: [ - 'astralsorcery:pillar_sparkle', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_lightbeams', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}terra_plate` - }, - { - output: Item.of('botania:flight_tiara', '{variant:0}'), - pattern: ['B___B', '_CDC_', '_EAE_', '_FEG_', 'B___B'], - key: { - A: { - type: 'astralsorcery:crystal', - hasToBeAttuned: true, - hasToBeCelestial: false, - canBeAttuned: true, - canBeCelestialCrystal: false - }, - B: { item: 'botania:life_essence' }, - C: { tag: 'botania:runes/mana' }, - D: { item: 'magicfeather:magicfeather' }, - E: { tag: 'forge:ingots/elementium' }, - F: { item: 'bloodmagic:airsigil' }, - G: { item: 'ars_nouveau:ritual_flight' } - }, - altar_type: 2, - duration: 400, - starlight: 3800, - recipe_class: 'astralsorcery:trait_upgrade', - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:pillar_sparkle', - 'astralsorcery:luminescence_flare', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:upgrade_altar', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: `${id_prefix}flight_tiara` - }, - { - output: Item.of('astralsorcery:shifting_star'), - altar_type: 1, - duration: 200, - starlight: 1600, - pattern: ['A___A', '_ECB_', '_CDC_', '_BCE_', 'A___A'], - key: { - A: { tag: 'forge:gems/niotic' }, - B: { tag: 'astralsorcery:stardust' }, - C: { item: 'astralsorcery:illumination_powder' }, - D: { - type: 'astralsorcery:fluid', - fluid: [ - { - fluid: 'industrialforegoing:ether_gas', - amount: 1000 - } - ] - }, - E: { item: 'bloodmagic:reagentbinding' } - }, - effects: [ - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/shifting_star' - }, - { - output: Item.of('astralsorcery:shifting_star_armara'), - altar_type: 3, - duration: 600, - starlight: 4800, - pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], - key: { - A: { item: 'bloodmagic:reagentbinding' }, - B: { tag: 'astralsorcery:stardust' }, - C: { tag: 'astralsorcery:starmetal' }, - D: { item: 'astralsorcery:shifting_star' } - }, - focus_constellation: 'astralsorcery:armara', - relay_inputs: [ - { item: 'bloodmagic:steadfastcrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' }, - { item: 'bloodmagic:steadfastcrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' } - ], - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:focus_dust_swirl', - 'astralsorcery:focus_edge', - 'astralsorcery:altar_focus_sparkle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/shifting_star_armara' - }, - { - output: Item.of('astralsorcery:shifting_star_discidia'), - altar_type: 3, - duration: 600, - starlight: 4800, - pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], - key: { - A: { item: 'bloodmagic:reagentlava' }, - B: { tag: 'astralsorcery:stardust' }, - C: { tag: 'astralsorcery:starmetal' }, - D: { item: 'astralsorcery:shifting_star' } - }, - focus_constellation: 'astralsorcery:discidia', - relay_inputs: [ - { item: 'bloodmagic:vengefulcrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' }, - { item: 'bloodmagic:vengefulcrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' } - ], - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:focus_dust_swirl', - 'astralsorcery:focus_edge', - 'astralsorcery:altar_focus_sparkle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/shifting_star_discidia' - }, - { - output: Item.of('astralsorcery:shifting_star_evorsio'), - altar_type: 3, - duration: 600, - starlight: 4800, - pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], - key: { - A: { item: 'bloodmagic:reagentfastminer' }, - B: { tag: 'astralsorcery:stardust' }, - C: { tag: 'astralsorcery:starmetal' }, - D: { item: 'astralsorcery:shifting_star' } - }, - focus_constellation: 'astralsorcery:evorsio', - relay_inputs: [ - { item: 'bloodmagic:destructivecrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' }, - { item: 'bloodmagic:destructivecrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' } - ], - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:focus_dust_swirl', - 'astralsorcery:focus_edge', - 'astralsorcery:altar_focus_sparkle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/shifting_star_evorsio' - }, - { - output: Item.of('astralsorcery:shifting_star_vicio'), - altar_type: 3, - duration: 600, - starlight: 4800, - pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], - key: { - A: { item: 'bloodmagic:reagentair' }, - B: { tag: 'astralsorcery:stardust' }, - C: { tag: 'astralsorcery:starmetal' }, - D: { item: 'astralsorcery:shifting_star' } - }, - focus_constellation: 'astralsorcery:vicio', - relay_inputs: [ - { item: 'bloodmagic:defaultcrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' }, - { item: 'bloodmagic:defaultcrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' } - ], - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:focus_dust_swirl', - 'astralsorcery:focus_edge', - 'astralsorcery:altar_focus_sparkle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/shifting_star_vicio' - }, - { - output: Item.of('astralsorcery:shifting_star_aevitas'), - altar_type: 3, - duration: 600, - starlight: 4800, - pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], - key: { - A: { item: 'bloodmagic:reagentgrowth' }, - B: { tag: 'astralsorcery:stardust' }, - C: { tag: 'astralsorcery:starmetal' }, - D: { item: 'astralsorcery:shifting_star' } - }, - focus_constellation: 'astralsorcery:aevitas', - relay_inputs: [ - { item: 'bloodmagic:corrosivecrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' }, - { item: 'bloodmagic:corrosivecrystal' }, - { item: 'astralsorcery:illumination_powder' }, - { tag: 'astralsorcery:stardust' } - ], - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_trait_relay_highlight', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:built_in_effect_trait_focus_circle', - 'astralsorcery:focus_dust_swirl', - 'astralsorcery:focus_edge', - 'astralsorcery:altar_focus_sparkle', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/shifting_star_aevitas' - }, - { - output: Item.of('astralsorcery:colored_lens_regeneration', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['_S_S_', 'R_Q_R', '_ALA_', 'S_Q_S', 'R___R'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'astralsorcery:stardust' }, - A: { item: 'bloodmagic:holy_water_anointment_l' }, - Q: { item: 'quark:pink_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_regeneration' - }, - { - output: Item.of('astralsorcery:colored_lens_damage', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['_S_S_', 'R_Q_R', '_ALA_', '_SQS_', 'R___R'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'astralsorcery:stardust' }, - A: { item: 'bloodmagic:melee_anointment_l' }, - Q: { item: 'quark:red_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_damage' - }, - { - output: Item.of('astralsorcery:colored_lens_fire', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['_S_S_', 'S_Q_S', '_ALA_', 'R_Q_R', '_R_R_'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'astralsorcery:stardust' }, - A: { item: 'bloodmagic:smelting_anointment_l' }, - Q: { item: 'quark:orange_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_fire' - }, - { - output: Item.of('astralsorcery:colored_lens_break', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['R___R', 'RSQSR', '_ALA_', '_SQS_', '_____'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'astralsorcery:stardust' }, - A: { item: 'bloodmagic:hidden_knowledge_anointment_l' }, - Q: { item: 'quark:yellow_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_break' - }, - { - output: Item.of('astralsorcery:colored_lens_growth', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['_R_R_', 'R_Q_R', '_ALA_', '_SQS_', 'S___S'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'naturesaura:gold_powder' }, - A: { item: 'bloodmagic:fortune_anointment_l' }, - Q: { item: 'quark:lime_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_growth' - }, - { - output: Item.of('astralsorcery:colored_lens_push', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['___R_', 'SSQR_', '_ALA_', '_RQSS', '_R___'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'astralsorcery:stardust' }, - A: { item: 'bloodmagic:bow_velocity_anointment_l' }, - Q: { item: 'quark:light_blue_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_push' - }, - { - output: Item.of('astralsorcery:colored_lens_spectral', 3), - altar_type: 2, - duration: 400, - starlight: 2000, - pattern: ['S___S', '_SQS_', '_ALA_', 'R_Q_R', '_R_R_'], - key: { - R: { item: 'astralsorcery:resonating_gem' }, - S: { item: 'atum:ectoplasm' }, - A: { item: 'bloodmagic:silk_touch_anointment_l' }, - Q: { item: 'quark:purple_rune' }, - L: { item: 'astralsorcery:glass_lens' } - }, - effects: [ - 'astralsorcery:built_in_effect_constellation_finish', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_constellation_lines', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/colored_lens_spectral' - }, - - /// Guidebook safe removals - - { - output: Item.of('astralsorcery:attunement_altar'), - pattern: ['_____', '_____', '__A__', '_____', '_____'], - key: { - A: { item: 'kubejs:altered_recipe_indicator' } - }, - altar_type: 1, - duration: 200, - starlight: 1600, - effects: [ - 'astralsorcery:pillar_sparkle', - 'astralsorcery:built_in_effect_discovery_central_beam', - 'astralsorcery:altar_default_lightbeams', - 'astralsorcery:altar_default_sparkle', - 'astralsorcery:built_in_effect_attunement_sparkle' - ], - id: 'astralsorcery:altar/attunement_altar' - } - ]; - - recipes.forEach((recipe) => { - let constructed_recipe = { - type: 'astralsorcery:altar', - altar_type: recipe.altar_type, - duration: recipe.duration, - starlight: recipe.starlight, - pattern: recipe.pattern, - key: recipe.key, - output: [recipe.output.toResultJson()], - effects: recipe.effects - }; - - if (recipe.relay_inputs) { - constructed_recipe.relay_inputs = recipe.relay_inputs; - } - if (recipe.focus_constellation) { - constructed_recipe.focus_constellation = recipe.focus_constellation; - } - if (recipe.recipe_class) { - constructed_recipe.recipe_class = recipe.recipe_class; - } - - event.custom(constructed_recipe).id(recipe.id); - }); -}); +/// TODO: Remove in 0.6.0. New script created for each table. diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js new file mode 100644 index 0000000000..73ab9b6e0f --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js @@ -0,0 +1,163 @@ +onEvent('recipes', (event) => { + /* + Note, max starlight is theoretical. In practice, assume roughly 95% as the max reasonable level + + Luminous Crafting Table + altar_type: 0 + max_starlight: 1000 + */ + + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/astralsorcery/altar/'; + const recipes = [ + /// Luminous Crafting Table REcipes + { + output: Item.of('astralsorcery:well'), + pattern: ['_____', '_B_B_', '_CDC_', '_ABA_', '_____'], + key: { + A: { item: 'astralsorcery:resonating_gem' }, + B: { item: 'astralsorcery:marble_runed' }, + C: { item: 'create:refined_radiance' }, + D: { tag: 'botania:runes/winter' } + }, + altar_type: 0, + duration: 100, + starlight: 200, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: 'astralsorcery:altar/well' + }, + { + output: Item.of('astralsorcery:spectral_relay'), + pattern: ['_____', '_ABA_', '_DCD_', '_____', '_____'], + key: { + A: { item: 'eidolon:gold_inlay' }, + B: { item: 'astralsorcery:glass_lens' }, + C: { item: 'create:refined_radiance' }, + D: { tag: 'botania:runes/air' } + }, + altar_type: 0, + duration: 100, + starlight: 200, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: 'astralsorcery:altar/spectral_relay' + }, + { + output: Item.of('astralsorcery:glass_lens', 2), + pattern: ['_____', '__A__', '_ABA_', '__A__', '_____'], + key: { + A: { item: 'astralsorcery:resonating_gem' }, + B: { item: 'occultism:infused_lenses' } + }, + altar_type: 0, + duration: 100, + starlight: 200, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: 'astralsorcery:altar/glass_lens' + }, + { + output: Item.of('astralsorcery:altar_attunement'), + pattern: ['_____', '_BAB_', '_CDC_', '_BEB_', '_____'], + key: { + A: { + type: 'astralsorcery:crystal', + hasToBeAttuned: false, + hasToBeCelestial: false, + canBeAttuned: true, + canBeCelestialCrystal: true + }, + B: { item: 'astralsorcery:marble_pillar' }, + C: { item: 'create:refined_radiance' }, + D: { + type: 'astralsorcery:fluid', + fluid: [{ fluid: 'astralsorcery:liquid_starlight', amount: 1000 }] + }, + E: { tag: 'botania:runes/mana' } + }, + altar_type: 0, + duration: 100, + starlight: 700, + recipe_class: 'astralsorcery:attunement_upgrade', + effects: ['astralsorcery:built_in_effect_discovery_central_beam', 'astralsorcery:upgrade_altar'], + id: 'astralsorcery:altar/altar_attunement' + }, + { + output: Item.of('naturesaura:animal_spawner'), + pattern: ['_____', '_ABA_', '_CDE_', '_ABA_', '_____'], + key: { + A: { tag: 'resourcefulbees:resourceful_honeycomb_block' }, + B: { item: 'ars_nouveau:summoning_crystal' }, + C: { item: 'naturesaura:token_joy' }, + D: { item: 'minecraft:spawner' }, + E: { item: 'naturesaura:token_anger' } + }, + altar_type: 0, + duration: 100, + starlight: 700, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: `${id_prefix}animal_spawner` + }, + { + output: Item.of('botania:runic_altar'), + pattern: ['_____', '_AAA_', '_ABA_', '_CDC_', '_____'], + key: { + A: { item: 'botania:livingrock' }, + B: { item: 'minecraft:conduit' }, + C: { tag: 'forge:ingots/infused_iron' }, + D: { + type: 'forge:nbt', + item: 'naturesaura:aura_cache', + count: 1, + nbt: '{aura:400000}' + } + }, + altar_type: 0, + duration: 100, + starlight: 700, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: `${id_prefix}runic_altar` + }, + { + output: Item.of('botania:mana_spreader'), + pattern: ['_____', '_ABA_', '_CDE_', '_ABA_', '_____'], + key: { + A: { item: 'botania:livingwood' }, + B: { item: 'botania:glimmering_livingwood' }, + C: { tag: 'forge:ingots/infused_iron' }, + D: { item: 'botania:spark' }, + E: { item: 'astralsorcery:glass_lens' } + }, + altar_type: 0, + duration: 100, + starlight: 200, + effects: ['astralsorcery:built_in_effect_discovery_central_beam'], + id: `${id_prefix}mana_spreader` + } + ]; + + recipes.forEach((recipe) => { + let constructed_recipe = { + type: 'astralsorcery:altar', + altar_type: recipe.altar_type, + duration: recipe.duration, + starlight: recipe.starlight, + pattern: recipe.pattern, + key: recipe.key, + output: [recipe.output.toResultJson()], + effects: recipe.effects + }; + + if (recipe.relay_inputs) { + constructed_recipe.relay_inputs = recipe.relay_inputs; + } + if (recipe.focus_constellation) { + constructed_recipe.focus_constellation = recipe.focus_constellation; + } + if (recipe.recipe_class) { + constructed_recipe.recipe_class = recipe.recipe_class; + } + + event.custom(constructed_recipe).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js new file mode 100644 index 0000000000..0179850d73 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js @@ -0,0 +1,189 @@ +onEvent('recipes', (event) => { + /* + Note, max starlight is theoretical. In practice, assume roughly 95% as the max reasonable level + + Starlight Crafting Altar + altar_type: 1 + max_starlight: 2000 + */ + + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/astralsorcery/altar/'; + const recipes = [ + /// Starlight Crafting Altar Recipes + { + output: Item.of('astralsorcery:altar_constellation', 1), + pattern: ['B___B', '_CDC_', '_EAE_', '_FGF_', 'B___B'], + key: { + A: { + type: 'astralsorcery:crystal', + hasToBeAttuned: false, + hasToBeCelestial: false, + canBeAttuned: true, + canBeCelestialCrystal: true + }, + B: { tag: 'forge:storage_blocks/bronze' }, + C: { tag: 'forge:dusts/starmetal' }, + D: { tag: 'botania:runes/vanaheim' }, + E: { item: 'create:refined_radiance' }, + F: { item: 'botania:spectral_platform' }, + G: { tag: 'forge:storage_blocks/starmetal' } + }, + altar_type: 1, + duration: 200, + starlight: 1400, + recipe_class: 'astralsorcery:constellation_upgrade', + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:upgrade_altar', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/altar_constellation' + }, + { + output: Item.of('botania:alfheim_portal', 1), + pattern: ['A___A', '__F__', '_EDG_', '_BHB_', 'C___C'], + key: { + A: { item: 'resourcefulbees:emerald_honeycomb' }, + B: { item: 'botania:glimmering_livingwood' }, + C: { tag: 'forge:ingots/terrasteel' }, + D: { item: 'astralsorcery:celestial_gateway' }, + E: { tag: 'botania:runes/summer' }, + F: { item: 'naturesaura:gold_leaf' }, + G: { tag: 'botania:runes/air' }, + H: { tag: 'botania:runes/lust' } + }, + altar_type: 1, + duration: 200, + starlight: 1900, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:gateway_edge', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}alfheim_portal` + }, + { + output: Item.of('astralsorcery:telescope', 1), + pattern: ['E___E', '__B__', '_CDC_', '_AAA_', 'F___F'], + key: { + A: { tag: 'forge:rods/treated_wood' }, + B: { item: 'astralsorcery:hand_telescope' }, + C: { tag: 'forge:ingots/sky' }, + D: { item: 'eidolon:polished_planks' }, + E: { tag: 'botania:runes/air' }, + F: { item: 'astralsorcery:nocturnal_powder' } + }, + altar_type: 1, + duration: 200, + starlight: 800, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/telescope' + }, + { + output: Item.of('astralsorcery:shifting_star'), + altar_type: 1, + duration: 200, + starlight: 1600, + pattern: ['A___A', '_ECB_', '_CDC_', '_BCE_', 'A___A'], + key: { + A: { tag: 'forge:gems/niotic' }, + B: { tag: 'astralsorcery:stardust' }, + C: { item: 'astralsorcery:illumination_powder' }, + D: { + type: 'astralsorcery:fluid', + fluid: [ + { + fluid: 'industrialforegoing:ether_gas', + amount: 1000 + } + ] + }, + E: { item: 'bloodmagic:reagentbinding' } + }, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star' + }, + { + output: Item.of('botania:terra_plate', 1), + pattern: ['A___B', '_FGF_', '_IEI_', '_JHJ_', 'D___C'], + key: { + A: { tag: 'botania:runes/water' }, + B: { tag: 'botania:runes/earth' }, + C: { tag: 'botania:runes/fire' }, + D: { tag: 'botania:runes/air' }, + E: { tag: 'botania:runes/mana' }, + F: { item: 'pneumaticcraft:upgrade_matrix' }, + G: { tag: 'forge:storage_blocks/starmetal' }, + H: { tag: 'forge:storage_blocks/manasteel' }, + I: { item: 'kubejs:firmament' }, + J: { item: 'naturesaura:infused_stone' } + }, + altar_type: 1, + duration: 200, + starlight: 1600, + effects: [ + 'astralsorcery:pillar_sparkle', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_lightbeams', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}terra_plate` + }, + + /// Guidebook safe removals + + { + output: Item.of('astralsorcery:attunement_altar'), + pattern: ['_____', '_____', '__A__', '_____', '_____'], + key: { + A: { item: 'kubejs:altered_recipe_indicator' } + }, + altar_type: 1, + duration: 200, + starlight: 1600, + effects: [ + 'astralsorcery:pillar_sparkle', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_lightbeams', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/attunement_altar' + } + ]; + + recipes.forEach((recipe) => { + let constructed_recipe = { + type: 'astralsorcery:altar', + altar_type: recipe.altar_type, + duration: recipe.duration, + starlight: recipe.starlight, + pattern: recipe.pattern, + key: recipe.key, + output: [recipe.output.toResultJson()], + effects: recipe.effects + }; + + if (recipe.relay_inputs) { + constructed_recipe.relay_inputs = recipe.relay_inputs; + } + if (recipe.focus_constellation) { + constructed_recipe.focus_constellation = recipe.focus_constellation; + } + if (recipe.recipe_class) { + constructed_recipe.recipe_class = recipe.recipe_class; + } + + event.custom(constructed_recipe).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js new file mode 100644 index 0000000000..9bb6687e4a --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js @@ -0,0 +1,386 @@ +onEvent('recipes', (event) => { + /* + Note, max starlight is theoretical. In practice, assume roughly 95% as the max reasonable level + + Celestial Altar + altar_type: 2 + max_starlight: 4000 + */ + + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/astralsorcery/altar/'; + const recipes = [ + /// Celestial Altar Recipes + { + output: Item.of('astralsorcery:altar_radiance', 1), + pattern: ['BC_CB', 'DEFED', '_JAK_', 'DGHGD', 'BC_CB'], + key: { + A: { + type: 'astralsorcery:crystal', + hasToBeAttuned: false, + hasToBeCelestial: true, + canBeAttuned: true, + canBeCelestialCrystal: true + }, + B: { tag: 'forge:storage_blocks/hepatizon' }, + C: { item: 'create:shadow_steel' }, + D: { item: 'astralsorcery:resonating_gem' }, + E: { item: 'astralsorcery:colored_lens_spectral' }, + F: { tag: 'botania:runes/asgard' }, + G: { item: 'astralsorcery:marble_runed' }, + H: { tag: 'forge:storage_blocks/alfsteel' }, + J: { tag: 'botania:runes/alfheim' }, + K: { tag: 'botania:runes/midgard' } + }, + altar_type: 2, + duration: 400, + starlight: 3800, + recipe_class: 'astralsorcery:trait_upgrade', + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:pillar_sparkle', + 'astralsorcery:luminescence_flare', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:upgrade_altar', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/altar_radiance' + }, + { + output: Item.of('apotheosis:hellshelf', 1), + pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], + key: { + A: { item: 'tconstruct:scorched_bricks' }, + B: { tag: 'botania:runes/fire' }, + C: { item: 'resourcefulbees:ghast_honeycomb' }, + D: { tag: 'botania:runes/muspelheim' }, + E: { tag: 'forge:bookshelves' }, + F: { item: 'powah:crystal_blazing' }, + G: { item: 'bloodmagic:reagentlava' } + }, + altar_type: 2, + duration: 200, + starlight: 3000, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:gateway_edge', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}hellshelf` + }, + { + output: Item.of('apotheosis:seashelf', 1), + pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], + key: { + A: { item: 'upgrade_aquatic:prismarine_coral_block' }, + B: { tag: 'botania:runes/water' }, + C: { item: 'resourcefulbees:icy_honeycomb' }, + D: { tag: 'botania:runes/vanaheim' }, + E: { tag: 'forge:bookshelves' }, + F: { item: 'powah:crystal_niotic' }, + G: { item: 'bloodmagic:reagentwater' } + }, + altar_type: 2, + duration: 200, + starlight: 3000, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:gateway_edge', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}seashelf` + }, + { + output: Item.of('apotheosis:endshelf', 1), + pattern: ['AG__A', 'G_BC_', '_DED_', '_FB_G', 'A__GA'], + key: { + A: { item: 'betterendforge:flavolite_runed' }, + B: { tag: 'botania:runes/mana' }, + C: { item: 'resourcefulbees:enderium_honeycomb' }, + D: { tag: 'botania:runes/nidavellir' }, + E: { tag: 'forge:bookshelves' }, + F: { item: 'betterendforge:eternal_crystal' }, + G: { item: 'bloodmagic:reagentvoid' } + }, + altar_type: 2, + duration: 200, + starlight: 3000, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:gateway_edge', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}endshelf` + }, + { + output: Item.of('mythicbotany:mana_infuser', 1), + pattern: ['AE_EB', 'EGHGE', '_IJI_', 'FKLKF', 'CF_FD'], + key: { + A: { tag: 'botania:runes/spring' }, + B: { tag: 'botania:runes/summer' }, + C: { tag: 'botania:runes/winter' }, + D: { tag: 'botania:runes/autumn' }, + E: { tag: 'forge:ingots/refined_radiance' }, + F: { tag: 'forge:ingots/shadow_steel' }, + G: { tag: 'forge:ingots/elementium' }, + H: { tag: 'botania:runes/muspelheim' }, + I: { item: 'kubejs:firmament' }, + J: { tag: 'botania:runes/asgard' }, + K: { item: 'botania:glimmering_dreamwood' }, + L: { tag: 'botania:runes/niflheim' } + }, + altar_type: 2, + duration: 400, + starlight: 3800, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}mana_infuser` + }, + { + output: Item.of('botania:flight_tiara', '{variant:0}'), + pattern: ['B___B', '_CDC_', '_EAE_', '_FEG_', 'B___B'], + key: { + A: { + type: 'astralsorcery:crystal', + hasToBeAttuned: true, + hasToBeCelestial: false, + canBeAttuned: true, + canBeCelestialCrystal: false + }, + B: { item: 'botania:life_essence' }, + C: { tag: 'botania:runes/mana' }, + D: { item: 'magicfeather:magicfeather' }, + E: { tag: 'forge:ingots/elementium' }, + F: { item: 'bloodmagic:airsigil' }, + G: { item: 'ars_nouveau:ritual_flight' } + }, + altar_type: 2, + duration: 400, + starlight: 3800, + recipe_class: 'astralsorcery:trait_upgrade', + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:pillar_sparkle', + 'astralsorcery:luminescence_flare', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:upgrade_altar', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}flight_tiara` + }, + { + output: Item.of('astralsorcery:colored_lens_regeneration', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_S_S_', 'R_Q_R', '_ALA_', 'S_Q_S', 'R___R'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:holy_water_anointment_l' }, + Q: { item: 'quark:pink_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_regeneration' + }, + { + output: Item.of('astralsorcery:colored_lens_damage', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_S_S_', 'R_Q_R', '_ALA_', '_SQS_', 'R___R'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:melee_anointment_l' }, + Q: { item: 'quark:red_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_damage' + }, + { + output: Item.of('astralsorcery:colored_lens_fire', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_S_S_', 'S_Q_S', '_ALA_', 'R_Q_R', '_R_R_'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:smelting_anointment_l' }, + Q: { item: 'quark:orange_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_fire' + }, + { + output: Item.of('astralsorcery:colored_lens_break', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['R___R', 'RSQSR', '_ALA_', '_SQS_', '_____'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:hidden_knowledge_anointment_l' }, + Q: { item: 'quark:yellow_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_break' + }, + { + output: Item.of('astralsorcery:colored_lens_growth', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['_R_R_', 'R_Q_R', '_ALA_', '_SQS_', 'S___S'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'naturesaura:gold_powder' }, + A: { item: 'bloodmagic:fortune_anointment_l' }, + Q: { item: 'quark:lime_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_growth' + }, + { + output: Item.of('astralsorcery:colored_lens_push', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['___R_', 'SSQR_', '_ALA_', '_RQSS', '_R___'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'astralsorcery:stardust' }, + A: { item: 'bloodmagic:bow_velocity_anointment_l' }, + Q: { item: 'quark:light_blue_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_push' + }, + { + output: Item.of('astralsorcery:colored_lens_spectral', 3), + altar_type: 2, + duration: 400, + starlight: 2000, + pattern: ['S___S', '_SQS_', '_ALA_', 'R_Q_R', '_R_R_'], + key: { + R: { item: 'astralsorcery:resonating_gem' }, + S: { item: 'atum:ectoplasm' }, + A: { item: 'bloodmagic:silk_touch_anointment_l' }, + Q: { item: 'quark:purple_rune' }, + L: { item: 'astralsorcery:glass_lens' } + }, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/colored_lens_spectral' + }, + { + output: Item.of('botania:elven_spreader'), + pattern: ['_C_C_', 'CADAC', '_FEG_', 'CBDBC', '_C_C_'], + key: { + A: { tag: 'botania:runes/air' }, + B: { tag: 'botania:runes/summer' }, + C: { item: 'botania:dreamwood' }, + D: { item: 'botania:glimmering_dreamwood' }, + E: { item: 'botania:spark' }, + F: { tag: 'forge:ingots/elementium' }, + G: { item: 'astralsorcery:colored_lens_push' } + }, + altar_type: 2, + duration: 400, + starlight: 3800, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}mana_infuser` + } + ]; + + recipes.forEach((recipe) => { + let constructed_recipe = { + type: 'astralsorcery:altar', + altar_type: recipe.altar_type, + duration: recipe.duration, + starlight: recipe.starlight, + pattern: recipe.pattern, + key: recipe.key, + output: [recipe.output.toResultJson()], + effects: recipe.effects + }; + + if (recipe.relay_inputs) { + constructed_recipe.relay_inputs = recipe.relay_inputs; + } + if (recipe.focus_constellation) { + constructed_recipe.focus_constellation = recipe.focus_constellation; + } + if (recipe.recipe_class) { + constructed_recipe.recipe_class = recipe.recipe_class; + } + + event.custom(constructed_recipe).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_3_iridescent.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_3_iridescent.js new file mode 100644 index 0000000000..2951bdea31 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_3_iridescent.js @@ -0,0 +1,415 @@ +onEvent('recipes', (event) => { + /* + Note, max starlight is theoretical. In practice, assume roughly 95% as the max reasonable level + + Iridescent Altar + altar_type: 3 + max_starlight: 8000 + + */ + + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/astralsorcery/altar/'; + const recipes = [ + /// Iridescent Altar Recipes + { + output: Item.of('kubejs:observatory_lens', 1), + pattern: ['_DCD_', 'DEBED', 'CBABC', 'DEBED', '_DCD_'], + key: { + A: { + type: 'astralsorcery:crystal', + hasToBeAttuned: true, + hasToBeCelestial: true, + canBeAttuned: true, + canBeCelestialCrystal: true + }, + B: { item: 'astralsorcery:resonating_gem' }, + C: { tag: 'botania:runes/air' }, + D: { item: 'create:shadow_steel' }, + E: { item: 'astralsorcery:colored_lens_spectral' } + }, + relay_inputs: [ + { item: 'astralsorcery:illumination_powder' }, + { item: 'astralsorcery:nocturnal_powder' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'astralsorcery:illumination_powder' }, + { item: 'astralsorcery:nocturnal_powder' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + altar_type: 3, + duration: 600, + starlight: 7500, + focus_constellation: 'astralsorcery:lucerna', + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/observatory' + }, + { + output: Item.of('resourcefulbees:t4_apiary', 1), + pattern: ['__B__', '_C_D_', 'E_A_E', '_D_C_', '__B__'], + key: { + A: { item: 'resourcefulbees:t3_apiary' }, + B: Item.of('naturesaura:effect_powder', { effect: 'naturesaura:animal' }).toJson(), + C: { tag: 'resourcefulbees:resourceful_honeycomb_block' }, + D: { item: 'resourcefulbees:honey_fluid_bucket' }, + E: { item: 'astralsorcery:illumination_powder' } + }, + relay_inputs: [ + { item: 'naturesaura:token_euphoria' }, + { tag: 'botania:runes/lust' }, + { item: 'ars_nouveau:ritual_fertility' } + ], + altar_type: 3, + duration: 600, + starlight: 7500, + focus_constellation: 'astralsorcery:aevitas', + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'resourcefulbees:t4_apiary' + }, + { + output: Item.of('pedestals:coin/xpenchanter', 1), + pattern: ['AA_AA', 'ACB_A', '_DED_', 'A_FCA', 'AA_AA'], + key: { + A: { item: 'ars_nouveau:greater_experience_gem' }, + B: { item: 'botania:gaia_pylon' }, + C: { tag: 'botania:runes/vanaheim' }, + D: { tag: 'botania:runes/mana' }, + E: { item: 'pedestals:coin/default' }, + F: { item: 'ars_nouveau:glyph_pickup' } + }, + relay_inputs: [ + { item: 'eidolon:shadow_gem' }, + { tag: 'forge:inlays/arcane_gold' }, + { tag: 'forge:inlays/arcane_gold' } + ], + altar_type: 3, + duration: 600, + starlight: 7500, + focus_constellation: 'astralsorcery:lucerna', + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:gateway_edge', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'pedestals:upgrades/enchanter' + }, + { + output: Item.of('pedestals:coin/xpanvil', 1), + pattern: ['AA_AA', 'ACB_A', '_DED_', 'A_FCA', 'AA_AA'], + key: { + A: { item: 'ars_nouveau:greater_experience_gem' }, + B: { item: 'mythicbotany:alfsteel_pylon' }, + C: { tag: 'botania:runes/vanaheim' }, + D: { tag: 'botania:runes/mana' }, + E: { item: 'pedestals:coin/default' }, + F: { item: 'ars_nouveau:glyph_pickup' } + }, + relay_inputs: [ + { item: 'betterendforge:aeternium_hammer' }, + { tag: 'forge:ingots/netherite' }, + { tag: 'forge:ingots/netherite' } + ], + altar_type: 3, + duration: 600, + starlight: 7500, + focus_constellation: 'astralsorcery:fornax', + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:gateway_edge', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'pedestals:upgrades/anvil' + }, + { + output: Item.of('astralsorcery:mantle', 1), + pattern: ['_____', 'A_B_A', 'ACDCA', 'ECFCE', 'E___E'], + key: { + A: { item: 'astralsorcery:resonating_gem' }, + B: { + type: 'astralsorcery:crystal', + hasToBeAttuned: false, + hasToBeCelestial: true, + canBeAttuned: true, + canBeCelestialCrystal: true + }, + C: { item: 'astralsorcery:illumination_powder' }, + D: { item: 'botania:balance_cloak' }, + E: { tag: 'astralsorcery:stardust' }, + F: { tag: 'botania:runes/mana' } + }, + relay_inputs: [ + { tag: 'astralsorcery:starmetal' }, + { tag: 'botania:runes/envy' }, + { item: 'magicfeather:magicfeather' }, + { tag: 'botania:runes/pride' } + ], + altar_type: 3, + duration: 600, + starlight: 4800, + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/mantle' + }, + + { + output: Item.of('astralsorcery:shifting_star_armara'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentbinding' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:armara', + relay_inputs: [ + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:steadfastcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_armara' + }, + { + output: Item.of('astralsorcery:shifting_star_discidia'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentlava' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:discidia', + relay_inputs: [ + { item: 'bloodmagic:vengefulcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:vengefulcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_discidia' + }, + { + output: Item.of('astralsorcery:shifting_star_evorsio'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentfastminer' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:evorsio', + relay_inputs: [ + { item: 'bloodmagic:destructivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:destructivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_evorsio' + }, + { + output: Item.of('astralsorcery:shifting_star_vicio'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentair' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:vicio', + relay_inputs: [ + { item: 'bloodmagic:defaultcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:defaultcrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_vicio' + }, + { + output: Item.of('astralsorcery:shifting_star_aevitas'), + altar_type: 3, + duration: 600, + starlight: 4800, + pattern: ['__B__', '__A__', 'BCDCB', '__A__', '__B__'], + key: { + A: { item: 'bloodmagic:reagentgrowth' }, + B: { tag: 'astralsorcery:stardust' }, + C: { tag: 'astralsorcery:starmetal' }, + D: { item: 'astralsorcery:shifting_star' } + }, + focus_constellation: 'astralsorcery:aevitas', + relay_inputs: [ + { item: 'bloodmagic:corrosivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' }, + { item: 'bloodmagic:corrosivecrystal' }, + { item: 'astralsorcery:illumination_powder' }, + { tag: 'astralsorcery:stardust' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:focus_dust_swirl', + 'astralsorcery:focus_edge', + 'astralsorcery:altar_focus_sparkle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/shifting_star_aevitas' + }, + { + output: Item.of('botania:gaia_spreader'), + altar_type: 3, + duration: 720, + starlight: 6400, + pattern: ['_____', '_AAA_', '_BCD_', '_AAA_', '_____'], + key: { + A: { item: 'botania:bifrost_perm' }, + B: { tag: 'forge:gems/dragonstone' }, + C: { item: 'botania:elven_spreader' }, + D: { item: 'astralsorcery:colored_lens_spectral' } + }, + focus_constellation: 'naturesstarlight:naritis', + relay_inputs: [ + { item: 'botania:life_essence' }, + { item: 'mythicbotany:dream_cherry' }, + { tag: 'botania:runes/midgard' }, + { item: 'mythicbotany:dream_cherry' }, + { item: 'naturesaura:ancient_sapling' }, + { item: 'mythicbotany:dream_cherry' }, + { tag: 'botania:runes/midgard' }, + { item: 'mythicbotany:dream_cherry' } + ], + effects: [ + 'astralsorcery:built_in_effect_constellation_finish', + 'astralsorcery:built_in_effect_trait_relay_highlight', + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_trait_focus_circle', + 'astralsorcery:altar_default_sparkle', + 'astralsorcery:built_in_effect_constellation_lines', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: `${id_prefix}gaia_spreader` + } + ]; + + recipes.forEach((recipe) => { + let constructed_recipe = { + type: 'astralsorcery:altar', + altar_type: recipe.altar_type, + duration: recipe.duration, + starlight: recipe.starlight, + pattern: recipe.pattern, + key: recipe.key, + output: [recipe.output.toResultJson()], + effects: recipe.effects + }; + + if (recipe.relay_inputs) { + constructed_recipe.relay_inputs = recipe.relay_inputs; + } + if (recipe.focus_constellation) { + constructed_recipe.focus_constellation = recipe.focus_constellation; + } + if (recipe.recipe_class) { + constructed_recipe.recipe_class = recipe.recipe_class; + } + + event.custom(constructed_recipe).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/infuser.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/infuser.js index de63a52691..f6befad511 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/infuser.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/infuser.js @@ -2,7 +2,7 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - + const id_prefix = 'enigmatica:expert/astralsorcery/infuser/'; const recipes = [ { input: 'occultism:infused_lenses', @@ -10,24 +10,24 @@ onEvent('recipes', (event) => { consumptionChance: 0.5, output: 'astralsorcery:glass_lens', count: 2, - duration: 100 + duration: 100, + id: `astralsorcery:infuser/glass_pane` } ]; recipes.forEach((recipe) => { - const re = event.custom({ - type: 'astralsorcery:infuser', - fluidInput: recipe.fluid, - input: Ingredient.of(recipe.input).toJson(), - output: Item.of(recipe.output, recipe.count).toResultJson(), - consumptionChance: recipe.consumptionChance, - duration: recipe.duration, - consumeMultipleFluids: false, - acceptChaliceInput: true, - copyNBTToOutputs: false - }); - if (recipe.id) { - re.id(recipe.id); - } + event + .custom({ + type: 'astralsorcery:infuser', + fluidInput: recipe.fluid, + input: Ingredient.of(recipe.input).toJson(), + output: Item.of(recipe.output, recipe.count).toResultJson(), + consumptionChance: recipe.consumptionChance, + duration: recipe.duration, + consumeMultipleFluids: false, + acceptChaliceInput: true, + copyNBTToOutputs: false + }) + .id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js index f91ab9ee8c..75869c5766 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/occultism/ritual.js @@ -2,8 +2,8 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - const id_prefix = 'enigmatica:expert/occultism/ritual/'; + const id_prefix = 'enigmatica:expert/occultism/ritual/'; recipes = [ { ritual_type: 'occultism:craft', @@ -813,9 +813,58 @@ onEvent('recipes', (event) => { ], result: { item: 'astralsorcery:attunement_altar' }, id: `${id_prefix}attunement_altar` + }, + { + ritual_type: 'occultism:craft', + activation_item: { tag: 'botania:runes/midgard' }, + pentacle_id: 'occultism:craft_djinni', + duration: 24, + entity_to_sacrifice: { + tag: 'enigmatica:pharaohs', + display_name: 'ritual.occultism.sacrifice.pharaohs' + }, + ritual_dummy: { item: 'kubejs:craft_mana_collector' }, + ingredients: [ + { tag: 'botania:runes/asgard' }, + { tag: 'forge:ingots/gaia_spirit' }, + { tag: 'botania:runes/niflheim' }, + { item: 'botania:gaia_spreader' }, + + { tag: 'botania:runes/muspelheim' }, + { tag: 'botania:runes/nidavellir' }, + { tag: 'forge:storage_blocks/iesnium' }, + { tag: 'botania:runes/joetunheim' }, + + { tag: 'botania:runes/alfheim' }, + { tag: 'botania:runes/helheim' }, + { tag: 'forge:storage_blocks/iesnium' }, + { tag: 'botania:runes/vanaheim' } + ], + result: { item: 'mythicbotany:mana_collector' }, + id: `${id_prefix}mana_collector` } ]; + /* + Ingredient Display in JEI + ingredients: [ + { item: '12 o'clock' }, + { item: '3 o'clock' }, + { item: '6 o'clock' }, + { item: '9 o'clock' }, + + { item: '1 o'clock'}, + { item: '2 o'clock' }, + { item: '7 o'clock' }, + { item: '8 o'clock' }, + + { item: '11 o'clock' }, + { item: '4 o'clock' }, + { item: '5 o'clock' }, + { item: '10 o'clock' } + ], + */ + recipes.forEach((recipe) => { recipe.type = 'occultism:ritual'; event.custom(recipe).id(recipe.id); diff --git a/kubejs/startup_scripts/item_registry.js b/kubejs/startup_scripts/item_registry.js index 60893f7d3b..5f47d8be7c 100644 --- a/kubejs/startup_scripts/item_registry.js +++ b/kubejs/startup_scripts/item_registry.js @@ -39,7 +39,8 @@ onEvent('item.registry', (event) => { 'craft_soulpickaxe', 'craft_soulshovel', 'craft_soulscythe', - 'craft_attunement_altar' + 'craft_attunement_altar', + 'craft_mana_collector' ]; const assemblyTableItems = [ From 05484d68f14ec7886df9885df751d13c97327ae2 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 1 Oct 2021 17:17:18 -0400 Subject: [PATCH 053/124] firmament --- .../recipetypes/interactio/item_lightning.js | 44 ++++++++++--------- .../expert/recipetypes/kubejs/shaped.js | 13 +----- 2 files changed, 26 insertions(+), 31 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js index 9009309749..eda31819a5 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js @@ -2,7 +2,7 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - + const id_prefix = 'enigmatica:expert/interactio/item_lightning/'; const recipes = [ { inputs: [ @@ -15,7 +15,7 @@ onEvent('recipes', (event) => { empty_weight: 3, rolls: 16 }, - id: 'charged_snowball' + id: `${id_prefix}charged_snowball` }, { inputs: [ @@ -28,7 +28,7 @@ onEvent('recipes', (event) => { empty_weight: 1, rolls: 4 }, - id: 'arcane_stone' + id: `${id_prefix}arcane_stone` }, { inputs: [ @@ -84,7 +84,7 @@ onEvent('recipes', (event) => { empty_weight: 0, rolls: 1 }, - id: 'jar_of_light' + id: `${id_prefix}jar_of_light` }, { inputs: [ @@ -96,7 +96,7 @@ onEvent('recipes', (event) => { empty_weight: 0, rolls: 1 }, - id: 'void_jar' + id: `${id_prefix}void_jar` }, { inputs: [ @@ -124,7 +124,7 @@ onEvent('recipes', (event) => { empty_weight: 0, rolls: 1 }, - id: 'calling_spirit' + id: `${id_prefix}calling_spirit` }, { inputs: [ @@ -138,7 +138,7 @@ onEvent('recipes', (event) => { empty_weight: 0, rolls: 1 }, - id: 'lodestone' + id: `${id_prefix}lodestone` }, { inputs: [ @@ -151,7 +151,7 @@ onEvent('recipes', (event) => { empty_weight: 0, rolls: 1 }, - id: 'spark' + id: `${id_prefix}spark` }, { inputs: [ @@ -192,21 +192,25 @@ onEvent('recipes', (event) => { empty_weight: 3, rolls: 3 }, - id: 'invar_dust' + id: `${id_prefix}invar_dust` + }, + { + inputs: [ + { tag: 'forge:dusts/fluorite', count: 1 }, + { item: 'minecraft:prismarine', count: 6 }, + { item: 'undergarden:tremblecrust', count: 6 } + ], + output: { + entries: [{ result: { item: 'kubejs:firmament', count: 1 }, weight: 7 }], + empty_weight: 3, + rolls: 3 + }, + id: `${id_prefix}firmament` } ]; recipes.forEach((recipe) => { - const re = event.custom({ - type: 'interactio:item_lightning', - inputs: recipe.inputs, - output: recipe.output - }); - if (recipe.id) { - if (!recipe.id.includes(':')) { - recipe.id = 'enigmatica:expert/interactio/item_lightning/' + recipe.id; - } - re.id(recipe.id); - } + recipe.type = 'interactio:item_lightning'; + event.custom(recipe).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js index 4d0f6837de..d23e2368d6 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/kubejs/shaped.js @@ -15,16 +15,7 @@ onEvent('recipes', (event) => { } */ - const newRecipes = [ - { - output: 'kubejs:firmament', - pattern: ['AAB', 'ABA', 'BAA'], - key: { - A: 'minecraft:prismarine', - B: 'undergarden:tremblecrust' - }, - id: `${id_prefix}firmament` - }, + const recipes = [ { output: 'kubejs:basic_circuit_package', pattern: ['AAA', 'EDB', 'CCC'], @@ -237,7 +228,7 @@ onEvent('recipes', (event) => { } ]; - newRecipes.forEach((recipe) => { + recipes.forEach((recipe) => { event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); }); }); From cbd114ed6363e21dea69fe1bbac2838ab67b784f Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 1 Oct 2021 23:23:29 -0400 Subject: [PATCH 054/124] dark utils --- .../expert/item_modifiers/jei_hide_items.js | 15 +- .../kubejs/expert/recipes/remove.js | 2 + .../astralsorcery/altar/altar_1_starlight.js | 21 +++ .../recipetypes/bloodmagic/alchemytable.js | 149 +++++++++++++++++- .../expert/recipetypes/create/cutting.js | 17 ++ .../expert/recipetypes/darkutils/shaped.js | 81 ++++++++++ .../immersiveengineering/cutting.js | 20 +++ .../expert/recipetypes/mekanism/sawing.js | 16 +- .../recipetypes/thermal/machine/sawmill.js | 11 +- 9 files changed, 318 insertions(+), 14 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/cutting.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/darkutils/shaped.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/cutting.js diff --git a/kubejs/client_scripts/expert/item_modifiers/jei_hide_items.js b/kubejs/client_scripts/expert/item_modifiers/jei_hide_items.js index 6f5b5f271c..0c812d8e92 100644 --- a/kubejs/client_scripts/expert/item_modifiers/jei_hide_items.js +++ b/kubejs/client_scripts/expert/item_modifiers/jei_hide_items.js @@ -2,9 +2,14 @@ onEvent('jei.hide.items', (event) => { if (global.isExpertMode == false) { return; } - [/powah:energy_cable_/, 'pneumaticcraft:air_compressor', 'pneumaticcraft:advanced_air_compressor'].forEach( - (entry) => { - event.hide(entry); - } - ); + let items = [ + 'darkutils:rune_damage_player', + /darkutils:export_plate/, + /powah:energy_cable_/, + 'pneumaticcraft:air_compressor', + 'pneumaticcraft:advanced_air_compressor' + ]; + items.forEach((entry) => { + event.hide(entry); + }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js index bd956faf62..1ff8ef87f4 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js @@ -28,6 +28,8 @@ onEvent('recipes', (event) => { /create:pressing\/\w*_ingot/, 'darkutils:crafting/rune_damage_player', + 'darkutils:crafting/blank_plate', + /darkutils:crafting\/export_plate/, 'farmersdelight:book_from_canvas', diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js index 0179850d73..b90d9a89e1 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_1_starlight.js @@ -159,6 +159,27 @@ onEvent('recipes', (event) => { 'astralsorcery:built_in_effect_attunement_sparkle' ], id: 'astralsorcery:altar/attunement_altar' + }, + { + output: Item.of('astralsorcery:ritual_pedestal'), + altar_type: 1, + duration: 200, + starlight: 1400, + pattern: ['A___A', '_BCB_', '_GEG_', '_FFF_', 'D___D'], + key: { + A: { tag: 'forge:ingots/arcane_gold' }, + B: { item: 'astralsorcery:marble_chiseled' }, + C: { item: 'minecraft:conduit' }, + D: { item: 'astralsorcery:marble_pillar' }, + E: { item: 'bloodmagic:masterritualstone' }, + F: { item: 'astralsorcery:marble_runed' }, + G: { tag: 'forge:inlays/arcane_gold' } + }, + effects: [ + 'astralsorcery:built_in_effect_discovery_central_beam', + 'astralsorcery:built_in_effect_attunement_sparkle' + ], + id: 'astralsorcery:altar/ritual_pedestal' } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js index a1220651ff..245d6d1ad9 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js @@ -3,7 +3,6 @@ onEvent('recipes', (event) => { return; } const id_prefix = 'enigmatica:expert/ars_nouveau/enchanting_apparatus/'; - const recipes = [ { inputs: ['ars_nouveau:magic_clay', 'minecraft:blaze_powder'], @@ -543,6 +542,154 @@ onEvent('recipes', (event) => { orbLevel: 3, id: `${id_prefix}intermediatecuttingfluid` }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"eidolon:anchored"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:anchor_plate', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/anchor_plate' + }, + { + inputs: ['darkutils:blank_plate', 'occultism:datura', 'bloodmagic:watersigil'], + output: 'darkutils:rune_nausea', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_nausea' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('naturesaura:aura_bottle', '{stored_type:"naturesaura:end"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_blindness', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_blindness' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"atmospheric:worsening"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_hunger', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_hunger' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"undergarden:glowing"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_glowing', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_glowing' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"apotheosis:fatigue"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_fatigue', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_fatigue' + }, + { + inputs: ['darkutils:blank_plate', 'alexsmobs:lava_bottle', 'bloodmagic:lavasigil'], + output: 'darkutils:rune_fire', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_fire' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"apotheosis:wither"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_wither', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_wither' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"minecraft:slowness"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_slowness', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_slowness' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"minecraft:weakness"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_weakness', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_weakness' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"minecraft:poison"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_poison', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_poison' + }, + { + inputs: [ + 'darkutils:blank_plate', + Item.of('minecraft:potion', '{Potion:"minecraft:harming"}'), + 'bloodmagic:watersigil' + ], + output: 'darkutils:rune_damage', + count: 1, + syphon: 300, + ticks: 200, + orbLevel: 1, + id: 'darkutils:crafting/rune_damage' + }, /// Patchouli Removals { diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/cutting.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/cutting.js new file mode 100644 index 0000000000..8cfb3f4dd8 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/cutting.js @@ -0,0 +1,17 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/create/cutting/'; + const recipes = [ + { + input: 'occultism:otherstone', + outputs: [Item.of('darkutils:blank_plate', 8), Item.of('darkutils:blank_plate').chance(0.5)], + id: `${id_prefix}blank_plate` + } + ]; + + recipes.forEach((recipe) => { + event.recipes.create.cutting(recipe.outputs, recipe.input).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/darkutils/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/darkutils/shaped.js new file mode 100644 index 0000000000..075563ba0c --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/darkutils/shaped.js @@ -0,0 +1,81 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + + /* + , + { + output: '', + pattern: ['', '', ''], + key: { + A: '' + }, + id: '' + } + */ + + const recipes = [ + { + output: Item.of('6x darkutils:vector_plate'), + pattern: ['AAA', 'BCB', 'AAA'], + key: { + A: 'darkutils:blank_plate', + B: 'bloodmagic:reagentair', + C: '#forge:nuggets/queens_slime' + }, + id: 'darkutils:crafting/vector_plate' + }, + { + output: Item.of('6x darkutils:vector_plate_fast'), + pattern: ['AAA', 'BCB', 'AAA'], + key: { + A: 'darkutils:vector_plate', + B: '#botania:runes/air', + C: '#forge:nuggets/queens_slime' + }, + id: 'darkutils:crafting/vector_plate_fast' + }, + { + output: Item.of('6x darkutils:vector_plate_extreme'), + pattern: ['AAA', 'BCB', 'AAA'], + key: { + A: 'darkutils:vector_plate_fast', + B: 'astralsorcery:colored_lens_push', + C: '#forge:nuggets/queens_slime' + }, + id: 'darkutils:crafting/vector_plate_extreme' + }, + { + output: Item.of('4x darkutils:import_plate'), + pattern: [' A ', 'ABA', ' A '], + key: { + A: 'darkutils:vector_plate', + B: 'naturesaura:grated_chute' + }, + id: 'darkutils:crafting/import_plate' + }, + { + output: Item.of('4x darkutils:import_plate_fast'), + pattern: [' A ', 'ABA', ' A '], + key: { + A: 'darkutils:vector_plate_fast', + B: 'naturesaura:grated_chute' + }, + id: 'darkutils:crafting/import_plate_fast' + }, + { + output: Item.of('4x darkutils:import_plate_extreme'), + pattern: [' A ', 'ABA', ' A '], + key: { + A: 'darkutils:vector_plate_extreme', + B: 'naturesaura:grated_chute' + }, + id: 'darkutils:crafting/import_plate_extreme' + } + ]; + + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/cutting.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/cutting.js new file mode 100644 index 0000000000..3c2584e629 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/cutting.js @@ -0,0 +1,20 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/immersiveengineering/cutting/'; + const recipes = [ + { + input: 'occultism:otherstone', + output: Item.of('darkutils:blank_plate', 8), + extraOutput: Item.of('darkutils:blank_plate').chance(0.5), + id: `${id_prefix}blank_plate` + } + ]; + + recipes.forEach((recipe) => { + event.recipes.immersiveengineering + .sawmill(recipe.output, recipe.input, [{ stripping: false, output: recipe.extraOutput }]) + .id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mekanism/sawing.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mekanism/sawing.js index fd1ae1f82c..daaec4ccf8 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mekanism/sawing.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mekanism/sawing.js @@ -2,18 +2,22 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } + const id_prefix = 'enigmatica:expert/mekanism/sawing/'; const recipes = [ { input: 'occultism:dimensional_matrix', output: Item.of('kubejs:dimensional_storage_crystal', 9), - extraOutput: Item.of('kubejs:dimensional_storage_crystal').chance(0.5) + extraOutput: Item.of('kubejs:dimensional_storage_crystal').chance(0.5), + id: `${id_prefix}dimensional_storage_crystal` + }, + { + input: 'occultism:otherstone', + output: Item.of('darkutils:blank_plate', 8), + extraOutput: Item.of('darkutils:blank_plate').chance(0.5), + id: `${id_prefix}blank_plate` } ]; recipes.forEach((recipe) => { - const re = event.recipes.mekanism.sawing(recipe.output, recipe.input, recipe.extraOutput); - - if (recipe.id) { - re.id(recipe.id); - } + event.recipes.mekanism.sawing(recipe.output, recipe.input, recipe.extraOutput).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/sawmill.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/sawmill.js index 89a7137b42..23be8e9e97 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/sawmill.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/sawmill.js @@ -2,17 +2,24 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } + const id_prefix = 'enigmatica:expert/thermal/sawmill/'; const recipes = [ { input: 'occultism:dimensional_matrix', outputs: [ Item.of('kubejs:dimensional_storage_crystal', 6), Item.of('kubejs:dimensional_storage_crystal').chance(0.25) - ] + ], + id: `${id_prefix}dimensional_storage_crystal` + }, + { + input: 'occultism:otherstone', + outputs: [Item.of('darkutils:blank_plate', 8), Item.of('darkutils:blank_plate').chance(0.5)], + id: `${id_prefix}blank_plate` } ]; recipes.forEach((recipe) => { - event.recipes.thermal.sawmill(recipe.outputs, recipe.input); + event.recipes.thermal.sawmill(recipe.outputs, recipe.input).id(recipe.id); }); }); From deb27e80995e3f537c2324a08754e94dcabdf8d4 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 1 Oct 2021 23:31:21 -0400 Subject: [PATCH 055/124] remove mana dust from infusion --- kubejs/client_scripts/constants.js | 4 ++++ .../server_scripts/enigmatica/kubejs/expert/recipes/remove.js | 2 ++ 2 files changed, 6 insertions(+) diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index 889941b8f8..e05cf6e49e 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -495,6 +495,10 @@ const recipesToHide = [ category: 'botania:petals', recipes_by_id: ['mythicbotany:petal_apothecary/wither_aconite', 'mythicbotany:petal_apothecary/raindeletia'] }, + { + category: 'botania:mana_pools', + recipes_by_id: ['botania:mana_infusion/mana_powder_dust', 'botania:mana_infusion/mana_powder_dye'] + }, { category: 'bloodmagic:alchemytable', recipes_by_id: ['bloodmagic:alchemytable/basic_cutting_fluid_sigil'] diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js index 1ff8ef87f4..2f2804f6b0 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipes/remove.js @@ -144,6 +144,8 @@ onEvent('recipes', (event) => { { output: 'botania:mana_spreader', id: 'botania:mana_spreader' }, { output: 'botania:elven_spreader', id: 'botania:elven_spreader' }, { output: 'botania:gaia_spreader', id: 'botania:gaia_spreader' }, + { output: 'botania:mana_powder', id: 'botania:mana_infusion/mana_powder_dust' }, + { output: 'botania:mana_powder', id: 'botania:mana_infusion/mana_powder_dye' }, { output: 'botania:gaia_pylon', id: 'mythicbotany:modified_gaia_pylon_with_alfsteel' }, { output: 'mythicbotany:alfsteel_pylon', id: 'mythicbotany:alfsteel_pylon' }, From 6d7bb24c18cdc6498222bcc28c4cc22d3d9f3084 Mon Sep 17 00:00:00 2001 From: Ridanis Date: Sat, 2 Oct 2021 12:58:48 +0200 Subject: [PATCH 056/124] Building Quest Chapter 1 of 2 --- .../ftbquests/quests/chapters/building.snbt | 1228 ++++++++++++++++- 1 file changed, 1193 insertions(+), 35 deletions(-) diff --git a/config/ftbquests/quests/chapters/building.snbt b/config/ftbquests/quests/chapters/building.snbt index 32d26cca49..c39d7f5def 100644 --- a/config/ftbquests/quests/chapters/building.snbt +++ b/config/ftbquests/quests/chapters/building.snbt @@ -4,82 +4,1240 @@ order_index: 2 filename: "building" title: "Building" - icon: "mcwroofs:oak_attic_roof" + icon: "minecraft:scaffolding" always_invisible: true default_quest_shape: "" default_hide_dependency_lines: false quests: [ { title: "Building" + icon: "minecraft:scaffolding" x: 0.0d y: 0.0d - description: ["This chapter highlights some of the building materials you have available."] - id: "0000000000000E1F" + shape: "gear" + subtitle: "Dirt Hut No More" + description: ["INTRO_DESC"] + id: "058D3BEB64C74E27" tasks: [{ - id: "0000000000000E20" + id: "4A2592C4467CEAF6" type: "checkmark" - title: "Building" - icon: "minecraft:glass" + title: "Builder" + }] + rewards: [{ + id: "7FCE38283295ED61" + type: "xp" + xp: 100 }] } { - title: "Macaw's Bridges" + icon: "minecraft:oak_log" x: 0.0d y: -2.0d - dependencies: ["0000000000000E1F"] - id: "0000000000000E2A" + subtitle: "A mod for every occasion" + description: ["MACAW_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "3834BBF4818E4ABE" tasks: [{ - id: "0000000000000E2B" + id: "4AF3B5D3B12BB9E7" + type: "checkmark" + title: "Macaw's Mods" + }] + rewards: [{ + id: "0E23B1EC7F8A65EE" type: "item" - item: "mcwbridges:rope_oak_bridge" + item: "create:builders_tea" + count: 2 + random_bonus: 2 }] } { - title: "Macaw's Doors" - x: -1.0d + title: "Windows + Additions" + icon: "mcwwindows:oak_window2" + x: 1.5d + y: -3.5d + dependencies: ["3834BBF4818E4ABE"] + id: "69264C279D819443" + tasks: [{ + id: "6D2B932E57592B13" + type: "checkmark" + title: "Windows + Additions" + }] + rewards: [{ + id: "22CC2896509891A2" + type: "xp" + xp: 100 + }] + } + { + icon: "mcwroofs:oak_roof" + x: 0.5d + y: -4.0d + dependencies: ["3834BBF4818E4ABE"] + id: "294FF399D036000C" + tasks: [{ + id: "63DF62E447E2B737" + type: "checkmark" + title: "Roofs + Tiles and Gutters" + }] + rewards: [{ + id: "4EBBC5E559BB1D57" + type: "xp" + xp: 100 + }] + } + { + icon: "mcwtrpdoors:oak_cottage_trapdoor" + x: -0.5d + y: -4.0d + dependencies: ["3834BBF4818E4ABE"] + id: "2BFA6B1DF968DB60" + tasks: [{ + id: "57A218C479845117" + type: "checkmark" + title: "Trapdoors" + }] + rewards: [{ + id: "760F5F32E39E413F" + type: "xp" + xp: 100 + }] + } + { + icon: "mcwdoors:oak_cottage_door" + x: -1.5d + y: -3.5d + dependencies: ["3834BBF4818E4ABE"] + id: "6AAB0C70527EB1C8" + tasks: [{ + id: "1D231CC06FA1DCEF" + type: "checkmark" + title: "Doors" + }] + rewards: [{ + id: "190BC73D15872F2A" + type: "xp" + xp: 100 + }] + } + { + title: "Fences and Walls" + icon: "mcwfences:oak_picket_fence" + x: 2.0d y: -2.5d - dependencies: ["0000000000000E1F"] - id: "0000000000000E2E" + dependencies: ["3834BBF4818E4ABE"] + id: "1A8ADC65B09E9539" tasks: [{ - id: "0000000000000E2F" - type: "item" - item: "mcwdoors:oak_japanese_door" + id: "227EE4A805EDDECE" + type: "checkmark" + title: "Fences" + }] + rewards: [{ + id: "6DA561C702F1DEA5" + type: "xp" + xp: 100 }] } { - title: "Macaw's Roofs" - x: 1.0d + icon: "mcwbridges:oak_log_bridge_middle" + x: -2.0d y: -2.5d - dependencies: ["0000000000000E1F"] - id: "0000000000000E30" + dependencies: ["3834BBF4818E4ABE"] + id: "5CC123276DD545C8" + tasks: [{ + id: "79A1B718CC1EE549" + type: "checkmark" + title: "Bridges" + }] + rewards: [{ + id: "0DA8D314B0CFE8BA" + type: "xp" + xp: 100 + }] + } + { + title: "Masonry" + icon: "masonry:andesitetiled" + x: 1.0d + y: -1.5d + subtitle: "Channel your inner Dwarf" + description: ["MASONRY_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "63FE93055CE4162C" tasks: [{ - id: "0000000000000E31" + id: "44BE21A46B853C66" + type: "checkmark" + title: "Masonary" + }] + rewards: [{ + id: "167EDB46E088AA19" type: "item" - item: "mcwroofs:oak_attic_roof" + item: "minecraft:stonecutter" + }] + } + { + title: "MrCrayfish's Furniture Mod" + icon: "cfm:oak_chair" + x: -1.0d + y: -1.5d + subtitle: "It's like IKEA, but without the Meatballs" + description: ["CRAY_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "32824050418C71EB" + tasks: [{ + id: "57B8F3B3CE1B0382" + type: "checkmark" + title: "MrCrayFish" + }] + rewards: [{ + id: "3006D73518186276" + type: "command" + title: "Farmer's Delight" + icon: "kubejs:farmers_delight" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_farmers_delight" + player_command: false }] } { - title: "Macaw's Windows" + title: "Connected Glass" + icon: "connectedglass:clear_glass" x: 2.0d + y: -1.0d + subtitle: "It's like a love story in the making" + description: ["CONNECTEDGLASS_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "66099AFAA1A6043F" + tasks: [{ + id: "5E22777A93E1A57F" + type: "checkmark" + title: "Connected Glass" + }] + rewards: [{ + id: "73CEB3BC6963B644" + type: "command" + title: "Alchemist's Delight" + icon: "kubejs:alchemists_delight" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_alchemists_delight" + player_command: false + }] + } + { + title: "Simply Light" + icon: "simplylight:illuminant_block_on" + x: -2.0d + y: -1.0d + subtitle: "Let there be light" + description: ["LIGHT_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "42FB32CC99E66E3F" + tasks: [{ + id: "50131A2AFEF8805D" + type: "checkmark" + title: "Simply Lights" + }] + rewards: [{ + id: "7E2D7FEE20672C9D" + type: "command" + title: "Scavenger's Delight" + icon: "kubejs:scavengers_delight" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_scavengers_delight" + player_command: false + }] + } + { + title: "Framed Blocks" + icon: "framedblocks:framed_cube" + x: 2.5d + y: 0.0d + subtitle: "Sky is the limit" + description: ["FRAMEDBLOCKS_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "0798D5139479A837" + tasks: [{ + id: "62781D9D0AB3CB08" + type: "checkmark" + title: "Framed Blocks" + }] + rewards: [ + { + id: "7A45DC96F03CA232" + type: "item" + item: "framedblocks:framed_hammer" + } + { + id: "1C5FD3A8CD3424C0" + type: "item" + item: "framedblocks:framed_wrench" + } + ] + } + { + title: "Framed Drawers" + icon: "framedcompactdrawers:framed_full_one" + x: -2.5d + y: 0.0d + subtitle: "Build-a-Bear, but with Drawers" + description: ["FRAMEDDRAWERS_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "473BE440ECB1CEDF" + tasks: [{ + id: "1C2A1C581C97D480" + type: "checkmark" + title: "Framed Drawers" + }] + rewards: [ + { + id: "799AB9D93C124D6F" + type: "item" + item: "storagedrawers:emerald_storage_upgrade" + } + { + id: "006783158FEE960D" + type: "item" + item: "storagedrawers:void_upgrade" + } + ] + } + { + title: "Chipped" + icon: "chipped:mason_table" + x: 2.0d + y: 1.0d + subtitle: "Nothing a little wood filler won't fix" + description: ["CHIPPED_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "1EAFB4FB2CF09F26" + tasks: [{ + id: "761ADF517D67FC5A" + type: "checkmark" + title: "Chipped" + }] + rewards: [{ + id: "0365D0D7A7E40B1D" + type: "command" + title: "Miner's Delight" + icon: "kubejs:miners_delight" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_miners_delight" + player_command: false + }] + } + { + title: "Engineer's Decor" + icon: "engineersdecor:steel_catwalk_stairs" + x: -2.0d + y: 1.0d + subtitle: "Immersive Decorating" + description: ["ENGINEERSDECOR_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "68E143E444AF44C2" + tasks: [{ + id: "62B41166B5BAC9CF" + type: "checkmark" + title: "Engineer's Decor" + }] + rewards: [{ + id: "3C8E7414A7A4C3C0" + type: "item" + item: "engineersdecor:sign_hotwire" + count: 2 + random_bonus: 4 + }] + } + { + title: "'Dustrial Decor" + icon: "dustrial_decor:sheet_metal_treading" + x: -1.0d + y: 1.5d + subtitle: "Safty Helmet should be worn at all times" + description: ["DUSTRIALDECOR_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "201E7950E17180BD" + tasks: [{ + id: "76C3B1B9033FFC8C" + type: "checkmark" + title: "'Dustrial Decor" + }] + rewards: [ + { + id: "6C4A232FCA2807FA" + type: "item" + item: { + id: "dustrial_decor:cardboard_helmet" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "60773CCBDE6A5D12" + type: "item" + item: "dustrial_decor:cardboard" + count: 16 + random_bonus: 16 + } + ] + } + { + title: "Decorative Blocks" + icon: "decorative_blocks:oak_support" + x: 1.0d + y: 1.5d + subtitle: "Grab a chair, and sit by the hearth" + description: ["DECORATIVEBLOCKS_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "03D0B336BB7CEFE1" + tasks: [{ + id: "07C722038EBA8BA5" + type: "checkmark" + title: "Decorative Blocks" + }] + rewards: [ + { + id: "53FB7E9EE2F64323" + type: "item" + item: "simplefarming:beer" + } + { + id: "314E867E74A0A658" + type: "item" + item: "simplefarming:wine" + } + { + id: "5C9415F6EFAA203C" + type: "item" + item: "simplefarming:whiskey" + } + { + id: "293E3264D9BC1836" + type: "item" + item: "simplefarming:mead" + } + { + id: "454E1AEBCCD2B768" + type: "item" + item: "simplefarming:vodka" + } + { + id: "3AE7ECDC030B78F6" + type: "item" + item: "simplefarming:sake" + } + { + id: "020E1FF6FF8532FA" + type: "item" + item: "simplefarming:cider" + } + { + id: "022D696626C1C290" + type: "item" + item: "simplefarming:cauim" + } + { + id: "421FEBBA8B18E8BF" + type: "item" + item: "simplefarming:tiswin" + } + ] + } + { + title: "Valhelsia Structures" + icon: "valhelsia_structures:big_orange_glazed_jar" + x: 0.0d + y: 2.0d + subtitle: "Raid \\& Pillager, or I guess you can just Craft this stuff" + description: ["VALHELSIA_DESC"] + dependencies: ["058D3BEB64C74E27"] + id: "1DEA7DBF6D1A1C6A" + tasks: [{ + id: "3D34CEA63C477805" + type: "checkmark" + title: "Valhelsia Strucutres" + }] + rewards: [{ + id: "548107ED51B7B447" + type: "command" + title: "Sorcerer's Delight" + icon: "kubejs:sorcerers_delight" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_sorcerers_delight" + player_command: false + }] + } + { + title: "General Building Tools" + icon: { + id: "emendatusenigmatica:enigmatic_hammer" + Count: 1b + tag: { + Damage: 0 + } + } + x: 6.0d + y: 3.0d + shape: "gear" + subtitle: "The right tools for the job" + description: ["GENERAL_INTRO_DESC"] + id: "5411C8D2344CC2F1" + tasks: [{ + id: "48834CDA218F71E0" + type: "checkmark" + title: "Building Tools" + }] + rewards: [{ + id: "215C050F84460976" + type: "item" + item: "minecraft:scaffolding" + count: 16 + random_bonus: 16 + }] + } + { + title: "Portable Stonecutter" + icon: "portable_stonecutter:portable_stonecutter" + x: 5.0d + y: 2.0d + subtitle: "It's like the Chisel, but it's not" + description: ["PSC_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "085A8424875A2B23" + tasks: [{ + id: "0F45B05043BCCBE6" + type: "item" + item: "portable_stonecutter:portable_stonecutter" + }] + rewards: [{ + id: "31F796972A4B7369" + type: "command" + title: "Scavenger's Delight" + icon: "kubejs:scavengers_delight" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_scavengers_delight" + player_command: false + }] + } + { + title: "Chisel" + icon: { + id: "chisel:iron_chisel" + Count: 1b + tag: { + Damage: 0 + } + } + x: 6.0d + y: 1.5d + subtitle: "It's like the Portable Stonecutter, but it's not" + description: ["CHISEL_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "165DFE2F0AF151E7" + tasks: [{ + id: "2A04BA9132C1CB19" + type: "item" + item: { + id: "chisel:iron_chisel" + Count: 1b + tag: { + Damage: 0 + } + } + }] + rewards: [{ + id: "77DBBB65B8E37846" + type: "item" + item: "chisel:factory/dots" + count: 16 + random_bonus: 16 + }] + } + { + title: "Chisel \\& Bits" + icon: { + id: "chiselsandbits:chisel_stone" + Count: 1b + tag: { + Damage: 0 + } + } + x: 7.0d + y: 2.0d + subtitle: "It's nothing like the Chisel or the Portable Stonecutter" + description: ["CaB_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "468BEE8C31DA8DF9" + tasks: [{ + id: "45C52AC34FB4858B" + type: "item" + item: { + id: "chiselsandbits:chisel_stone" + Count: 1b + tag: { + Damage: 0 + } + } + }] + rewards: [ + { + id: "720F542AE5971C8B" + type: "item" + item: { + id: "chiselsandbits:bit_bag" + Count: 1b + tag: { + Inventory: { } + } + } + } + { + id: "26AE96A25BAAC750" + type: "item" + item: "chiselsandbits:magnifying_glass" + } + { + id: "4DDA396CCCA5EF72" + type: "item" + item: { + id: "chiselsandbits:measuring_tape" + Count: 1b + tag: { } + } + } + ] + } + { + title: "Building Gadget" + icon: { + id: "buildinggadgets:gadget_building" + Count: 1b + tag: { + state: { + serializer: "buildinggadgets:dummy_serializer" + state: { + Name: "minecraft:air" + } + data: { } + } + } + } + x: 5.0d + y: 4.0d + subtitle: "It builds stuff" + description: ["BG_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "0F06CA2A45323C4C" + tasks: [{ + id: "5DB4EE8F264A9453" + type: "item" + item: { + id: "buildinggadgets:gadget_building" + Count: 1b + tag: { + state: { + serializer: "buildinggadgets:dummy_serializer" + state: { + Name: "minecraft:air" + } + data: { } + } + } + } + }] + rewards: [{ + id: "651CFE821154BBC8" + type: "xp" + xp: 100 + }] + } + { + title: "Exchange Gadget" + icon: { + id: "buildinggadgets:gadget_exchanging" + Count: 1b + tag: { + state: { + serializer: "buildinggadgets:dummy_serializer" + state: { + Name: "minecraft:air" + } + data: { } + } + } + } + x: 6.0d + y: 4.5d + subtitle: "It exchanges stuff" + description: ["EG_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "25E1DB1C3F184D4C" + tasks: [{ + id: "0031DADEE3BD0089" + type: "item" + item: { + id: "buildinggadgets:gadget_exchanging" + Count: 1b + tag: { + state: { + serializer: "buildinggadgets:dummy_serializer" + state: { + Name: "minecraft:air" + } + data: { } + } + } + } + }] + rewards: [{ + id: "2A430B36A4ECDB29" + type: "xp" + xp: 100 + }] + } + { + title: "Copy-Paste Gadget" + icon: { + id: "buildinggadgets:gadget_copy_paste" + Count: 1b + tag: { + mode: 0b + template_id: [I; + -937522451 + -1230682587 + -1166065172 + -847433661 + ] + } + } + x: 7.0d + y: 4.0d + subtitle: "It copies and pastes stuff" + description: ["CPG_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "2E5F1C7B4B293531" + tasks: [{ + id: "6AB9C0357788BA56" + type: "item" + item: { + id: "buildinggadgets:gadget_copy_paste" + Count: 1b + tag: { + mode: 0b + template_id: [I; + -937522451 + -1230682587 + -1166065172 + -847433661 + ] + } + } + }] + rewards: [{ + id: "56EDEB3CE12B8C19" + type: "xp" + xp: 100 + }] + } + { + title: "Destruction Gadget" + icon: { + id: "buildinggadgets:gadget_destruction" + Count: 1b + tag: { + overlay: 1b + fuzzy: 1b + } + } + x: 7.5d + y: 3.0d + subtitle: "It destructs stuff" + description: ["DESG_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "095108AB50598C04" + tasks: [{ + id: "1441EAF1EDC3AFDF" + type: "item" + item: { + id: "buildinggadgets:gadget_destruction" + Count: 1b + tag: { + overlay: 1b + fuzzy: 1b + } + } + }] + rewards: [{ + id: "61F9F3D49C389940" + type: "xp" + xp: 100 + }] + } + { + title: "Construction Wand" + icon: { + id: "constructionwand:stone_wand" + Count: 1b + tag: { + wand_options: { } + Damage: 0 + } + } + x: 4.5d + y: 3.0d + subtitle: "Accio" + description: ["CWAND_DESC"] + dependencies: ["5411C8D2344CC2F1"] + id: "26B88D08862EA1AE" + tasks: [{ + id: "1DFE69E8333E7764" + type: "item" + item: { + id: "constructionwand:stone_wand" + Count: 1b + tag: { + wand_options: { } + Damage: 0 + } + } + }] + rewards: [{ + id: "214C2A82D3E5941A" + type: "item" + item: "minecraft:scaffolding" + count: 16 + random_bonus: 16 + }] + } + { + title: "Botania Building Tools" + icon: { + id: "botania:lexicon" + Count: 1b + tag: { + "botania:elven_unlock": 1b + } + } + x: 6.0d y: -3.0d - dependencies: ["0000000000000E1F"] - id: "0000000000000E32" + shape: "gear" + subtitle: "Magical building technologies " + description: ["BOTANIA_INTRO_DESC"] + id: "3F1801BBAF8A29FD" tasks: [{ - id: "0000000000000E33" + id: "0A6C5E41EEDC3E80" + type: "checkmark" + title: "Botania Building Tools" + }] + rewards: [{ + id: "67E31EF8EF9242E8" type: "item" - item: "mcwwindows:oak_window" + item: "botania:livingwood_twig" + count: 4 + random_bonus: 4 }] } { - title: "Macaw's Trapdoors" - x: -2.0d + title: "Rod of the Shifting Crust" + icon: { + id: "botania:exchange_rod" + Count: 1b + tag: { } + } + x: 7.0d + y: -4.0d + description: ["CRUST_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "3A0988C3AEFBAAC5" + tasks: [{ + id: "7FA93EE01B45135D" + type: "item" + item: { + id: "botania:exchange_rod" + Count: 1b + tag: { } + } + }] + rewards: [{ + id: "41109E78B59EF97B" + type: "command" + title: "Rare Botania Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_rare" + player_command: false + }] + } + { + title: "Rod of the Depths" + icon: "botania:cobble_rod" + x: 5.0d + y: -4.0d + description: ["DEPTH_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "261056A552909227" + tasks: [{ + id: "60487B8DAAABD00A" + type: "item" + item: "botania:cobble_rod" + }] + rewards: [{ + id: "0F739D6D5D514E05" + type: "command" + title: "Rare Botania Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_rare" + player_command: false + }] + } + { + title: "Rod of the Lands" + icon: "botania:dirt_rod" + x: 7.5d + y: -3.0d + description: ["LANDS_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "75361161CEA1E406" + tasks: [{ + id: "2FE7292AC2F975A8" + type: "item" + item: "botania:dirt_rod" + }] + rewards: [{ + id: "0C25B3F19358451A" + type: "command" + title: "Rare Botania Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_rare" + player_command: false + }] + } + { + title: "Rod of the Terra Firma" + icon: "botania:terraform_rod" + x: 7.0d + y: -2.0d + description: ["TERRAFIRMA_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "1E22D45F4ACB8FE2" + tasks: [{ + id: "3F20DF25B210800F" + type: "item" + item: "botania:terraform_rod" + }] + rewards: [{ + id: "2675982841DE964D" + type: "command" + title: "Legendary Botania Loot Box" + icon: "kubejs:legendary_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_legendary" + player_command: false + }] + } + { + title: "Astral Sorcery Building Tools" + icon: "astralsorcery:tome" + x: -6.0d + y: 0.0d + shape: "gear" + subtitle: "No construction work after hours" + description: ["ASTRAL_INTRO_DESC"] + id: "020ECCFFA45CE43D" + tasks: [{ + id: "6D5A746B4A711C58" + type: "checkmark" + title: "Astral Sorcery Building Tools" + }] + rewards: [ + { + id: "691CF672BABA1FA8" + type: "item" + item: "astralsorcery:stardust" + random_bonus: 1 + } + { + id: "36968A85FAA99915" + type: "item" + item: "astralsorcery:marble_raw" + count: 4 + random_bonus: 4 + } + ] + } + { + title: "Formation Wand" + icon: { + id: "astralsorcery:architect_wand" + Count: 1b + tag: { + astralsorcery: { } + } + } + x: -4.5d + y: 0.0d + description: ["FORMATIONWAND_DESC"] + dependencies: ["020ECCFFA45CE43D"] + id: "4A2306BD24A5D6D2" + tasks: [{ + id: "7D1392DE2FB21B89" + type: "item" + item: { + id: "astralsorcery:architect_wand" + Count: 1b + tag: { + astralsorcery: { } + } + } + }] + rewards: [{ + id: "23FF3AAB4DFEE10C" + type: "command" + title: "Rare Astral Sorcery Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_astral_sorcery_loot_rare" + player_command: false + }] + } + { + title: "Conversion Wand" + icon: { + id: "astralsorcery:exchange_wand" + Count: 1b + tag: { + astralsorcery: { } + } + } + x: -7.5d + y: 0.0d + description: ["CONVERSIONWAND_DESC"] + dependencies: ["020ECCFFA45CE43D"] + id: "2334B38255294FAE" + tasks: [{ + id: "0BE4A8E8DE0E013F" + type: "item" + item: { + id: "astralsorcery:exchange_wand" + Count: 1b + tag: { + astralsorcery: { } + } + } + }] + rewards: [{ + id: "07A919265475FAEF" + type: "command" + title: "Rare Astral Sorcery Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_astral_sorcery_loot_rare" + player_command: false + }] + } + { + title: "Create Building Tools" + icon: "create:mechanical_arm" + x: -6.0d + y: 1.5d + shape: "gear" + subtitle: "Let's get mechanical, mechanical" + description: ["CREATE_INTRO_DESC"] + id: "1E318BCAC2C6FA09" + tasks: [{ + id: "2FC308627BCE10F4" + type: "checkmark" + title: "Create Building Tools" + }] + rewards: [{ + id: "618B214EB41EEE48" + type: "item" + item: "create:builders_tea" + count: 4 + random_bonus: 4 + }] + } + { + title: "Extendo Grip" + icon: { + id: "create:extendo_grip" + Count: 1b + tag: { + Damage: 0 + } + } + x: -4.5d + y: 1.5d + description: ["EXTENDO_DESC"] + dependencies: ["1E318BCAC2C6FA09"] + id: "34F00196E2D0B4B0" + tasks: [{ + id: "36A419607017EA31" + type: "item" + item: { + id: "create:extendo_grip" + Count: 1b + tag: { + Damage: 0 + } + } + }] + rewards: [{ + id: "384957F4FCE7BC6A" + type: "command" + title: "Rare Create Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_create_loot_rare" + player_command: false + }] + } + { + title: "Wand of Symmetry" + icon: "create:wand_of_symmetry" + x: -7.5d + y: 1.5d + description: ["WANDSYM_DESC"] + dependencies: ["1E318BCAC2C6FA09"] + id: "147B701C5BCF2424" + tasks: [{ + id: "0A989C0C09502289" + type: "item" + item: "create:wand_of_symmetry" + }] + rewards: [{ + id: "01870BF5EE173AB5" + type: "command" + title: "Legendary Create Loot Box" + icon: "kubejs:legendary_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_create_loot_legendary" + player_command: false + }] + } + { + title: "The Mighty Architect" + icon: "create:crafting_blueprint" + x: -6.0d + y: -1.5d + shape: "square" + subtitle: "A builder with a plan" + description: ["TMA_DESC"] + id: "4407C59E32585B96" + tasks: [{ + id: "3671CC5B42EC4DF8" + type: "checkmark" + title: "The Mighty Architect" + }] + rewards: [{ + id: "3E564C831D52F1BD" + type: "item" + item: "create:builders_tea" + count: 2 + random_bonus: 2 + }] + } + { + title: "Rod of the Highlands" + icon: "botania:skydirt_rod" + x: 4.5d y: -3.0d - dependencies: ["0000000000000E1F"] - id: "0000000000000E34" + description: ["HIGHLANDS_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "624AAFDABA481B08" + tasks: [{ + id: "71069CB1BABDA192" + type: "item" + item: "botania:skydirt_rod" + }] + rewards: [{ + id: "2F982B8BD0A5B9DF" + type: "command" + title: "Legendary Botania Loot Box" + icon: "kubejs:legendary_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_legendary" + player_command: false + }] + } + { + title: "Mana Blaster + Entropic Lens" + icon: { + id: "botania:mana_gun" + Count: 1b + tag: { } + } + x: 5.0d + y: -2.0d + description: ["BLASTER_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "5CCA8708260D389C" + tasks: [ + { + id: "64B96C806BE2E4CB" + type: "item" + item: { + id: "botania:mana_gun" + Count: 1b + tag: { } + } + } + { + id: "1F2D3C964900AA44" + type: "item" + item: { + id: "botania:lens_explosive" + Count: 1b + tag: { } + } + } + ] + rewards: [{ + id: "461C49E6DB199C54" + type: "command" + title: "Legendary Botania Loot Box" + icon: "kubejs:legendary_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_legendary" + player_command: false + }] + } + { + title: "Sextent" + icon: "botania:sextant" + x: 6.0d + y: -1.5d + description: ["SEXTENT_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "179FB20DE78B8851" + tasks: [{ + id: "7CEB81CF604A2837" + type: "item" + item: "botania:sextant" + }] + rewards: [{ + id: "597AE01F4D6E1217" + type: "command" + title: "Rare Botania Loot Box" + icon: "kubejs:rare_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_rare" + player_command: false + }] + } + { + title: "Worldshaper's Astrolabe" + icon: { + id: "botania:astrolabe" + Count: 1b + tag: { } + } + x: 6.0d + y: -4.5d + description: ["ASTROLABE_DESC"] + dependencies: ["3F1801BBAF8A29FD"] + id: "37F31E4C7664EF8C" tasks: [{ - id: "0000000000000E35" + id: "1827D26DAD8075A3" type: "item" - item: "mcwtrpdoors:oak_glass_trapdoor" + item: { + id: "botania:astrolabe" + Count: 1b + tag: { } + } + }] + rewards: [{ + id: "70F6E60195DD9768" + type: "command" + title: "Legendary Botania Loot Box" + icon: "kubejs:legendary_lootbox" + command: "/execute at @p run loot spawn ~ ~1 ~ loot enigmatica:chests/quest_botania_loot_legendary" + player_command: false }] } ] From e6c34bd4d6071854a52eca28803f0590fbd6cf82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 2 Oct 2021 20:45:11 +0200 Subject: [PATCH 057/124] changed randompatches configswapper configs to new format, hopefully this works :D --- config/configswapper/expert/randompatches.txt | 4 +++- config/configswapper/normal/randompatches.txt | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/config/configswapper/expert/randompatches.txt b/config/configswapper/expert/randompatches.txt index b65dc3464b..92b07cf3fb 100644 --- a/config/configswapper/expert/randompatches.txt +++ b/config/configswapper/expert/randompatches.txt @@ -1,4 +1,6 @@ -$randompatches.client.client\.window { +customfilepath=config/randompatches.toml + +$client\.window { simple_title = "Enigmatica 6 Expert - Minecraft ${mcversion}" title = "Enigmatica 6 Expert - Minecraft ${mcversion}" title_with_activity = "Enigmatica 6 Expert - Minecraft ${mcversion} - ${activity}" diff --git a/config/configswapper/normal/randompatches.txt b/config/configswapper/normal/randompatches.txt index a55000ca28..0204f88ed1 100644 --- a/config/configswapper/normal/randompatches.txt +++ b/config/configswapper/normal/randompatches.txt @@ -1,4 +1,6 @@ -$randompatches.client.client\.window { +customfilepath=config/randompatches.toml + +$client\.window { simple_title = "Enigmatica 6 - Minecraft ${mcversion}" title = "Enigmatica 6 - Minecraft ${mcversion}" title_with_activity = "Enigmatica 6 - Minecraft ${mcversion} - ${activity}" From aa709abbfb1ad4913e9def393fc6e138778e887b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 2 Oct 2021 20:50:58 +0200 Subject: [PATCH 058/124] ignore client configs --- .gitignore | 2 ++ automation/settings.ps1 | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 129f12ce3b..24d36579bb 100644 --- a/.gitignore +++ b/.gitignore @@ -193,3 +193,5 @@ config/equipmentcompare-common.toml config/roadrunner/common.toml config/roadrunner/client.toml config/oauth-client.toml +config/jeed-client.toml +config/valhelsia_core-client.toml diff --git a/automation/settings.ps1 b/automation/settings.ps1 index 8992dd86a0..8cac31f26b 100644 --- a/automation/settings.ps1 +++ b/automation/settings.ps1 @@ -157,7 +157,9 @@ $CONFIGS_TO_REMOVE_FROM_CLIENT_FILES = @( "equipmentcompare-common.toml", "roadrunner/client.toml", "roadrunner/common.toml", - "oauth-client.toml" + "oauth-client.toml", + "jeed-client.toml", + "valhelsia_core-client.toml" ) $FOLDERS_TO_REMOVE_FROM_CLIENT_FILES = @("local/ftbutilities", "local/ftbchunks/data", "local/ftbultimine", "config/configswapper/Launch Backup") From f82e15dc7b7f8bb84c5cd738ff96ac60397d440b Mon Sep 17 00:00:00 2001 From: Ridanis Date: Sat, 2 Oct 2021 20:54:30 +0200 Subject: [PATCH 059/124] Update building.snbt --- .../ftbquests/quests/chapters/building.snbt | 186 +++++++++++++----- 1 file changed, 142 insertions(+), 44 deletions(-) diff --git a/config/ftbquests/quests/chapters/building.snbt b/config/ftbquests/quests/chapters/building.snbt index c39d7f5def..24ec76fb81 100644 --- a/config/ftbquests/quests/chapters/building.snbt +++ b/config/ftbquests/quests/chapters/building.snbt @@ -16,7 +16,13 @@ y: 0.0d shape: "gear" subtitle: "Dirt Hut No More" - description: ["INTRO_DESC"] + description: [ + "Welcome to the Building Chapter" + "" + "This section contains a list of building/decoration based mods, and a handful of tools to help you get the job done, and set you on your way to become a seasoned builder." + "" + "~Ridanisaurus Rid" + ] id: "058D3BEB64C74E27" tasks: [{ id: "4A2592C4467CEAF6" @@ -24,17 +30,24 @@ title: "Builder" }] rewards: [{ - id: "7FCE38283295ED61" - type: "xp" - xp: 100 + id: "6BCFA4922355B43F" + type: "item" + item: "create:builders_tea" + count: 4 + random_bonus: 4 }] } { + title: "Macaw's Mods" icon: "minecraft:oak_log" x: 0.0d y: -2.0d subtitle: "A mod for every occasion" - description: ["MACAW_DESC"] + description: [ + "Macaw has developed a handful of mods to cover a wide range of wood and vanilla materials based decorative blocks such as roofs, bridges, doors, windows ..etc." + "" + "The quests above should give you an idea of what type of decorative blocks are available to you." + ] dependencies: ["058D3BEB64C74E27"] id: "3834BBF4818E4ABE" tasks: [{ @@ -51,7 +64,7 @@ }] } { - title: "Windows + Additions" + title: "Windows, and Blinds" icon: "mcwwindows:oak_window2" x: 1.5d y: -3.5d @@ -69,6 +82,7 @@ }] } { + title: "Roofs, Tiles, and Gutters" icon: "mcwroofs:oak_roof" x: 0.5d y: -4.0d @@ -86,6 +100,7 @@ }] } { + title: "Trapdoors" icon: "mcwtrpdoors:oak_cottage_trapdoor" x: -0.5d y: -4.0d @@ -103,6 +118,7 @@ }] } { + title: "Doors" icon: "mcwdoors:oak_cottage_door" x: -1.5d y: -3.5d @@ -120,7 +136,7 @@ }] } { - title: "Fences and Walls" + title: "Fences, and Walls" icon: "mcwfences:oak_picket_fence" x: 2.0d y: -2.5d @@ -138,6 +154,7 @@ }] } { + title: "Bridges" icon: "mcwbridges:oak_log_bridge_middle" x: -2.0d y: -2.5d @@ -158,9 +175,13 @@ title: "Masonry" icon: "masonry:andesitetiled" x: 1.0d - y: -1.5d + y: 1.5d subtitle: "Channel your inner Dwarf" - description: ["MASONRY_DESC"] + description: [ + "Masonry allows you to carve most of the Vanilla stones into different decorative patterns to help bring a bit of an artistic touch to your base." + "" + "To start, place a Vanilla type of stone such as Granite, or Prismarine in a Stonecutter, and carve away." + ] dependencies: ["058D3BEB64C74E27"] id: "63FE93055CE4162C" tasks: [{ @@ -180,7 +201,11 @@ x: -1.0d y: -1.5d subtitle: "It's like IKEA, but without the Meatballs" - description: ["CRAY_DESC"] + description: [ + "Are you building a kitchen, and you wish there were sinks and counters with different (both Vanilla and Modded) wood and stone options that matches your build? What about a small backyard or garden with a Grill to BBQ your meats?" + "" + "MrCrayfish's Furniture More offers a massive collection of decorative and functional blocks for you to select from, and spice up your living space." + ] dependencies: ["058D3BEB64C74E27"] id: "32824050418C71EB" tasks: [{ @@ -201,9 +226,9 @@ title: "Connected Glass" icon: "connectedglass:clear_glass" x: 2.0d - y: -1.0d - subtitle: "It's like a love story in the making" - description: ["CONNECTEDGLASS_DESC"] + y: 1.0d + subtitle: "I can see all obstacles in my way" + description: ["Connected Glass adds additional glass blocks and panes with connected textures. This of course covers the clear glass, and all 16 dyed glass types from Vanilla."] dependencies: ["058D3BEB64C74E27"] id: "66099AFAA1A6043F" tasks: [{ @@ -223,10 +248,14 @@ { title: "Simply Light" icon: "simplylight:illuminant_block_on" - x: -2.0d - y: -1.0d + x: 0.0d + y: 2.0d subtitle: "Let there be light" - description: ["LIGHT_DESC"] + description: [ + "The mod name really says it all. It's simply just that, a lights mod." + "" + "But, don't let the name fool you. Simply Light offers a wide range of Lights to keep your base lit, with style." + ] dependencies: ["058D3BEB64C74E27"] id: "42FB32CC99E66E3F" tasks: [{ @@ -249,7 +278,11 @@ x: 2.5d y: 0.0d subtitle: "Sky is the limit" - description: ["FRAMEDBLOCKS_DESC"] + description: [ + "Are you looking for Glass Stairs? or maybe a Netherite door? How about an Endstone Sign? Well, look no further." + "" + "Framed Blocks introduces a blank template of various shapes and blocks which mimics the texture of the block clicked on them." + ] dependencies: ["058D3BEB64C74E27"] id: "0798D5139479A837" tasks: [{ @@ -276,7 +309,13 @@ x: -2.5d y: 0.0d subtitle: "Build-a-Bear, but with Drawers" - description: ["FRAMEDDRAWERS_DESC"] + description: [ + "If you are fed up with having an Oak Drawer that is sticking like a sore thumb in the middle of your build, completely mismatching your building palette?" + "" + "Framed Drawers gives you a blank template which you can combine in a crafting table with different blocks to use their texture instead, whether it's the front, the sides, or the trim, these Framed Drawers are highly customizable visually." + "" + "Needless to say, this mod offers more than just a signel drawer style templates, it actually has a template for each type of drawers, whether it is a 2x2, a Compacting Drawer, or even a Drawer Controller." + ] dependencies: ["058D3BEB64C74E27"] id: "473BE440ECB1CEDF" tasks: [{ @@ -301,9 +340,13 @@ title: "Chipped" icon: "chipped:mason_table" x: 2.0d - y: 1.0d + y: -1.0d subtitle: "Nothing a little wood filler won't fix" - description: ["CHIPPED_DESC"] + description: [ + "Chipped offers a massive collection of carved Vanilla blocks, whether it is decorative glass, quilted wool for nice carpet design, or even an omenious chisled gilded blackstone. Chipped got you covered." + "" + "To start, build one of the carving stations available which function in a similar way as a Vanilla Stonecutter, place the apprioriate block in it, and select a different output that suits your building needs." + ] dependencies: ["058D3BEB64C74E27"] id: "1EAFB4FB2CF09F26" tasks: [{ @@ -326,7 +369,11 @@ x: -2.0d y: 1.0d subtitle: "Immersive Decorating" - description: ["ENGINEERSDECOR_DESC"] + description: [ + "If you love the industrial look of Immersive Engineering, then you will probably love Engineer's Decor." + "" + "This mod adds a handful of both functional and decorative blocks that should feel right at home in your Immersive Engineering base. Whether it is a DANGER! sign, or an industrial looking Crafting Station, Engineer's Decor got you covered." + ] dependencies: ["058D3BEB64C74E27"] id: "68E143E444AF44C2" tasks: [{ @@ -347,8 +394,12 @@ icon: "dustrial_decor:sheet_metal_treading" x: -1.0d y: 1.5d - subtitle: "Safty Helmet should be worn at all times" - description: ["DUSTRIALDECOR_DESC"] + subtitle: "Safty Helmet must be worn at all times!" + description: [ + "Are you building a Factory to house all your loud machinary? Does that power station building feel open to wandering wild life and hostile mobs? Do you wish you could put up a chain fence to stop those pesky illagers from interupting you? Well then ..." + "" + "'Dustrial Craft offers all the above, and more. This mod offers a decent range of decorative blocks with industrial theme in mind." + ] dependencies: ["058D3BEB64C74E27"] id: "201E7950E17180BD" tasks: [{ @@ -381,9 +432,13 @@ title: "Decorative Blocks" icon: "decorative_blocks:oak_support" x: 1.0d - y: 1.5d + y: -1.5d subtitle: "Grab a chair, and sit by the hearth" - description: ["DECORATIVEBLOCKS_DESC"] + description: [ + "If you are into your medieval or rustic builds, whether it is a castle on a cliff, a cabin in the woods, or a hearty tavern for a weary traveler, Decorative Blocks will have some blocks that fits your style." + "" + "Decorative Blocks offers a nicely textured, and well designed blocks for your building needs." + ] dependencies: ["058D3BEB64C74E27"] id: "03D0B336BB7CEFE1" tasks: [{ @@ -442,10 +497,14 @@ { title: "Valhelsia Structures" icon: "valhelsia_structures:big_orange_glazed_jar" - x: 0.0d - y: 2.0d + x: -2.0d + y: -1.0d subtitle: "Raid \\& Pillager, or I guess you can just Craft this stuff" - description: ["VALHELSIA_DESC"] + description: [ + "Valhelsia Strucutres generates different types of pre-built strucutres in the world, such as player housing, a blacksmith hut, or even an abandoned fort." + "" + "Most of the custom decorative blocks used in these structures can also be crafted for some extra details here or there in your build." + ] dependencies: ["058D3BEB64C74E27"] id: "1DEA7DBF6D1A1C6A" tasks: [{ @@ -496,7 +555,15 @@ x: 5.0d y: 2.0d subtitle: "It's like the Chisel, but it's not" - description: ["PSC_DESC"] + description: [ + "It cuts, it grinds, it chisels, polishes and and even cooks and cleans!" + "" + "All the power of a Stone Cutter, now in a compact portable format that fits in the palm of your hand." + "" + "Disclaimer: Will not actually cook or clean. Not for Commercial Use" + "" + "Warning: Keep away from children, animals, nitwits. Do not place hand on blade while in motion. Extended use may lead to fatigue and loss of vision." + ] dependencies: ["5411C8D2344CC2F1"] id: "085A8424875A2B23" tasks: [{ @@ -745,7 +812,7 @@ } x: 7.5d y: 3.0d - subtitle: "It destructs stuff" + subtitle: "Guess what it does .." description: ["DESG_DESC"] dependencies: ["5411C8D2344CC2F1"] id: "095108AB50598C04" @@ -816,7 +883,13 @@ y: -3.0d shape: "gear" subtitle: "Magical building technologies " - description: ["BOTANIA_INTRO_DESC"] + description: [ + "Botania offers a variaty of building and terraforming rods." + "" + "With the cost of some Mana, you can place blocks, exchange blocks, or full on terraform a whole section of your world." + "" + "The connected quests will have a brief description of what each rod does. However, for more detailed information please refer back to your Lexica Botania." + ] id: "3F1801BBAF8A29FD" tasks: [{ id: "0A6C5E41EEDC3E80" @@ -840,7 +913,11 @@ } x: 7.0d y: -4.0d - description: ["CRUST_DESC"] + description: [ + "This rods allows you to swap any block in the world with the select block at the cost of Mana." + "" + "To start, Shift+Right Click a block to select it, and then right click other blocks to start the exchange." + ] dependencies: ["3F1801BBAF8A29FD"] id: "3A0988C3AEFBAAC5" tasks: [{ @@ -866,7 +943,7 @@ icon: "botania:cobble_rod" x: 5.0d y: -4.0d - description: ["DEPTH_DESC"] + description: ["Places Cobblestone Blocks at the cost of some Mana"] dependencies: ["3F1801BBAF8A29FD"] id: "261056A552909227" tasks: [{ @@ -888,7 +965,7 @@ icon: "botania:dirt_rod" x: 7.5d y: -3.0d - description: ["LANDS_DESC"] + description: ["Places Dirt Blocks at the cost of some Mana"] dependencies: ["3F1801BBAF8A29FD"] id: "75361161CEA1E406" tasks: [{ @@ -1109,28 +1186,49 @@ x: -6.0d y: -1.5d shape: "square" - subtitle: "A builder with a plan" - description: ["TMA_DESC"] + subtitle: "I love it when a plan comes together" + description: [ + "If you are the type of player that avoid building a base and lives in a dirt hole somewhere because you are not confident with your building skills, or simply don't have the time and energy to plan out a full base design, this this mod is for you." + "" + "The Mighty Architect allows you to plot down a dynamic design where you get to select how big or small the build is, how many floors, roof style, building materials ..etc. Once your design is complete, it will save it as a schematic for you which you can then use Create Cannon to build it for you." + "" + "If the above introduction intrigues you, and you would like to learn more, or even see this mod in action, this short 2 mins video by the Mod Dev will show you the ins and outs of this wonderful mod." + "Link: https://youtu.be/VdoKmdYubBM" + ] id: "4407C59E32585B96" tasks: [{ id: "3671CC5B42EC4DF8" type: "checkmark" title: "The Mighty Architect" }] - rewards: [{ - id: "3E564C831D52F1BD" - type: "item" - item: "create:builders_tea" - count: 2 - random_bonus: 2 - }] + rewards: [ + { + id: "3E564C831D52F1BD" + type: "item" + item: "create:builders_tea" + count: 2 + random_bonus: 2 + } + { + id: "7FB21C0F074D7720" + type: "item" + item: "create:empty_schematic" + } + { + id: "1DDF6EF97DE63E61" + type: "item" + item: "minecraft:gunpowder" + count: 8 + random_bonus: 8 + } + ] } { title: "Rod of the Highlands" icon: "botania:skydirt_rod" x: 4.5d y: -3.0d - description: ["HIGHLANDS_DESC"] + description: ["Places blocks of Dirt in the air, which makes it the perfect tool for floating builds without needing to pillar up from the ground."] dependencies: ["3F1801BBAF8A29FD"] id: "624AAFDABA481B08" tasks: [{ From 37caa77e9e53221c9f6098e987bfeb5632fdb546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 2 Oct 2021 21:03:36 +0200 Subject: [PATCH 060/124] mod updates --- config/apotheosis/names.cfg | 1108 +- .../jei/ingredient-list-type-sort-order.ini | 1 + config/jei/recipe-category-sort-order.ini | 1 + config/packmenu.cfg | 6 + config/supplementaries-common.toml | 25 +- config/supplementaries-registry.toml | 3 +- kubejs/config/common.properties | 5 +- minecraftinstance.json | 29289 ++++++++-------- 8 files changed, 15184 insertions(+), 15254 deletions(-) diff --git a/config/apotheosis/names.cfg b/config/apotheosis/names.cfg index edf1a5c06a..779f19b508 100644 --- a/config/apotheosis/names.cfg +++ b/config/apotheosis/names.cfg @@ -47,7 +47,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: undergarden:cloggrum_helmet, undergarden:cloggrum_chestplate, undergarden:cloggrum_leggings, undergarden:cloggrum_boots - # [default: [Cloggrum], [Mysterious], [Deep]] + # [default: ] S:CLOGGRUM < Cloggrum Mysterious @@ -67,7 +67,7 @@ armors { > # A list of material-based prefix names for this material group. May be empty. - # Items in this group: minecraft:diamond_helmet, minecraft:diamond_chestplate, minecraft:diamond_leggings, minecraft:diamond_boots, atum:desert_helmet_diamond, atum:desert_chest_diamond, atum:desert_legs_diamond, atum:desert_boots_diamond, draconicevolution:wyvern_chestpiece, draconicevolution:draconic_chestpiece, draconicevolution:chaotic_chestpiece + # Items in this group: minecraft:diamond_helmet, minecraft:diamond_chestplate, minecraft:diamond_leggings, minecraft:diamond_boots, atum:desert_helmet_diamond, atum:desert_chest_diamond, atum:desert_legs_diamond, atum:desert_boots_diamond # [default: [Diamond], [Zircon], [Gemstone], [Jewel], [Crystal]] S:DIAMOND < Diamond @@ -87,7 +87,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: undergarden:froststeel_helmet, undergarden:froststeel_chestplate, undergarden:froststeel_leggings, undergarden:froststeel_boots - # [default: [Froststeel], [Freezing], [Cold]] + # [default: ] S:FROSTSTEEL < Froststeel Freezing @@ -159,7 +159,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: minecraft:iron_helmet, minecraft:iron_chestplate, minecraft:iron_leggings, minecraft:iron_boots, occultism:otherworld_goggles, atum:desert_helmet_iron, atum:desert_chest_iron, atum:desert_legs_iron, atum:desert_boots_iron - # [default: [Iron], [Ferrous], [Rusty], [Wrought Iron]] + # [default: [Iron], [Steel], [Ferrous], [Rusty], [Wrought Iron]] S:IRON < Iron Ferrous @@ -172,7 +172,7 @@ armors { > # A list of material-based prefix names for this material group. May be empty. - # Items in this group: minecraft:leather_helmet, minecraft:leather_chestplate, minecraft:leather_leggings, minecraft:leather_boots, advancedperipherals:ar_goggles, quark:backpack, quark:forgotten_hat + # Items in this group: minecraft:leather_helmet, minecraft:leather_chestplate, minecraft:leather_leggings, minecraft:leather_boots, advancedperipherals:ar_goggles, quark:forgotten_hat, quark:backpack # [default: [Leather], [Rawhide], [Lamellar], [Cow Skin]] S:LEATHER < Leather @@ -183,7 +183,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: botania:manasteel_helmet, botania:manasteel_chestplate, botania:manasteel_leggings, botania:manasteel_boots - # [default: [Manasteel], [Magical], [Bright Blue], [Floral Iron]] + # [default: ] S:MANASTEEL < Manasteel Magical @@ -396,7 +396,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: dustrial_decor:cardboard_helmet, dustrial_decor:cardboard_chestplate, dustrial_decor:cardboard_leggings, dustrial_decor:cardboard_boots - # [default: [Cardboard], [Paper Thin], [Useless], [Soggy], [Corrugated]] + # [default: ] S:dustrial_decor_cardboard_helmet < Cardboard Paper Thin @@ -573,7 +573,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:bronze_helmet, mekanismtools:bronze_chestplate, mekanismtools:bronze_leggings, mekanismtools:bronze_boots - # [default: [Bronze], [Gladiator], [Brass]] + # [default: ] S:mekanismtools_bronze_helmet < Bronze Gladiator @@ -582,7 +582,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:lapis_lazuli_helmet, mekanismtools:lapis_lazuli_chestplate, mekanismtools:lapis_lazuli_leggings, mekanismtools:lapis_lazuli_boots - # [default: [Lapis], [Blue], [Enchanting], [Azure]] + # [default: ] S:mekanismtools_lapis_lazuli_helmet < Lapis Blue @@ -592,7 +592,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:osmium_helmet, mekanismtools:osmium_chestplate, mekanismtools:osmium_leggings, mekanismtools:osmium_boots - # [default: [Osmium], [Unrefined]] + # [default: ] S:mekanismtools_osmium_helmet < Osmium Unrefined @@ -600,7 +600,7 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:refined_glowstone_helmet, mekanismtools:refined_glowstone_chestplate, mekanismtools:refined_glowstone_leggings, mekanismtools:refined_glowstone_boots - # [default: [Refined Glowstone], [Glowing], [Lit], [Glassy]] + # [default: ] S:mekanismtools_refined_glowstone_helmet < Refined Glowstone Glowing @@ -616,13 +616,19 @@ armors { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:steel_helmet, mekanismtools:steel_chestplate, mekanismtools:steel_leggings, mekanismtools:steel_boots - # [default: [Steel], [Chrome], [Carbon Steel], [Hardened]] + # [default: ] S:mekanismtools_steel_helmet < Steel Chrome Carbon Steel Hardened > + + # A list of material-based prefix names for this material group. May be empty. + # Items in this group: minecraft:shulker_shell + # [default: ] + S:minecraft_shulker_shell < + > S:mowziesmobs_barako_mask < > S:mowziesmobs_barakoa_mask_fury < @@ -745,7 +751,7 @@ armors { entity { - # A list of name pieces, which can be spliced together to create full names. May be empty only if names is not empty. [default: [Grab], [Thar], [Ger], [Ald], [Mas], [On], [O], [Din], [Thor], [Jon], [Ath], [Burb], [En], [A], [E], [I], [U], [Hab], [Bloo], [Ena], [Dit], [Aph], [Ern], [Bor], [Dav], [Id], [Toast], [Son], [Dottir], [For], [Wen], [Lob], [Ed], [Die], [Van], [Y], [Zap], [Ear], [Ben], [Don], [Bran], [Gro], [Jen], [Bob], [Ette], [Ere], [Man], [Qua], [Bro], [Cree], [Per], [Skel], [Ton], [Zom], [Bie], [Wolf], [End], [Er], [Pig], [Sil], [Ver], [Fish], [Cow], [Chic], [Ken], [Sheep], [Squid], [Hell], [Flab], [Ort], [Alli], [Joe], [Tastic], [Spa], [Tan], [Kung], [Fu], [Kee], [Sue], [Um]] + # A list of name pieces, which can be spliced together to create full names. May be empty only if names is not empty. [default: [Dark], [Osto], [Grab], [Thar], [Ger], [Ald], [Mas], [On], [O], [Din], [Thor], [Jon], [Ath], [Burb], [En], [A], [E], [I], [U], [Hab], [Bloo], [Ena], [Dit], [Aph], [Ern], [Bor], [Dav], [Id], [Toast], [Son], [Dottir], [For], [Wen], [Lob], [Ed], [Die], [Van], [Y], [Zap], [Ear], [Ben], [Don], [Bran], [Gro], [Jen], [Bob], [Ette], [Ere], [Man], [Qua], [Bro], [Cree], [Per], [Skel], [Ton], [Zom], [Bie], [Wolf], [End], [Er], [Pig], [Sil], [Ver], [Fish], [Cow], [Chic], [Ken], [Sheep], [Squid], [Hell]] S:"Name Parts" < Grab Thar @@ -827,16 +833,16 @@ entity { Kee Sue Um - Boor - Fool - Rid - Coco - Drim - Yeet - Goon + Boor + Fool + Rid + Coco + Drim + Yeet + Goon > - # A list of full names, which are used in the generation of boss names. May be empty only if name parts is not empty. [default: [Albert], [Andrew], [Anderson], [Andy], [Allan], [Arthur], [Aaron], [Allison], [Arielle], [Amanda], [Anne], [Annie], [Amy], [Alana], [Brandon], [Brady], [Bernard], [Ben], [Benjamin], [Bob], [Bobette], [Brooke], [Brandy], [Beatrice], [Bea], [Bella], [Becky], [Carlton], [Carl], [Calvin], [Cameron], [Carson], [Chase], [Cassandra], [Cassie], [Cas], [Carol], [Carly], [Cherise], [Charlotte], [Cheryl], [Chasity], [Danny], [Drake], [Daniel], [Derrel], [David], [Dave], [Donovan], [Don], [Donald], [Drew], [Derrick], [Darla], [Donna], [Dora], [Danielle], [Edward], [Elliot], [Ed], [Edson], [Elton], [Eddison], [Earl], [Eric], [Ericson], [Eddie], [Ediovany], [Emma], [Elizabeth], [Eliza], [Esperanza], [Esper], [Esmeralda], [Emi], [Emily], [Elaine], [Fernando], [Ferdinand], [Fred], [Feddie], [Fredward], [Frank], [Franklin], [Felix], [Felicia], [Fran], [Greg], [Gregory], [George], [Gerald], [Gina], [Geraldine], [Gabby], [Hendrix], [Henry], [Hobbes], [Herbert], [Heath], [Henderson], [Helga], [Hera], [Helen], [Helena], [Hannah], [Ike], [Issac], [Israel], [Ismael], [Irlanda], [Isabelle], [Irene], [Irenia], [Jimmy], [Jim], [Justin], [Jacob], [Jake], [Jon], [Johnson], [Jonny], [Jonathan], [Josh], [Joshua], [Julian], [Jesus], [Jericho], [Jeb], [Jess], [Joan], [Jill], [Jillian], [Jessica], [Jennifer], [Jenny], [Jen], [Judy], [Kenneth], [Kenny], [Ken], [Keith], [Kevin], [Karen], [Kassandra], [Kassie], [Leonard], [Leo], [Leroy], [Lee], [Lenny], [Luke], [Lucas], [Liam], [Lorraine], [Latasha], [Lauren], [Laquisha], [Livia], [Lydia], [Lila], [Lilly], [Lillian], [Lilith], [Lana], [Mason], [Mike], [Mickey], [Mario], [Manny], [Mark], [Marcus], [Martin], [Marty], [Matthew], [Matt], [Max], [Maximillian], [Marth], [Mia], [Marriah], [Maddison], [Maddie], [Marissa], [Miranda], [Mary], [Martha], [Melonie], [Melody], [Mel], [Minnie], [Nathan], [Nathaniel], [Nate], [Ned], [Nick], [Norman], [Nicholas], [Natasha], [Nicki], [Nora], [Nelly], [Nina], [Orville], [Oliver], [Orlando], [Owen], [Olsen], [Odin], [Olaf], [Ortega], [Olivia], [Patrick], [Pat], [Paul], [Perry], [Pinnochio], [Patrice], [Patricia], [Pennie], [Petunia], [Patti], [Pernelle], [Quade], [Quincy], [Quentin], [Quinn], [Roberto], [Robbie], [Rob], [Robert], [Roy], [Roland], [Ronald], [Richard], [Rick], [Ricky], [Rose], [Rosa], [Rhonda], [Rebecca], [Roberta], [Sparky], [Shiloh], [Stephen], [Steve], [Saul], [Sheen], [Shane], [Sean], [Sampson], [Samuel], [Sammy], [Stefan], [Sasha], [Sam], [Susan], [Suzy], [Shelby], [Samantha], [Sheila], [Sharon], [Sally], [Stephanie], [Sandra], [Sandy], [Sage], [Tim], [Thomas], [Thompson], [Tyson], [Tyler], [Tom], [Tyrone], [Timmothy], [Tamara], [Tabby], [Tabitha], [Tessa], [Tiara], [Tyra], [Uriel], [Ursala], [Uma], [Victor], [Vincent], [Vince], [Vance], [Vinny], [Velma], [Victoria], [Veronica], [Wilson], [Wally], [Wallace], [Will], [Wilard], [William], [Wilhelm], [Xavier], [Xandra], [Young], [Yvonne], [Yolanda], [Zach], [Zachary]] + # A list of full names, which are used in the generation of boss names. May be empty only if name parts is not empty. [default: [Darko], [Shadows], [Kat], [Jank], [Albert], [Andrew], [Anderson], [Andy], [Allan], [Arthur], [Aaron], [Allison], [Arielle], [Amanda], [Anne], [Annie], [Amy], [Alana], [Brandon], [Brady], [Bernard], [Ben], [Benjamin], [Bob], [Bobette], [Brooke], [Brandy], [Beatrice], [Bea], [Bella], [Becky], [Carlton], [Carl], [Calvin], [Cameron], [Carson], [Chase], [Cassandra], [Cassie], [Cas], [Carol], [Carly], [Cherise], [Charlotte], [Cheryl], [Chasity], [Danny], [Drake], [Daniel], [Derrel], [David], [Dave], [Donovan], [Don], [Donald], [Drew], [Derrick], [Darla], [Donna], [Dora], [Danielle], [Edward], [Elliot], [Ed], [Edson], [Elton], [Eddison], [Earl], [Eric], [Ericson], [Eddie], [Ediovany], [Emma], [Elizabeth], [Eliza], [Esperanza], [Esper], [Esmeralda], [Emi], [Emily], [Elaine], [Fernando], [Ferdinand], [Fred], [Feddie], [Fredward], [Frank], [Franklin], [Felix], [Felicia], [Fran], [Greg], [Gregory], [George], [Gerald], [Gina], [Geraldine], [Gabby], [Hendrix], [Henry], [Hobbes], [Herbert], [Heath], [Henderson], [Helga], [Hera], [Helen], [Helena], [Hannah], [Ike], [Issac], [Israel], [Ismael], [Irlanda], [Isabelle], [Irene], [Irenia], [Jimmy], [Jim], [Justin], [Jacob], [Jake], [Jon], [Johnson], [Jonny], [Jonathan], [Josh], [Joshua], [Julian], [Jesus], [Jericho], [Jeb], [Jess], [Joan], [Jill], [Jillian], [Jessica], [Jennifer], [Jenny], [Jen], [Judy], [Kenneth], [Kenny], [Ken], [Keith], [Kevin], [Karen], [Kassandra], [Kassie], [Leonard], [Leo], [Leroy], [Lee], [Lenny], [Luke], [Lucas], [Liam], [Lorraine], [Latasha], [Lauren], [Laquisha], [Livia], [Lydia], [Lila], [Lilly], [Lillian], [Lilith], [Lana], [Mason], [Mike], [Mickey], [Mario], [Manny], [Mark], [Marcus], [Martin], [Marty], [Matthew], [Matt], [Max], [Maximillian], [Marth], [Mia], [Marriah], [Maddison], [Maddie], [Marissa], [Miranda], [Mary], [Martha], [Melonie], [Melody], [Mel], [Minnie], [Nathan], [Nathaniel], [Nate], [Ned], [Nick], [Norman], [Nicholas], [Natasha], [Nicki], [Nora], [Nelly], [Nina], [Orville], [Oliver], [Orlando], [Owen], [Olsen], [Odin], [Olaf], [Ortega], [Olivia], [Patrick], [Pat], [Paul], [Perry], [Pinnochio], [Patrice], [Patricia], [Pennie], [Petunia], [Patti], [Pernelle], [Quade], [Quincy], [Quentin], [Quinn], [Roberto], [Robbie], [Rob], [Robert], [Roy], [Roland], [Ronald], [Richard], [Rick], [Ricky], [Rose], [Rosa], [Rhonda], [Rebecca], [Roberta], [Sparky], [Shiloh], [Stephen], [Steve], [Saul], [Sheen], [Shane], [Sean], [Sampson], [Samuel], [Sammy], [Stefan], [Sasha], [Sam], [Susan], [Suzy], [Shelby], [Samantha], [Sheila], [Sharon], [Sally], [Stephanie], [Sandra], [Sandy], [Sage], [Tim], [Thomas], [Thompson], [Tyson], [Tyler], [Tom], [Tyrone], [Timmothy], [Tamara], [Tabby], [Tabitha], [Tessa], [Tiara], [Tyra], [Uriel], [Ursala], [Uma], [Victor], [Vincent], [Vince], [Vance], [Vinny], [Velma], [Victoria], [Veronica], [Wilson], [Wally], [Wallace], [Will], [Wilard], [William], [Wilhelm], [Xavier], [Xandra], [Young], [Yvonne], [Yolanda], [Zach], [Zachary]] S:Names < Albert Andrew @@ -1120,7 +1126,7 @@ entity { Tyra Uriel Ursala - Cranky-Pants + Cranky-Pants Uma Victor Vincent @@ -1144,170 +1150,170 @@ entity { Yolanda Zach Zachary - Bivridi - Telralak - Hotus - Kedaleq - Dusra - Vorredes - Ranaq - Hotuyaq - Do - Pitok - Melo - Sallani - Ho - Holi - Ruyo - Miroyi - Kyue - Nama - Korrin - Kola - Rarras - Desrok - Serrok - Ta - Hidenoq - Neron - Zuvroq - Tenras - Posrak - Votidu - Ridanisaurus - The Boo - Fehon - Be Reting - Re Huteng - Po - He Pohu - Huo Boti - Muhuon - Muon Puhi - Rimong - Raar - Sha - Iyi - Lasha - Gya - Omo - Feyi - Fa - Le Gayo - Fika - Ma Ta - Buon Lah - Rao - Himaon - Hana - Foh - Ring Futi - Lo - Hashu - Lutu - Fe - Saimek - Eeseran - Me - Sikaim - Mojuh - Omuroh - Shomo - Yu - Zorun - Jirok - Uzemo - Hakin - Shyson - Amosa - Lo - Tarsah - Isame - Zyyo - Hyzo - Mi - Taosu - Rusem - Amunaih - Uraom - Usura - Mo - Ujulok - Me - Tozuh - Razai - Khando - Dolker - Gonpo - Yangdon - Tesong - Uenzel - Ril - Neman - Gyatsa - Mase - Konchok - Monlam - Dhargye - Woenang - Lurri - Pengaan - Pinehn - Ushihn - Nin - Nali - Dharma - Dhargey - Choephel - Choenyi - Neenzi - Tehe - Hishuhn - Ong - Henong - Peesung - Filosh - Deathhand - Halo - Fallenstalker - Hirroth - Netherstalker - Savosh - Dawnrider - Vabo - Pyrestalker - Ririsa - Deatharrow - Neberesh - Cindercrusher - Mothabas - Embercutter - Cartile - Battleblade - Shiselvan - Fallenbane - Nechuk - Dawnscar - Dilac - Darkmaul - Voulgen - Ragebringer - Silentcrusher - Vathul - Fallenmantle - Muguris - Skullcrusher - Voukkukuth - Deathbinder - Caurkogis - Hazeripper - Qukekok - Emberbasher - Makralir - Fallbleeder - > - - # A list of prefixes, which are used in the generation of boss names. May be empty. [default: [Sir], [Mister], [Madam], [Doctor], [Father], [Mother], [Missus], [Lord], [King], [Queen], [Princess], [Prince], [Their Majesty,], [Duke], [Duchess], [Senator], [President], [Prime Minister], [Their Honor,], [Master], [Señor], [Señora]] + Bivridi + Telralak + Hotus + Kedaleq + Dusra + Vorredes + Ranaq + Hotuyaq + Do + Pitok + Melo + Sallani + Ho + Holi + Ruyo + Miroyi + Kyue + Nama + Korrin + Kola + Rarras + Desrok + Serrok + Ta + Hidenoq + Neron + Zuvroq + Tenras + Posrak + Votidu + Ridanisaurus + The Boo + Fehon + Be Reting + Re Huteng + Po + He Pohu + Huo Boti + Muhuon + Muon Puhi + Rimong + Raar + Sha + Iyi + Lasha + Gya + Omo + Feyi + Fa + Le Gayo + Fika + Ma Ta + Buon Lah + Rao + Himaon + Hana + Foh + Ring Futi + Lo + Hashu + Lutu + Fe + Saimek + Eeseran + Me + Sikaim + Mojuh + Omuroh + Shomo + Yu + Zorun + Jirok + Uzemo + Hakin + Shyson + Amosa + Lo + Tarsah + Isame + Zyyo + Hyzo + Mi + Taosu + Rusem + Amunaih + Uraom + Usura + Mo + Ujulok + Me + Tozuh + Razai + Khando + Dolker + Gonpo + Yangdon + Tesong + Uenzel + Ril + Neman + Gyatsa + Mase + Konchok + Monlam + Dhargye + Woenang + Lurri + Pengaan + Pinehn + Ushihn + Nin + Nali + Dharma + Dhargey + Choephel + Choenyi + Neenzi + Tehe + Hishuhn + Ong + Henong + Peesung + Filosh + Deathhand + Halo + Fallenstalker + Hirroth + Netherstalker + Savosh + Dawnrider + Vabo + Pyrestalker + Ririsa + Deatharrow + Neberesh + Cindercrusher + Mothabas + Embercutter + Cartile + Battleblade + Shiselvan + Fallenbane + Nechuk + Dawnscar + Dilac + Darkmaul + Voulgen + Ragebringer + Silentcrusher + Vathul + Fallenmantle + Muguris + Skullcrusher + Voukkukuth + Deathbinder + Caurkogis + Hazeripper + Qukekok + Emberbasher + Makralir + Fallbleeder + > + + # A list of prefixes, which are used in the generation of boss names. May be empty. [default: [Sir], [Mister], [Madam], [Doctor], [Father], [Mother], [Poppa]] S:Prefixes < Sir Mister @@ -1331,73 +1337,73 @@ entity { Master Señor Señora - Chamberlain - Magus - EarlElder - Professor - Advisor - Commissioner - Caliph - Hadrat - Faqih - Naib - Lady - Lord - Tenzo - Venerable - Tsar - Tsaritsa - Khan - Shifu - Sensei - Yishi - Zongshi - Zhuxi - Vicar - Starosta - Fellow - Lord High Constable - Constable - The Right Honourable - Admiral - King of Arms - Esquire - Monsignor - Herzog - Baron - Baroness - Viceroy - Vicereine - Chief - Grand Duke - Grand Duchess - Archon - Observer - Colossus - Executor - High Templar - Dark Templar - Oracle - Assimilator - Darth - Exarch - Patriarch - Matriarch - Shogun - Ronin - Centurion - Emperor - Palatine - Magister - Arch Magus - Satrap - Consul - Guvna - Guardian - Headman - > - - # A list of suffixes, which are used in the generation of boss names. A suffix is always preceeded by "The". May be empty. [default: [Mighty], [Supreme], [Superior], [Ultimate], [Lame], [Wimpy], [Curious], [Sneaky], [Pathetic], [Crying], [Eagle], [Errant], [Unholy], [Questionable], [Mean], [Hungry], [Thirsty], [Feeble], [Wise], [Sage], [Magical], [Mythical], [Legendary], [Not Very Nice], [Jerk], [Doctor], [Misunderstood], [Angry], [Knight], [Bishop], [Godly], [Special], [Toasty], [Shiny], [Shimmering], [Light], [Dark], [Odd-Smelling], [Funky], [Rock Smasher], [Son of Herobrine], [Cracked], [Sticky], [§kAlien§r], [Baby], [Manly], [Rough], [Scary], [Undoubtable], [Honest], [Non-Suspicious], [Boring], [Odd], [Lazy], [Super], [Nifty], [Ogre Slayer], [Pig Thief], [Dirt Digger], [Really Cool], [Doominator], [... Something]] + Chamberlain + Magus + EarlElder + Professor + Advisor + Commissioner + Caliph + Hadrat + Faqih + Naib + Lady + Lord + Tenzo + Venerable + Tsar + Tsaritsa + Khan + Shifu + Sensei + Yishi + Zongshi + Zhuxi + Vicar + Starosta + Fellow + Lord High Constable + Constable + The Right Honourable + Admiral + King of Arms + Esquire + Monsignor + Herzog + Baron + Baroness + Viceroy + Vicereine + Chief + Grand Duke + Grand Duchess + Archon + Observer + Colossus + Executor + High Templar + Dark Templar + Oracle + Assimilator + Darth + Exarch + Patriarch + Matriarch + Shogun + Ronin + Centurion + Emperor + Palatine + Magister + Arch Magus + Satrap + Consul + Guvna + Guardian + Headman + > + + # A list of suffixes, which are used in the generation of boss names. A suffix is always preceeded by "The". May be empty. [default: [Mighty], [Supreme], [Superior], [Ultimate], [Lame], [Wimpy], [Curious], [Sneaky], [Pathetic], [Crying], [Eagle], [Errant], [Unholy], [Questionable], [Mean], [Hungry], [Thirsty], [Feeble], [Wise], [Sage], [Magical], [Mythical], [Legendary], [Not Very Nice], [Jerk], [Doctor], [Misunderstood], [Angry], [Knight], [Bishop], [Godly], [Special], [Toasty], [Shiny], [Shimmering], [Light], [Dark], [Odd-Smelling], [Funky], [Rock Smasher], [Son of Herobrine], [Cracked], [Sticky], [§kAlien§r], [Baby], [Manly], [Rough], [Scary], [Undoubtable], [Honest], [Non-Suspicious], [Boring], [Odd], [Lazy], [Super], [Nifty], [Ogre Slayer], [Pig Thief], [Dirt Digger], [Really Cool], [Doominator], [... Something], [Extra-Fishy], [Gorilla Slaughterer], [Marbles Winner]] S:Suffixes < Mighty Supreme @@ -1461,258 +1467,258 @@ entity { Really Cool Doominator ... Something - Shoddy - Trivial - Waste - Lesser - Awful - Repulsive - Black - Wretched - Scant - Dreck - Red - Brown - Little - Horrid - Tempered - Adorable - Adventurous - Aggressive - Agreeable - Alert - Alive - Amused - Angry - Annoyed - Annoying - Anxious - Arrogant - Ashamed - Attractive - Average - Awful - Bad - Beautiful - Better - Bewildered - Black - Bloody - Blue - Blushing - Bored - Brainy - Brave - Breakable - Bright - Busy - Calm - Careful - Cautious - Charming - Cheerful - Clean - Clear - Clever - Cloudy - Clumsy - Colorful - Combative - Comfortable - Concerned - Condemned - Confused - Cooperative - Courageous - Crazy - Creepy - Crowded - Cruel - Curious - Cute - Dangerous - Dark - Dead - Defeated - Defiant - Delightful - Depressed - Determined - Different - Difficult - Disgusted - Distinct - Disturbed - Dizzy - Doubtful - Drab - Dull - Eager - Easy - Elated - Elegant - Embarrassed - Enchanting - Encouraging - Energetic - Enthusiastic - Envious - Evil - Excited - Expensive - Exuberant - Fair - Faithful - Famous - Fancy - Fantastic - Fierce - Filthy - Fine - Foolish - Fragile - Frail - Frantic - Friendly - Frightened - Funny - Gentle - Gifted - Glamorous - Gleaming - Glorious - Good - Gorgeous - Graceful - Grieving - Grotesque - Grumpy - Handsome - Happy - Healthy - Helpful - Helpless - Hilarious - Homeless - Homely - Horrible - Hungry - Hurt - Ill - Important - Impossible - Inexpensive - Innocent - Inquisitive - Itchy - Jealous - Jittery - Jolly - Joyous - Kind - Lazy - Light - Lively - Lonely - Long - Lovely - Lucky - Magnificent - Misty - Modern - Motionless - Muddy - Mushy - Mysterious - Nasty - Naughty - Nervous - Nice - Nutty - Obedient - Obnoxious - Odd - Open - Outrageous - Outstanding - Panicky - Perfect - Plain - Pleasant - Poised - Poor - Powerful - Precious - Prickly - Proud - Putrid - Puzzled - Quaint - Real - Relieved - Repulsive - Rich - Scary - Selfish - Shiny - Shy - Silly - Sleepy - Smiling - Smoggy - Sore - Sparkling - Splendid - Spotless - Stormy - Strange - Stupid - Successful - Super - Talented - Tame - Tasty - Tender - Tense - Terrible - Thankful - Thoughtful - Thoughtless - Tired - Tough - Troubled - Ugliest - Ugly - Uninterested - Unsightly - Unusual - Upset - Uptight - Vast - Victorious - Vivacious - Wandering - Weary - Wicked - Wide-eyed - Wild - Witty - Worried - Worrisome - Wrong - Zany - Zealous - Assassin - Blank - Piper - Dredger - Gravedigger - Manic - Horsethief - Devourer - Flayer - Brainless - Gormless + Shoddy + Trivial + Waste + Lesser + Awful + Repulsive + Black + Wretched + Scant + Dreck + Red + Brown + Little + Horrid + Tempered + Adorable + Adventurous + Aggressive + Agreeable + Alert + Alive + Amused + Angry + Annoyed + Annoying + Anxious + Arrogant + Ashamed + Attractive + Average + Awful + Bad + Beautiful + Better + Bewildered + Black + Bloody + Blue + Blushing + Bored + Brainy + Brave + Breakable + Bright + Busy + Calm + Careful + Cautious + Charming + Cheerful + Clean + Clear + Clever + Cloudy + Clumsy + Colorful + Combative + Comfortable + Concerned + Condemned + Confused + Cooperative + Courageous + Crazy + Creepy + Crowded + Cruel + Curious + Cute + Dangerous + Dark + Dead + Defeated + Defiant + Delightful + Depressed + Determined + Different + Difficult + Disgusted + Distinct + Disturbed + Dizzy + Doubtful + Drab + Dull + Eager + Easy + Elated + Elegant + Embarrassed + Enchanting + Encouraging + Energetic + Enthusiastic + Envious + Evil + Excited + Expensive + Exuberant + Fair + Faithful + Famous + Fancy + Fantastic + Fierce + Filthy + Fine + Foolish + Fragile + Frail + Frantic + Friendly + Frightened + Funny + Gentle + Gifted + Glamorous + Gleaming + Glorious + Good + Gorgeous + Graceful + Grieving + Grotesque + Grumpy + Handsome + Happy + Healthy + Helpful + Helpless + Hilarious + Homeless + Homely + Horrible + Hungry + Hurt + Ill + Important + Impossible + Inexpensive + Innocent + Inquisitive + Itchy + Jealous + Jittery + Jolly + Joyous + Kind + Lazy + Light + Lively + Lonely + Long + Lovely + Lucky + Magnificent + Misty + Modern + Motionless + Muddy + Mushy + Mysterious + Nasty + Naughty + Nervous + Nice + Nutty + Obedient + Obnoxious + Odd + Open + Outrageous + Outstanding + Panicky + Perfect + Plain + Pleasant + Poised + Poor + Powerful + Precious + Prickly + Proud + Putrid + Puzzled + Quaint + Real + Relieved + Repulsive + Rich + Scary + Selfish + Shiny + Shy + Silly + Sleepy + Smiling + Smoggy + Sore + Sparkling + Splendid + Spotless + Stormy + Strange + Stupid + Successful + Super + Talented + Tame + Tasty + Tender + Tense + Terrible + Thankful + Thoughtful + Thoughtless + Tired + Tough + Troubled + Ugliest + Ugly + Uninterested + Unsightly + Unusual + Upset + Uptight + Vast + Victorious + Vivacious + Wandering + Weary + Wicked + Wide-eyed + Wild + Witty + Worried + Worrisome + Wrong + Zany + Zealous + Assassin + Blank + Piper + Dredger + Gravedigger + Manic + Horsethief + Devourer + Flayer + Brainless + Gormless > } @@ -1880,7 +1886,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: undergarden:cloggrum_battleaxe, undergarden:cloggrum_sword, undergarden:cloggrum_pickaxe, undergarden:cloggrum_axe, undergarden:cloggrum_shovel, undergarden:cloggrum_hoe - # [default: [Cloggrum], [Mysterious], [Deep]] + # [default: ] S:CLOGGRUM < Cloggrum Mysterious @@ -1925,14 +1931,14 @@ tools { > # A list of material-based prefix names for this material group. May be empty. - # Items in this group: undergarden:forgotten_sword, undergarden:forgotten_pickaxe, undergarden:forgotten_axe, undergarden:forgotten_shovel, undergarden:forgotten_hoe + # Items in this group: undergarden:forgotten_battleaxe, undergarden:forgotten_sword, undergarden:forgotten_pickaxe, undergarden:forgotten_axe, undergarden:forgotten_shovel, undergarden:forgotten_hoe # [default: ] S:FORGOTTEN < > # A list of material-based prefix names for this material group. May be empty. # Items in this group: undergarden:froststeel_sword, undergarden:froststeel_pickaxe, undergarden:froststeel_axe, undergarden:froststeel_shovel, undergarden:froststeel_hoe - # [default: [Froststeel], [Freezing], [Cold]] + # [default: ] S:FROSTSTEEL < Froststeel Freezing @@ -1957,7 +1963,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: minecraft:iron_sword, minecraft:iron_shovel, minecraft:iron_pickaxe, minecraft:iron_axe, minecraft:iron_hoe, betterendforge:iron_hammer, cfm:spatula, occultism:butcher_knife, atum:iron_dagger, atum:dagger_poison, atum:iron_scimitar, atum:iron_greatsword, atum:iron_club, atum:iron_khopesh, aquaculture:iron_fillet_knife, farmersdelight:iron_knife, mekanismtools:iron_paxel, chiselsandbits:chisel_iron - # [default: [Iron], [Ferrous], [Rusty], [Wrought Iron]] + # [default: [Iron], [Steel], [Ferrous], [Rusty], [Wrought Iron]] S:IRON < Iron Ferrous @@ -1997,7 +2003,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: botania:manasteel_pick, botania:manasteel_shovel, botania:manasteel_hoe, botania:manasteel_axe, botania:manasteel_sword, botania:ender_dagger - # [default: [Manasteel], [Magical], [Bright Blue], [Floral Iron]] + # [default: ] S:MANASTEEL < Manasteel Magical @@ -2129,11 +2135,13 @@ tools { > S:UNSTABLE < > + S:UTHERIC < + > # A list of material-based prefix names for this material group. May be empty. # Items in this group: undergarden:utheric_sword, undergarden:utheric_pickaxe, undergarden:utheric_axe, undergarden:utheric_shovel, undergarden:utheric_hoe # [default: ] - S:UTHERIC < + S:UTHERIUM < > # A list of material-based prefix names for this material group. May be empty. @@ -2191,106 +2199,38 @@ tools { # [default: ] S:botania_glass_pickaxe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:chaotic_axe - # [default: ] S:draconicevolution_chaotic_axe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:chaotic_hoe - # [default: ] S:draconicevolution_chaotic_hoe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:chaotic_pickaxe - # [default: ] S:draconicevolution_chaotic_pickaxe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:chaotic_shovel - # [default: ] S:draconicevolution_chaotic_shovel < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:chaotic_staff - # [default: ] S:draconicevolution_chaotic_staff < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:chaotic_sword - # [default: ] S:draconicevolution_chaotic_sword < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:draconic_axe - # [default: ] S:draconicevolution_draconic_axe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:draconic_hoe - # [default: ] S:draconicevolution_draconic_hoe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:draconic_pickaxe - # [default: ] S:draconicevolution_draconic_pickaxe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:draconic_shovel - # [default: ] S:draconicevolution_draconic_shovel < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:draconic_staff - # [default: ] S:draconicevolution_draconic_staff < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:draconic_sword - # [default: ] S:draconicevolution_draconic_sword < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:wyvern_axe - # [default: ] S:draconicevolution_wyvern_axe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:wyvern_hoe - # [default: ] S:draconicevolution_wyvern_hoe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:wyvern_pickaxe - # [default: ] S:draconicevolution_wyvern_pickaxe < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:wyvern_shovel - # [default: ] S:draconicevolution_wyvern_shovel < > - - # A list of material-based prefix names for this material group. May be empty. - # Items in this group: draconicevolution:wyvern_sword - # [default: ] S:draconicevolution_wyvern_sword < > @@ -2340,7 +2280,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:bronze_pickaxe, mekanismtools:bronze_axe, mekanismtools:bronze_shovel, mekanismtools:bronze_hoe, mekanismtools:bronze_sword, mekanismtools:bronze_paxel - # [default: [Bronze], [Gladiator], [Brass]] + # [default: ] S:mekanismtools_bronze_pickaxe < Bronze Gladiator @@ -2349,7 +2289,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:lapis_lazuli_pickaxe, mekanismtools:lapis_lazuli_axe, mekanismtools:lapis_lazuli_shovel, mekanismtools:lapis_lazuli_hoe, mekanismtools:lapis_lazuli_sword, mekanismtools:lapis_lazuli_paxel - # [default: [Lapis], [Blue], [Enchanting], [Azure]] + # [default: ] S:mekanismtools_lapis_lazuli_pickaxe < Lapis Blue @@ -2359,7 +2299,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:osmium_pickaxe, mekanismtools:osmium_axe, mekanismtools:osmium_shovel, mekanismtools:osmium_hoe, mekanismtools:osmium_sword, mekanismtools:osmium_paxel - # [default: [Osmium], [Unrefined]] + # [default: ] S:mekanismtools_osmium_pickaxe < Osmium Unrefined @@ -2367,7 +2307,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:refined_glowstone_pickaxe, mekanismtools:refined_glowstone_axe, mekanismtools:refined_glowstone_shovel, mekanismtools:refined_glowstone_hoe, mekanismtools:refined_glowstone_sword, mekanismtools:refined_glowstone_paxel - # [default: [Refined Glowstone], [Glowing], [Lit], [Glassy]] + # [default: ] S:mekanismtools_refined_glowstone_pickaxe < Refined Glowstone Glowing @@ -2383,7 +2323,7 @@ tools { # A list of material-based prefix names for this material group. May be empty. # Items in this group: mekanismtools:steel_pickaxe, mekanismtools:steel_axe, mekanismtools:steel_shovel, mekanismtools:steel_hoe, mekanismtools:steel_sword, mekanismtools:steel_paxel - # [default: [Steel], [Chrome], [Carbon Steel], [Hardened]] + # [default: ] S:mekanismtools_steel_pickaxe < Steel Chrome diff --git a/config/jei/ingredient-list-type-sort-order.ini b/config/jei/ingredient-list-type-sort-order.ini index ae4f3ad962..f9ec236df2 100644 --- a/config/jei/ingredient-list-type-sort-order.ini +++ b/config/jei/ingredient-list-type-sort-order.ini @@ -8,3 +8,4 @@ net.minecraftforge.fluids.FluidStack net.minecraft.entity.EntityType slimeknights.tconstruct.library.modifiers.ModifierEntry slimeknights.tconstruct.library.recipe.partbuilder.Pattern +net.minecraft.potion.EffectInstance diff --git a/config/jei/recipe-category-sort-order.ini b/config/jei/recipe-category-sort-order.ini index 00fe179f97..0e357317b2 100644 --- a/config/jei/recipe-category-sort-order.ini +++ b/config/jei/recipe-category-sort-order.ini @@ -276,3 +276,4 @@ chisel:chiseling create:deploying create:sequenced_assembly sushigocrafting:fermentation_barrel +jeed:effects diff --git a/config/packmenu.cfg b/config/packmenu.cfg index 5d09647aa1..58dbac218c 100644 --- a/config/packmenu.cfg +++ b/config/packmenu.cfg @@ -112,6 +112,12 @@ slideshow { } +support { + # The URL that the link on the supporters page goes to. [default: https://www.patreon.com/Shadows_of_Fire?fan_landing=true] + S:"Patreon Url"=https://www.patreon.com/Shadows_of_Fire?fan_landing=true +} + + title { # The anchor point for this element. [default: TITLE] S:"Anchor Point"=TITLE diff --git a/config/supplementaries-common.toml b/config/supplementaries-common.toml index b090b5eb6c..538671e7d2 100644 --- a/config/supplementaries-common.toml +++ b/config/supplementaries-common.toml @@ -136,6 +136,8 @@ [blocks.iron_gate] #Allows two iron gates to be opened simultaneously when on top of the other double_opening = true + #Makes iron (ang gold) gates behave like their door counterpart so for example iron gates will only be openeable by redstone + door-like_gates = false [blocks.timber_frame] #Replace a timber frame with wattle and daub block when daub is placed in it @@ -206,9 +208,9 @@ [tweaks] [tweaks.cake_tweaks] - #allows you to place a cake ontop of another + #Allows you to place a cake on top of another double_cake = true - #replaces normal cake placement with a directional one + #Replaces normal cake placement with a directional one directional_cake = true [tweaks.hanging_flower_pots] @@ -216,14 +218,16 @@ enabled = true [tweaks.throwable_bricks] - #throw bricks at your foes! Might break glass blocks + #Throw bricks at your foes! Might break glass blocks enabled = true [tweaks.wall_lantern] - #allow wall lanterns placement + #Allow wall lanterns placement enabled = true - #mod ids of mods that have lantern block that extend the base lantern class but don't look like one + #Mod ids of mods that have lantern block that extend the base lantern class but don't look like one mod_blacklist = ["extlights", "betterendforge", "tconstruct"] + #Gives high priority to wall lantern placement. Enable to override other wall lanterns placements, disable if it causes issues with other mods that use lower priority block click events + high_priority = true [tweaks.bells_tweaks] #Ring a bell by clicking on a chain that's connected to it @@ -297,6 +301,12 @@ [tweaks.placeable_books] #Allow books and enchanted books to be placed on the ground enabled = true + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + book_power = 1.0 + #Enchantment power bonus given by normal book piles with 4 books. Piles with less books will have their respective fraction of this total. For reference a vanilla bookshelf provides 1 + #Range: 0.0 ~ 5.0 + enchanted_book_power = 1.334 [items] @@ -324,7 +334,7 @@ break_blocks = "WEAK" [items.slingshot] - #Slingshot range multiplier + #Slingshot range multiplier. Affect the initial projectile speed #Range: 0.0 ~ 5.0 range_multiplier = 1.0 #Time in ticks to fully charge a slingshot @@ -332,6 +342,9 @@ charge_time = 20 #Allow enderman to intercept any slingshot projectile unrestricted_enderman_intercept = true + #Deceleration for the stasis projectile + #Range: 0.1 ~ 1.0 + stasis_deceleration = 0.9624999761581421 [items.blue_bomb] #Bomb explosion radius (damage depends on this) diff --git a/config/supplementaries-registry.toml b/config/supplementaries-registry.toml index a0a9c381a2..7ce9361cdc 100644 --- a/config/supplementaries-registry.toml +++ b/config/supplementaries-registry.toml @@ -45,7 +45,6 @@ pancake = true statue = true iron_gate = true - piston_launcher = true netherite_trapdoor = true bamboo_spikes_tipped = true fodder = true @@ -54,6 +53,7 @@ sconce = true candelabra = true timber_frame = true + spring_launcher = true safe = true sconce_lever = true #WIP @@ -87,4 +87,5 @@ flute = true pulley_block = true gold_door = true + shulker_shell = true diff --git a/kubejs/config/common.properties b/kubejs/config/common.properties index 11dc2209dd..e3450b3d97 100644 --- a/kubejs/config/common.properties +++ b/kubejs/config/common.properties @@ -1,7 +1,8 @@ #KubeJS Common Properties -#Sat May 01 23:14:14 CEST 2021 +#Sat Oct 02 20:35:14 CEST 2021 exportVisualizerData=false -packmode=default hideServerScriptErrors=false +packmode=default +debugInfo=false announceReload=true serverOnly=false diff --git a/minecraftinstance.json b/minecraftinstance.json index 6ecf000b01..f0dff867a9 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,8 +30,8 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2021-09-28T18:08:38.1582226Z", - "playedCount": 391, + "lastPlayed": "2021-10-02T18:33:27.1312755Z", + "playedCount": 395, "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -47,8 +47,8 @@ "name": "Enigmatica6", "cachedScans": [], "isValid": true, - "lastPreviousMatchUpdate": "2021-09-27T17:40:22.728668Z", - "lastRefreshAttempt": "2021-09-27T19:40:31.2680002+02:00", + "lastPreviousMatchUpdate": "2021-10-02T18:09:03.9879875Z", + "lastRefreshAttempt": "2021-10-02T20:09:06.8328687+02:00", "isEnabled": true, "isPinned": false, "gameVersion": "1.16.5", @@ -73,188 +73,117 @@ "installDate": "2021-07-13T20:28:00.9696966Z", "installedAddons": [ { - "addonID": 225643, + "addonID": 409371, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3386883, - "displayName": "Botania-1.16.5-419.jar", - "fileName": "Botania-1.16.5-419.jar", - "fileDate": "2021-07-13T02:39:05.99Z", - "fileLength": 15009384, + "id": 3217067, + "displayName": "meetyourfight-1.16.5-1.1.2.jar", + "fileName": "meetyourfight-1.16.5-1.1.2.jar", + "fileDate": "2021-02-25T19:39:06.987Z", + "fileLength": 155486, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3386/883/Botania-1.16.5-419.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3217/67/meetyourfight-1.16.5-1.1.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 306770, - "type": 3, - "fileId": 0 + "id": 57702621, + "addonId": 405077, + "type": 2, + "fileId": 3217067 }, { - "id": 0, + "id": 57702622, "addonId": 309927, "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 243121, - "type": 2, - "fileId": 0 + "fileId": 3217067 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2014877404, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "vazkii", - "fingerprint": 3011803571, - "type": 0, + "fingerprint": 497403191, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2873431095, - "type": 0, + "foldername": "lykrast", + "fingerprint": 1826879218, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3218446893, - "type": 0, + "fingerprint": 2319687881, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1560565920, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 4168026028, - "type": 0, + "fingerprint": 2959280668, + "type": 3, "invalidFingerprint": false }, { - "foldername": "botania.refmap.json", - "fingerprint": 2585669513, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 1027373573, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 165990656, + "packageFingerprint": 2079575776, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Botania-1.16.5-419.jar" - }, - "dateInstalled": "2021-07-05T20:25:28.41462Z", - "dateUpdated": "2021-07-13T20:15:28.026869Z", - "dateLastUpdateAttempted": "2021-07-13T20:15:28.026869Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 398784, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3392688, - "displayName": "Curious Armor Stands-1.16.5-2.1.2.jar", - "fileName": "Curious Armor Stands-1.16.5-2.1.2.jar", - "fileDate": "2021-07-18T12:46:10.8Z", - "fileLength": 21734, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3392/688/Curious Armor Stands-1.16.5-2.1.2.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 309927, - "type": 3, - "fileId": 0 - } + "Forge", + "1.16.4" ], - "isAvailable": true, - "modules": [ + "sortableGameVersion": [ { - "foldername": "META-INF", - "fingerprint": 210373515, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" }, { - "foldername": "curiousarmorstands", - "fingerprint": 3682346151, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "logo.png", - "fingerprint": 2086557602, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" }, { - "foldername": "pack.mcmeta", - "fingerprint": 621311064, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], - "packageFingerprint": 648547089, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2189283, + "projectId": 409371, + "packageFingerprintId": 612767180, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2750360, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Curious Armor Stands-1.16.5-2.1.2.jar" + "FileNameOnDisk": "meetyourfight-1.16.5-1.1.2.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9128241Z", - "dateUpdated": "2021-07-24T18:19:13.8576321Z", - "dateLastUpdateAttempted": "2021-07-24T18:19:13.8576321Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -267,84 +196,109 @@ "installedTargets": null }, { - "addonID": 245755, + "addonID": 306475, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3440017, - "displayName": "Waystones_1.16.5-7.6.3.jar", - "fileName": "Waystones_1.16.5-7.6.3.jar", - "fileDate": "2021-08-26T18:27:19.3Z", - "fileLength": 375674, + "id": 3350866, + "displayName": "Useful-Railroads-1.16.5-1.4.6.38", + "fileName": "useful_railroads-1.16.5-1.4.6.38.jar", + "fileDate": "2021-06-13T21:48:29.86Z", + "fileLength": 245933, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3440/17/Waystones_1.16.5-7.6.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3350/866/useful_railroads-1.16.5-1.4.6.38.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3350867, + "dependencies": [ + { + "id": 66338435, + "addonId": 273744, + "type": 3, + "fileId": 3350866 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3748686736, - "type": 0, + "fingerprint": 2156712906, + "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3555035852, - "type": 0, + "foldername": "LICENSE", + "fingerprint": 3262929571, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2100158215, - "type": 0, + "fingerprint": 4292861086, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1316247697, - "type": 0, + "fingerprint": 2384038841, + "type": 3, "invalidFingerprint": false }, { - "foldername": "mixins.waystones.json", - "fingerprint": 710617204, - "type": 0, + "foldername": "info", + "fingerprint": 2396302533, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1362067209, - "type": 0, + "foldername": "logo.png", + "fingerprint": 4140808576, + "type": 3, "invalidFingerprint": false }, { - "foldername": "refmap.waystones.json", - "fingerprint": 1680274215, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 3705753273, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1408552364, + "packageFingerprint": 406089835, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2361100, + "projectId": 306475, + "packageFingerprintId": 683289987, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3041175, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Waystones_1.16.5-7.6.3.jar" + "FileNameOnDisk": "useful_railroads-1.16.5-1.4.6.38.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1420317Z", - "dateUpdated": "2021-08-26T19:10:14.6242545Z", - "dateLastUpdateAttempted": "2021-08-26T19:10:14.6242545Z", + "dateInstalled": "2021-07-05T20:20:47.9741847Z", + "dateUpdated": "2021-07-05T20:20:47.9741847Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -357,72 +311,74 @@ "installedTargets": null }, { - "addonID": 348521, + "addonID": 250577, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3311352, - "displayName": "[Forge 1.16.4/5] v4.11.26", - "fileName": "cloth-config-4.11.26-forge.jar", - "fileDate": "2021-05-16T08:28:18.67Z", - "fileLength": 1337675, + "id": 3190372, + "displayName": "AkashicTome-1.4-16.jar", + "fileName": "AkashicTome-1.4-16.jar", + "fileDate": "2021-02-02T18:04:36.48Z", + "fileLength": 41258, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3311/352/cloth-config-4.11.26-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3190/372/AkashicTome-1.4-16.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "me", - "fingerprint": 2191991237, - "type": 3, - "invalidFingerprint": false - }, + "dependencies": [ { - "foldername": "assets", - "fingerprint": 1681417698, + "id": 55931000, + "addonId": 250363, "type": 3, - "invalidFingerprint": false - }, + "fileId": 3190372 + } + ], + "isAvailable": true, + "modules": [ { - "foldername": "LICENSE.md", - "fingerprint": 589621802, + "foldername": "META-INF", + "fingerprint": 2857609648, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 524945892, + "foldername": "vazkii", + "fingerprint": 515931408, "type": 3, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 2356087988, + "foldername": "assets", + "fingerprint": 3201201675, "type": 3, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 798014315, + "foldername": "data", + "fingerprint": 1646269815, "type": 3, "invalidFingerprint": false }, { - "foldername": "architectury_inject_clothconfig_common_c760187c159d44b08ebe9c171811dfa8", - "fingerprint": 1190750826, + "foldername": "pack.mcmeta", + "fingerprint": 410624000, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2866256229, + "packageFingerprint": 4195838619, "gameVersion": [ + "1.16.3", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -447,18 +403,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2311629, - "projectId": 348521, - "packageFingerprintId": 663672050, + "renderCacheId": 2154520, + "projectId": 250577, + "packageFingerprintId": 598028620, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2944351, + "gameVersionMappingId": 2692913, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "cloth-config-4.11.26-forge.jar" + "FileNameOnDisk": "AkashicTome-1.4-16.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1120321Z", - "dateUpdated": "2021-07-05T20:21:15.1120321Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -472,17 +428,17 @@ "installedTargets": null }, { - "addonID": 365281, + "addonID": 407174, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3034936, - "displayName": "serverconfigupdater-1.3.jar", - "fileName": "serverconfigupdater-1.3.jar", - "fileDate": "2020-08-17T12:02:22.263Z", - "fileLength": 13528, + "id": 3188120, + "displayName": "Shutup Experimental Settings! 1.0.3 MCV: 1.16.5", + "fileName": "shutupexperimentalsettings-1.0.3.jar", + "fileDate": "2021-01-31T20:52:15.273Z", + "fileLength": 4140, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3034/936/serverconfigupdater-1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3188/120/shutupexperimentalsettings-1.0.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -490,38 +446,41 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3673042380, + "fingerprint": 320847970, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1353985828, + "foldername": "corgitaco", + "fingerprint": 1863411352, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, + "fingerprint": 120273643, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "shutupexperimentalsettings.mixins.json", + "fingerprint": 2002995717, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "shutupexperimentalsettings.refmap.json", + "fingerprint": 576557739, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2949524617, + "packageFingerprint": 577234596, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -533,18 +492,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -552,18 +499,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1960367, - "projectId": 365281, - "packageFingerprintId": 507039936, + "renderCacheId": 2151684, + "projectId": 407174, + "packageFingerprintId": 597028085, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2382031, + "gameVersionMappingId": 2688506, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "serverconfigupdater-1.3.jar" + "FileNameOnDisk": "shutupexperimentalsettings-1.0.3.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-07-05T20:20:54.9328256Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -577,17 +524,17 @@ "installedTargets": null }, { - "addonID": 513857, + "addonID": 351264, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3447941, - "displayName": "oauth-1.06.1-1.16.jar", - "fileName": "oauth-1.06.1-1.16.jar", - "fileDate": "2021-09-03T10:15:10.273Z", - "fileLength": 51399, + "id": 3452303, + "displayName": "Kotlin for Forge 1.15.1", + "fileName": "kotlinforforge-1.15.1-obf.jar", + "fileDate": "2021-09-06T17:53:03.31Z", + "fileLength": 6683413, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3447/941/oauth-1.06.1-1.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3452/303/kotlinforforge-1.15.1-obf.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -595,34 +542,72 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2368002889, + "fingerprint": 1262130341, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2578193890, + "foldername": "net", + "fingerprint": 3994551163, "type": 0, "invalidFingerprint": false }, { - "foldername": "oauth.png", - "fingerprint": 1778038094, + "foldername": "thedarkcolour", + "fingerprint": 348560608, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2021780760, + "fingerprint": 2664257206, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kotlinx", + "fingerprint": 190327772, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "DebugProbesKt.bin", + "fingerprint": 3678533875, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kotlin", + "fingerprint": 2265153921, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "org", + "fingerprint": 2223804006, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2915755594, + "packageFingerprint": 1677492753, "gameVersion": [ + "1.16-Snapshot", + "1.16.3", + "1.15-Snapshot", + "1.16.1", + "1.14.4", + "1.14.1", + "1.15", "1.16", + "1.14.3", "1.16.5", - "Forge" + "1.14", + "1.15.2", + "1.14.2", + "1.16.4", + "1.16.2", + "1.14-Snapshot", + "1.15.1" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -633,11 +618,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "oauth-1.06.1-1.16.jar" + "FileNameOnDisk": "kotlinforforge-1.15.1-obf.jar" }, - "dateInstalled": "2021-09-22T19:31:09.1959499Z", - "dateUpdated": "2021-09-22T19:31:09.2199512Z", - "dateLastUpdateAttempted": "2021-09-22T19:31:09.2199512Z", + "dateInstalled": "2021-09-27T04:02:25.6149583Z", + "dateUpdated": "2021-09-27T04:02:25.6269586Z", + "dateLastUpdateAttempted": "2021-09-27T04:02:25.6269586Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -650,82 +635,128 @@ "installedTargets": null }, { - "addonID": 292692, + "addonID": 409429, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3386772, - "displayName": "Transport-1.16.5-3.7.0.jar", - "fileName": "Transport-1.16.5-3.7.0.jar", - "fileDate": "2021-07-13T00:05:40.987Z", - "fileLength": 1136441, - "releaseType": 1, + "id": 3479052, + "displayName": "configswapper-1.6.jar", + "fileName": "configswapper-1.6.jar", + "fileDate": "2021-10-02T14:29:17.123Z", + "fileLength": 21837, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3386/772/Transport-1.16.5-3.7.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3479/52/configswapper-1.6.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 306770, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 287342, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 985073261, + "fingerprint": 3978712461, "type": 0, "invalidFingerprint": false }, { - "foldername": "xyz", - "fingerprint": 2448188843, + "foldername": "com", + "fingerprint": 1353031714, "type": 0, "invalidFingerprint": false }, { - "foldername": "transport-logo.png", - "fingerprint": 501335981, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 104234378, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "configswapper-1.6.jar" + }, + "dateInstalled": "2021-08-29T17:29:36.8913804Z", + "dateUpdated": "2021-10-02T18:11:51.9804191Z", + "dateLastUpdateAttempted": "2021-10-02T18:11:51.9804191Z", + "status": 4, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 250603, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3415529, + "displayName": "World Stripper-1.16.5-2.1.0.jar", + "fileName": "World Stripper-1.16.5-2.1.0.jar", + "fileDate": "2021-08-06T19:17:13.857Z", + "fileLength": 139989, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3415/529/World Stripper-1.16.5-2.1.0.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 3916994120, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3820886069, + "foldername": "com", + "fingerprint": 338168129, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 932333062, + "fingerprint": 733126946, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 1057682030, + "foldername": "offending_image.png", + "fingerprint": 2351219585, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 900612013, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 893745118, + "packageFingerprint": 3238701869, "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -736,11 +767,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Transport-1.16.5-3.7.0.jar" + "FileNameOnDisk": "World Stripper-1.16.5-2.1.0.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1520307Z", - "dateUpdated": "2021-07-13T20:15:16.5960022Z", - "dateLastUpdateAttempted": "2021-07-13T20:15:16.5960022Z", + "dateInstalled": "2021-07-05T20:20:47.9741847Z", + "dateUpdated": "2021-08-07T20:02:37.8252941Z", + "dateLastUpdateAttempted": "2021-08-07T20:02:37.8252941Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -753,103 +784,85 @@ "installedTargets": null }, { - "addonID": 248020, + "addonID": 317716, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3285556, - "displayName": "Flux-Networks-1.16.5-6.1.7", - "fileName": "FluxNetworks-1.16.5-6.1.7.12.jar", - "fileDate": "2021-04-22T15:24:00.86Z", - "fileLength": 472287, + "id": 3231248, + "displayName": "curiouselytra-forge-1.16.5-4.0.2.3.jar", + "fileName": "curiouselytra-forge-1.16.5-4.0.2.3.jar", + "fileDate": "2021-03-08T07:41:20.407Z", + "fileLength": 30182, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3285/556/FluxNetworks-1.16.5-6.1.7.12.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3231/248/curiouselytra-forge-1.16.5-4.0.2.3.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3231249, "dependencies": [ { - "id": 61904555, - "addonId": 223794, - "type": 2, - "fileId": 3285556 - }, - { - "id": 61904557, - "addonId": 268560, - "type": 2, - "fileId": 3285556 - }, - { - "id": 61904553, + "id": 58527867, "addonId": 309927, - "type": 2, - "fileId": 3285556 - }, - { - "id": 61904559, - "addonId": 245211, - "type": 2, - "fileId": 3285556 - }, - { - "id": 61904558, - "addonId": 352656, - "type": 2, - "fileId": 3285556 - }, - { - "id": 61904554, - "addonId": 352491, - "type": 2, - "fileId": 3285556 + "type": 3, + "fileId": 3231248 }, { - "id": 61904556, - "addonId": 238222, - "type": 2, - "fileId": 3285556 + "id": 58527866, + "addonId": 308989, + "type": 3, + "fileId": 3231248 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2567910091, + "fingerprint": 428491447, "type": 3, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 3010262717, + "foldername": "top", + "fingerprint": 3889961128, "type": 3, "invalidFingerprint": false }, { - "foldername": "sonar", - "fingerprint": 3283383722, + "foldername": "CHANGELOG.md", + "fingerprint": 1342753430, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2753995291, + "foldername": "curiouselytra_icon.png", + "fingerprint": 2512131936, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 145048759, + "fingerprint": 2883822936, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "licenses", + "fingerprint": 3368067102, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1210696107, + "fingerprint": 1111621113, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "README.md", + "fingerprint": 347289972, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1182115578, + "packageFingerprint": 2772272810, "gameVersion": [ "1.16.3", "1.16.5", @@ -887,18 +900,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2277688, - "projectId": 248020, - "packageFingerprintId": 648529030, + "renderCacheId": 2207254, + "projectId": 317716, + "packageFingerprintId": 620099809, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2883517, + "gameVersionMappingId": 2777829, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "FluxNetworks-1.16.5-6.1.7.12.jar" + "FileNameOnDisk": "curiouselytra-forge-1.16.5-4.0.2.3.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1420317Z", - "dateUpdated": "2021-07-05T20:21:15.1420317Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -912,91 +925,90 @@ "installedTargets": null }, { - "addonID": 383182, + "addonID": 252848, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3435369, - "displayName": "XNetGases-1.16.5-2.3.7.jar", - "fileName": "XNetGases-1.16.5-2.3.7.jar", - "fileDate": "2021-08-23T12:19:04.47Z", - "fileLength": 227039, + "id": 3382150, + "displayName": "NaturesCompass-1.16.5-1.9.1-forge.jar", + "fileName": "NaturesCompass-1.16.5-1.9.1-forge.jar", + "fileDate": "2021-07-09T04:43:08.943Z", + "fileLength": 203573, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3435/369/XNetGases-1.16.5-2.3.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3382/150/NaturesCompass-1.16.5-1.9.1-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 326041, - "type": 3, - "fileId": 0 - }, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 0, - "addonId": 260912, + "foldername": "META-INF", + "fingerprint": 2865400410, "type": 3, - "fileId": 0 + "invalidFingerprint": false }, { - "id": 0, - "addonId": 233105, + "foldername": "com", + "fingerprint": 324789395, "type": 3, - "fileId": 0 + "invalidFingerprint": false }, { - "id": 0, - "addonId": 268560, + "foldername": "data", + "fingerprint": 3589911188, "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 2103154068, - "type": 0, "invalidFingerprint": false }, { - "foldername": "terrails", - "fingerprint": 1159384398, - "type": 0, + "foldername": "assets", + "fingerprint": 2843533673, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3977612331, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "xnetgases.png", - "fingerprint": 224484208, - "type": 0, + "fingerprint": 2288265386, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3792918243, + "packageFingerprint": 1236086660, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2400545, + "projectId": 252848, + "packageFingerprintId": 701701059, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "gameVersionMappingId": 3116340, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "XNetGases-1.16.5-2.3.7.jar" + "FileNameOnDisk": "NaturesCompass-1.16.5-1.9.1-forge.jar" }, - "dateInstalled": "2021-07-05T20:20:57.519581Z", - "dateUpdated": "2021-08-25T05:57:23.1935024Z", - "dateLastUpdateAttempted": "2021-08-25T05:57:23.1935024Z", + "dateInstalled": "2021-07-10T17:55:07.2673396Z", + "dateUpdated": "2021-07-10T17:55:07.2673396Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1009,17 +1021,17 @@ "installedTargets": null }, { - "addonID": 231275, + "addonID": 396019, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3222705, - "displayName": "Ding-1.16.5-1.3.0.jar", - "fileName": "Ding-1.16.5-1.3.0.jar", - "fileDate": "2021-03-01T12:06:24.023Z", - "fileLength": 10483, + "id": 3160833, + "displayName": "SaveYourPets-1.16.2-1.0.0.5.jar", + "fileName": "SaveYourPets-1.16.2-1.0.0.5.jar", + "fileDate": "2021-01-07T00:42:25.007Z", + "fileLength": 65230, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3222/705/Ding-1.16.5-1.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3160/833/SaveYourPets-1.16.2-1.0.0.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -1027,35 +1039,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1546344329, + "fingerprint": 1729192994, "type": 3, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 313153936, + "foldername": "com", + "fingerprint": 2799349549, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "asm", + "fingerprint": 2143126825, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2813156055, + "fingerprint": 1465053331, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 543606034, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 201093375, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1839000226, + "fingerprint": 25571737, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 862704897, + "packageFingerprint": 651912613, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -1081,6 +1112,12 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -1088,18 +1125,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2196358, - "projectId": 231275, - "packageFingerprintId": 615239585, + "renderCacheId": 2116677, + "projectId": 396019, + "packageFingerprintId": 581365529, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2760785, + "gameVersionMappingId": 2630668, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Ding-1.16.5-1.3.0.jar" + "FileNameOnDisk": "SaveYourPets-1.16.2-1.0.0.5.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5345808Z", - "dateUpdated": "2021-07-05T20:20:57.5345808Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -1113,47 +1150,58 @@ "installedTargets": null }, { - "addonID": 351914, + "addonID": 306549, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3456505, - "displayName": "mgui-1.16.5-3.3.0.jar", - "fileName": "mgui-1.16.5-3.3.0.jar", - "fileDate": "2021-09-11T15:23:56.447Z", - "fileLength": 50151, - "releaseType": 1, + "id": 3445360, + "displayName": "Tips-1.16.5-4.0.10.jar", + "fileName": "Tips-1.16.5-4.0.10.jar", + "fileDate": "2021-08-31T23:16:31.333Z", + "fileLength": 63459, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3456/505/mgui-1.16.5-3.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3445/360/Tips-1.16.5-4.0.10.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3445361, + "dependencies": [ + { + "id": 0, + "addonId": 228525, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 894567602, + "fingerprint": 2382889519, "type": 0, "invalidFingerprint": false }, { - "foldername": "se", - "fingerprint": 1343638382, + "foldername": "assets", + "fingerprint": 871510552, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "net", + "fingerprint": 3590871681, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 466699339, + "fingerprint": 867245095, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3261480363, + "packageFingerprint": 4225229060, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -1164,11 +1212,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mgui-1.16.5-3.3.0.jar" + "FileNameOnDisk": "Tips-1.16.5-4.0.10.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5255848Z", - "dateUpdated": "2021-09-15T16:38:48.8723952Z", - "dateLastUpdateAttempted": "2021-09-15T16:38:48.8723952Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-09-02T12:00:16.9144647Z", + "dateLastUpdateAttempted": "2021-09-02T12:00:16.9144647Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1181,79 +1229,48 @@ "installedTargets": null }, { - "addonID": 251389, + "addonID": 306555, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3443979, - "displayName": "IntegratedTunnels-1.16.5-1.8.6.jar", - "fileName": "IntegratedTunnels-1.16.5-1.8.6.jar", - "fileDate": "2021-08-30T17:31:12.17Z", - "fileLength": 591666, + "id": 3421094, + "displayName": "Sound Device Options 1.4.3", + "fileName": "sounddeviceoptions-1.4.3.jar", + "fileDate": "2021-08-10T08:34:33.567Z", + "fileLength": 21663, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3443/979/IntegratedTunnels-1.16.5-1.8.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3421/94/sounddeviceoptions-1.4.3.jar", "isAlternate": false, - "alternateFileId": 3443980, - "dependencies": [ - { - "id": 0, - "addonId": 232758, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 236307, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2091418331, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "org", - "fingerprint": 170040213, + "fingerprint": 2123611148, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4044870590, + "foldername": "ichttt", + "fingerprint": 2351971303, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3961494986, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo_small.png", - "fingerprint": 3667489292, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 152818033, + "fingerprint": 2303297079, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2522231078, + "foldername": "pack.mcmeta", + "fingerprint": 2602360141, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1525529218, + "packageFingerprint": 121299131, "gameVersion": [ "1.16.5", "Forge" @@ -1264,14 +1281,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IntegratedTunnels-1.16.5-1.8.6.jar" + "FileNameOnDisk": "sounddeviceoptions-1.4.3.jar" }, - "dateInstalled": "2021-07-05T20:19:25.2909342Z", - "dateUpdated": "2021-08-31T18:22:25.6272784Z", - "dateLastUpdateAttempted": "2021-08-31T18:22:25.6272784Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-08-11T14:53:09.3637473Z", + "dateLastUpdateAttempted": "2021-08-11T14:53:09.3637473Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1284,17 +1301,17 @@ "installedTargets": null }, { - "addonID": 379849, + "addonID": 492246, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3361666, - "displayName": "The Undergarden 0.5.4", - "fileName": "The_Undergarden-1.16.5-0.5.4.jar", - "fileDate": "2021-06-23T00:49:20.82Z", - "fileLength": 61216351, - "releaseType": 2, + "id": 3432202, + "displayName": "MaxHealthFix-Forge-1.16.5-1.0.4.jar", + "fileName": "MaxHealthFix-Forge-1.16.5-1.0.4.jar", + "fileDate": "2021-08-20T07:37:14.143Z", + "fileLength": 6703, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3361/666/The_Undergarden-1.16.5-0.5.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3432/202/MaxHealthFix-Forge-1.16.5-1.0.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -1302,96 +1319,132 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2664184213, - "type": 3, + "fingerprint": 816719500, + "type": 0, "invalidFingerprint": false }, { - "foldername": "quek", - "fingerprint": 2694934369, - "type": 3, + "foldername": "net", + "fingerprint": 1467555661, + "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 685113340, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 393274625, + "type": 0, "invalidFingerprint": false - }, + } + ], + "packageFingerprint": 2520279336, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "MaxHealthFix-Forge-1.16.5-1.0.4.jar" + }, + "dateInstalled": "2021-07-10T18:31:23.7540147Z", + "dateUpdated": "2021-08-22T11:02:47.2667233Z", + "dateLastUpdateAttempted": "2021-08-22T11:02:47.2667233Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 232758, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3474910, + "displayName": "CyclopsCore-1.16.5-1.11.10.jar", + "fileName": "CyclopsCore-1.16.5-1.11.10.jar", + "fileDate": "2021-09-27T17:37:47.15Z", + "fileLength": 844480, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3474/910/CyclopsCore-1.16.5-1.11.10.jar", + "isAlternate": false, + "alternateFileId": 3474911, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "foldername": "assets", - "fingerprint": 4226821110, - "type": 3, + "foldername": "META-INF", + "fingerprint": 3548156480, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3827524469, - "type": 3, + "foldername": "org", + "fingerprint": 780530223, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3269923206, - "type": 3, + "foldername": "assets", + "fingerprint": 3876077990, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 695107257, - "type": 3, + "fingerprint": 3536622113, + "type": 0, "invalidFingerprint": false }, { - "foldername": "undergarden.mixins.json", - "fingerprint": 1644557152, - "type": 3, + "foldername": "logo_small.png", + "fingerprint": 3202528997, + "type": 0, "invalidFingerprint": false }, { - "foldername": "undergarden.refmap.json", - "fingerprint": 1174418451, - "type": 3, + "foldername": "data", + "fingerprint": 2620577581, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2866114932, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3920224678, + "packageFingerprint": 297894024, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2374950, - "projectId": 379849, - "packageFingerprintId": 689812669, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3068075, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "The_Undergarden-1.16.5-0.5.4.jar" + "FileNameOnDisk": "CyclopsCore-1.16.5-1.11.10.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-07-05T20:31:05.1764869Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:47.9741847Z", + "dateUpdated": "2021-09-27T17:47:39.8746612Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:39.8746612Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1404,85 +1457,114 @@ "installedTargets": null }, { - "addonID": 446870, + "addonID": 268560, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3241432, - "displayName": "RSInfinityBooster v1.16.5-1.0+6", - "fileName": "RSInfinityBooster-1.16.5-1.0+6.jar", - "fileDate": "2021-03-16T16:10:01.797Z", - "fileLength": 24130, + "id": 3206392, + "displayName": "Mekanism-1.16.5-10.0.21.448.jar", + "fileName": "Mekanism-1.16.5-10.0.21.448.jar", + "fileDate": "2021-02-16T19:07:58.13Z", + "fileLength": 8962038, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3241/432/RSInfinityBooster-1.16.5-1.0+6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3206/392/Mekanism-1.16.5-10.0.21.448.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3206394, "dependencies": [ { - "id": 59162019, - "addonId": 243076, - "type": 3, - "fileId": 3241432 + "id": 56995137, + "addonId": 267602, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995132, + "addonId": 248020, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995136, + "addonId": 324164, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995139, + "addonId": 238222, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995134, + "addonId": 220318, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995138, + "addonId": 253449, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995135, + "addonId": 245211, + "type": 2, + "fileId": 3206392 + }, + { + "id": 56995133, + "addonId": 226410, + "type": 2, + "fileId": 3206392 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 464313011, + "fingerprint": 678764324, "type": 3, "invalidFingerprint": false }, { - "foldername": "uk", - "fingerprint": 732083628, + "foldername": "mekanism", + "fingerprint": 163431123, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3948203362, + "fingerprint": 72123268, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4150378568, + "foldername": "logo.png", + "fingerprint": 595176173, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2133868226, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 3385438859, + "fingerprint": 1535469697, "type": 3, "invalidFingerprint": false }, { - "foldername": "rsinfinitybooster.mixins.json", - "fingerprint": 3739684882, + "foldername": "pack.mcmeta", + "fingerprint": 3151715192, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3343322362, + "packageFingerprint": 3390446425, "gameVersion": [ - "1.16", "1.16.5", "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016", - "gameVersion": "1.16", - "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", - "gameVersionName": "1.16" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -1501,18 +1583,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2220503, - "projectId": 446870, - "packageFingerprintId": 625930430, + "renderCacheId": 2175396, + "projectId": 268560, + "packageFingerprintId": 607016319, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2797306, + "gameVersionMappingId": 2727613, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "RSInfinityBooster-1.16.5-1.0+6.jar" + "FileNameOnDisk": "Mekanism-1.16.5-10.0.21.448.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", + "dateInstalled": "2021-07-05T20:20:52.5203908Z", + "dateUpdated": "2021-07-05T20:20:52.5203908Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -1526,30 +1608,30 @@ "installedTargets": null }, { - "addonID": 521714, + "addonID": 429625, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3473075, - "displayName": "ponderjs-1.16.5-1.0.3.jar", - "fileName": "ponderjs-1.16.5-1.0.3.jar", - "fileDate": "2021-09-26T16:30:02.683Z", - "fileLength": 60125, - "releaseType": 1, + "id": 3157832, + "displayName": "eidolon-0.2.7.jar", + "fileName": "eidolon-0.2.7.jar", + "fileDate": "2021-01-04T02:56:27.373Z", + "fileLength": 2040762, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3473/75/ponderjs-1.16.5-1.0.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3157/832/eidolon-0.2.7.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 328085, + "addonId": 309927, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 238086, - "type": 3, + "addonId": 238222, + "type": 2, "fileId": 0 } ], @@ -1557,39 +1639,53 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2063765738, + "fingerprint": 1952269718, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3532274439, + "foldername": "elucent", + "fingerprint": 3226906529, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.plugins.txt", - "fingerprint": 2131187925, + "foldername": "assets", + "fingerprint": 1034786461, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 537449533, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "eidolon.mixins.json", + "fingerprint": 347554349, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2278453492, + "fingerprint": 1438559181, "type": 0, "invalidFingerprint": false }, { - "foldername": "ponderjs.mixins.json", - "fingerprint": 1078583032, + "foldername": "eidolon.refmap.json", + "fingerprint": 1806857758, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2123725902, + "packageFingerprint": 360156398, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -1600,11 +1696,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ponderjs-1.16.5-1.0.3.jar" + "FileNameOnDisk": "eidolon-0.2.7.jar" }, - "dateInstalled": "2021-09-01T20:23:23.4515179Z", - "dateUpdated": "2021-09-26T18:55:19.1333963Z", - "dateLastUpdateAttempted": "2021-09-26T18:55:19.1333963Z", + "dateInstalled": "2021-09-16T17:54:57.4762018Z", + "dateUpdated": "2021-09-16T17:54:57.4892313Z", + "dateLastUpdateAttempted": "2021-09-16T17:54:57.4892313Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1617,114 +1713,101 @@ "installedTargets": null }, { - "addonID": 422301, + "addonID": 335673, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3455669, - "displayName": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar", - "fileName": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar", - "fileDate": "2021-09-10T16:56:34.73Z", - "fileLength": 1233886, + "id": 3250771, + "displayName": "dankstorage-3.16.jar", + "fileName": "dankstorage-3.16.jar", + "fileDate": "2021-03-25T14:10:44.453Z", + "fileLength": 158268, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3455/669/sophisticatedbackpacks-1.16.5-3.2.12.337.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3250/771/dankstorage-3.16.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 301356, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 233071, - "type": 2, - "fileId": 0 - }, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 0, - "addonId": 225643, - "type": 2, - "fileId": 0 + "foldername": "META-INF", + "fingerprint": 1034404246, + "type": 3, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 243121, - "type": 2, - "fileId": 0 + "foldername": "tfar", + "fingerprint": 3038451062, + "type": 3, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 309927, - "type": 2, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 1821336421, - "type": 0, + "foldername": ".cache", + "fingerprint": 2661016923, + "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 893207206, - "type": 0, + "foldername": "assets", + "fingerprint": 3382637053, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1415314844, - "type": 0, + "foldername": "dankstorage.mixins.json", + "fingerprint": 1477469161, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2552684475, - "type": 0, + "foldername": "data", + "fingerprint": 1136729427, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1102936719, - "type": 0, + "fingerprint": 676596830, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 4014858000, - "type": 0, + "foldername": "dankstorage.refmap.json", + "fingerprint": 1637630964, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2880603544, + "packageFingerprint": 2586721171, "gameVersion": [ "1.16.5" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2233723, + "projectId": 335673, + "packageFingerprintId": 631724792, "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameId": 0, + "gameVersionMappingId": 2817446, + "gameVersionId": 8203, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar" + "FileNameOnDisk": "dankstorage-3.16.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-09-10T17:30:59.4099218Z", - "dateLastUpdateAttempted": "2021-09-10T17:30:59.4099218Z", + "dateInstalled": "2021-07-05T20:20:47.9542016Z", + "dateUpdated": "2021-07-05T20:20:47.9542016Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1737,79 +1820,182 @@ "installedTargets": null }, { - "addonID": 273744, + "addonID": 241721, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3350619, - "displayName": "U-Team-Core-1.16.5-3.2.1.196", - "fileName": "u_team_core-1.16.5-3.2.1.196.jar", - "fileDate": "2021-06-13T18:16:59.537Z", - "fileLength": 397203, - "releaseType": 1, + "id": 3333980, + "displayName": "AstralSorcery-1.16.5-1.13.12.jar", + "fileName": "astralsorcery-1.16-1.16.5-1.13.12.jar", + "fileDate": "2021-06-01T18:28:11.38Z", + "fileLength": 30123369, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3350/619/u_team_core-1.16.5-3.2.1.196.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3333/980/astralsorcery-1.16-1.16.5-1.13.12.jar", "isAlternate": false, - "alternateFileId": 3350620, + "alternateFileId": 0, "dependencies": [ { - "id": 66323647, - "addonId": 453627, - "type": 2, - "fileId": 3350619 + "id": 65230963, + "addonId": 309927, + "type": 3, + "fileId": 3333980 }, { - "id": 66323648, - "addonId": 238222, - "type": 2, - "fileId": 3350619 + "id": 65230964, + "addonId": 316833, + "type": 3, + "fileId": 3333980 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3943365671, + "fingerprint": 3755312493, "type": 3, "invalidFingerprint": false }, { - "foldername": "LICENSE", - "fingerprint": 3262929571, + "foldername": "assets", + "fingerprint": 12430641, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3380198306, + "foldername": "coremods", + "fingerprint": 2731907184, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2603296706, + "fingerprint": 818080104, "type": 3, "invalidFingerprint": false }, { - "foldername": "info", - "fingerprint": 3204025215, + "foldername": "hellfirepvp", + "fingerprint": 1808630609, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3365032926, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 1232891596, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 3597463763, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2340018, + "projectId": 241721, + "packageFingerprintId": 674255407, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2997659, + "gameVersionId": 4458, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "astralsorcery-1.16-1.16.5-1.13.12.jar" + }, + "dateInstalled": "2021-07-05T20:21:03.3701172Z", + "dateUpdated": "2021-07-05T20:21:03.3701172Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 268566, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3206395, + "displayName": "MekanismGenerators-1.16.5-10.0.21.448.jar", + "fileName": "MekanismGenerators-1.16.5-10.0.21.448.jar", + "fileDate": "2021-02-16T19:08:01.257Z", + "fileLength": 945876, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3206/395/MekanismGenerators-1.16.5-10.0.21.448.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 56995140, + "addonId": 268560, + "type": 3, + "fileId": 3206395 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 2824892800, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "mekanism", + "fingerprint": 4064440780, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 4175009076, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 595176173, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 881097483, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4035234439, + "fingerprint": 1879495570, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1589661685, + "packageFingerprint": 1746161766, "gameVersion": [ "1.16.5", "Forge" @@ -1833,18 +2019,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2360788, - "projectId": 273744, - "packageFingerprintId": 683185965, + "renderCacheId": 2175399, + "projectId": 268566, + "packageFingerprintId": 607022986, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3040463, + "gameVersionMappingId": 2727620, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "u_team_core-1.16.5-3.2.1.196.jar" + "FileNameOnDisk": "MekanismGenerators-1.16.5-10.0.21.448.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5155814Z", - "dateUpdated": "2021-07-05T20:20:57.5155814Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -1858,77 +2044,103 @@ "installedTargets": null }, { - "addonID": 496030, + "addonID": 268567, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3451336, - "displayName": "EnigmaticGraves-1.6.2.jar", - "fileName": "EnigmaticGraves-1.6.2.jar", - "fileDate": "2021-09-05T18:29:46.57Z", - "fileLength": 72398, + "id": 3206396, + "displayName": "MekanismTools-1.16.5-10.0.21.448.jar", + "fileName": "MekanismTools-1.16.5-10.0.21.448.jar", + "fileDate": "2021-02-16T19:08:02.9Z", + "fileLength": 352787, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3451/336/EnigmaticGraves-1.6.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3206/396/MekanismTools-1.16.5-10.0.21.448.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 56995141, + "addonId": 268560, + "type": 3, + "fileId": 3206396 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3805657105, - "type": 0, + "fingerprint": 1971079856, + "type": 3, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 1714614039, - "type": 0, + "foldername": "mekanism", + "fingerprint": 1307450485, + "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 3920192458, - "type": 0, + "foldername": "data", + "fingerprint": 1353343892, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1514560904, - "type": 0, + "foldername": "logo.png", + "fingerprint": 595176173, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 0, + "foldername": "assets", + "fingerprint": 808996551, + "type": 3, "invalidFingerprint": false }, { - "foldername": "enigmaticgraves.refmap.json", - "fingerprint": 1493072104, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 699725023, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1035292235, + "packageFingerprint": 1369952707, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2175400, + "projectId": 268567, + "packageFingerprintId": 607023464, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2727623, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "EnigmaticGraves-1.6.2.jar" + "FileNameOnDisk": "MekanismTools-1.16.5-10.0.21.448.jar" }, - "dateInstalled": "2021-07-13T20:16:02.8369272Z", - "dateUpdated": "2021-09-08T17:52:09.4778375Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:09.4778375Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -1941,17 +2153,17 @@ "installedTargets": null }, { - "addonID": 251407, + "addonID": 362528, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3222131, - "displayName": "ClientTweaks_1.16.3-5.3.0.jar", - "fileName": "ClientTweaks_1.16.3-5.3.0.jar", - "fileDate": "2021-02-28T22:12:48.44Z", - "fileLength": 31203, + "id": 3166283, + "displayName": "decorative_blocks-1.16.4-1.7.2.jar", + "fileName": "decorative_blocks-1.16.4-1.7.2.jar", + "fileDate": "2021-01-12T13:54:20.667Z", + "fileLength": 576443, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3222/131/ClientTweaks_1.16.3-5.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3166/283/decorative_blocks-1.16.4-1.7.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -1959,34 +2171,42 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3215016202, + "fingerprint": 4217647388, "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 1184065800, + "foldername": "com", + "fingerprint": 3482054246, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3401440730, + "fingerprint": 2984315610, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2076193682, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1097162695, + "fingerprint": 2513699377, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3821383761, + "packageFingerprint": 2373058841, "gameVersion": [ "1.16.3", "1.16.5", - "1.16.4" + "Forge", + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -2001,11 +2221,23 @@ "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -2013,18 +2245,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2195574, - "projectId": 251407, - "packageFingerprintId": 614879926, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2759535, - "gameVersionId": 8056, + "renderCacheId": 2123628, + "projectId": 362528, + "packageFingerprintId": 584650464, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2640626, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "ClientTweaks_1.16.3-5.3.0.jar" + "FileNameOnDisk": "decorative_blocks-1.16.4-1.7.2.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5235787Z", - "dateUpdated": "2021-07-05T20:20:57.5235787Z", + "dateInstalled": "2021-07-05T20:20:47.9741847Z", + "dateUpdated": "2021-07-05T20:20:47.9741847Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -2038,96 +2270,79 @@ "installedTargets": null }, { - "addonID": 388800, + "addonID": 317792, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3353732, - "displayName": "polymorph-forge-1.16.5-0.25.jar", - "fileName": "polymorph-forge-1.16.5-0.25.jar", - "fileDate": "2021-06-16T06:51:30.567Z", - "fileLength": 129304, + "id": 3089690, + "displayName": "The Mighty Architect - mc1.16.3_v0.5", + "fileName": "mightyarchitect-mc1.16.3_v0.5.jar", + "fileDate": "2020-10-22T17:01:41.567Z", + "fileLength": 690774, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3353/732/polymorph-forge-1.16.5-0.25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3089/690/mightyarchitect-mc1.16.3_v0.5.jar", "isAlternate": false, - "alternateFileId": 3353733, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1943844783, + "fingerprint": 1281009558, "type": 3, "invalidFingerprint": false }, { - "foldername": "top", - "fingerprint": 3914904156, + "foldername": "com", + "fingerprint": 4059930146, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1492148029, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "CHANGELOG.md", - "fingerprint": 3723697635, + "fingerprint": 3830620685, "type": 3, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 3094404643, + "foldername": "logo.png", + "fingerprint": 2274920061, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 974824912, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "polymorph.mixins.json", - "fingerprint": 3620266733, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "polymorph_icon.png", - "fingerprint": 2565812113, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "polymorph_integrations.mixins.json", - "fingerprint": 77310967, + "fingerprint": 3008705646, "type": 3, "invalidFingerprint": false }, { - "foldername": "README.md", - "fingerprint": 3592852768, + "foldername": "palettes", + "fingerprint": 2559091357, "type": 3, "invalidFingerprint": false }, { - "foldername": "polymorph.refmap.json", - "fingerprint": 1518924750, + "foldername": "themes", + "fingerprint": 1669747802, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4155397533, + "packageFingerprint": 1913767755, "gameVersion": [ + "1.16.3", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -2152,18 +2367,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2364769, - "projectId": 388800, - "packageFingerprintId": 685009523, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3048446, - "gameVersionId": 4458, + "renderCacheId": 2027017, + "projectId": 317792, + "packageFingerprintId": 540096364, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2490254, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "polymorph-forge-1.16.5-0.25.jar" + "FileNameOnDisk": "mightyarchitect-mc1.16.3_v0.5.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1620371Z", - "dateUpdated": "2021-07-05T20:21:15.1620371Z", + "dateInstalled": "2021-07-05T20:20:47.9641636Z", + "dateUpdated": "2021-07-05T20:20:47.9641636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -2177,17 +2392,17 @@ "installedTargets": null }, { - "addonID": 74924, + "addonID": 282001, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3439180, - "displayName": "Mantle 1.6.123 for 1.16.5", - "fileName": "Mantle-1.16.5-1.6.123.jar", - "fileDate": "2021-08-25T22:02:55.607Z", - "fileLength": 742903, - "releaseType": 2, + "id": 3434680, + "displayName": "cc-tweaked-1.16.5-1.98.2.jar", + "fileName": "cc-tweaked-1.16.5-1.98.2.jar", + "fileDate": "2021-08-22T17:05:47.14Z", + "fileLength": 1865152, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3439/180/Mantle-1.16.5-1.6.123.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3434/680/cc-tweaked-1.16.5-1.98.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -2195,42 +2410,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1004667897, + "fingerprint": 1130747466, "type": 0, "invalidFingerprint": false }, { - "foldername": "slimeknights", - "fingerprint": 4098133632, + "foldername": "dan200", + "fingerprint": 2612172011, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1510015062, + "fingerprint": 3511260374, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3720854501, + "fingerprint": 2208217621, "type": 0, "invalidFingerprint": false }, { - "foldername": "Mantle.png", - "fingerprint": 3296224890, + "foldername": "pack.png", + "fingerprint": 1002598164, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 1153495610, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1734166776, + "fingerprint": 1379925519, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "org", + "fingerprint": 1751164419, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1203431666, + "packageFingerprint": 2562506460, "gameVersion": [ "1.16.5", "Forge" @@ -2244,11 +2471,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Mantle-1.16.5-1.6.123.jar" + "FileNameOnDisk": "cc-tweaked-1.16.5-1.98.2.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3541194Z", - "dateUpdated": "2021-08-26T19:09:30.6854897Z", - "dateLastUpdateAttempted": "2021-08-26T19:09:30.6854897Z", + "dateInstalled": "2021-07-05T20:20:52.5193918Z", + "dateUpdated": "2021-08-25T05:56:16.6505152Z", + "dateLastUpdateAttempted": "2021-08-25T05:56:16.6505152Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2261,62 +2488,56 @@ "installedTargets": null }, { - "addonID": 250294, + "addonID": 223852, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3426089, - "displayName": "modular-routers-1.16.5-7.5.1-69.jar", - "fileName": "modular-routers-1.16.5-7.5.1-69.jar", - "fileDate": "2021-08-15T11:52:20.747Z", - "fileLength": 1072759, + "id": 3402515, + "displayName": "StorageDrawers-1.16.3-8.3.0.jar", + "fileName": "StorageDrawers-1.16.3-8.3.0.jar", + "fileDate": "2021-07-27T04:54:34.703Z", + "fileLength": 500792, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3426/89/modular-routers-1.16.5-7.5.1-69.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3402/515/StorageDrawers-1.16.3-8.3.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 306770, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1861986390, + "fingerprint": 997917962, "type": 0, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 1078228455, + "foldername": "com", + "fingerprint": 1729075938, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1348804809, + "foldername": "assets", + "fingerprint": 400019514, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2981291698, + "foldername": "data", + "fingerprint": 289885862, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 4294280016, + "foldername": "pack.mcmeta", + "fingerprint": 2933347059, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2603156377, + "packageFingerprint": 1640644228, "gameVersion": [ + "1.16.3", "1.16.5", "Forge" ], @@ -2329,11 +2550,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "modular-routers-1.16.5-7.5.1-69.jar" + "FileNameOnDisk": "StorageDrawers-1.16.3-8.3.0.jar" }, - "dateInstalled": "2021-07-05T20:21:18.996063Z", - "dateUpdated": "2021-08-15T17:21:46.2886883Z", - "dateLastUpdateAttempted": "2021-08-15T17:21:46.2886883Z", + "dateInstalled": "2021-07-05T20:20:47.9542016Z", + "dateUpdated": "2021-07-27T20:19:56.5188218Z", + "dateLastUpdateAttempted": "2021-07-27T20:19:56.5188218Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2346,41 +2567,41 @@ "installedTargets": null }, { - "addonID": 313970, + "addonID": 306626, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3451418, - "displayName": "Apotheosis-1.16.5-4.8.0.jar", - "fileName": "Apotheosis-1.16.5-4.8.0.jar", - "fileDate": "2021-09-05T19:51:43.623Z", - "fileLength": 925636, + "id": 3472977, + "displayName": "NaturesAura-34.3.jar", + "fileName": "NaturesAura-34.3.jar", + "fileDate": "2021-09-26T14:53:52.83Z", + "fileLength": 1381468, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3451/418/Apotheosis-1.16.5-4.8.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3472/977/NaturesAura-34.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 250419, - "type": 2, + "addonId": 306770, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 283644, - "type": 3, + "addonId": 309927, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 253449, + "addonId": 238222, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 238222, + "addonId": 313272, "type": 2, "fileId": 0 } @@ -2389,51 +2610,41 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4219668769, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1733758917, + "fingerprint": 3699649426, "type": 0, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 544914589, + "foldername": "de", + "fingerprint": 4245162054, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3327823722, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "coremods", - "fingerprint": 1365971321, + "fingerprint": 3254365699, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 778286281, + "fingerprint": 539793675, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3850463208, + "fingerprint": 4034026680, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3774337239, + "packageFingerprint": 358643820, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -2444,12 +2655,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Apotheosis-1.16.5-4.8.0.jar" + "FileNameOnDisk": "NaturesAura-34.3.jar" }, - "dateInstalled": "2021-09-27T18:50:08.2167934Z", - "dateUpdated": "2021-09-27T18:50:08.2297943Z", - "dateLastUpdateAttempted": "2021-09-27T18:50:08.2297943Z", - "status": 4, + "dateInstalled": "2021-07-05T20:20:52.5333929Z", + "dateUpdated": "2021-09-26T18:55:19.9934226Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:19.9934226Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -2461,17 +2672,17 @@ "installedTargets": null }, { - "addonID": 357540, + "addonID": 405077, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3432418, - "displayName": "[Forge.1.16.2-1.16.5] InventoryHUD+ (v3.4.0)", - "fileName": "InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar", - "fileDate": "2021-08-20T14:17:37.54Z", - "fileLength": 196910, + "id": 3323323, + "displayName": "gunswithoutroses-1.16.5-1.0.9.jar", + "fileName": "gunswithoutroses-1.16.5-1.0.9.jar", + "fileDate": "2021-05-24T18:30:40.11Z", + "fileLength": 118936, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3432/418/InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3323/323/gunswithoutroses-1.16.5-1.0.9.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -2479,42 +2690,142 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4200453640, + "fingerprint": 1464571035, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "lykrast", + "fingerprint": 2300657282, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1018287968, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 741703825, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2295410020, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 451168249, + "gameVersion": [ + "1.16.5", + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2326671, + "projectId": 405077, + "packageFingerprintId": 668990640, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2971601, + "gameVersionId": 7498, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "gunswithoutroses-1.16.5-1.0.9.jar" + }, + "dateInstalled": "2021-07-05T20:20:47.9542016Z", + "dateUpdated": "2021-07-05T20:20:47.9542016Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 237307, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3398000, + "displayName": "CosmeticArmorReworked-1.16.5-v4.jar", + "fileName": "CosmeticArmorReworked-1.16.5-v4.jar", + "fileDate": "2021-07-23T05:53:21.86Z", + "fileLength": 86844, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3398/0/CosmeticArmorReworked-1.16.5-v4.jar", + "isAlternate": false, + "alternateFileId": 3398001, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 3538467986, "type": 0, "invalidFingerprint": false }, { - "foldername": "dlovin", - "fingerprint": 637678159, + "foldername": "LICENSE.txt", + "fingerprint": 213336249, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1366209809, + "fingerprint": 3268752115, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2496424231, + "foldername": "lain", + "fingerprint": 797966852, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 4050523715, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1510091854, + "packageFingerprint": 1715933748, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -2525,11 +2836,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar" + "FileNameOnDisk": "CosmeticArmorReworked-1.16.5-v4.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1520307Z", - "dateUpdated": "2021-08-22T11:00:53.2590986Z", - "dateLastUpdateAttempted": "2021-08-22T11:00:53.2590986Z", + "dateInstalled": "2021-07-05T20:20:52.5079Z", + "dateUpdated": "2021-07-25T20:32:13.2667651Z", + "dateLastUpdateAttempted": "2021-07-25T20:32:13.2667651Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2542,23 +2853,29 @@ "installedTargets": null }, { - "addonID": 347488, + "addonID": 487858, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3431343, - "displayName": "Valhelsia Structures - 0.1.5", - "fileName": "valhelsia_structures-1.16.5-0.1.5.jar", - "fileDate": "2021-08-19T12:38:27.61Z", - "fileLength": 1540625, + "id": 3385994, + "displayName": "integrated_proxy-1.16-1.0.19.jar", + "fileName": "integrated_proxy-1.16-1.0.19.jar", + "fileDate": "2021-07-12T12:48:08.4Z", + "fileLength": 69176, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3431/343/valhelsia_structures-1.16.5-0.1.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3385/994/integrated_proxy-1.16-1.0.19.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 416935, + "addonId": 236307, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 232758, "type": 3, "fileId": 0 } @@ -2567,60 +2884,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1668438296, + "fingerprint": 2269517246, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 452096264, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 3952993768, + "fingerprint": 485122952, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 428892627, + "fingerprint": 2421686355, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2141717525, + "fingerprint": 4092330642, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3639630371, + "foldername": "icon.png", + "fingerprint": 595462858, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1701865676, + "foldername": "mixins.integrated_proxy.json", + "fingerprint": 2104485388, "type": 0, "invalidFingerprint": false }, { - "foldername": "valhelsia_structures.mixins.json", - "fingerprint": 4279890370, + "foldername": "pack.mcmeta", + "fingerprint": 4211499851, "type": 0, "invalidFingerprint": false }, { - "foldername": "valhelsia_structures.refmap.json", - "fingerprint": 2292881831, + "foldername": "mixins.integrated_proxy.refmap.json", + "fingerprint": 3897704287, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 670998994, + "packageFingerprint": 1076535041, "gameVersion": [ "1.16.5", "Forge" @@ -2634,11 +2945,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "valhelsia_structures-1.16.5-0.1.5.jar" + "FileNameOnDisk": "integrated_proxy-1.16-1.0.19.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5365845Z", - "dateUpdated": "2021-08-22T11:02:53.8513648Z", - "dateLastUpdateAttempted": "2021-08-22T11:02:53.8513648Z", + "dateInstalled": "2021-07-10T17:55:07.259339Z", + "dateUpdated": "2021-07-12T18:49:59.2879581Z", + "dateLastUpdateAttempted": "2021-07-12T18:49:59.2879581Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2651,65 +2962,56 @@ "installedTargets": null }, { - "addonID": 380998, + "addonID": 261924, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3228821, - "displayName": "integratednbt-1.16.4-1.4.2.jar", - "fileName": "integratednbt-1.16.4-1.4.2.jar", - "fileDate": "2021-03-06T23:05:00.937Z", - "fileLength": 136751, + "id": 3332379, + "displayName": "FarmingForBlockheads_1.16.5-7.3.1.jar", + "fileName": "FarmingForBlockheads_1.16.5-7.3.1.jar", + "fileDate": "2021-06-01T09:11:48.307Z", + "fileLength": 282034, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3228/821/integratednbt-1.16.4-1.4.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3332/379/FarmingForBlockheads_1.16.5-7.3.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 58426928, - "addonId": 236307, - "type": 3, - "fileId": 3228821 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 604077050, + "fingerprint": 194273907, "type": 3, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 4045768744, + "foldername": "net", + "fingerprint": 2138447866, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1362099752, + "fingerprint": 619786569, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 619273959, + "fingerprint": 1269960286, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3273911401, + "fingerprint": 2071239246, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3877441169, + "packageFingerprint": 2248587174, "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" + "1.16.5" ], "sortableGameVersion": [ { @@ -2717,18 +3019,6 @@ "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -2736,18 +3026,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2204361, - "projectId": 380998, - "packageFingerprintId": 619172570, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2773708, - "gameVersionId": 4458, + "renderCacheId": 2338264, + "projectId": 261924, + "packageFingerprintId": 673947769, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2994889, + "gameVersionId": 8203, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "integratednbt-1.16.4-1.4.2.jar" + "FileNameOnDisk": "FarmingForBlockheads_1.16.5-7.3.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5125806Z", - "dateUpdated": "2021-07-05T20:20:57.5125806Z", + "dateInstalled": "2021-07-05T20:20:52.5423923Z", + "dateUpdated": "2021-07-05T20:20:52.5423923Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -2761,72 +3051,82 @@ "installedTargets": null }, { - "addonID": 456956, + "addonID": 342466, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3424808, - "displayName": "Chipped 1.1.2 [FORGE]", - "fileName": "chipped-1.1.2.jar", - "fileDate": "2021-08-14T01:52:12.373Z", - "fileLength": 5436835, + "id": 3424922, + "displayName": "RFToolsUtility - 1.16-3.1.2", + "fileName": "rftoolsutility-1.16-3.1.2.jar", + "fileDate": "2021-08-14T05:26:51.973Z", + "fileLength": 1606928, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3424/808/chipped-1.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3424/922/rftoolsutility-1.16-3.1.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ + "dependencies": [ { - "foldername": "META-INF", - "fingerprint": 1185380548, - "type": 0, - "invalidFingerprint": false + "id": 0, + "addonId": 245211, + "type": 2, + "fileId": 0 }, { - "foldername": "com", - "fingerprint": 3395467849, - "type": 0, - "invalidFingerprint": false + "id": 0, + "addonId": 233105, + "type": 3, + "fileId": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 2085338806, + "id": 0, + "addonId": 270789, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 326041, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 3044384234, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2866401848, + "foldername": "mcjty", + "fingerprint": 634041100, "type": 0, "invalidFingerprint": false }, { - "foldername": "Chipped_Logo.png", - "fingerprint": 2145118639, + "foldername": "assets", + "fingerprint": 4122953665, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 299266696, + "foldername": "pack.mcmeta", + "fingerprint": 2052052530, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3533743234, + "fingerprint": 2564539114, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3354636867, + "packageFingerprint": 1973625588, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -2837,11 +3137,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "chipped-1.1.2.jar" + "FileNameOnDisk": "rftoolsutility-1.16-3.1.2.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5265805Z", - "dateUpdated": "2021-08-14T19:12:41.3953363Z", - "dateLastUpdateAttempted": "2021-08-14T19:12:41.3953363Z", + "dateInstalled": "2021-07-10T17:55:07.2653389Z", + "dateUpdated": "2021-08-14T19:13:10.6013954Z", + "dateLastUpdateAttempted": "2021-08-14T19:13:10.6013954Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2854,89 +3154,84 @@ "installedTargets": null }, { - "addonID": 225738, + "addonID": 416294, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3473005, - "displayName": "MmmMmmMmmMmm-1.16.5-1.3.1.jar", - "fileName": "MmmMmmMmmMmm-1.16.5-1.3.1.jar", - "fileDate": "2021-09-26T15:22:52.197Z", - "fileLength": 156393, + "id": 3470925, + "displayName": "rhino-forge-1605.1.4-build.63.jar", + "fileName": "rhino-forge-1605.1.4-build.63.jar", + "fileDate": "2021-09-25T11:01:15.257Z", + "fileLength": 1004797, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3473/5/MmmMmmMmmMmm-1.16.5-1.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3470/925/rhino-forge-1605.1.4-build.63.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 3444351968, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 2972405099, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1443824609, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1128644385, + "foldername": "rhino-common.mixins.json", + "fingerprint": 3620685965, "type": 0, "invalidFingerprint": false }, { - "foldername": "dummmmmmy.mixins.json", - "fingerprint": 2608028944, + "foldername": "rhino-common-refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3497494600, + "foldername": "pack.mcmeta", + "fingerprint": 770561941, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo1.png", - "fingerprint": 1007478654, + "foldername": "rhino.mixins.json", + "fingerprint": 227373560, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo2.png", - "fingerprint": 3497494600, + "foldername": "dev", + "fingerprint": 1266231130, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 516985262, + "foldername": "META-INF", + "fingerprint": 3524606193, "type": 0, "invalidFingerprint": false }, { - "foldername": "dummmmmmy.refmap.json", - "fingerprint": 582775868, + "foldername": "architectury_inject_Rhino_common_fce7d84ea92645c4ba03bda56ec02cbc", + "fingerprint": 4259051973, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3534794908, + "packageFingerprint": 4046909362, "gameVersion": [ + "1.17.1", "1.16.3", + "1.16.1", + "1.14.4", + "1.17", "1.16.5", "Forge", - "1.16.4" + "1.15.2", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -2944,14 +3239,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "MmmMmmMmmMmm-1.16.5-1.3.1.jar" + "FileNameOnDisk": "rhino-forge-1605.1.4-build.63.jar" }, - "dateInstalled": "2021-09-25T20:00:48.4929878Z", - "dateUpdated": "2021-09-26T18:55:20.3454249Z", - "dateLastUpdateAttempted": "2021-09-26T18:55:20.3454249Z", + "dateInstalled": "2021-09-16T06:15:58.9533579Z", + "dateUpdated": "2021-09-25T14:37:05.8983263Z", + "dateLastUpdateAttempted": "2021-09-25T14:37:05.8983263Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -2964,163 +3259,206 @@ "installedTargets": null }, { - "addonID": 377652, + "addonID": 268655, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3439969, - "displayName": "materialis-1.16.5-2.1.1.jar", - "fileName": "materialis-1.16.5-2.1.1.jar", - "fileDate": "2021-08-26T17:44:24.56Z", - "fileLength": 1136151, - "releaseType": 2, + "id": 3478390, + "displayName": "GameStages-Forge-1.16.5-7.3.11.jar", + "fileName": "GameStages-Forge-1.16.5-7.3.11.jar", + "fileDate": "2021-10-01T21:33:04.01Z", + "fileLength": 64285, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3439/969/materialis-1.16.5-2.1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/390/GameStages-Forge-1.16.5-7.3.11.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 222880, - "type": 2, + "addonId": 228525, + "type": 3, "fileId": 0 - }, + } + ], + "isAvailable": true, + "modules": [ { - "id": 0, - "addonId": 379849, - "type": 2, - "fileId": 0 + "foldername": "META-INF", + "fingerprint": 3709906896, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 282940, - "type": 2, - "fileId": 0 + "foldername": "assets", + "fingerprint": 3135022295, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 429625, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 60028, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 74072, - "type": 3, - "fileId": 0 + "foldername": "data", + "fingerprint": 2112833506, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 268560, - "type": 2, - "fileId": 0 + "foldername": "mod_logo.png", + "fingerprint": 3615909690, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 266515, - "type": 2, - "fileId": 0 + "foldername": "net", + "fingerprint": 1175285496, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 241721, - "type": 2, - "fileId": 0 - }, + "foldername": "pack.mcmeta", + "fingerprint": 962224717, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 162103789, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "GameStages-Forge-1.16.5-7.3.11.jar" + }, + "dateInstalled": "2021-07-05T20:20:52.5028989Z", + "dateUpdated": "2021-10-02T18:13:50.0001238Z", + "dateLastUpdateAttempted": "2021-10-02T18:13:50.0001238Z", + "status": 4, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 250763, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3380280, + "displayName": "RFToolsControl - 1.16-4.0.11", + "fileName": "rftoolscontrol-1.16-4.0.11.jar", + "fileDate": "2021-07-07T16:51:39.4Z", + "fileLength": 615168, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3380/280/rftoolscontrol-1.16-4.0.11.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ { - "id": 0, - "addonId": 361026, - "type": 2, - "fileId": 0 + "id": 68281240, + "addonId": 233105, + "type": 3, + "fileId": 3380280 }, { - "id": 0, - "addonId": 328085, + "id": 68281238, + "addonId": 245211, "type": 2, - "fileId": 0 + "fileId": 3380280 }, { - "id": 0, - "addonId": 241665, + "id": 68281239, + "addonId": 270789, "type": 2, - "fileId": 0 + "fileId": 3380280 }, { - "id": 0, - "addonId": 243121, - "type": 2, - "fileId": 0 + "id": 68281237, + "addonId": 326041, + "type": 3, + "fileId": 3380280 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2161376395, - "type": 0, + "fingerprint": 2019200650, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2029670386, - "type": 0, + "foldername": "mcjty", + "fingerprint": 345349831, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2922082902, - "type": 0, + "foldername": "assets", + "fingerprint": 945044135, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 596330657, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "materialis_logo.png", - "fingerprint": 1271439210, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 3120771506, - "type": 0, + "fingerprint": 2138234017, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1431418334, - "type": 0, + "foldername": "data", + "fingerprint": 586754434, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 692814289, + "packageFingerprint": 2371023085, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2398193, + "projectId": 250763, + "packageFingerprintId": 700569496, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3111828, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "materialis-1.16.5-2.1.1.jar" + "FileNameOnDisk": "rftoolscontrol-1.16-4.0.11.jar" }, - "dateInstalled": "2021-07-31T19:26:04.3873174Z", - "dateUpdated": "2021-08-26T19:09:33.0894889Z", - "dateLastUpdateAttempted": "2021-08-26T19:09:33.0894889Z", + "dateInstalled": "2021-07-10T17:55:07.2643391Z", + "dateUpdated": "2021-07-10T17:55:07.2643391Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3133,79 +3471,90 @@ "installedTargets": null }, { - "addonID": 309516, + "addonID": 364852, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3239647, - "displayName": "Bountiful-1.16.4-3.3.1.jar", - "fileName": "Bountiful-1.16.4-3.3.1.jar", - "fileDate": "2021-03-14T22:03:42.273Z", - "fileLength": 336577, - "releaseType": 1, + "id": 3263830, + "displayName": "RSLargePatterns-1.16.5-2.1.0.3.jar", + "fileName": "RSLargePatterns-1.16.5-2.1.0.3.jar", + "fileDate": "2021-04-05T08:28:35.253Z", + "fileLength": 124744, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3239/647/Bountiful-1.16.4-3.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3263/830/RSLargePatterns-1.16.5-2.1.0.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 351264, + "id": 60595740, + "addonId": 243076, "type": 3, - "fileId": 0 + "fileId": 3263830 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2035055663, - "type": 0, + "fingerprint": 2864329655, + "type": 3, "invalidFingerprint": false }, { - "foldername": "ejektaflex", - "fingerprint": 1260082630, - "type": 0, + "foldername": "thelm", + "fingerprint": 2642925518, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2844277695, - "type": 0, + "fingerprint": 441457746, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3575987840, - "type": 0, + "fingerprint": 4225636517, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0, + "fingerprint": 3455540839, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4051624247, + "packageFingerprint": 2083800620, "gameVersion": [ - "1.16.5", - "1.16.4" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2250173, + "projectId": 364852, + "packageFingerprintId": 638404754, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2842644, + "gameVersionId": 8203, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Bountiful-1.16.4-3.3.1.jar" + "FileNameOnDisk": "RSLargePatterns-1.16.5-2.1.0.3.jar" }, - "dateInstalled": "2021-09-27T04:45:06.6421109Z", - "dateUpdated": "2021-09-27T04:45:06.6621069Z", - "dateLastUpdateAttempted": "2021-09-27T04:45:06.6621069Z", + "dateInstalled": "2021-07-05T20:20:52.5324017Z", + "dateUpdated": "2021-07-05T20:20:52.5324017Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3218,103 +3567,373 @@ "installedTargets": null }, { - "addonID": 289412, + "addonID": 445385, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3469837, - "displayName": "ftb-quests-forge-1605.3.5-build.64.jar", - "fileName": "ftb-quests-forge-1605.3.5-build.64.jar", - "fileDate": "2021-09-23T23:43:31.837Z", - "fileLength": 939623, + "id": 3349970, + "displayName": "Tetranomicon 1.3", + "fileName": "tetranomicon-1.3.jar", + "fileDate": "2021-06-13T05:37:42.633Z", + "fileLength": 100391, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3469/837/ftb-quests-forge-1605.3.5-build.64.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3349/970/tetranomicon-1.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 309674, - "type": 3, - "fileId": 0 + "id": 66280072, + "addonId": 430404, + "type": 2, + "fileId": 3349970 }, { - "id": 0, - "addonId": 238222, + "id": 66280068, + "addonId": 247560, "type": 2, - "fileId": 0 + "fileId": 3349970 }, { - "id": 0, - "addonId": 404468, + "id": 66280064, + "addonId": 401284, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280061, + "addonId": 428877, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280071, + "addonId": 291509, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280075, + "addonId": 326895, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280067, + "addonId": 351914, "type": 3, - "fileId": 0 + "fileId": 3349970 }, { - "id": 0, - "addonId": 419699, + "id": 66280058, + "addonId": 365045, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280073, + "addonId": 227639, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280070, + "addonId": 289712, "type": 3, - "fileId": 0 + "fileId": 3349970 }, { - "id": 0, - "addonId": 238086, + "id": 66280065, + "addonId": 388992, "type": 2, - "fileId": 0 + "fileId": 3349970 }, { - "id": 0, - "addonId": 404465, + "id": 66280063, + "addonId": 328085, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280074, + "addonId": 406825, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280062, + "addonId": 220318, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280059, + "addonId": 348215, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280076, + "addonId": 340333, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280069, + "addonId": 243121, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280060, + "addonId": 452344, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280066, + "addonId": 264231, + "type": 2, + "fileId": 3349970 + }, + { + "id": 66280057, + "addonId": 362393, + "type": 2, + "fileId": 3349970 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 769532427, "type": 3, - "fileId": 0 + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 3715609168, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1697669882, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2661794979, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2771947904, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 3906217757, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" } ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2359960, + "projectId": 445385, + "packageFingerprintId": 682715981, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 3038663, + "gameVersionId": 7498, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "tetranomicon-1.3.jar" + }, + "dateInstalled": "2021-07-05T20:20:52.5049002Z", + "dateUpdated": "2021-07-05T20:20:52.5049002Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 284324, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3184796, + "displayName": "emojiful-1.16.4-2.1.4.jar", + "fileName": "emojiful-1.16.4-2.1.4.jar", + "fileDate": "2021-01-28T18:46:32.32Z", + "fileLength": 239634, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3184/796/emojiful-1.16.4-2.1.4.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 3371782786, - "type": 0, + "foldername": "META-INF", + "fingerprint": 1874247693, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 1993229689, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2386744581, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1908987372, + "fingerprint": 2131275852, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3380797652, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 408502814, + "gameVersion": [ + "1.16.5", + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2147326, + "projectId": 284324, + "packageFingerprintId": 595260313, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2681099, + "gameVersionId": 4458, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "emojiful-1.16.4-2.1.4.jar" + }, + "dateInstalled": "2021-07-05T20:20:52.5243914Z", + "dateUpdated": "2021-07-05T20:20:52.5243914Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 277616, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3420107, + "displayName": "SoL-Carrot-1.16.5-1.10.1.jar", + "fileName": "SoL-Carrot-1.16.5-1.10.1.jar", + "fileDate": "2021-08-09T12:54:17.767Z", + "fileLength": 121064, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3420/107/SoL-Carrot-1.16.5-1.10.1.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 770890979, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1345485831, + "foldername": "com", + "fingerprint": 2679126851, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 239616976, + "foldername": "logo 160.png", + "fingerprint": 4228682874, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 246062193, + "foldername": "data", + "fingerprint": 701828344, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 2391237473, + "foldername": "assets", + "fingerprint": 3853847922, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBQuests1165_common_4a5ef85546a54440aaacb191ec872146", - "fingerprint": 3840500979, + "foldername": "pack.mcmeta", + "fingerprint": 2269927293, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3097798653, + "packageFingerprint": 2227292078, "gameVersion": [ "1.16.5", "Forge" @@ -3325,14 +3944,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-quests-forge-1605.3.5-build.64.jar" + "FileNameOnDisk": "SoL-Carrot-1.16.5-1.10.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5375822Z", - "dateUpdated": "2021-09-24T18:44:39.0782347Z", - "dateLastUpdateAttempted": "2021-09-24T18:44:39.0782347Z", + "dateInstalled": "2021-07-05T20:20:52.5444125Z", + "dateUpdated": "2021-08-09T21:29:33.4199637Z", + "dateLastUpdateAttempted": "2021-08-09T21:29:33.4199637Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3345,60 +3964,174 @@ "installedTargets": null }, { - "addonID": 255902, + "addonID": 429735, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3172803, - "displayName": "Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar", - "fileName": "Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar", - "fileDate": "2021-01-18T18:27:43.81Z", - "fileLength": 24109, - "releaseType": 1, + "id": 3348414, + "displayName": "compactcrafting-1.0.0-beta.3.jar", + "fileName": "compactcrafting-1.0.0-beta.3.jar", + "fileDate": "2021-06-11T23:47:06.21Z", + "fileLength": 309615, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3172/803/Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/414/compactcrafting-1.0.0-beta.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 54705139, - "addonId": 283644, + "foldername": "META-INF", + "fingerprint": 2430283600, "type": 3, - "fileId": 3172803 + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 3823144946, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1269182687, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 28181765, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3681724189, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 3018483409, + "type": 3, + "invalidFingerprint": false } ], + "packageFingerprint": 824721554, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2358047, + "projectId": 429735, + "packageFingerprintId": 681908996, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3034210, + "gameVersionId": 4458, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "compactcrafting-1.0.0-beta.3.jar" + }, + "dateInstalled": "2021-07-05T20:20:52.5303961Z", + "dateUpdated": "2021-07-05T20:20:52.5303961Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 349206, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3301978, + "displayName": "seals-1.16.3-2.1.2.jar", + "fileName": "seals-1.16.3-2.1.2.jar", + "fileDate": "2021-05-07T22:07:47.427Z", + "fileLength": 37607, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3301/978/seals-1.16.3-2.1.2.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2142761029, + "fingerprint": 9915634, "type": 3, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 3420901665, + "foldername": "com", + "fingerprint": 3993713864, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4071149343, + "fingerprint": 1149959580, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 13905160, + "fingerprint": 958460847, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "seals.mixins.json", + "fingerprint": 1412240311, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "seals.refmap.json", + "fingerprint": 1202218701, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 169920213, + "packageFingerprint": 3725189602, "gameVersion": [ + "1.16.3", "1.16.5", "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -3406,30 +4139,121 @@ "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2299291, + "projectId": 349206, + "packageFingerprintId": 658497540, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2918486, + "gameVersionId": 8056, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "seals-1.16.3-2.1.2.jar" + }, + "dateInstalled": "2021-07-05T20:20:52.5454032Z", + "dateUpdated": "2021-07-05T20:20:52.5454032Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 74072, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3439200, + "displayName": "Tinkers' Construct 3.1.2.265 for 1.16.5", + "fileName": "TConstruct-1.16.5-3.1.2.265.jar", + "fileDate": "2021-08-25T22:26:43.537Z", + "fileLength": 10088256, + "releaseType": 3, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3439/200/TConstruct-1.16.5-3.1.2.265.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 74924, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 3673228740, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "slimeknights", + "fingerprint": 920752151, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3133816837, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3635995092, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 3056415901, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3868453206, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 1187491472, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2131829, - "projectId": 255902, - "packageFingerprintId": 588540686, - "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", - "gameVersionMappingId": 2654359, - "gameVersionId": 8134, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar" + "FileNameOnDisk": "TConstruct-1.16.5-3.1.2.265.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5235787Z", - "dateUpdated": "2021-07-05T20:20:57.5235787Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-08-04T13:38:29.0995552Z", + "dateUpdated": "2021-08-26T19:10:04.3161085Z", + "dateLastUpdateAttempted": "2021-08-26T19:10:04.3161085Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3442,88 +4266,60 @@ "installedTargets": null }, { - "addonID": 404465, + "addonID": 454372, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3456644, - "displayName": "ftb-library-forge-1605.3.3-build.71.jar", - "fileName": "ftb-library-forge-1605.3.3-build.71.jar", - "fileDate": "2021-09-11T17:09:07.67Z", - "fileLength": 566625, + "id": 3413422, + "displayName": "supermartijn642corelib-1.0.12-mc1.16.5", + "fileName": "supermartijn642corelib-1.0.12-mc1.16.5.jar", + "fileDate": "2021-08-04T23:28:06.07Z", + "fileLength": 202294, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3456/644/ftb-library-forge-1605.3.3-build.71.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3413/422/supermartijn642corelib-1.0.12-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 419699, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "assets", - "fingerprint": 3890636078, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 1091646804, + "foldername": "META-INF", + "fingerprint": 4032317977, "type": 0, "invalidFingerprint": false }, { - "foldername": "ftblibrary-common.mixins.json", - "fingerprint": 2229262088, + "foldername": "com", + "fingerprint": 733152587, "type": 0, "invalidFingerprint": false }, { - "foldername": "ftb-library-common-refmap.json", - "fingerprint": 2537558737, + "foldername": "assets", + "fingerprint": 1946121656, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 239616976, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "META-INF", - "fingerprint": 3137771856, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "dev", - "fingerprint": 2252479902, + "fingerprint": 2415593438, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBLibrary1165_common_61b0708af0b64cf581b245fc20674613", - "fingerprint": 160914710, + "foldername": "supermartijn642guilib.png", + "fingerprint": 1404450715, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 799011951, + "packageFingerprint": 572436363, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -3531,14 +4327,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-library-forge-1605.3.3-build.71.jar" + "FileNameOnDisk": "supermartijn642corelib-1.0.12-mc1.16.5.jar" }, - "dateInstalled": "2021-08-18T18:00:56.9919032Z", - "dateUpdated": "2021-09-15T16:52:50.1976655Z", - "dateLastUpdateAttempted": "2021-09-15T16:52:50.1976655Z", + "dateInstalled": "2021-07-05T20:20:52.5089Z", + "dateUpdated": "2021-08-05T20:52:49.5278732Z", + "dateLastUpdateAttempted": "2021-08-05T20:52:49.5278732Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3551,23 +4347,23 @@ "installedTargets": null }, { - "addonID": 404468, + "addonID": 358191, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3460043, - "displayName": "ftb-teams-forge-1605.2.2-build.32.jar", - "fileName": "ftb-teams-forge-1605.2.2-build.32.jar", - "fileDate": "2021-09-15T03:08:57.78Z", - "fileLength": 171516, + "id": 3475660, + "displayName": "PackMenu-1.16.5-2.5.0.jar", + "fileName": "PackMenu-1.16.5-2.5.0.jar", + "fileDate": "2021-09-28T15:55:33.937Z", + "fileLength": 540313, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3460/43/ftb-teams-forge-1605.2.2-build.32.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3475/660/PackMenu-1.16.5-2.5.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 419699, + "addonId": 283644, "type": 3, "fileId": 0 } @@ -3575,43 +4371,43 @@ "isAvailable": true, "modules": [ { - "foldername": "assets", - "fingerprint": 3374566488, + "foldername": "META-INF", + "fingerprint": 3241389733, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 4244743998, + "foldername": "shadows", + "fingerprint": 401804319, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 239616976, + "foldername": "assets", + "fingerprint": 1965465627, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 3241620702, + "foldername": "pack.mcmeta", + "fingerprint": 3571026891, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 1585822448, + "foldername": "packmenu.mixins.json", + "fingerprint": 3145902374, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBTeams1165_common_f15106fd8b8b47e9a64feab37898da9e", - "fingerprint": 2499899307, + "foldername": "resources.zip", + "fingerprint": 2407690255, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1730578673, + "packageFingerprint": 2854016855, "gameVersion": [ "1.16.5", "Forge" @@ -3622,15 +4418,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-teams-forge-1605.2.2-build.32.jar" + "FileNameOnDisk": "PackMenu-1.16.5-2.5.0.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-09-16T05:27:38.5984387Z", - "dateLastUpdateAttempted": "2021-09-16T05:27:38.5984387Z", - "status": 5, + "dateInstalled": "2021-07-05T20:20:52.5193918Z", + "dateUpdated": "2021-10-02T18:17:03.6712463Z", + "dateLastUpdateAttempted": "2021-10-02T18:17:03.6712463Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -3642,81 +4438,93 @@ "installedTargets": null }, { - "addonID": 452500, + "addonID": 308989, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3422371, - "displayName": "sushigocrafting-1.16.5-0.2.0.jar", - "fileName": "sushigocrafting-1.16.5-0.2.0.jar", - "fileDate": "2021-08-11T16:23:43.867Z", - "fileLength": 607321, - "releaseType": 2, + "id": 3403876, + "displayName": "caelus-forge-1.16.5-2.1.3.1.jar", + "fileName": "caelus-forge-1.16.5-2.1.3.1.jar", + "fileDate": "2021-07-28T09:00:15.973Z", + "fileLength": 41793, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3422/371/sushigocrafting-1.16.5-0.2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3403/876/caelus-forge-1.16.5-2.1.3.1.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ + "alternateFileId": 3403877, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 0, - "addonId": 238222, - "type": 3, - "fileId": 0 + "foldername": "META-INF", + "fingerprint": 2211930798, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 287342, - "type": 3, - "fileId": 0 + "foldername": "top", + "fingerprint": 1292321890, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 306770, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 2389553620, + "foldername": "assets", + "fingerprint": 353144346, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2472422226, + "foldername": "caelus.mixins.json", + "fingerprint": 2479739610, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 246160315, + "foldername": "caelus_icon.png", + "fingerprint": 2107451488, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 762989674, + "foldername": "CHANGELOG.md", + "fingerprint": 2484148725, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3372470046, + "fingerprint": 4073022409, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "licenses", + "fingerprint": 3374142206, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3273911401, + "fingerprint": 2008059415, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "README.md", + "fingerprint": 847246422, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "caelus.refmap.json", + "fingerprint": 3426438488, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1883363849, + "packageFingerprint": 2077954968, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -3724,14 +4532,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "sushigocrafting-1.16.5-0.2.0.jar" + "FileNameOnDisk": "caelus-forge-1.16.5-2.1.3.1.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-08-11T21:22:30.5382935Z", - "dateLastUpdateAttempted": "2021-08-11T21:22:30.5382935Z", + "dateInstalled": "2021-07-05T20:20:52.5144171Z", + "dateUpdated": "2021-07-29T17:38:10.4912404Z", + "dateLastUpdateAttempted": "2021-07-29T17:38:10.4912404Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3744,17 +4552,17 @@ "installedTargets": null }, { - "addonID": 224633, + "addonID": 250832, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3107222, - "displayName": "PassthroughSigns-1.16.4-2.3.7.jar", - "fileName": "PassthroughSigns-1.16.4-2.3.7.jar", - "fileDate": "2020-11-09T22:56:55.35Z", - "fileLength": 10676, + "id": 3238352, + "displayName": "elevatorid-1.16.5-1.7.13.jar", + "fileName": "elevatorid-1.16.5-1.7.13.jar", + "fileDate": "2021-03-13T19:04:42.84Z", + "fileLength": 183750, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3107/222/PassthroughSigns-1.16.4-2.3.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3238/352/elevatorid-1.16.5-1.7.13.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -3762,30 +4570,47 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2014619178, + "fingerprint": 3630131266, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2308490179, + "foldername": "xyz", + "fingerprint": 1767482914, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 628713720, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 4269820384, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2583521980, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 441247734, + "fingerprint": 972975125, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2033324903, + "packageFingerprint": 2325835132, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "sortableGameVersion": [ { @@ -3811,12 +4636,6 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -3824,18 +4643,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2048548, - "projectId": 224633, - "packageFingerprintId": 551233401, + "renderCacheId": 2216374, + "projectId": 250832, + "packageFingerprintId": 623789917, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2525332, + "gameVersionMappingId": 2791277, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "PassthroughSigns-1.16.4-2.3.7.jar" + "FileNameOnDisk": "elevatorid-1.16.5-1.7.13.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5265805Z", - "dateUpdated": "2021-07-05T20:20:57.5265805Z", + "dateInstalled": "2021-07-05T20:20:52.5173914Z", + "dateUpdated": "2021-07-05T20:20:52.5173914Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -3849,120 +4668,113 @@ "installedTargets": null }, { - "addonID": 443570, + "addonID": 432032, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472677, - "displayName": "diet-forge-1.16.5-0.43.jar", - "fileName": "diet-forge-1.16.5-0.43.jar", - "fileDate": "2021-09-26T08:28:09.197Z", - "fileLength": 204502, - "releaseType": 2, + "id": 3152348, + "displayName": "tamedsummon-1.0.0.jar", + "fileName": "tamedsummon-1.0.0.jar", + "fileDate": "2020-12-29T14:55:34.803Z", + "fileLength": 5917, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/677/diet-forge-1.16.5-0.43.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3152/348/tamedsummon-1.0.0.jar", "isAlternate": false, - "alternateFileId": 3472678, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4137006833, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "top", - "fingerprint": 2784323045, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1647663563, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "CHANGELOG.md", - "fingerprint": 1745347817, - "type": 0, + "fingerprint": 1622435281, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 201200362, - "type": 0, + "foldername": "com", + "fingerprint": 1199598581, + "type": 3, "invalidFingerprint": false }, { - "foldername": "diet-effects.toml", - "fingerprint": 578407234, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 3657869870, + "type": 3, "invalidFingerprint": false - }, + } + ], + "packageFingerprint": 3038821837, + "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" + ], + "sortableGameVersion": [ { - "foldername": "diet-groups.toml", - "fingerprint": 792535827, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" }, { - "foldername": "diet.mixins.json", - "fingerprint": 3571337067, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" }, { - "foldername": "diet_icon.png", - "fingerprint": 2571709559, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016", + "gameVersion": "1.16", + "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", + "gameVersionName": "1.16" }, { - "foldername": "licenses", - "fingerprint": 925121779, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "pack.mcmeta", - "fingerprint": 45425788, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" }, { - "foldername": "README.md", - "fingerprint": 1665073848, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" }, { - "foldername": "diet.refmap.json", - "fingerprint": 3060913214, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], - "packageFingerprint": 1582976620, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2105887, + "projectId": 432032, + "packageFingerprintId": 576174687, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2613867, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "diet-forge-1.16.5-0.43.jar" + "FileNameOnDisk": "tamedsummon-1.0.0.jar" }, - "dateInstalled": "2021-07-05T20:19:25.2949358Z", - "dateUpdated": "2021-09-26T11:24:59.1871435Z", - "dateLastUpdateAttempted": "2021-09-26T11:24:59.1871435Z", + "dateInstalled": "2021-07-05T20:20:52.5223918Z", + "dateUpdated": "2021-07-05T20:20:52.5223918Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -3975,47 +4787,84 @@ "installedTargets": null }, { - "addonID": 314002, + "addonID": 326895, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3055679, - "displayName": "overloadedarmorbar-5.1.0.jar", - "fileName": "overloadedarmorbar-5.1.0.jar", - "fileDate": "2020-09-12T19:45:16.947Z", - "fileLength": 13362, + "id": 3249419, + "displayName": "Upgrade Aquatic 1.16.5 - 3.1.0", + "fileName": "upgrade_aquatic-1.16.5-3.1.0.jar", + "fileDate": "2021-03-24T02:32:44.197Z", + "fileLength": 3668858, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3055/679/overloadedarmorbar-5.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3249/419/upgrade_aquatic-1.16.5-3.1.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 59753669, + "addonId": 382216, + "type": 3, + "fileId": 3249419 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1571834731, + "fingerprint": 2541154927, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 4011241285, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 550130734, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 432142397, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2503877444, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1244293505, "type": 3, "invalidFingerprint": false }, { - "foldername": "tfar", - "fingerprint": 3133132408, + "foldername": "upgrade_aquatic.mixins.json", + "fingerprint": 3476066495, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3697211808, + "foldername": "upgrade_aquatic.refmap.json", + "fingerprint": 4050559090, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3982474778, + "packageFingerprint": 618021379, "gameVersion": [ "1.16.3", "1.16.5", - "1.16.4", - "1.16.2" + "Forge", + "1.16.4" ], "sortableGameVersion": [ { @@ -4030,17 +4879,17 @@ "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -4048,18 +4897,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1986091, - "projectId": 314002, - "packageFingerprintId": 520318098, - "gameVersionDateReleased": "2020-08-11T16:42:21.863Z", - "gameVersionMappingId": 2425359, - "gameVersionId": 8010, + "renderCacheId": 2231991, + "projectId": 326895, + "packageFingerprintId": 630944847, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2814454, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "overloadedarmorbar-5.1.0.jar" + "FileNameOnDisk": "upgrade_aquatic-1.16.5-3.1.0.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5405842Z", - "dateUpdated": "2021-07-05T20:20:57.5405842Z", + "dateInstalled": "2021-07-05T20:20:52.549392Z", + "dateUpdated": "2021-07-05T20:20:52.549392Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -4073,119 +4922,71 @@ "installedTargets": null }, { - "addonID": 402256, + "addonID": 241895, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3147020, - "displayName": "cobblegenrandomizer-1.16-5.1.2.jar", - "fileName": "cobblegenrandomizer-1.16-5.1.2.jar", - "fileDate": "2020-12-23T10:21:11.013Z", - "fileLength": 30421, + "id": 3222119, + "displayName": "KleeSlabs_1.16.5-9.2.1.jar", + "fileName": "KleeSlabs_1.16.5-9.2.1.jar", + "fileDate": "2021-02-28T22:00:53.607Z", + "fileLength": 38992, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3147/20/cobblegenrandomizer-1.16-5.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3222/119/KleeSlabs_1.16.5-9.2.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 54497083, - "addonId": 238222, - "type": 2, - "fileId": 3147020 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1816572688, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1897917322, + "fingerprint": 92585831, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 686673141, + "foldername": "net", + "fingerprint": 1117119438, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 364772005, + "fingerprint": 1436964838, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 594959543, + "fingerprint": 1944611527, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3842960783, + "packageFingerprint": 2261297292, "gameVersion": [ - "1.16-Snapshot", "1.16.3", - "1.16.1", - "1.16", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016", - "gameVersion": "1.16", - "gameVersionReleaseDate": "2020-02-06T00:00:00Z", - "gameVersionName": "1.16-Snapshot" - }, { "gameVersionPadded": "0000000001.0000000016.0000000003", "gameVersion": "1.16.3", "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", "gameVersionName": "1.16.3" }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016", - "gameVersion": "1.16", - "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", - "gameVersionName": "1.16" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -4193,18 +4994,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2099139, - "projectId": 402256, - "packageFingerprintId": 572908452, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2602970, - "gameVersionId": 4458, + "renderCacheId": 2195559, + "projectId": 241895, + "packageFingerprintId": 614879343, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2759518, + "gameVersionId": 8056, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "cobblegenrandomizer-1.16-5.1.2.jar" + "FileNameOnDisk": "KleeSlabs_1.16.5-9.2.1.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-07-05T20:21:15.1320328Z", + "dateInstalled": "2021-07-05T20:20:52.5183915Z", + "dateUpdated": "2021-07-05T20:20:52.5183915Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -4218,17 +5019,17 @@ "installedTargets": null }, { - "addonID": 378802, + "addonID": 306770, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3268432, - "displayName": "Structure Gel 1.16.5-v1.7.7", - "fileName": "structure_gel-1.16.5-1.7.7.jar", - "fileDate": "2021-04-07T17:23:38.58Z", - "fileLength": 260027, + "id": 3459118, + "displayName": "Patchouli-1.16.4-53.2.jar", + "fileName": "Patchouli-1.16.4-53.2.jar", + "fileDate": "2021-09-14T05:44:05.877Z", + "fileLength": 593114, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3268/432/structure_gel-1.16.5-1.7.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3459/118/Patchouli-1.16.4-53.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -4236,89 +5037,67 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3699027761, - "type": 3, + "fingerprint": 324335310, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 544735032, - "type": 3, + "foldername": "vazkii", + "fingerprint": 742263531, + "type": 0, "invalidFingerprint": false }, { - "foldername": "asm", - "fingerprint": 518878678, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 887639394, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2942120461, - "type": 3, + "fingerprint": 636248690, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 205919636, - "type": 3, + "fingerprint": 141162411, + "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 3271828178, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3360178793, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "structure_gel.mixins.json", - "fingerprint": 134253058, - "type": 3, + "fingerprint": 4171053254, + "type": 0, "invalidFingerprint": false }, { - "foldername": "structure_gel.refmap.json", - "fingerprint": 996767834, - "type": 3, + "foldername": "patchouli.refmap.json", + "fingerprint": 3277061942, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1576729289, + "packageFingerprint": 1640373126, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.5", + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2255538, - "projectId": 378802, - "packageFingerprintId": 639962308, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2849789, - "gameVersionId": 8203, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "structure_gel-1.16.5-1.7.7.jar" + "FileNameOnDisk": "Patchouli-1.16.4-53.2.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5275809Z", - "dateUpdated": "2021-07-05T20:20:57.5275809Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:52.525391Z", + "dateUpdated": "2021-09-15T16:38:45.3101888Z", + "dateLastUpdateAttempted": "2021-09-15T16:38:45.3101888Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -4331,86 +5110,77 @@ "installedTargets": null }, { - "addonID": 358700, + "addonID": 288885, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3037991, - "displayName": "moredragoneggs-1.4.jar", - "fileName": "moredragoneggs-1.4.jar", - "fileDate": "2020-08-20T22:01:47.98Z", - "fileLength": 4022, + "id": 3245271, + "displayName": "FastWorkbench-1.16.4-4.5.1.jar", + "fileName": "FastWorkbench-1.16.4-4.5.1.jar", + "fileDate": "2021-03-20T00:26:45.9Z", + "fileLength": 33772, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3037/991/moredragoneggs-1.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3245/271/FastWorkbench-1.16.4-4.5.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 59438096, + "addonId": 283644, + "type": 3, + "fileId": 3245271 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2233813031, + "fingerprint": 4043952143, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1448632594, + "foldername": "net", + "fingerprint": 3464325349, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "shadows", + "fingerprint": 2742177847, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "coremods", + "fingerprint": 3651907618, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, + "fingerprint": 1063136111, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1857503838, + "packageFingerprint": 1034278883, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -4418,18 +5188,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1964118, - "projectId": 358700, - "packageFingerprintId": 508846140, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2388884, - "gameVersionId": 7498, + "renderCacheId": 2226500, + "projectId": 288885, + "packageFingerprintId": 628236256, + "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", + "gameVersionMappingId": 2805252, + "gameVersionId": 8134, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "moredragoneggs-1.4.jar" + "FileNameOnDisk": "FastWorkbench-1.16.4-4.5.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5395841Z", - "dateUpdated": "2021-07-05T20:20:57.5395841Z", + "dateInstalled": "2021-07-05T20:20:52.5079Z", + "dateUpdated": "2021-07-05T20:20:52.5079Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -4443,30 +5213,30 @@ "installedTargets": null }, { - "addonID": 496091, + "addonID": 266515, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3363907, - "displayName": "integratedadditions-1.1.3.jar", - "fileName": "integratedadditions-1.1.3.jar", - "fileDate": "2021-06-25T00:39:35.08Z", - "fileLength": 109642, - "releaseType": 1, + "id": 3446262, + "displayName": "industrial-foregoing-1.16.5-3.2.14.6-14.jar", + "fileName": "industrial-foregoing-1.16.5-3.2.14.6-14.jar", + "fileDate": "2021-09-01T18:19:44.403Z", + "fileLength": 3582355, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3363/907/integratedadditions-1.1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3446/262/industrial-foregoing-1.16.5-3.2.14.6-14.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3446263, "dependencies": [ { "id": 0, - "addonId": 232758, + "addonId": 306770, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 487858, - "type": 2, + "addonId": 287342, + "type": 3, "fileId": 0 }, { @@ -4477,8 +5247,8 @@ }, { "id": 0, - "addonId": 236307, - "type": 3, + "addonId": 309927, + "type": 2, "fileId": 0 } ], @@ -4486,48 +5256,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4201907105, + "fingerprint": 2386262878, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1484342748, + "fingerprint": 379152991, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2906025824, + "foldername": "pack.mcmeta", + "fingerprint": 3273911401, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2241813805, + "foldername": "assets", + "fingerprint": 3527524723, "type": 0, "invalidFingerprint": false }, { - "foldername": "mixins.integratedadditions.json", - "fingerprint": 166998886, + "foldername": "mcmod.info", + "fingerprint": 390265695, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "foldername": "data", + "fingerprint": 3758311251, "type": 0, "invalidFingerprint": false }, { - "foldername": "mixins.integratedadditions.refmap.json", - "fingerprint": 1493072104, + "foldername": ".cache", + "fingerprint": 1480491764, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3994992287, + "packageFingerprint": 3118610869, "gameVersion": [ "1.16.5", "Forge" @@ -4538,14 +5308,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "integratedadditions-1.1.3.jar" + "FileNameOnDisk": "industrial-foregoing-1.16.5-3.2.14.6-14.jar" }, - "dateInstalled": "2021-09-02T11:57:04.2351639Z", - "dateUpdated": "2021-09-02T11:57:04.251159Z", - "dateLastUpdateAttempted": "2021-09-02T11:57:04.251159Z", + "dateInstalled": "2021-07-05T20:20:52.5105727Z", + "dateUpdated": "2021-09-02T12:00:08.1204617Z", + "dateLastUpdateAttempted": "2021-09-02T12:00:08.1204617Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -4558,78 +5328,60 @@ "installedTargets": null }, { - "addonID": 280510, + "addonID": 342584, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348562, - "displayName": "AttributeFix-1.16.5-10.1.3.jar", - "fileName": "AttributeFix-1.16.5-10.1.3.jar", - "fileDate": "2021-06-12T02:34:33.59Z", - "fileLength": 9554, - "releaseType": 3, + "id": 3454173, + "displayName": "collective-1.16.5-2.64.jar", + "fileName": "collective-1.16.5-2.64.jar", + "fileDate": "2021-09-08T18:02:57.26Z", + "fileLength": 140636, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/562/AttributeFix-1.16.5-10.1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3454/173/collective-1.16.5-2.64.jar", "isAlternate": false, - "alternateFileId": 3348565, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2633036203, - "type": 3, + "fingerprint": 3221704459, + "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3829182254, - "type": 3, + "foldername": "com", + "fingerprint": 4091665802, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3694468057, - "type": 3, + "fingerprint": 3040452267, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1953602614, + "packageFingerprint": 1223616813, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2358222, - "projectId": 280510, - "packageFingerprintId": 681989173, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034708, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "AttributeFix-1.16.5-10.1.3.jar" + "FileNameOnDisk": "collective-1.16.5-2.64.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5115829Z", - "dateUpdated": "2021-07-05T20:20:57.5115829Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-09-10T17:30:43.5702357Z", + "dateLastUpdateAttempted": "2021-09-10T17:30:43.5702357Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -4642,59 +5394,69 @@ "installedTargets": null }, { - "addonID": 511733, + "addonID": 418651, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3462648, - "displayName": "clickadv-1.8.jar", - "fileName": "clickadv-1.8.jar", - "fileDate": "2021-09-18T09:35:54.39Z", - "fileLength": 15162, + "id": 3446472, + "displayName": "kubejs-mekanism-1605.1.2-build.2.jar", + "fileName": "kubejs-mekanism-1605.1.2-build.2.jar", + "fileDate": "2021-09-01T21:26:41.257Z", + "fileLength": 20202, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3462/648/clickadv-1.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3446/472/kubejs-mekanism-1605.1.2-build.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 268560, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 238086, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 968228337, + "foldername": "kubejs.plugins.txt", + "fingerprint": 3969410618, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1601293228, + "foldername": "pack.mcmeta", + "fingerprint": 510083211, "type": 0, "invalidFingerprint": false }, { - "foldername": "clickadv.mixins.json", - "fingerprint": 69916680, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 513569437, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "foldername": "META-INF", + "fingerprint": 1329565495, "type": 0, "invalidFingerprint": false }, { - "foldername": "clickadv.refmap.json", - "fingerprint": 2626024748, + "foldername": "dev", + "fingerprint": 3947561050, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 628084508, + "packageFingerprint": 2057312983, "gameVersion": [ - "1.14.4", - "1.16.5", - "Forge", - "1.15.2" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -4702,14 +5464,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-07-19T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "clickadv-1.8.jar" + "FileNameOnDisk": "kubejs-mekanism-1605.1.2-build.2.jar" }, - "dateInstalled": "2021-08-13T18:01:17.0810367Z", - "dateUpdated": "2021-09-18T18:43:34.4872474Z", - "dateLastUpdateAttempted": "2021-09-18T18:43:34.4872474Z", + "dateInstalled": "2021-07-05T20:20:52.5069Z", + "dateUpdated": "2021-09-02T12:00:03.4394629Z", + "dateLastUpdateAttempted": "2021-09-02T12:00:03.4394629Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -4722,73 +5484,78 @@ "installedTargets": null }, { - "addonID": 247007, + "addonID": 398521, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474905, - "displayName": "CommonCapabilities-1.16.5-2.7.1.jar", - "fileName": "CommonCapabilities-1.16.5-2.7.1.jar", - "fileDate": "2021-09-27T17:37:36.527Z", - "fileLength": 232695, - "releaseType": 1, + "id": 3418719, + "displayName": "Farmer's Delight 0.4.6 - 1.16.5", + "fileName": "FarmersDelight-1.16.5-0.4.6.jar", + "fileDate": "2021-08-08T01:42:25.33Z", + "fileLength": 1272531, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/905/CommonCapabilities-1.16.5-2.7.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3418/719/FarmersDelight-1.16.5-0.4.6.jar", "isAlternate": false, - "alternateFileId": 3474906, - "dependencies": [ - { - "id": 0, - "addonId": 232758, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1750697612, + "fingerprint": 463096840, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 792019091, + "foldername": "vectorwing", + "fingerprint": 3999852409, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3744435153, + "foldername": ".cache", + "fingerprint": 72275537, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2496779235, + "fingerprint": 3674012889, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1769657426, + "foldername": "data", + "fingerprint": 1446275177, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo_small.png", - "fingerprint": 2163496590, + "foldername": "farmersdelight.mixins.json", + "fingerprint": 292693986, "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 3091802498, + "fingerprint": 1179971505, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3949463021, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "farmersdelight.refmap.json", + "fingerprint": 2088572430, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4255918634, + "packageFingerprint": 1377413210, "gameVersion": [ "1.16.5", "Forge" @@ -4799,15 +5566,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CommonCapabilities-1.16.5-2.7.1.jar" + "FileNameOnDisk": "FarmersDelight-1.16.5-0.4.6.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5465805Z", - "dateUpdated": "2021-09-27T17:47:39.9756577Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:39.9756577Z", - "status": 4, + "dateInstalled": "2021-07-05T20:20:52.4999027Z", + "dateUpdated": "2021-08-10T16:57:06.8002067Z", + "dateLastUpdateAttempted": "2021-08-10T16:57:06.8002067Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4819,17 +5586,17 @@ "installedTargets": null }, { - "addonID": 250363, + "addonID": 228525, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3326041, - "displayName": "AutoRegLib-1.6-49.jar", - "fileName": "AutoRegLib-1.6-49.jar", - "fileDate": "2021-05-26T20:33:37.05Z", - "fileLength": 57279, + "id": 3474499, + "displayName": "Bookshelf-Forge-1.16.5-10.3.29.jar", + "fileName": "Bookshelf-Forge-1.16.5-10.3.29.jar", + "fileDate": "2021-09-27T03:30:20.037Z", + "fileLength": 315420, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3326/41/AutoRegLib-1.6-49.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/499/Bookshelf-Forge-1.16.5-10.3.29.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -4837,66 +5604,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 814952073, - "type": 3, + "fingerprint": 3805763113, + "type": 0, "invalidFingerprint": false }, { - "foldername": "vazkii", - "fingerprint": 3159161697, - "type": 3, + "foldername": "assets", + "fingerprint": 1384105030, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 168030657, - "type": 3, + "foldername": "mod_logo.png", + "fingerprint": 777571610, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "net", + "fingerprint": 573849751, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3875124119, - "type": 3, + "fingerprint": 1432491059, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3552494639, + "packageFingerprint": 3146577677, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2330097, - "projectId": 250363, - "packageFingerprintId": 670304452, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2978645, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "AutoRegLib-1.6-49.jar" + "FileNameOnDisk": "Bookshelf-Forge-1.16.5-10.3.29.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9970647Z", - "dateUpdated": "2021-07-05T20:21:18.9970647Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:52.5233912Z", + "dateUpdated": "2021-09-27T17:47:39.7686603Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:39.7686603Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -4909,125 +5664,68 @@ "installedTargets": null }, { - "addonID": 238086, + "addonID": 420913, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3475472, - "displayName": "kubejs-forge-1605.3.18-build.133.jar", - "fileName": "kubejs-forge-1605.3.18-build.133.jar", - "fileDate": "2021-09-28T10:51:20.613Z", - "fileLength": 836673, + "id": 3224252, + "displayName": "smoothboot-forge-1.16.4-1.2.2.jar", + "fileName": "smoothboot-forge-1.16.4-1.2.2.jar", + "fileDate": "2021-03-02T18:49:53.913Z", + "fileLength": 84744, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3475/472/kubejs-forge-1605.3.18-build.133.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3224/252/smoothboot-forge-1.16.4-1.2.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 268655, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 419699, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 416294, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "data", - "fingerprint": 3279136865, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs-common.mixins.json", - "fingerprint": 676477993, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3762797279, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs_logo.png", - "fingerprint": 658118443, + "foldername": "META-INF", + "fingerprint": 1423858599, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs-common-refmap.json", - "fingerprint": 1178948570, + "foldername": "io", + "fingerprint": 839167598, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.plugins.txt", - "fingerprint": 2117761820, + "foldername": "icon.png", + "fingerprint": 1643735788, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1290654324, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs.mixins.json", - "fingerprint": 3372627309, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "META-INF", - "fingerprint": 3849080814, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "dev", - "fingerprint": 635302901, + "fingerprint": 2140068133, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_KubeJS1165_common_29e9a7ae4f31492c8664d180d4b96f78", - "fingerprint": 4142082995, + "foldername": "smoothboot.mixins.json", + "fingerprint": 176279091, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs-forge-refmap.json", + "foldername": "smoothboot.refmap.json", "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 354582382, + "packageFingerprint": 1408340562, "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -5038,12 +5736,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kubejs-forge-1605.3.18-build.133.jar" + "FileNameOnDisk": "smoothboot-forge-1.16.4-1.2.2.jar" }, - "dateInstalled": "2021-09-28T18:08:09.9226898Z", - "dateUpdated": "2021-09-28T18:08:09.9337029Z", - "dateLastUpdateAttempted": "2021-09-28T18:08:09.9337029Z", - "status": 3, + "dateInstalled": "2021-08-16T05:34:26.5250199Z", + "dateUpdated": "2021-08-16T05:34:26.544017Z", + "dateLastUpdateAttempted": "2021-08-16T05:34:26.544017Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -5052,78 +5750,117 @@ "isFuzzyMatch": false, "preferenceReleaseType": null, "manifestName": null, - "installedTargets": [] + "installedTargets": null }, { - "addonID": 268250, + "addonID": 233019, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3454143, - "displayName": "ImmersivePetroleum-1.16.5-3.3.0-6.jar", - "fileName": "ImmersivePetroleum-1.16.5-3.3.0-6.jar", - "fileDate": "2021-09-08T17:11:32.61Z", - "fileLength": 1483877, + "id": 3031978, + "displayName": "AI-Improvements-1.16.X-0.3.0.jar", + "fileName": "AI-Improvements-1.16.2-0.3.0.jar", + "fileDate": "2020-08-14T09:03:57.22Z", + "fileLength": 22152, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3454/143/ImmersivePetroleum-1.16.5-3.3.0-6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3031/978/AI-Improvements-1.16.2-0.3.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 231951, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 252143898, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "flaxbeard", - "fingerprint": 2792502727, + "fingerprint": 2898261365, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 4121718859, + "foldername": "com", + "fingerprint": 3349911820, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 816766689, + "foldername": "pack.mcmeta", + "fingerprint": 111449960, "type": 0, "invalidFingerprint": false - }, + } + ], + "packageFingerprint": 1334565280, + "gameVersion": [ + "1.16.3", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "AI-Improvements-1.16.2-0.3.0.jar" + }, + "dateInstalled": "2021-08-16T05:38:22.4360837Z", + "dateUpdated": "2021-08-16T05:38:22.5430744Z", + "dateLastUpdateAttempted": "2021-08-16T05:38:22.5430744Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 358304, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3466137, + "displayName": "logprot-1.16-1.4.jar", + "fileName": "logprot-1.16-1.4.jar", + "fileDate": "2021-09-19T18:52:57.91Z", + "fileLength": 13106, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3466/137/logprot-1.16-1.4.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "foldername": "data", - "fingerprint": 1865897212, + "foldername": "META-INF", + "fingerprint": 3534896497, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3738625196, + "foldername": "com", + "fingerprint": 3002930837, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3200837954, + "fingerprint": 3543142243, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3348380834, + "packageFingerprint": 82815321, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -5131,14 +5868,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ImmersivePetroleum-1.16.5-3.3.0-6.jar" + "FileNameOnDisk": "logprot-1.16-1.4.jar" }, - "dateInstalled": "2021-07-05T20:21:19.0000632Z", - "dateUpdated": "2021-09-08T17:52:59.5058319Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:59.5058319Z", + "dateInstalled": "2021-07-05T20:20:52.541392Z", + "dateUpdated": "2021-09-21T13:07:09.7668739Z", + "dateLastUpdateAttempted": "2021-09-21T13:07:09.7668739Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5151,97 +5888,91 @@ "installedTargets": null }, { - "addonID": 400058, + "addonID": 264353, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3469627, - "displayName": "MythicBotany-1.16.5-1.4.13.jar", - "fileName": "MythicBotany-1.16.5-1.4.13.jar", - "fileDate": "2021-09-23T19:18:19.013Z", - "fileLength": 2118058, + "id": 3103028, + "displayName": "swingthroughgrass-1.16.4-1.5.3.jar", + "fileName": "swingthroughgrass-1.16.4-1.5.3.jar", + "fileDate": "2020-11-05T17:50:44.973Z", + "fileLength": 22955, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3469/627/MythicBotany-1.16.5-1.4.13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3103/28/swingthroughgrass-1.16.4-1.5.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 412525, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 225643, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1759770870, - "type": 0, + "fingerprint": 2845278821, + "type": 3, "invalidFingerprint": false }, { - "foldername": "mythicbotany", - "fingerprint": 3765835484, - "type": 0, + "foldername": "com", + "fingerprint": 809304273, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1133371363, - "type": 0, + "foldername": "logo.png", + "fingerprint": 3796077447, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 601875795, - "type": 0, + "fingerprint": 3883671949, + "type": 3, "invalidFingerprint": false - }, + } + ], + "packageFingerprint": 2288553898, + "gameVersion": [ + "1.16.5", + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ { - "foldername": "assets", - "fingerprint": 2958404766, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "mythicbotany.mixins.json", - "fingerprint": 3133675714, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" }, { - "foldername": "mythicbotany.refmap.json", - "fingerprint": 253419674, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], - "packageFingerprint": 914888075, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2043371, + "projectId": 264353, + "packageFingerprintId": 548688255, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2516155, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "MythicBotany-1.16.5-1.4.13.jar" + "FileNameOnDisk": "swingthroughgrass-1.16.4-1.5.3.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2703386Z", - "dateUpdated": "2021-09-24T18:44:37.9352534Z", - "dateLastUpdateAttempted": "2021-09-24T18:44:37.9352534Z", + "dateInstalled": "2021-07-05T20:20:52.5039009Z", + "dateUpdated": "2021-07-05T20:20:52.5039009Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5254,85 +5985,85 @@ "installedTargets": null }, { - "addonID": 299540, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3172796, - "displayName": "FastFurnace-1.16.4-4.4.0.jar", - "fileName": "FastFurnace-1.16.4-4.4.0.jar", - "fileDate": "2021-01-18T18:21:32.303Z", - "fileLength": 14614, - "releaseType": 1, + "addonID": 235279, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3376782, + "displayName": "Chisel - MC1.16.5-2.0.1-alpha.4", + "fileName": "Chisel-MC1.16.5-2.0.1-alpha.4.jar", + "fileDate": "2021-07-04T23:38:36.057Z", + "fileLength": 7313725, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3172/796/FastFurnace-1.16.4-4.4.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3376/782/Chisel-MC1.16.5-2.0.1-alpha.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 54704741, - "addonId": 283644, + "id": 0, + "addonId": 267602, "type": 3, - "fileId": 3172796 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1787013860, - "type": 3, + "fingerprint": 1999748061, + "type": 0, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 3254850185, - "type": 3, + "foldername": "team", + "fingerprint": 2022868106, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 824854242, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 135111852, - "type": 3, + "fingerprint": 4171709066, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 3123588329, - "gameVersion": [ - "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ + }, { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "foldername": ".cache", + "fingerprint": 3123031256, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "foldername": "assets", + "fingerprint": 2217915551, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 1882005860, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2131821, - "projectId": 299540, - "packageFingerprintId": 588539612, - "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", - "gameVersionMappingId": 2654347, - "gameVersionId": 8134, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "FastFurnace-1.16.4-4.4.0.jar" + "FileNameOnDisk": "Chisel-MC1.16.5-2.0.1-alpha.4.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9770646Z", - "dateUpdated": "2021-07-05T20:21:18.9770646Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-07-05T20:31:32.2439202Z", + "dateLastUpdateAttempted": "2021-07-05T20:31:32.2439202Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5345,101 +6076,64 @@ "installedTargets": null }, { - "addonID": 352039, + "addonID": 284497, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3182364, - "displayName": "[2.0.1 / 1.16.5/4] Macaw's Roofs ", - "fileName": "mcw-roofs-2.0.1-mc1.16.5-4.jar", - "fileDate": "2021-01-26T17:53:49.73Z", - "fileLength": 1464218, + "id": 3375360, + "displayName": "IronJetpacks-1.16.5-4.2.1.jar", + "fileName": "IronJetpacks-1.16.5-4.2.1.jar", + "fileDate": "2021-07-03T20:36:49.973Z", + "fileLength": 122608, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3182/364/mcw-roofs-2.0.1-mc1.16.5-4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3375/360/IronJetpacks-1.16.5-4.2.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 56369377, - "addonId": 400933, - "type": 2, - "fileId": 3182364 - }, - { - "id": 56369375, - "addonId": 351725, - "type": 2, - "fileId": 3182364 - }, - { - "id": 56369376, - "addonId": 378646, - "type": 2, - "fileId": 3182364 - }, - { - "id": 56369379, - "addonId": 438116, - "type": 2, - "fileId": 3182364 - }, - { - "id": 56369380, - "addonId": 359540, - "type": 2, - "fileId": 3182364 - }, - { - "id": 56369378, - "addonId": 363569, - "type": 2, - "fileId": 3182364 + "id": 67947082, + "addonId": 272335, + "type": 3, + "fileId": 3375360 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4117983584, + "fingerprint": 41589344, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 754969621, + "fingerprint": 3575232724, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1228396592, + "fingerprint": 1444626772, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 70981520, + "fingerprint": 4016076390, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2700479703, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "roofslogo.png", - "fingerprint": 4291183467, + "fingerprint": 4100022256, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1432521408, + "packageFingerprint": 3428496331, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "sortableGameVersion": [ { @@ -5453,12 +6147,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -5466,18 +6154,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2144210, - "projectId": 352039, - "packageFingerprintId": 593990043, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2675585, - "gameVersionId": 7498, + "renderCacheId": 2392113, + "projectId": 284497, + "packageFingerprintId": 697743597, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3099650, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "mcw-roofs-2.0.1-mc1.16.5-4.jar" + "FileNameOnDisk": "IronJetpacks-1.16.5-4.2.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5165826Z", - "dateUpdated": "2021-07-05T20:20:57.5165826Z", + "dateInstalled": "2021-07-05T20:19:25.2969373Z", + "dateUpdated": "2021-07-05T20:19:25.2969373Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -5491,71 +6179,60 @@ "installedTargets": null }, { - "addonID": 331936, + "addonID": 470193, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3441028, - "displayName": "citadel-1.8.1-1.16.5", - "fileName": "citadel-1.8.1-1.16.5.jar", - "fileDate": "2021-08-27T18:01:33.18Z", - "fileLength": 482439, + "id": 3434629, + "displayName": "connectivity-2.3-1.16.5.jar", + "fileName": "connectivity-2.3-1.16.5.jar", + "fileDate": "2021-08-22T16:28:01.37Z", + "fileLength": 52995, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3441/28/citadel-1.8.1-1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3434/629/connectivity-2.3-1.16.5.jar", "isAlternate": false, - "alternateFileId": 3441030, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3456560468, + "fingerprint": 2523172629, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1229433154, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3761291802, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "citadel.mixins.json", - "fingerprint": 1094208602, + "fingerprint": 3844341493, "type": 0, "invalidFingerprint": false }, { - "foldername": "citadel.png", - "fingerprint": 1603167710, + "foldername": "connectivity.mixins.json", + "fingerprint": 2519663344, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 2098059805, "type": 0, "invalidFingerprint": false }, { - "foldername": "citadel.refmap.json", - "fingerprint": 3921905408, + "foldername": "connectivity.refmap.json", + "fingerprint": 2808845358, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1338246451, + "packageFingerprint": 2769176009, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -5566,11 +6243,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "citadel-1.8.1-1.16.5.jar" + "FileNameOnDisk": "connectivity-2.3-1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5245785Z", - "dateUpdated": "2021-08-28T19:47:21.6153562Z", - "dateLastUpdateAttempted": "2021-08-28T19:47:21.6153562Z", + "dateInstalled": "2021-08-05T20:27:46.9347015Z", + "dateUpdated": "2021-08-25T05:56:37.7755052Z", + "dateLastUpdateAttempted": "2021-08-25T05:56:37.7755052Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5583,66 +6260,77 @@ "installedTargets": null }, { - "addonID": 250398, + "addonID": 233071, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3434370, - "displayName": "Controlling-7.0.0.24.jar", - "fileName": "Controlling-7.0.0.24.jar", - "fileDate": "2021-08-22T13:00:13.78Z", - "fileLength": 54239, + "id": 3330406, + "displayName": "CraftingTweaks_1.16.5-12.2.1.jar", + "fileName": "CraftingTweaks_1.16.5-12.2.1.jar", + "fileDate": "2021-05-30T11:26:23.79Z", + "fileLength": 111189, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3434/370/Controlling-7.0.0.24.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3330/406/CraftingTweaks_1.16.5-12.2.1.jar", "isAlternate": false, - "alternateFileId": 3434371, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1096471651, - "type": 0, + "fingerprint": 1309147782, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2902717494, - "type": 0, + "foldername": "net", + "fingerprint": 3029677335, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 98047162, - "type": 0, + "foldername": "assets", + "fingerprint": 2295690175, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1319105506, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 3365466299, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 323854253, + "packageFingerprint": 1130306748, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2335746, + "projectId": 233071, + "packageFingerprintId": 672655215, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2990114, + "gameVersionId": 8203, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Controlling-7.0.0.24.jar" + "FileNameOnDisk": "CraftingTweaks_1.16.5-12.2.1.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9860639Z", - "dateUpdated": "2021-08-25T05:56:36.593503Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:36.593503Z", + "dateInstalled": "2021-07-05T20:20:52.5433913Z", + "dateUpdated": "2021-07-05T20:20:52.5433913Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5655,91 +6343,90 @@ "installedTargets": null }, { - "addonID": 291737, + "addonID": 479142, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3404886, - "displayName": "thermal_innovation-1.16.5-1.3.0.jar", - "fileName": "thermal_innovation-1.16.5-1.3.0.jar", - "fileDate": "2021-07-29T04:33:31.177Z", - "fileLength": 167908, - "releaseType": 1, + "id": 3368538, + "displayName": "PrettyPipesFluids-0.4.1.jar", + "fileName": "PrettyPipesFluids-0.4.1.jar", + "fileDate": "2021-06-29T06:57:01.207Z", + "fileLength": 82918, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3404/886/thermal_innovation-1.16.5-1.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3368/538/PrettyPipesFluids-0.4.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 222880, + "id": 67567994, + "addonId": 376737, "type": 3, - "fileId": 0 + "fileId": 3368538 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1896560957, - "type": 0, + "fingerprint": 480572702, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3039217023, - "type": 0, + "foldername": "dev", + "fingerprint": 961421603, + "type": 3, "invalidFingerprint": false }, { - "foldername": "cofh", - "fingerprint": 2681824150, - "type": 0, + "foldername": "assets", + "fingerprint": 2089877027, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3353708073, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 721674231, - "type": 0, + "fingerprint": 1771029295, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "thermal_innovation.png", - "fingerprint": 1060679981, - "type": 0, + "fingerprint": 3380797652, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3270795898, + "packageFingerprint": 3884147275, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2383865, + "projectId": 479142, + "packageFingerprintId": 694154310, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 3085190, + "gameVersionId": 8203, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "thermal_innovation-1.16.5-1.3.0.jar" + "FileNameOnDisk": "PrettyPipesFluids-0.4.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5305805Z", - "dateUpdated": "2021-07-30T07:15:31.4413543Z", - "dateLastUpdateAttempted": "2021-07-30T07:15:31.4413543Z", + "dateInstalled": "2021-07-05T20:20:52.5233912Z", + "dateUpdated": "2021-07-05T20:20:52.5233912Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5752,90 +6439,105 @@ "installedTargets": null }, { - "addonID": 382216, + "addonID": 389665, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3457851, - "displayName": "Abnormals Core 1.16.5 - 3.3.0", - "fileName": "abnormals_core-1.16.5-3.3.0.jar", - "fileDate": "2021-09-12T19:28:48.37Z", - "fileLength": 975289, + "id": 3344719, + "displayName": "[1.16.4 / 1.16.5] YUNG's Better Mineshafts v2.0.4", + "fileName": "BetterMineshafts-Forge-1.16.4-2.0.4.jar", + "fileDate": "2021-06-09T06:11:00.197Z", + "fileLength": 289307, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3457/851/abnormals_core-1.16.5-3.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3344/719/BetterMineshafts-Forge-1.16.4-2.0.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 65897999, + "addonId": 421850, + "type": 3, + "fileId": 3344719 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 285473212, - "type": 0, + "fingerprint": 623889669, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2077283657, - "type": 0, + "fingerprint": 3240836778, + "type": 3, "invalidFingerprint": false }, { - "foldername": "abnormals_core.mixins.json", - "fingerprint": 2787703284, - "type": 0, + "foldername": "BMLogo.png", + "fingerprint": 2440532130, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3690084375, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 426164492, + "type": 3, "invalidFingerprint": false - }, + } + ], + "packageFingerprint": 1126142459, + "gameVersion": [ + "1.16", + "1.16.5", + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ { - "foldername": "data", - "fingerprint": 1510015062, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016", + "gameVersion": "1.16", + "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", + "gameVersionName": "1.16" }, { - "foldername": "logo.png", - "fingerprint": 2401233286, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "pack.mcmeta", - "fingerprint": 2015704770, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" }, { - "foldername": "abnormals_core.refmap.json", - "fingerprint": 3072693835, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], - "packageFingerprint": 3561428952, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2353443, + "projectId": 389665, + "packageFingerprintId": 679674115, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 3024035, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "abnormals_core-1.16.5-3.3.0.jar" + "FileNameOnDisk": "BetterMineshafts-Forge-1.16.4-2.0.4.jar" }, - "dateInstalled": "2021-07-13T04:37:08.9288569Z", - "dateUpdated": "2021-09-15T16:53:12.6114247Z", - "dateLastUpdateAttempted": "2021-09-15T16:53:12.6114247Z", + "dateInstalled": "2021-07-05T20:20:54.9428204Z", + "dateUpdated": "2021-07-05T20:20:54.9428204Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -5848,49 +6550,42 @@ "installedTargets": null }, { - "addonID": 423547, + "addonID": 282313, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3287364, - "displayName": "restriction-1.16.5-0.1.2.jar", - "fileName": "restriction-1.16.5-0.1.2.jar", - "fileDate": "2021-04-24T09:08:29.607Z", - "fileLength": 38912, + "id": 3348548, + "displayName": "TipTheScales-1.16.5-3.0.0.15.jar", + "fileName": "TipTheScales-1.16.5-3.0.0.15.jar", + "fileDate": "2021-06-12T02:24:18.95Z", + "fileLength": 9142, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3287/364/restriction-1.16.5-0.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/548/TipTheScales-1.16.5-3.0.0.15.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 62050377, - "addonId": 268655, - "type": 2, - "fileId": 3287364 - } - ], + "alternateFileId": 3348549, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2376029490, + "fingerprint": 3103709232, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2926690350, + "fingerprint": 2104658913, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 526527258, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 923089085, + "packageFingerprint": 3352585251, "gameVersion": [ "1.16.5", "Forge" @@ -5914,18 +6609,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2280103, - "projectId": 423547, - "packageFingerprintId": 649504967, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2887310, - "gameVersionId": 7498, + "renderCacheId": 2358204, + "projectId": 282313, + "packageFingerprintId": 681984675, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3034669, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "restriction-1.16.5-0.1.2.jar" + "FileNameOnDisk": "TipTheScales-1.16.5-3.0.0.15.jar" }, - "dateInstalled": "2021-07-05T20:20:57.541583Z", - "dateUpdated": "2021-07-05T20:20:57.541583Z", + "dateInstalled": "2021-07-05T20:20:52.5069Z", + "dateUpdated": "2021-07-05T20:20:52.5069Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -5939,54 +6634,61 @@ "installedTargets": null }, { - "addonID": 438074, + "addonID": 233105, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3446595, - "displayName": " BiomeIdFixer 1.16.5-1.0.1.s5 (Forge)", - "fileName": "biomeidfixer-1.16.5-1.0.1.s5.jar", - "fileDate": "2021-09-01T23:36:58.53Z", - "fileLength": 18942, + "id": 3402861, + "displayName": "McJtyLib - 1.16-5.0.22", + "fileName": "mcjtylib-1.16-5.0.22.jar", + "fileDate": "2021-07-27T13:34:01.007Z", + "fileLength": 562853, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3446/595/biomeidfixer-1.16.5-1.0.1.s5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3402/861/mcjtylib-1.16-5.0.22.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 245211, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 270789, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1728104185, + "fingerprint": 166700395, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2694043422, + "foldername": "mcjty", + "fingerprint": 2207894873, "type": 0, "invalidFingerprint": false }, { - "foldername": "biomeidfixer.mixins.json", - "fingerprint": 2848604373, + "foldername": "assets", + "fingerprint": 1001358588, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1428942265, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "biomeidfixer.refmap.json", - "fingerprint": 237025010, + "fingerprint": 1867893230, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3053206025, + "packageFingerprint": 68474313, "gameVersion": [ "1.16.5", "Forge" @@ -6000,11 +6702,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "biomeidfixer-1.16.5-1.0.1.s5.jar" + "FileNameOnDisk": "mcjtylib-1.16-5.0.22.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1520307Z", - "dateUpdated": "2021-09-02T11:59:50.8204694Z", - "dateLastUpdateAttempted": "2021-09-02T11:59:50.8204694Z", + "dateInstalled": "2021-07-10T17:55:07.2543409Z", + "dateUpdated": "2021-07-27T20:20:08.3323329Z", + "dateLastUpdateAttempted": "2021-07-27T20:20:08.3323329Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6017,173 +6719,97 @@ "installedTargets": null }, { - "addonID": 368825, + "addonID": 371813, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3332381, - "displayName": "InventoryEssentials_1.16.5-2.3.2.jar", - "fileName": "InventoryEssentials_1.16.5-2.3.2.jar", - "fileDate": "2021-06-01T09:20:16.09Z", - "fileLength": 23301, + "id": 3400648, + "displayName": "crashutilities-3.12.jar", + "fileName": "crashutilities-3.12.jar", + "fileDate": "2021-07-25T15:57:59.5Z", + "fileLength": 2086298, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3332/381/InventoryEssentials_1.16.5-2.3.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3400/648/crashutilities-3.12.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 62795260, - "type": 3, - "invalidFingerprint": false - }, + "dependencies": [ { - "foldername": "net", - "fingerprint": 2473967507, - "type": 3, - "invalidFingerprint": false + "id": 0, + "addonId": 361579, + "type": 2, + "fileId": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 854993508, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 4171514000, - "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "id": 0, + "addonId": 309927, + "type": 2, + "fileId": 0 } ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2338269, - "projectId": 368825, - "packageFingerprintId": 673948011, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2994895, - "gameVersionId": 8203, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "InventoryEssentials_1.16.5-2.3.2.jar" - }, - "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-07-05T20:21:15.1320328Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 436964, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3196072, - "displayName": "Babel-1.0.5.jar", - "fileName": "Babel-1.0.5.jar", - "fileDate": "2021-02-07T19:27:53.32Z", - "fileLength": 169895, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3196/72/Babel-1.0.5.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1894740131, - "type": 3, + "fingerprint": 1860537174, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 161197484, - "type": 3, + "fingerprint": 3544893945, + "type": 0, "invalidFingerprint": false }, { - "foldername": "babel.mixins.json", - "fingerprint": 211910296, - "type": 3, + "foldername": "assets", + "fingerprint": 2286757105, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 4077331125, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 3380797652, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, + "foldername": "fr", + "fingerprint": 4212346115, + "type": 0, "invalidFingerprint": false }, { - "foldername": "babel.refmap.json", - "fingerprint": 2693877171, - "type": 3, + "foldername": "dark", + "fingerprint": 2280698898, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "mozilla", + "fingerprint": 1005056399, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2164717903, + "packageFingerprint": 2039618924, "gameVersion": [ "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2161821, - "projectId": 436964, - "packageFingerprintId": 601179633, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2705510, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Babel-1.0.5.jar" + "FileNameOnDisk": "crashutilities-3.12.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5425808Z", - "dateUpdated": "2021-07-05T20:20:57.5425808Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:54.9428204Z", + "dateUpdated": "2021-07-25T20:32:13.1147707Z", + "dateLastUpdateAttempted": "2021-07-25T20:32:13.1147707Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6196,63 +6822,114 @@ "installedTargets": null }, { - "addonID": 410168, + "addonID": 412082, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3443945, - "displayName": "ExtraStorage-1.16.5-1.5.0", - "fileName": "ExtraStorage-1.16.5-1.5.0.jar", - "fileDate": "2021-08-30T16:56:55.65Z", - "fileLength": 340736, + "id": 3477848, + "displayName": "supplementaries-1.16.5-0.17.3.jar", + "fileName": "supplementaries-1.16.5-0.17.3.jar", + "fileDate": "2021-10-01T06:13:56.547Z", + "fileLength": 12112003, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3443/945/ExtraStorage-1.16.5-1.5.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3477/848/supplementaries-1.16.5-0.17.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 243076, + "addonId": 284007, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 243121, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 499980, "type": 3, "fileId": 0 + }, + { + "id": 0, + "addonId": 486392, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 457570, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3187886756, + "fingerprint": 4179400268, "type": 0, "invalidFingerprint": false }, { - "foldername": "edivad", - "fingerprint": 3119130182, + "foldername": "net", + "fingerprint": 2888922192, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "vazkii", + "fingerprint": 470883804, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3042492374, + "fingerprint": 1851321099, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 98727507, + "fingerprint": 2826821329, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 1023386444, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1204004125, + "fingerprint": 1728776908, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "supplementaries.mixins.json", + "fingerprint": 2628916953, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "supplementaries.refmap.json", + "fingerprint": 4281158774, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1367771010, + "packageFingerprint": 911738399, "gameVersion": [ - "1.16.5" + "1.16.3", + "1.16.5", + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -6260,15 +6937,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ExtraStorage-1.16.5-1.5.0.jar" + "FileNameOnDisk": "supplementaries-1.16.5-0.17.3.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5145815Z", - "dateUpdated": "2021-08-31T18:21:52.1581965Z", - "dateLastUpdateAttempted": "2021-08-31T18:21:52.1581965Z", - "status": 5, + "dateInstalled": "2021-08-11T21:22:43.3270429Z", + "dateUpdated": "2021-10-02T18:16:38.1204726Z", + "dateLastUpdateAttempted": "2021-10-02T18:16:38.1204726Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -6280,44 +6957,64 @@ "installedTargets": null }, { - "addonID": 267193, + "addonID": 349447, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3436684, - "displayName": "Chunk Pregenerator-V1.16-3.1.1", - "fileName": "Chunk Pregenerator-V1.16-3.1.1.jar", - "fileDate": "2021-08-23T17:48:03.24Z", - "fileLength": 443474, + "id": 3407021, + "displayName": "ensorcellation-1.16.5-1.3.1.jar", + "fileName": "ensorcellation-1.16.5-1.3.1.jar", + "fileDate": "2021-07-31T01:04:59.253Z", + "fileLength": 132851, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3436/684/Chunk Pregenerator-V1.16-3.1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3407/21/ensorcellation-1.16.5-1.3.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 69162, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 453566642, + "fingerprint": 3385537980, "type": 0, "invalidFingerprint": false }, { - "foldername": "pregenerator", - "fingerprint": 2918504312, + "foldername": "assets", + "fingerprint": 131250079, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "cofh", + "fingerprint": 2953833620, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 1090256434, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 3801474552, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4213455804, + "packageFingerprint": 3802468072, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -6328,11 +7025,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Chunk Pregenerator-V1.16-3.1.1.jar" + "FileNameOnDisk": "ensorcellation-1.16.5-1.3.1.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3721197Z", - "dateUpdated": "2021-08-25T05:56:33.1205011Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:33.1205011Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-08-02T19:52:56.67851Z", + "dateLastUpdateAttempted": "2021-08-02T19:52:56.67851Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6345,110 +7042,67 @@ "installedTargets": null }, { - "addonID": 394535, + "addonID": 248787, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3301005, - "displayName": "trashcans-1.0.10-mc1.16.5", - "fileName": "trashcans-1.0.10-mc1.16.5.jar", - "fileDate": "2021-05-07T01:11:51.403Z", - "fileLength": 141416, + "id": 3395800, + "displayName": "appleskin-forge-mc1.16.x-2.1.0.jar", + "fileName": "appleskin-forge-mc1.16.x-2.1.0.jar", + "fileDate": "2021-07-21T06:15:07.117Z", + "fileLength": 46287, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3301/5/trashcans-1.0.10-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3395/800/appleskin-forge-mc1.16.x-2.1.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 63086821, - "addonId": 454372, - "type": 3, - "fileId": 3301005 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4294042001, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1145353408, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2390005551, - "type": 3, + "fingerprint": 3026614748, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1480966558, - "type": 3, + "foldername": "squeek", + "fingerprint": 1022454976, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1822775244, - "type": 3, + "fingerprint": 3472000903, + "type": 0, "invalidFingerprint": false }, { - "foldername": "trashcans.png", - "fingerprint": 495895946, - "type": 3, + "foldername": "assets", + "fingerprint": 3447702788, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3517305194, + "packageFingerprint": 3838742211, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2298001, - "projectId": 394535, - "packageFingerprintId": 657936532, + "Forge", + "1.16.4" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2915948, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "trashcans-1.0.10-mc1.16.5.jar" + "FileNameOnDisk": "appleskin-forge-mc1.16.x-2.1.0.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5315793Z", - "dateUpdated": "2021-07-05T20:20:57.5315793Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:54.9128241Z", + "dateUpdated": "2021-07-24T18:17:53.7009745Z", + "dateLastUpdateAttempted": "2021-07-24T18:17:53.7009745Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6461,29 +7115,23 @@ "installedTargets": null }, { - "addonID": 361026, + "addonID": 353928, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474665, - "displayName": "occultism-1.14.2.jar", - "fileName": "occultism-1.16.5-1.14.2.jar", - "fileDate": "2021-09-27T11:27:14.7Z", - "fileLength": 4213931, - "releaseType": 1, + "id": 3478383, + "displayName": "BotanyPots-1.16.5-7.1.25.jar", + "fileName": "BotanyPots-1.16.5-7.1.25.jar", + "fileDate": "2021-10-01T21:31:49.397Z", + "fileLength": 541145, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/665/occultism-1.16.5-1.14.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/383/BotanyPots-1.16.5-7.1.25.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3478384, "dependencies": [ { "id": 0, - "addonId": 309927, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 306770, + "addonId": 228525, "type": 3, "fileId": 0 } @@ -6492,48 +7140,39 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 753493468, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 105957825, + "fingerprint": 2561892324, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 524464720, + "fingerprint": 2694368843, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3656974019, + "foldername": "data", + "fingerprint": 1853787231, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 963583224, + "foldername": "net", + "fingerprint": 4018359412, "type": 0, "invalidFingerprint": false }, { - "foldername": "occultism.png", - "fingerprint": 3138228409, + "foldername": "pack.mcmeta", + "fingerprint": 898648694, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2031475472, + "packageFingerprint": 4206940246, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -6541,14 +7180,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "occultism-1.16.5-1.14.2.jar" + "FileNameOnDisk": "BotanyPots-1.16.5-7.1.25.jar" }, - "dateInstalled": "2021-09-25T14:41:32.7416314Z", - "dateUpdated": "2021-09-27T17:47:36.8356511Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:36.8356511Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-10-02T18:11:56.3004203Z", + "dateLastUpdateAttempted": "2021-10-02T18:11:56.3004203Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6561,115 +7200,85 @@ "installedTargets": null }, { - "addonID": 377794, + "addonID": 521714, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3318948, - "displayName": "Dungeons Plus 1.16.5-v1.1.5", - "fileName": "dungeons_plus-1.16.5-1.1.5.jar", - "fileDate": "2021-05-22T06:08:15.02Z", - "fileLength": 389176, + "id": 3473075, + "displayName": "ponderjs-1.16.5-1.0.3.jar", + "fileName": "ponderjs-1.16.5-1.0.3.jar", + "fileDate": "2021-09-26T16:30:02.683Z", + "fileLength": 60125, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3318/948/dungeons_plus-1.16.5-1.1.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3473/75/ponderjs-1.16.5-1.0.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 65866176, - "addonId": 378802, + "id": 0, + "addonId": 328085, "type": 3, - "fileId": 3318948 + "fileId": 0 + }, + { + "id": 0, + "addonId": 238086, + "type": 3, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3411988010, - "type": 3, + "fingerprint": 2063765738, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1615477, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1515015936, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1463906480, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "dungeons_plus.mixins.json", - "fingerprint": 560403939, - "type": 3, + "fingerprint": 3532274439, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1682880065, - "type": 3, + "foldername": "kubejs.plugins.txt", + "fingerprint": 2131187925, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2313474560, - "type": 3, + "fingerprint": 2278453492, + "type": 0, "invalidFingerprint": false }, { - "foldername": "dungeons_plus.refmap.json", - "fingerprint": 1493072104, - "type": 3, + "foldername": "ponderjs.mixins.json", + "fingerprint": 1078583032, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1233267792, + "packageFingerprint": 2123725902, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2321336, - "projectId": 377794, - "packageFingerprintId": 667007440, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3022572, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "dungeons_plus-1.16.5-1.1.5.jar" + "FileNameOnDisk": "ponderjs-1.16.5-1.0.3.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9670623Z", - "dateUpdated": "2021-07-05T20:21:18.9670623Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-01T20:23:23.4515179Z", + "dateUpdated": "2021-09-26T18:55:19.1333963Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:19.1333963Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6682,17 +7291,17 @@ "installedTargets": null }, { - "addonID": 399022, + "addonID": 400933, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3161147, - "displayName": "SpawnerFix-1.16.2-1.0.0.2.jar", - "fileName": "SpawnerFix-1.16.2-1.0.0.2.jar", - "fileDate": "2021-01-07T11:49:47.323Z", - "fileLength": 60588, + "id": 3273512, + "displayName": "[1.0.2 / 1.16.5/4] Macaw's Trapdoors", + "fileName": "mcw-trapdoors-1.0.2-mc1.16.5.jar", + "fileDate": "2021-04-12T11:58:02.373Z", + "fileLength": 369488, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3161/147/SpawnerFix-1.16.2-1.0.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3273/512/mcw-trapdoors-1.0.2-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -6700,50 +7309,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 452913603, + "fingerprint": 776917826, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 4017679902, + "fingerprint": 106799335, "type": 3, "invalidFingerprint": false }, { - "foldername": "asm", - "fingerprint": 3758700893, + "foldername": "assets", + "fingerprint": 1655881798, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3937101646, + "foldername": "data", + "fingerprint": 1564359323, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3075940282, + "fingerprint": 509507240, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "trapdoorslogo.png", + "fingerprint": 3641727091, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2673409532, + "packageFingerprint": 293957677, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -6761,12 +7368,6 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -6774,18 +7375,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2117081, - "projectId": 399022, - "packageFingerprintId": 581534932, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2631374, - "gameVersionId": 4458, + "renderCacheId": 2262277, + "projectId": 400933, + "packageFingerprintId": 642757979, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2860327, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "SpawnerFix-1.16.2-1.0.0.2.jar" + "FileNameOnDisk": "mcw-trapdoors-1.0.2-mc1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5225798Z", - "dateUpdated": "2021-07-05T20:20:57.5225798Z", + "dateInstalled": "2021-07-05T20:20:54.9128241Z", + "dateUpdated": "2021-07-05T20:20:54.9128241Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -6799,17 +7400,17 @@ "installedTargets": null }, { - "addonID": 384508, + "addonID": 351725, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3461633, - "displayName": "Resourceful Bees 1.16.5-0.9.9.6", - "fileName": "ResourcefulBees-1.16.5-0.9.9.6.jar", - "fileDate": "2021-09-17T01:03:00.83Z", - "fileLength": 4132122, + "id": 3378577, + "displayName": "[1.0.6 / 1.16.5] Macaw's Bridges", + "fileName": "mcw-bridges-1.0.6-mc1.16.5.jar", + "fileDate": "2021-07-06T13:23:30.797Z", + "fileLength": 496828, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3461/633/ResourcefulBees-1.16.5-0.9.9.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3378/577/mcw-bridges-1.0.6-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -6817,57 +7418,46 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2336875299, + "fingerprint": 1048185190, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3345778787, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "resourcefulbees.mixins.json", - "fingerprint": 645418765, + "fingerprint": 4058674060, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2816218501, + "fingerprint": 2545550615, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 684766769, + "foldername": "bridgeslogo.png", + "fingerprint": 2935733303, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2602403227, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 1074719077, + "fingerprint": 690979446, "type": 0, "invalidFingerprint": false }, { - "foldername": "resourcefulbees.refmap.json", - "fingerprint": 4087400258, + "foldername": "pack.mcmeta", + "fingerprint": 4021381032, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3977447389, + "packageFingerprint": 1318984277, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -6875,14 +7465,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ResourcefulBees-1.16.5-0.9.9.6.jar" + "FileNameOnDisk": "mcw-bridges-1.0.6-mc1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9930639Z", - "dateUpdated": "2021-09-18T21:21:39.0646537Z", - "dateLastUpdateAttempted": "2021-09-18T21:21:39.0646537Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-07-06T18:24:29.7039829Z", + "dateLastUpdateAttempted": "2021-07-06T18:24:29.7039829Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6895,98 +7485,103 @@ "installedTargets": null }, { - "addonID": 309674, + "addonID": 224218, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3376819, - "displayName": "item-filters-forge-1605.2.5-build.9.jar", - "fileName": "item-filters-forge-1605.2.5-build.9.jar", - "fileDate": "2021-07-05T00:30:35.13Z", - "fileLength": 106801, - "releaseType": 1, + "id": 3229196, + "displayName": "compactmachines-4.0.0-beta.2.jar", + "fileName": "compactmachines-4.0.0-beta.2.jar", + "fileDate": "2021-03-07T10:12:15.197Z", + "fileLength": 345749, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3376/819/item-filters-forge-1605.2.5-build.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3229/196/compactmachines-4.0.0-beta.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 419699, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "itemfilters-common.mixins.json", - "fingerprint": 3895545159, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3023886237, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3407176033, - "type": 0, + "foldername": "META-INF", + "fingerprint": 3454253115, + "type": 3, "invalidFingerprint": false }, { - "foldername": "item-filters-common-refmap.json", - "fingerprint": 1493072104, - "type": 0, + "foldername": "com", + "fingerprint": 461324764, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4007635963, - "type": 0, + "foldername": ".cache", + "fingerprint": 2860794722, + "type": 3, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 185804119, - "type": 0, + "foldername": "assets", + "fingerprint": 1393581798, + "type": 3, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 2819232880, - "type": 0, + "foldername": "data", + "fingerprint": 1760035182, + "type": 3, "invalidFingerprint": false }, { - "foldername": "architectury_inject_ItemFilters1165_common_1193252d27c84c9d916d77f0c87ce283", - "fingerprint": 1897237996, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 2008650935, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4059505426, + "packageFingerprint": 3360947371, "gameVersion": [ "1.16.5", "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2204879, + "projectId": 224218, + "packageFingerprintId": 619383095, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2774645, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "item-filters-forge-1605.2.5-build.9.jar" + "FileNameOnDisk": "compactmachines-4.0.0-beta.2.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-07-05T20:31:37.5784675Z", - "dateLastUpdateAttempted": "2021-07-05T20:31:37.5784675Z", + "dateInstalled": "2021-07-05T20:20:54.9128241Z", + "dateUpdated": "2021-07-05T20:20:54.9128241Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -6999,179 +7594,116 @@ "installedTargets": null }, { - "addonID": 231484, + "addonID": 376351, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3445172, - "displayName": "CookingForBlockheads_1.16.5-9.3.4.jar", - "fileName": "CookingForBlockheads_1.16.5-9.3.4.jar", - "fileDate": "2021-08-31T19:25:34.413Z", - "fileLength": 683179, + "id": 3146365, + "displayName": "framedcompactdrawers-1.16-2.2.0.jar", + "fileName": "framedcompactdrawers-1.16-2.2.0.jar", + "fileDate": "2020-12-22T19:00:01.787Z", + "fileLength": 116626, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3445/172/CookingForBlockheads_1.16.5-9.3.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3146/365/framedcompactdrawers-1.16-2.2.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 222348, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 235328, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 242247, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 221857, - "type": 2, - "fileId": 0 + "id": 59410508, + "addonId": 223852, + "type": 3, + "fileId": 3146365 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 703957060, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 760257851, - "type": 0, + "fingerprint": 2285096581, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 729017089, - "type": 0, + "foldername": "eutros", + "fingerprint": 2272543578, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1907251185, - "type": 0, + "fingerprint": 706551264, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1121832191, - "type": 0, - "invalidFingerprint": false - } - ], - "packageFingerprint": 2798864228, - "gameVersion": [ - "1.16.5" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "CookingForBlockheads_1.16.5-9.3.4.jar" - }, - "dateInstalled": "2021-07-05T20:21:03.3741186Z", - "dateUpdated": "2021-09-02T11:59:47.2464621Z", - "dateLastUpdateAttempted": "2021-09-02T11:59:47.2464621Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 409087, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3328602, - "displayName": "EntityCulling-1.16.5-2.1.6.jar", - "fileName": "EntityCulling-1.16.5-2.1.6.jar", - "fileDate": "2021-05-28T19:47:47.763Z", - "fileLength": 60714, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3328/602/EntityCulling-1.16.5-2.1.6.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3846446967, + "foldername": "logo.png", + "fingerprint": 1881664966, "type": 3, "invalidFingerprint": false }, { - "foldername": "meldexun", - "fingerprint": 2576455172, + "foldername": "pack.mcmeta", + "fingerprint": 1762540746, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3598369554, + "fingerprint": 4127160251, "type": 3, "invalidFingerprint": false }, { - "foldername": "entity_culling", - "fingerprint": 3340427751, + "foldername": "mcmod.info", + "fingerprint": 3412890546, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 418499438, + "foldername": "framedcompactdrawers.refmap.json", + "fingerprint": 3140626583, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1881670325, + "packageFingerprint": 1144186776, "gameVersion": [ + "1.16.3", + "1.16.1", "1.16.5", - "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -7179,18 +7711,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2333362, - "projectId": 409087, - "packageFingerprintId": 671622643, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2985094, - "gameVersionId": 7498, + "renderCacheId": 2098288, + "projectId": 376351, + "packageFingerprintId": 572452317, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2601888, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "EntityCulling-1.16.5-2.1.6.jar" + "FileNameOnDisk": "framedcompactdrawers-1.16-2.2.0.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1120321Z", - "dateUpdated": "2021-07-05T20:21:15.1120321Z", + "dateInstalled": "2021-07-05T20:20:54.9428204Z", + "dateUpdated": "2021-07-05T20:20:54.9428204Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -7204,72 +7736,102 @@ "installedTargets": null }, { - "addonID": 401273, + "addonID": 351748, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3459238, - "displayName": "DustrialDecor-1.2.9.jar", - "fileName": "DustrialDecor-1.2.9.jar", - "fileDate": "2021-09-14T10:41:31.5Z", - "fileLength": 386102, + "id": 3279909, + "displayName": "mininggadgets-1.7.5.jar", + "fileName": "mininggadgets-1.7.5.jar", + "fileDate": "2021-04-17T15:29:24.37Z", + "fileLength": 608605, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3459/238/DustrialDecor-1.2.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3279/909/mininggadgets-1.7.5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 61513090, + "addonId": 399757, + "type": 2, + "fileId": 3279909 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1968031179, - "type": 0, + "fingerprint": 3815968954, + "type": 3, "invalidFingerprint": false }, { - "foldername": "blueduck", - "fingerprint": 2496080695, - "type": 0, + "foldername": "com", + "fingerprint": 1291333770, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1711581317, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 1884048881, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3695811546, - "type": 0, + "fingerprint": 1322493376, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2226651332, - "type": 0, + "foldername": "mininggadgets-logo.png", + "fingerprint": 1108870309, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, - "type": 0, + "fingerprint": 4253522632, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3685840737, + "packageFingerprint": 395309315, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2270390, + "projectId": 351748, + "packageFingerprintId": 645475996, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2872904, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "DustrialDecor-1.2.9.jar" + "FileNameOnDisk": "mininggadgets-1.7.5.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5475792Z", - "dateUpdated": "2021-09-15T16:53:13.3865615Z", - "dateLastUpdateAttempted": "2021-09-15T16:53:13.3865615Z", + "dateInstalled": "2021-07-05T20:20:54.9428204Z", + "dateUpdated": "2021-07-05T20:20:54.9428204Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7282,17 +7844,17 @@ "installedTargets": null }, { - "addonID": 287342, + "addonID": 300297, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3446253, - "displayName": "titanium-1.16.5-3.2.8.5-20.jar", - "fileName": "titanium-1.16.5-3.2.8.5-20.jar", - "fileDate": "2021-09-01T18:13:01.963Z", - "fileLength": 635346, - "releaseType": 2, + "id": 3468243, + "displayName": "projectvibrantjourneys-1.16.5-3.2.10.jar", + "fileName": "projectvibrantjourneys-1.16.5-3.2.10.jar", + "fileDate": "2021-09-22T06:39:38.897Z", + "fileLength": 1541592, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3446/253/titanium-1.16.5-3.2.8.5-20.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3468/243/projectvibrantjourneys-1.16.5-3.2.10.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -7300,59 +7862,51 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1011221335, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1120020810, + "fingerprint": 3238025276, "type": 0, "invalidFingerprint": false }, { - "foldername": "LICENSE.txt", - "fingerprint": 1136524626, + "foldername": "projectvibrantjourneys", + "fingerprint": 3027191275, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3273911401, + "foldername": "assets", + "fingerprint": 1197352507, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 988698250, + "foldername": "data", + "fingerprint": 3464851849, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 973258688, + "foldername": "pack.mcmeta", + "fingerprint": 1599004398, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1368271518, + "foldername": "projectvibrantjourneys.mixins.json", + "fingerprint": 4012035673, "type": 0, "invalidFingerprint": false }, { - "foldername": "LICENSE.html", - "fingerprint": 3618638319, + "foldername": "projectvibrantjourneys.refmap.json", + "fingerprint": 1009691780, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3046559515, + "packageFingerprint": 3410786210, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -7360,14 +7914,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "titanium-1.16.5-3.2.8.5-20.jar" + "FileNameOnDisk": "projectvibrantjourneys-1.16.5-3.2.10.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3611195Z", - "dateUpdated": "2021-09-02T12:00:16.1534623Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:16.1534623Z", + "dateInstalled": "2021-09-22T18:08:53.3981312Z", + "dateUpdated": "2021-09-22T18:30:58.1370361Z", + "dateLastUpdateAttempted": "2021-09-22T18:30:58.1370361Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7380,17 +7934,17 @@ "installedTargets": null }, { - "addonID": 327554, + "addonID": 383070, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3400041, - "displayName": "simplefarming-1.16.5-1.3.8.jar", - "fileName": "simplefarming-1.16.5-1.3.8.jar", - "fileDate": "2021-07-25T02:28:27.743Z", - "fileLength": 3145190, - "releaseType": 1, + "id": 3102237, + "displayName": "invtweaks-1.16.4-1.0.1.jar", + "fileName": "invtweaks-1.16.4-1.0.1.jar", + "fileDate": "2020-11-04T18:20:25.5Z", + "fileLength": 69906, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3400/41/simplefarming-1.16.5-1.3.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3102/237/invtweaks-1.16.4-1.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -7398,55 +7952,72 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1387198613, - "type": 0, + "fingerprint": 2842241509, + "type": 3, "invalidFingerprint": false }, { - "foldername": "enemeez", - "fingerprint": 3250076997, - "type": 0, + "foldername": "invtweaks", + "fingerprint": 3956050844, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2887811277, - "type": 0, + "fingerprint": 506126713, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3771737789, - "type": 0, + "foldername": "logo.png", + "fingerprint": 3208778516, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 0, + "fingerprint": 4253522632, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1768405112, + "packageFingerprint": 4010039030, "gameVersion": [ - "1.16", "1.16.5", - "Forge" + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2042397, + "projectId": 383070, + "packageFingerprintId": 548215030, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2514189, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "simplefarming-1.16.5-1.3.8.jar" + "FileNameOnDisk": "invtweaks-1.16.4-1.0.1.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3481192Z", - "dateUpdated": "2021-07-25T20:33:11.1378232Z", - "dateLastUpdateAttempted": "2021-07-25T20:33:11.1378232Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7459,88 +8030,57 @@ "installedTargets": null }, { - "addonID": 224791, + "addonID": 392039, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3452124, - "displayName": "BloodMagic-1.16.4-3.1.3-18.jar", - "fileName": "BloodMagic-1.16.4-3.1.3-18.jar", - "fileDate": "2021-09-06T14:52:36.27Z", - "fileLength": 9305589, - "releaseType": 2, + "id": 3399989, + "displayName": "Pedestals - 1.16.5_0.8s_hotfix_5", + "fileName": "pedestals-0.8s_hotfix_5.jar", + "fileDate": "2021-07-25T00:58:11.67Z", + "fileLength": 1854516, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3452/124/BloodMagic-1.16.4-3.1.3-18.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3399/989/pedestals-0.8s_hotfix_5.jar", "isAlternate": false, - "alternateFileId": 3452125, - "dependencies": [ - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 306770, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 253449, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 309927, - "type": 2, - "fileId": 0 - } - ], + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2084921829, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "wayoftime", - "fingerprint": 2306771526, + "fingerprint": 3155662775, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 896274833, + "foldername": "com", + "fingerprint": 3087123257, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3511189897, + "fingerprint": 312081551, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1404274709, + "fingerprint": 3529712948, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1354411325, + "fingerprint": 1413471134, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3062692822, + "packageFingerprint": 38470276, "gameVersion": [ "1.16.5", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -7551,11 +8091,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "BloodMagic-1.16.4-3.1.3-18.jar" + "FileNameOnDisk": "pedestals-0.8s_hotfix_5.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3771196Z", - "dateUpdated": "2021-09-08T17:52:05.1849205Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:05.1849205Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-07-25T20:33:13.9408292Z", + "dateLastUpdateAttempted": "2021-07-25T20:33:13.9408292Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7568,97 +8108,119 @@ "installedTargets": null }, { - "addonID": 388992, + "addonID": 230976, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3416597, - "displayName": "Environmental 1.16.5 - 1.1.0", - "fileName": "environmental-1.16.5-1.1.0.jar", - "fileDate": "2021-08-06T20:38:00.043Z", - "fileLength": 6988017, + "id": 3052146, + "displayName": "FastLeafDecay-v25.jar", + "fileName": "FastLeafDecay-v25.jar", + "fileDate": "2020-09-08T11:01:18Z", + "fileLength": 18175, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3416/597/environmental-1.16.5-1.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3052/146/FastLeafDecay-v25.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 382216, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4121681131, - "type": 0, + "fingerprint": 2615603133, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3085826113, - "type": 0, + "foldername": "net", + "fingerprint": 2539756150, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1868008798, - "type": 0, + "foldername": "FastLeafDecay.png", + "fingerprint": 624095282, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 378103771, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 3380797652, + "type": 3, "invalidFingerprint": false + } + ], + "packageFingerprint": 711157654, + "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" }, { - "foldername": "environmental.mixins.json", - "fingerprint": 1700598418, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" }, { - "foldername": "logo.png", - "fingerprint": 425313166, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016", + "gameVersion": "1.16", + "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", + "gameVersionName": "1.16" }, { - "foldername": "pack.mcmeta", - "fingerprint": 1166807250, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "environmental.refmap.json", - "fingerprint": 3304719838, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], - "packageFingerprint": 3627389999, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 1981752, + "projectId": 230976, + "packageFingerprintId": 518051823, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2417317, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "environmental-1.16.5-1.1.0.jar" + "FileNameOnDisk": "FastLeafDecay-v25.jar" }, - "dateInstalled": "2021-08-07T20:08:19.6220258Z", - "dateUpdated": "2021-08-08T17:42:48.802143Z", - "dateLastUpdateAttempted": "2021-08-08T17:42:48.802143Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7671,36 +8233,24 @@ "installedTargets": null }, { - "addonID": 287357, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3409900, - "displayName": "IntegratedCrafting-1.16.5-1.0.17.jar", - "fileName": "IntegratedCrafting-1.16.5-1.0.17.jar", - "fileDate": "2021-08-02T17:56:50.023Z", - "fileLength": 265234, + "addonID": 300331, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3436985, + "displayName": "simplylight-1.16.4-1.2.0-build.11.jar", + "fileName": "simplylight-1.16.4-1.2.0-build.11.jar", + "fileDate": "2021-08-23T21:57:24.93Z", + "fileLength": 409123, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3409/900/IntegratedCrafting-1.16.5-1.0.17.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3436/985/simplylight-1.16.4-1.2.0-build.11.jar", "isAlternate": false, - "alternateFileId": 3409901, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 236307, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 232758, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 251389, - "type": 3, + "addonId": 267602, + "type": 2, "fileId": 0 } ], @@ -7708,48 +8258,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 651679679, + "fingerprint": 524620507, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 2327455343, + "foldername": "com", + "fingerprint": 2569672848, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1296569065, + "fingerprint": 3409325231, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2126579824, + "fingerprint": 2097982577, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo_small.png", - "fingerprint": 1376710925, + "foldername": ".cache", + "fingerprint": 876252868, "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 3950789569, + "fingerprint": 266861780, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3192681218, + "fingerprint": 2248317459, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1446969018, + "packageFingerprint": 2364447066, "gameVersion": [ "1.16.5", "Forge" @@ -7763,11 +8313,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IntegratedCrafting-1.16.5-1.0.17.jar" + "FileNameOnDisk": "simplylight-1.16.4-1.2.0-build.11.jar" }, - "dateInstalled": "2021-07-05T20:19:25.3039342Z", - "dateUpdated": "2021-08-02T19:50:42.4933794Z", - "dateLastUpdateAttempted": "2021-08-02T19:50:42.4933794Z", + "dateInstalled": "2021-07-05T20:20:54.9428204Z", + "dateUpdated": "2021-08-25T05:57:11.8855031Z", + "dateLastUpdateAttempted": "2021-08-25T05:57:11.8855031Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7780,77 +8330,69 @@ "installedTargets": null }, { - "addonID": 377835, + "addonID": 266784, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3388486, - "displayName": "createplus-1.16.4_v0.3.2.1.jar", - "fileName": "createplus-1.16.4_v0.3.2.1.jar", - "fileDate": "2021-07-14T13:02:19.57Z", - "fileLength": 64683, + "id": 3398418, + "displayName": "Scannable-MC1.16.5-Forge-1.7.4+21.jar", + "fileName": "Scannable-MC1.16.5-Forge-1.7.4+21.jar", + "fileDate": "2021-07-23T15:33:43.727Z", + "fileLength": 366005, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3388/486/createplus-1.16.4_v0.3.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3398/418/Scannable-MC1.16.5-Forge-1.7.4+21.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 309927, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 328085, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 268560, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3137750284, + "fingerprint": 1799005394, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2419413848, + "foldername": "li", + "fingerprint": 49399111, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 83330288, + "foldername": "js", + "fingerprint": 2509999351, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2964241226, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1555226563, + "fingerprint": 2927771060, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2795671112, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 2631015274, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3408096121, + "packageFingerprint": 801866381, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -7858,14 +8400,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "createplus-1.16.4_v0.3.2.1.jar" + "FileNameOnDisk": "Scannable-MC1.16.5-Forge-1.7.4+21.jar" }, - "dateInstalled": "2021-07-14T17:10:41.8904496Z", - "dateUpdated": "2021-07-14T17:10:41.9044492Z", - "dateLastUpdateAttempted": "2021-07-14T17:10:41.9044492Z", + "dateInstalled": "2021-09-23T18:18:10.5592919Z", + "dateUpdated": "2021-09-23T18:18:10.5732912Z", + "dateLastUpdateAttempted": "2021-09-23T18:18:10.5732912Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7878,17 +8420,17 @@ "installedTargets": null }, { - "addonID": 416935, + "addonID": 228756, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3431330, - "displayName": "Valhelsia Core - 16.0.10", - "fileName": "valhelsia_core-16.0.10.jar", - "fileDate": "2021-08-19T12:23:04.75Z", - "fileLength": 125835, - "releaseType": 2, + "id": 3405717, + "displayName": "ironchest-1.16.5-11.2.13.jar", + "fileName": "ironchest-1.16.5-11.2.13.jar", + "fileDate": "2021-07-29T20:28:20.407Z", + "fileLength": 220634, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3431/330/valhelsia_core-16.0.10.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3405/717/ironchest-1.16.5-11.2.13.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -7896,42 +8438,36 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1806617622, + "fingerprint": 3862300753, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3673730963, + "foldername": "com", + "fingerprint": 1224443606, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2377187245, + "foldername": "data", + "fingerprint": 3326506562, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1007223261, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "valhelsia_core.mixins.json", - "fingerprint": 4289233287, + "fingerprint": 1553870930, "type": 0, "invalidFingerprint": false }, { - "foldername": "valhelsia_core.refmap.json", - "fingerprint": 3069778118, + "foldername": "assets", + "fingerprint": 2760446240, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1168324526, + "packageFingerprint": 3089749928, "gameVersion": [ "1.16.5", "Forge" @@ -7945,11 +8481,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "valhelsia_core-16.0.10.jar" + "FileNameOnDisk": "ironchest-1.16.5-11.2.13.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5175818Z", - "dateUpdated": "2021-08-22T11:02:54.8193652Z", - "dateLastUpdateAttempted": "2021-08-22T11:02:54.8193652Z", + "dateInstalled": "2021-07-05T20:20:54.9328256Z", + "dateUpdated": "2021-08-02T19:50:41.2478654Z", + "dateLastUpdateAttempted": "2021-08-02T19:50:41.2478654Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7962,85 +8498,103 @@ "installedTargets": null }, { - "addonID": 529754, + "addonID": 378646, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3466312, - "displayName": "RoadRunner-mc1.16.5-1.1.1.jar", - "fileName": "RoadRunner-mc1.16.5-1.1.1.jar", - "fileDate": "2021-09-19T21:44:18.067Z", - "fileLength": 387474, + "id": 3340793, + "displayName": "[1.0.3 / 1.16.5] Macaw's Doors", + "fileName": "mcw-doors-1.0.3-mc1.16.5.jar", + "fileDate": "2021-06-06T12:58:32.467Z", + "fileLength": 877165, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3466/312/RoadRunner-mc1.16.5-1.1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3340/793/mcw-doors-1.0.3-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "LICENSE.txt", - "fingerprint": 1136524626, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 1265881845, - "type": 0, + "foldername": "META-INF", + "fingerprint": 186922136, + "type": 3, "invalidFingerprint": false }, { - "foldername": "roadrunner.mixins.json", - "fingerprint": 1649045226, - "type": 0, + "foldername": "com", + "fingerprint": 1608686922, + "type": 3, "invalidFingerprint": false }, { - "foldername": "roadrunner.overrides.properties", - "fingerprint": 3942409938, - "type": 0, + "foldername": "assets", + "fingerprint": 2320322415, + "type": 3, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 2738395886, - "type": 0, + "foldername": "data", + "fingerprint": 828902329, + "type": 3, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 3847400500, - "type": 0, + "foldername": "doorslogo.png", + "fingerprint": 1405222442, + "type": 3, "invalidFingerprint": false }, { - "foldername": "RoadRunner-mc1.16.5-refmap.json", - "fingerprint": 3955167373, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 1229760318, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3554115702, + "packageFingerprint": 1164945400, "gameVersion": [ "1.16.5", "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2348508, + "projectId": 378646, + "packageFingerprintId": 677220791, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 3013747, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "RoadRunner-mc1.16.5-1.1.1.jar" + "FileNameOnDisk": "mcw-doors-1.0.3-mc1.16.5.jar" }, - "dateInstalled": "2021-09-22T17:33:29.0701517Z", - "dateUpdated": "2021-09-22T17:33:29.0731504Z", - "dateLastUpdateAttempted": "2021-09-22T17:33:29.0731504Z", + "dateInstalled": "2021-07-05T20:20:54.9328256Z", + "dateUpdated": "2021-07-05T20:20:54.9328256Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8053,48 +8607,55 @@ "installedTargets": null }, { - "addonID": 238222, + "addonID": 398784, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3438494, - "displayName": "jei-1.16.5-7.7.1.121.jar", - "fileName": "jei-1.16.5-7.7.1.121.jar", - "fileDate": "2021-08-25T06:28:30.36Z", - "fileLength": 814217, - "releaseType": 2, + "id": 3392688, + "displayName": "Curious Armor Stands-1.16.5-2.1.2.jar", + "fileName": "Curious Armor Stands-1.16.5-2.1.2.jar", + "fileDate": "2021-07-18T12:46:10.8Z", + "fileLength": 21734, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3438/494/jei-1.16.5-7.7.1.121.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3392/688/Curious Armor Stands-1.16.5-2.1.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2317160737, + "fingerprint": 210373515, "type": 0, "invalidFingerprint": false }, { - "foldername": "mezz", - "fingerprint": 3778864182, + "foldername": "curiousarmorstands", + "fingerprint": 3682346151, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1645019714, + "foldername": "logo.png", + "fingerprint": 2086557602, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2041060550, + "foldername": "pack.mcmeta", + "fingerprint": 621311064, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3158079338, + "packageFingerprint": 648547089, "gameVersion": [ "1.16.5", "Forge" @@ -8105,14 +8666,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "jei-1.16.5-7.7.1.121.jar" + "FileNameOnDisk": "Curious Armor Stands-1.16.5-2.1.2.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3651184Z", - "dateUpdated": "2021-08-26T19:09:25.9874397Z", - "dateLastUpdateAttempted": "2021-08-26T19:09:25.9874397Z", + "dateInstalled": "2021-07-05T20:20:54.9128241Z", + "dateUpdated": "2021-07-24T18:19:13.8576321Z", + "dateLastUpdateAttempted": "2021-07-24T18:19:13.8576321Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8125,120 +8686,103 @@ "installedTargets": null }, { - "addonID": 429235, + "addonID": 242195, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3435176, - "displayName": "ferritecore-2.0.7-forge.jar", - "fileName": "ferritecore-2.0.7-forge.jar", - "fileDate": "2021-08-23T06:16:38.207Z", - "fileLength": 101813, - "releaseType": 1, + "id": 3348602, + "displayName": "DarkUtilities-1.16.5-8.0.11.jar", + "fileName": "DarkUtilities-1.16.5-8.0.11.jar", + "fileDate": "2021-06-12T02:39:29.447Z", + "fileLength": 249785, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3435/176/ferritecore-2.0.7-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/602/DarkUtilities-1.16.5-8.0.11.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 10563238, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "googleaccess", - "fingerprint": 3491285138, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "ferritecore.mrl.mixin.json", - "fingerprint": 1186793239, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "ferritecore.dedupbakedquad.mixin.json", - "fingerprint": 1286500205, - "type": 0, - "invalidFingerprint": false - }, + "alternateFileId": 3348603, + "dependencies": [ { - "foldername": "ferritecore.blockstatecache.mixin.json", - "fingerprint": 352172374, - "type": 0, - "invalidFingerprint": false + "id": 66179768, + "addonId": 393149, + "type": 3, + "fileId": 3348602 }, { - "foldername": "ferritecore.fastmap.mixin.json", - "fingerprint": 1274405922, - "type": 0, - "invalidFingerprint": false - }, + "id": 66179767, + "addonId": 228525, + "type": 3, + "fileId": 3348602 + } + ], + "isAvailable": true, + "modules": [ { - "foldername": "logo.png", - "fingerprint": 3369927219, - "type": 0, + "foldername": "META-INF", + "fingerprint": 3710850888, + "type": 3, "invalidFingerprint": false }, { - "foldername": "ferritecore.dedupmultipart.mixin.json", - "fingerprint": 4096495031, - "type": 0, + "foldername": "assets", + "fingerprint": 239952618, + "type": 3, "invalidFingerprint": false }, { - "foldername": "ferritecore.predicates.mixin.json", - "fingerprint": 1322969185, - "type": 0, + "foldername": "data", + "fingerprint": 1508833454, + "type": 3, "invalidFingerprint": false }, { - "foldername": "ferritecore-common-refmap.json", - "fingerprint": 2901900899, - "type": 0, + "foldername": "net", + "fingerprint": 366460892, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2809587253, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3448462194, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "malte0811", - "fingerprint": 4102796611, - "type": 0, + "fingerprint": 3309770494, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2655477553, + "packageFingerprint": 2830254161, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2358262, + "projectId": 242195, + "packageFingerprintId": 681995298, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3034828, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "ferritecore-2.0.7-forge.jar" + "FileNameOnDisk": "DarkUtilities-1.16.5-8.0.11.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-08-25T05:56:50.9635024Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:50.9635024Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8251,17 +8795,17 @@ "installedTargets": null }, { - "addonID": 376737, + "addonID": 383129, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472990, - "displayName": "PrettyPipes-1.9.5.jar", - "fileName": "PrettyPipes-1.9.5.jar", - "fileDate": "2021-09-26T15:07:24.677Z", - "fileLength": 1552424, + "id": 3432838, + "displayName": "connectedglass-1.1.0-mc1.16", + "fileName": "connectedglass-1.1.0-mc1.16.jar", + "fileDate": "2021-08-20T22:53:36.877Z", + "fileLength": 607622, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/990/PrettyPipes-1.9.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3432/838/connectedglass-1.1.0-mc1.16.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -8269,47 +8813,56 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2643377313, + "fingerprint": 906126259, "type": 0, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 2171597558, + "foldername": "com", + "fingerprint": 3477284332, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 1907793674, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2911328373, + "fingerprint": 2580142375, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2242770304, + "foldername": "connectedglass.png", + "fingerprint": 6788735, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2949935882, + "foldername": "data", + "fingerprint": 2061543446, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 2104039922, + "foldername": "pack.mcmeta", + "fingerprint": 3464378314, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3727158791, + "packageFingerprint": 3160072489, "gameVersion": [ "1.16.3", + "1.16.1", + "1.16", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -8320,11 +8873,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "PrettyPipes-1.9.5.jar" + "FileNameOnDisk": "connectedglass-1.1.0-mc1.16.jar" }, - "dateInstalled": "2021-07-05T20:20:57.519581Z", - "dateUpdated": "2021-09-26T18:55:18.5073968Z", - "dateLastUpdateAttempted": "2021-09-26T18:55:18.5073968Z", + "dateInstalled": "2021-07-05T20:20:54.9328256Z", + "dateUpdated": "2021-08-22T11:01:05.5188927Z", + "dateLastUpdateAttempted": "2021-08-22T11:01:05.5188927Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8337,92 +8890,69 @@ "installedTargets": null }, { - "addonID": 271740, + "addonID": 324973, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3172881, - "displayName": "Toast-Control-1.16.4-4.3.1.jar", - "fileName": "Toast-Control-1.16.4-4.3.1.jar", - "fileDate": "2021-01-18T19:52:21.843Z", - "fileLength": 23929, + "id": 3160501, + "displayName": "DungeonCrawl-1.16.3-2.2.4", + "fileName": "DungeonCrawl-1.16.3-2.2.4.jar", + "fileDate": "2021-01-06T18:07:58.33Z", + "fileLength": 479190, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3172/881/Toast-Control-1.16.4-4.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3160/501/DungeonCrawl-1.16.3-2.2.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 54709027, - "addonId": 283644, - "type": 3, - "fileId": 3172881 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1650513819, - "type": 3, + "fingerprint": 2004125023, + "type": 0, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 3164139588, - "type": 3, + "foldername": "xiroc", + "fingerprint": 1946312858, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3127646252, - "type": 3, + "foldername": "data", + "fingerprint": 2918400460, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2902809506, - "type": 3, + "fingerprint": 431501935, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2311015693, + "packageFingerprint": 3292161954, "gameVersion": [ + "1.16.3", "1.16.5", + "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2131940, - "projectId": 271740, - "packageFingerprintId": 588586840, - "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", - "gameVersionMappingId": 2654562, - "gameVersionId": 8134, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Toast-Control-1.16.4-4.3.1.jar" + "FileNameOnDisk": "DungeonCrawl-1.16.3-2.2.4.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3751191Z", - "dateUpdated": "2021-07-05T20:21:03.3751191Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-07-30T07:30:10.5369295Z", + "dateUpdated": "2021-07-30T07:30:10.5529262Z", + "dateLastUpdateAttempted": "2021-07-30T07:30:10.5529262Z", + "status": 3, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -8434,82 +8964,72 @@ "installedTargets": null }, { - "addonID": 347706, + "addonID": 456956, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3424919, - "displayName": "RFToolsBuilder - 1.16-3.1.2", - "fileName": "rftoolsbuilder-1.16-3.1.2.jar", - "fileDate": "2021-08-14T05:25:08.283Z", - "fileLength": 541026, + "id": 3424808, + "displayName": "Chipped 1.1.2 [FORGE]", + "fileName": "chipped-1.1.2.jar", + "fileDate": "2021-08-14T01:52:12.373Z", + "fileLength": 5436835, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3424/919/rftoolsbuilder-1.16-3.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3424/808/chipped-1.1.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 233105, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 270789, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 326041, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 245211, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3788617393, + "fingerprint": 1185380548, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 568163916, + "foldername": "com", + "fingerprint": 3395467849, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2085338806, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3076156737, + "fingerprint": 2866401848, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1047313438, + "foldername": "Chipped_Logo.png", + "fingerprint": 2145118639, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 299266696, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2469026570, + "fingerprint": 3533743234, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3107207587, + "packageFingerprint": 3354636867, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -8520,11 +9040,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsbuilder-1.16-3.1.2.jar" + "FileNameOnDisk": "chipped-1.1.2.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2603391Z", - "dateUpdated": "2021-08-14T19:13:11.7262117Z", - "dateLastUpdateAttempted": "2021-08-14T19:13:11.7262117Z", + "dateInstalled": "2021-07-05T20:20:57.5265805Z", + "dateUpdated": "2021-08-14T19:12:41.3953363Z", + "dateLastUpdateAttempted": "2021-08-14T19:12:41.3953363Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8537,54 +9057,97 @@ "installedTargets": null }, { - "addonID": 374529, + "addonID": 295910, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3432890, - "displayName": "pitg-1.16.5-2.0.1.jar", - "fileName": "pitg-1.16.5-2.0.1.jar", - "fileDate": "2021-08-20T23:51:53.28Z", - "fileLength": 575719, + "id": 3474915, + "displayName": "IntegratedTerminals-1.16.5-1.2.5.jar", + "fileName": "IntegratedTerminals-1.16.5-1.2.5.jar", + "fileDate": "2021-09-27T17:39:44.053Z", + "fileLength": 473386, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3432/890/pitg-1.16.5-2.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/915/IntegratedTerminals-1.16.5-1.2.5.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3474916, + "dependencies": [ + { + "id": 0, + "addonId": 251389, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 287357, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 232758, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 236307, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 929513396, + "fingerprint": 3959407484, "type": 0, "invalidFingerprint": false }, { - "foldername": "tv", - "fingerprint": 1007499520, + "foldername": "org", + "fingerprint": 1287632607, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1536104327, + "fingerprint": 191223691, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1782312737, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo_small.png", + "fingerprint": 18908756, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2574383883, + "fingerprint": 2441444065, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4225796759, + "foldername": "logo.png", + "fingerprint": 2877892280, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "mcmod.info", + "fingerprint": 36295578, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2146737499, + "packageFingerprint": 2213612494, "gameVersion": [ "1.16.5", "Forge" @@ -8598,12 +9161,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "pitg-1.16.5-2.0.1.jar" + "FileNameOnDisk": "IntegratedTerminals-1.16.5-1.2.5.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5385865Z", - "dateUpdated": "2021-08-22T11:02:43.5730672Z", - "dateLastUpdateAttempted": "2021-08-22T11:02:43.5730672Z", - "status": 5, + "dateInstalled": "2021-07-05T20:20:54.9328256Z", + "dateUpdated": "2021-10-02T18:14:19.1137337Z", + "dateLastUpdateAttempted": "2021-10-02T18:14:19.1137337Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -8615,63 +9178,81 @@ "installedTargets": null }, { - "addonID": 363363, + "addonID": 452500, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3470966, - "displayName": "Extreme Sound Muffler 3.15 - Forge 1.16.5", - "fileName": "extremeSoundMuffler-3.15_1.16.5.jar", - "fileDate": "2021-09-25T12:21:48.053Z", - "fileLength": 283646, - "releaseType": 1, + "id": 3422371, + "displayName": "sushigocrafting-1.16.5-0.2.0.jar", + "fileName": "sushigocrafting-1.16.5-0.2.0.jar", + "fileDate": "2021-08-11T16:23:43.867Z", + "fileLength": 607321, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3470/966/extremeSoundMuffler-3.15_1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3422/371/sushigocrafting-1.16.5-0.2.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 287342, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 306770, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1240450862, + "fingerprint": 2389553620, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3878571952, + "fingerprint": 2472422226, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2159168, + "foldername": ".cache", + "fingerprint": 246160315, "type": 0, "invalidFingerprint": false }, { - "foldername": "esm_logo.png", - "fingerprint": 1632690954, + "foldername": "assets", + "fingerprint": 762989674, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2066463772, + "foldername": "data", + "fingerprint": 3372470046, "type": 0, "invalidFingerprint": false }, { - "foldername": "extremesoundmuffler.refmap.json", - "fingerprint": 823211581, + "foldername": "pack.mcmeta", + "fingerprint": 3273911401, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1435304898, + "packageFingerprint": 1883363849, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -8679,14 +9260,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "extremeSoundMuffler-3.15_1.16.5.jar" + "FileNameOnDisk": "sushigocrafting-1.16.5-0.2.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3831197Z", - "dateUpdated": "2021-09-25T14:37:02.399646Z", - "dateLastUpdateAttempted": "2021-09-25T14:37:02.399646Z", + "dateInstalled": "2021-07-05T20:20:54.9428204Z", + "dateUpdated": "2021-08-11T21:22:30.5382935Z", + "dateLastUpdateAttempted": "2021-08-11T21:22:30.5382935Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8699,23 +9280,23 @@ "installedTargets": null }, { - "addonID": 74072, + "addonID": 242223, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3439200, - "displayName": "Tinkers' Construct 3.1.2.265 for 1.16.5", - "fileName": "TConstruct-1.16.5-3.1.2.265.jar", - "fileDate": "2021-08-25T22:26:43.537Z", - "fileLength": 10088256, - "releaseType": 3, + "id": 3429379, + "displayName": "JustEnoughCalculation-1.16.5-3.8.5.jar", + "fileName": "JustEnoughCalculation-1.16.5-3.8.5.jar", + "fileDate": "2021-08-17T16:37:15.51Z", + "fileLength": 298228, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3439/200/TConstruct-1.16.5-3.1.2.265.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3429/379/JustEnoughCalculation-1.16.5-3.8.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 74924, + "addonId": 238222, "type": 3, "fileId": 0 } @@ -8724,42 +9305,36 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3673228740, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "slimeknights", - "fingerprint": 920752151, + "fingerprint": 1151445732, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3133816837, + "foldername": "me", + "fingerprint": 2192409045, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3635995092, + "foldername": "assets", + "fingerprint": 3933986851, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3056415901, + "foldername": "data", + "fingerprint": 4098231829, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3868453206, + "foldername": "pack.mcmeta", + "fingerprint": 464417267, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1187491472, + "packageFingerprint": 3333498611, "gameVersion": [ "1.16.5", "Forge" @@ -8773,11 +9348,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "TConstruct-1.16.5-3.1.2.265.jar" + "FileNameOnDisk": "JustEnoughCalculation-1.16.5-3.8.5.jar" }, - "dateInstalled": "2021-08-04T13:38:29.0995552Z", - "dateUpdated": "2021-08-26T19:10:04.3161085Z", - "dateLastUpdateAttempted": "2021-08-26T19:10:04.3161085Z", + "dateInstalled": "2021-07-10T17:55:07.2533403Z", + "dateUpdated": "2021-08-17T17:35:46.0312783Z", + "dateLastUpdateAttempted": "2021-08-17T17:35:46.0312783Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8790,17 +9365,17 @@ "installedTargets": null }, { - "addonID": 412525, + "addonID": 313816, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3329216, - "displayName": "LibX-1.16.3-1.0.76.jar", - "fileName": "LibX-1.16.3-1.0.76.jar", - "fileDate": "2021-05-29T09:37:10.79Z", - "fileLength": 373391, + "id": 3145252, + "displayName": "toughnessbar-6.1.jar", + "fileName": "toughnessbar-6.1.jar", + "fileDate": "2020-12-21T17:23:34.54Z", + "fileLength": 13152, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3329/216/LibX-1.16.3-1.0.76.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3145/252/toughnessbar-6.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -8808,67 +9383,41 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3657830091, + "fingerprint": 806468415, "type": 3, "invalidFingerprint": false }, { - "foldername": "io", - "fingerprint": 2457004889, + "foldername": "tfar", + "fingerprint": 2283080380, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2712045477, + "fingerprint": 1083783141, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1678410490, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "libx.mixins.json", - "fingerprint": 1759726830, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "libx.refmap.json", - "fingerprint": 4244098989, + "fingerprint": 4253522632, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3832570968, + "packageFingerprint": 3937597624, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", @@ -8881,18 +9430,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2334188, - "projectId": 412525, - "packageFingerprintId": 672033904, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2986737, - "gameVersionId": 4458, + "renderCacheId": 2096893, + "projectId": 313816, + "packageFingerprintId": 571704490, + "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", + "gameVersionMappingId": 2599925, + "gameVersionId": 8134, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "LibX-1.16.3-1.0.76.jar" + "FileNameOnDisk": "toughnessbar-6.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5395841Z", - "dateUpdated": "2021-07-05T20:20:57.5395841Z", + "dateInstalled": "2021-07-05T20:20:57.5455819Z", + "dateUpdated": "2021-07-05T20:20:57.5455819Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -8906,61 +9455,102 @@ "installedTargets": null }, { - "addonID": 281849, + "addonID": 443570, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3470048, - "displayName": "pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar", - "fileName": "pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar", - "fileDate": "2021-09-24T07:58:22.45Z", - "fileLength": 7340711, - "releaseType": 1, + "id": 3472677, + "displayName": "diet-forge-1.16.5-0.43.jar", + "fileName": "diet-forge-1.16.5-0.43.jar", + "fileDate": "2021-09-26T08:28:09.197Z", + "fileLength": 204502, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3470/48/pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3472/677/diet-forge-1.16.5-0.43.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 306770, - "type": 2, - "fileId": 0 - } - ], + "alternateFileId": 3472678, + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 851674951, + "foldername": "META-INF", + "fingerprint": 4137006833, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "top", + "fingerprint": 2784323045, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1647663563, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "CHANGELOG.md", + "fingerprint": 1745347817, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 201200362, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "diet-effects.toml", + "fingerprint": 578407234, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "diet-groups.toml", + "fingerprint": 792535827, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "diet.mixins.json", + "fingerprint": 3571337067, "type": 0, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 2120018686, + "foldername": "diet_icon.png", + "fingerprint": 2571709559, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2644770182, + "foldername": "licenses", + "fingerprint": 925121779, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3235667806, + "fingerprint": 45425788, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 369209450, + "foldername": "README.md", + "fingerprint": 1665073848, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "diet.refmap.json", + "fingerprint": 3060913214, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3430708954, + "packageFingerprint": 1582976620, "gameVersion": [ "1.16.5", "Forge" @@ -8971,14 +9561,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar" + "FileNameOnDisk": "diet-forge-1.16.5-0.43.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-09-24T18:45:35.7958989Z", - "dateLastUpdateAttempted": "2021-09-24T18:45:35.7958989Z", + "dateInstalled": "2021-07-05T20:19:25.2949358Z", + "dateUpdated": "2021-09-26T11:24:59.1871435Z", + "dateLastUpdateAttempted": "2021-09-26T11:24:59.1871435Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -8991,66 +9581,85 @@ "installedTargets": null }, { - "addonID": 250577, + "addonID": 284745, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3190372, - "displayName": "AkashicTome-1.4-16.jar", - "fileName": "AkashicTome-1.4-16.jar", - "fileDate": "2021-02-02T18:04:36.48Z", - "fileLength": 41258, + "id": 3224434, + "displayName": "1.16.2 - 1.16.5 (3.2.0)", + "fileName": "magicfeather-1.16.2-3.2.0.jar", + "fileDate": "2021-03-02T21:27:21.693Z", + "fileLength": 20475, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3190/372/AkashicTome-1.4-16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3224/434/magicfeather-1.16.2-3.2.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 55931000, - "addonId": 250363, + "id": 58105532, + "addonId": 222908, "type": 3, - "fileId": 3190372 + "fileId": 3224434 + }, + { + "id": 58105531, + "addonId": 309927, + "type": 2, + "fileId": 3224434 + }, + { + "id": 58105530, + "addonId": 394120, + "type": 2, + "fileId": 3224434 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2857609648, + "fingerprint": 2513476217, "type": 3, "invalidFingerprint": false }, { - "foldername": "vazkii", - "fingerprint": 515931408, + "foldername": "be", + "fingerprint": 1603875912, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3201201675, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1646269815, + "foldername": "logo.png", + "fingerprint": 2351638477, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 410624000, + "foldername": "assets", + "fingerprint": 3124142650, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1156313706, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4195838619, + "packageFingerprint": 2420223326, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -9076,6 +9685,12 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -9083,18 +9698,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2154520, - "projectId": 250577, - "packageFingerprintId": 598028620, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2692913, - "gameVersionId": 4458, + "renderCacheId": 2198561, + "projectId": 284745, + "packageFingerprintId": 616386000, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2764261, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "AkashicTome-1.4-16.jar" + "FileNameOnDisk": "magicfeather-1.16.2-3.2.0.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", + "dateInstalled": "2021-07-05T20:20:54.9328256Z", + "dateUpdated": "2021-07-05T20:20:54.9328256Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -9108,181 +9723,99 @@ "installedTargets": null }, { - "addonID": 406959, + "addonID": 365281, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3404887, - "displayName": "thermal_locomotion-1.16.5-1.3.0.jar", - "fileName": "thermal_locomotion-1.16.5-1.3.0.jar", - "fileDate": "2021-07-29T04:33:39.843Z", - "fileLength": 181544, + "id": 3034936, + "displayName": "serverconfigupdater-1.3.jar", + "fileName": "serverconfigupdater-1.3.jar", + "fileDate": "2020-08-17T12:02:22.263Z", + "fileLength": 13528, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3404/887/thermal_locomotion-1.16.5-1.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3034/936/serverconfigupdater-1.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 222880, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2440933122, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1605533243, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "cofh", - "fingerprint": 4066193105, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 110606794, - "type": 0, + "fingerprint": 3673042380, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3543445047, - "type": 0, + "foldername": "com", + "fingerprint": 1353985828, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "thermal_locomotion.png", - "fingerprint": 1917025006, - "type": 0, + "fingerprint": 3380797652, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2952720374, + "packageFingerprint": 2949524617, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "thermal_locomotion-1.16.5-1.3.0.jar" - }, - "dateInstalled": "2021-07-05T20:21:18.9830634Z", - "dateUpdated": "2021-07-30T07:15:31.2003569Z", - "dateLastUpdateAttempted": "2021-07-30T07:15:31.2003569Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 438240, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3445579, - "displayName": "tomeofblood-1.16.5-1.2.jar", - "fileName": "tomeofblood-1.16.5-1.2.jar", - "fileDate": "2021-09-01T04:18:12.803Z", - "fileLength": 74721, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3445/579/tomeofblood-1.16.5-1.2.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 401955, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 224791, - "type": 3, - "fileId": 0 - } + "Forge", + "1.16.4", + "1.16.2" ], - "isAvailable": true, - "modules": [ + "sortableGameVersion": [ { - "foldername": "META-INF", - "fingerprint": 3015745454, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" }, { - "foldername": "com", - "fingerprint": 1817031075, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "assets", - "fingerprint": 286154215, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" }, { - "foldername": "data", - "fingerprint": 3390349326, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" }, { - "foldername": "pack.mcmeta", - "fingerprint": 3630444543, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], - "packageFingerprint": 1585369781, - "gameVersion": [ - "1.16.5" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 1960367, + "projectId": 365281, + "packageFingerprintId": 507039936, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2382031, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "tomeofblood-1.16.5-1.2.jar" + "FileNameOnDisk": "serverconfigupdater-1.3.jar" }, - "dateInstalled": "2021-07-05T20:21:18.981063Z", - "dateUpdated": "2021-09-02T12:00:15.287463Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:15.287463Z", + "dateInstalled": "2021-07-05T20:20:54.9328256Z", + "dateUpdated": "2021-07-05T20:20:54.9328256Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -9295,42 +9828,42 @@ "installedTargets": null }, { - "addonID": 350006, + "addonID": 383182, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3402865, - "displayName": "RFToolsStorage - 1.16-2.0.13", - "fileName": "rftoolsstorage-1.16-2.0.13.jar", - "fileDate": "2021-07-27T13:34:54.713Z", - "fileLength": 367821, + "id": 3435369, + "displayName": "XNetGases-1.16.5-2.3.7.jar", + "fileName": "XNetGases-1.16.5-2.3.7.jar", + "fileDate": "2021-08-23T12:19:04.47Z", + "fileLength": 227039, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3402/865/rftoolsstorage-1.16-2.0.13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3435/369/XNetGases-1.16.5-2.3.7.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 233105, + "addonId": 326041, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 245211, - "type": 2, + "addonId": 260912, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 326041, + "addonId": 233105, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 270789, - "type": 2, + "addonId": 268560, + "type": 3, "fileId": 0 } ], @@ -9338,36 +9871,30 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1290791731, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "mcjty", - "fingerprint": 3410540396, + "fingerprint": 2103154068, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 73430381, + "foldername": "terrails", + "fingerprint": 1159384398, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 326947708, + "fingerprint": 3977612331, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3473661348, + "foldername": "xnetgases.png", + "fingerprint": 224484208, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2729936181, + "packageFingerprint": 3792918243, "gameVersion": [ "1.16.5", "Forge" @@ -9378,14 +9905,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsstorage-1.16-2.0.13.jar" + "FileNameOnDisk": "XNetGases-1.16.5-2.3.7.jar" }, - "dateInstalled": "2021-07-05T20:21:03.35712Z", - "dateUpdated": "2021-07-27T20:19:58.5278217Z", - "dateLastUpdateAttempted": "2021-07-27T20:19:58.5278217Z", + "dateInstalled": "2021-07-05T20:20:57.519581Z", + "dateUpdated": "2021-08-25T05:57:23.1935024Z", + "dateLastUpdateAttempted": "2021-08-25T05:57:23.1935024Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -9398,109 +9925,96 @@ "installedTargets": null }, { - "addonID": 442719, + "addonID": 298187, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3442748, - "displayName": "Abnormals Delight 1.16.5 - 1.2.0", - "fileName": "abnormals_delight-1.16.5-1.2.0.jar", - "fileDate": "2021-08-29T13:17:52.027Z", - "fileLength": 549400, + "id": 3205295, + "displayName": "buildinggadgets-1.16.5-3.8.0.jar", + "fileName": "buildinggadgets-1.16.5-3.8.0.jar", + "fileDate": "2021-02-15T19:42:19.863Z", + "fileLength": 909445, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3442/748/abnormals_delight-1.16.5-1.2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3205/295/buildinggadgets-1.16.5-3.8.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 382216, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 398521, - "type": 3, - "fileId": 0 + "id": 56916937, + "addonId": 399757, + "type": 2, + "fileId": 3205295 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1781748100, - "type": 0, + "fingerprint": 267054609, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2964619881, - "type": 0, + "fingerprint": 962286206, + "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 32715445, - "type": 0, + "foldername": "data", + "fingerprint": 597267807, + "type": 3, "invalidFingerprint": false }, { - "foldername": "abnormals_delight.mixins.json", - "fingerprint": 2645650821, - "type": 0, + "foldername": "buildinggadgets_logo.png", + "fingerprint": 2374162731, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2260567590, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1139311992, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 1187594774, - "type": 0, + "fingerprint": 3840510572, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 532340890, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "abnormals_delight.refmap.json", - "fingerprint": 4004558447, - "type": 0, + "fingerprint": 3547210442, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2225048643, + "packageFingerprint": 3456565023, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2173986, + "projectId": 298187, + "packageFingerprintId": 606375272, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2725255, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "abnormals_delight-1.16.5-1.2.0.jar" + "FileNameOnDisk": "buildinggadgets-1.16.5-3.8.0.jar" }, - "dateInstalled": "2021-07-05T20:21:19.0020631Z", - "dateUpdated": "2021-08-31T18:21:59.4171997Z", - "dateLastUpdateAttempted": "2021-08-31T18:21:59.4171997Z", + "dateInstalled": "2021-07-05T20:20:57.5145815Z", + "dateUpdated": "2021-07-05T20:20:57.5145815Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -9513,17 +10027,17 @@ "installedTargets": null }, { - "addonID": 461710, + "addonID": 280294, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348960, - "displayName": "redstonepen-1.16.5-1.0.6.jar", - "fileName": "redstonepen-1.16.5-1.0.6.jar", - "fileDate": "2021-06-12T10:30:37.903Z", - "fileLength": 223014, + "id": 3419933, + "displayName": "FpsReducer-forge-1.23-mc1.16.5.jar", + "fileName": "FpsReducer-forge-1.23-mc1.16.5.jar", + "fileDate": "2021-08-09T07:30:22.947Z", + "fileLength": 94947, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/960/redstonepen-1.16.5-1.0.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3419/933/FpsReducer-forge-1.23-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -9531,52 +10045,51 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2647255887, + "fingerprint": 3083225176, "type": 0, "invalidFingerprint": false }, { - "foldername": ".gitversion-redstonepen", - "fingerprint": 2190935792, + "foldername": "bre2el", + "fingerprint": 305118122, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 122194153, + "fingerprint": 2163027845, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 926804945, + "foldername": "fpsreducer.mixins.json", + "fingerprint": 1828560234, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 421868000, + "foldername": "fpsreducer_logo.png", + "fingerprint": 2600135182, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 375492961, + "fingerprint": 419585142, "type": 0, "invalidFingerprint": false }, { - "foldername": "wile", - "fingerprint": 2976262479, + "foldername": "fpsreducer.refmap.json", + "fingerprint": 4067606497, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2506627402, + "packageFingerprint": 2329459138, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -9587,11 +10100,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "redstonepen-1.16.5-1.0.6.jar" + "FileNameOnDisk": "FpsReducer-forge-1.23-mc1.16.5.jar" }, - "dateInstalled": "2021-08-04T13:31:47.4586549Z", - "dateUpdated": "2021-08-04T13:31:47.4756546Z", - "dateLastUpdateAttempted": "2021-08-04T13:31:47.4756546Z", + "dateInstalled": "2021-07-05T20:20:57.5105817Z", + "dateUpdated": "2021-08-10T16:56:56.9930877Z", + "dateLastUpdateAttempted": "2021-08-10T16:56:56.9930877Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -9604,84 +10117,91 @@ "installedTargets": null }, { - "addonID": 465066, + "addonID": 291493, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3277762, - "displayName": "[Forge 1.16.4-1.16.5] v2.0.1", - "fileName": "expandability-2.0.1-forge.jar", - "fileDate": "2021-04-15T10:53:58.273Z", - "fileLength": 43358, + "id": 3302511, + "displayName": "portality-1.16.4-3.2.2.jar", + "fileName": "portality-1.16.4-3.2.2.jar", + "fileDate": "2021-05-08T10:31:10.99Z", + "fileLength": 412001, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3277/762/expandability-2.0.1-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3302/511/portality-1.16.4-3.2.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 63201046, + "addonId": 287342, + "type": 3, + "fileId": 3302511 + } + ], "isAvailable": true, "modules": [ { - "foldername": "expandability.mixins.json", - "fingerprint": 2504465341, + "foldername": "META-INF", + "fingerprint": 204924124, "type": 3, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 437909498, + "foldername": "com", + "fingerprint": 390890601, "type": 3, "invalidFingerprint": false }, { - "foldername": "expandability-common-refmap.json", - "fingerprint": 2115119192, + "foldername": "assets", + "fingerprint": 2843166621, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2432372732, + "foldername": "data", + "fingerprint": 3740062177, "type": 3, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 3794404027, + "foldername": "mcmod.info", + "fingerprint": 426932998, "type": 3, "invalidFingerprint": false }, { - "foldername": "be", - "fingerprint": 2125577898, + "foldername": "pack.mcmeta", + "fingerprint": 3273911401, "type": 3, "invalidFingerprint": false }, { - "foldername": "architectury_inject_expandability_common_8bce1ab34a2a43a9b5ffa443293d038d", - "fingerprint": 1036221710, + "foldername": "Portality_at.cfg", + "fingerprint": 791729182, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4080179122, + "packageFingerprint": 3259228697, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge", "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", @@ -9694,18 +10214,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2267508, - "projectId": 465066, - "packageFingerprintId": 644467532, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2868175, - "gameVersionId": 7498, + "renderCacheId": 2299972, + "projectId": 291493, + "packageFingerprintId": 658814368, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2920067, + "gameVersionId": 8056, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "expandability-2.0.1-forge.jar" + "FileNameOnDisk": "portality-1.16.4-3.2.2.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9880623Z", - "dateUpdated": "2021-07-05T20:21:18.9880623Z", + "dateInstalled": "2021-07-05T20:20:54.9228218Z", + "dateUpdated": "2021-07-05T20:20:54.9228218Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -9719,62 +10239,72 @@ "installedTargets": null }, { - "addonID": 250603, + "addonID": 231095, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3415529, - "displayName": "World Stripper-1.16.5-2.1.0.jar", - "fileName": "World Stripper-1.16.5-2.1.0.jar", - "fileDate": "2021-08-06T19:17:13.857Z", - "fileLength": 139989, - "releaseType": 1, + "id": 3478816, + "displayName": "Rebuild: 1.0.10", + "fileName": "chiselsandbits-1.0.10-BETA-universal.jar", + "fileDate": "2021-10-02T09:09:29.437Z", + "fileLength": 1000958, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3415/529/World Stripper-1.16.5-2.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/816/chiselsandbits-1.0.10-BETA-universal.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3916994120, + "fingerprint": 95900484, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 338168129, + "foldername": "mod", + "fingerprint": 249566498, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 733126946, + "fingerprint": 1842410271, "type": 0, "invalidFingerprint": false }, { - "foldername": "offending_image.png", - "fingerprint": 2351219585, + "foldername": "chiselsandbits_at.cfg", + "fingerprint": 1984535209, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1624566557, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 2325622583, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3238701869, + "packageFingerprint": 2011001551, "gameVersion": [ "1.16.3", - "1.16.1", - "1.16", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -9785,12 +10315,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "World Stripper-1.16.5-2.1.0.jar" + "FileNameOnDisk": "chiselsandbits-1.0.10-BETA-universal.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9741847Z", - "dateUpdated": "2021-08-07T20:02:37.8252941Z", - "dateLastUpdateAttempted": "2021-08-07T20:02:37.8252941Z", - "status": 5, + "dateInstalled": "2021-09-24T18:21:26.2309502Z", + "dateUpdated": "2021-10-02T18:11:53.8104202Z", + "dateLastUpdateAttempted": "2021-10-02T18:11:53.8104202Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -9802,96 +10332,98 @@ "installedTargets": null }, { - "addonID": 425973, + "addonID": 313866, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3221966, - "displayName": "Portable Stonecutter-1.16.4-1.3.4", - "fileName": "portable_stonecutter-1.16.4-1.3.4.jar", - "fileDate": "2021-02-28T19:57:29.49Z", - "fileLength": 69181, + "id": 3390489, + "displayName": "engineersdecor-1.16.4-1.1.14.jar", + "fileName": "engineersdecor-1.16.4-1.1.14.jar", + "fileDate": "2021-07-16T07:41:06.403Z", + "fileLength": 1811963, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3221/966/portable_stonecutter-1.16.4-1.3.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3390/489/engineersdecor-1.16.4-1.1.14.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 231951, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 306770, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4288451836, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "xyz", - "fingerprint": 2721563245, - "type": 3, + "fingerprint": 3282382331, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, + "foldername": ".gitversion-engineersdecor", + "fingerprint": 2009454775, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3230716175, - "type": 3, + "fingerprint": 3712478138, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1550201691, - "type": 3, + "fingerprint": 691527108, + "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 3857328094, - "type": 3, + "fingerprint": 2121622161, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1749888074, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "wile", + "fingerprint": 3610663587, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3472649707, + "packageFingerprint": 4017544072, "gameVersion": [ "1.16.5", + "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2195366, - "projectId": 425973, - "packageFingerprintId": 614796319, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2759239, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "portable_stonecutter-1.16.4-1.3.4.jar" + "FileNameOnDisk": "engineersdecor-1.16.4-1.1.14.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5335796Z", - "dateUpdated": "2021-07-05T20:20:57.5335796Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:57.518581Z", + "dateUpdated": "2021-07-24T18:19:12.2036312Z", + "dateLastUpdateAttempted": "2021-07-24T18:19:12.2036312Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -9904,73 +10436,48 @@ "installedTargets": null }, { - "addonID": 291936, + "addonID": 235577, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3297137, - "displayName": "findme-1.16.3-2.2.0.0.jar", - "fileName": "findme-1.16.3-2.2.0.0.jar", - "fileDate": "2021-05-03T15:28:10.1Z", - "fileLength": 30493, + "id": 3098221, + "displayName": "TrashSlot_1.16.3-12.2.1.jar", + "fileName": "TrashSlot_1.16.3-12.2.1.jar", + "fileDate": "2020-10-31T19:02:45.53Z", + "fileLength": 61032, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3297/137/findme-1.16.3-2.2.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3098/221/TrashSlot_1.16.3-12.2.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 62803795, - "addonId": 238222, - "type": 3, - "fileId": 3297137 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1320427214, + "fingerprint": 3874152321, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1150112572, + "foldername": "net", + "fingerprint": 2139956863, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1789828301, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "findme.mixins.json", - "fingerprint": 923617865, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "mcmod.info", - "fingerprint": 149078902, + "fingerprint": 2085904798, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3273911401, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "findme.refmap.json", - "fingerprint": 3560964079, + "fingerprint": 3514838989, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1009738247, + "packageFingerprint": 85186671, "gameVersion": [ "1.16.3", "1.16.5", @@ -10001,18 +10508,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2292957, - "projectId": 291936, - "packageFingerprintId": 655500911, + "renderCacheId": 2037552, + "projectId": 235577, + "packageFingerprintId": 545528458, "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2907293, + "gameVersionMappingId": 2505359, "gameVersionId": 8056, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "findme-1.16.3-2.2.0.0.jar" + "FileNameOnDisk": "TrashSlot_1.16.3-12.2.1.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3591186Z", - "dateUpdated": "2021-07-05T20:21:03.3591186Z", + "dateInstalled": "2021-07-05T20:20:57.5205829Z", + "dateUpdated": "2021-07-05T20:20:57.5205829Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -10026,17 +10533,17 @@ "installedTargets": null }, { - "addonID": 252848, + "addonID": 351914, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3382150, - "displayName": "NaturesCompass-1.16.5-1.9.1-forge.jar", - "fileName": "NaturesCompass-1.16.5-1.9.1-forge.jar", - "fileDate": "2021-07-09T04:43:08.943Z", - "fileLength": 203573, + "id": 3456505, + "displayName": "mgui-1.16.5-3.3.0.jar", + "fileName": "mgui-1.16.5-3.3.0.jar", + "fileDate": "2021-09-11T15:23:56.447Z", + "fileLength": 50151, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3382/150/NaturesCompass-1.16.5-1.9.1-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3456/505/mgui-1.16.5-3.3.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -10044,72 +10551,44 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2865400410, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 324789395, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3589911188, - "type": 3, + "fingerprint": 894567602, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2843533673, - "type": 3, + "foldername": "se", + "fingerprint": 1343638382, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2288265386, - "type": 3, + "fingerprint": 466699339, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1236086660, + "packageFingerprint": 3261480363, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2400545, - "projectId": 252848, - "packageFingerprintId": 701701059, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3116340, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "NaturesCompass-1.16.5-1.9.1-forge.jar" + "FileNameOnDisk": "mgui-1.16.5-3.3.0.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2673396Z", - "dateUpdated": "2021-07-10T17:55:07.2673396Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:57.5255848Z", + "dateUpdated": "2021-09-15T16:38:48.8723952Z", + "dateLastUpdateAttempted": "2021-09-15T16:38:48.8723952Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10122,93 +10601,104 @@ "installedTargets": null }, { - "addonID": 289712, + "addonID": 380998, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3468014, - "displayName": "tetra-1.16.5-3.17.0.jar", - "fileName": "tetra-1.16.5-3.17.0.jar", - "fileDate": "2021-09-21T23:14:09.977Z", - "fileLength": 2990458, - "releaseType": 2, + "id": 3228821, + "displayName": "integratednbt-1.16.4-1.4.2.jar", + "fileName": "integratednbt-1.16.4-1.4.2.jar", + "fileDate": "2021-03-06T23:05:00.937Z", + "fileLength": 136751, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3468/14/tetra-1.16.5-3.17.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3228/821/integratednbt-1.16.4-1.4.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 351914, + "id": 58426928, + "addonId": 236307, "type": 3, - "fileId": 0 + "fileId": 3228821 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 728194680, - "type": 0, + "fingerprint": 604077050, + "type": 3, "invalidFingerprint": false }, { - "foldername": "se", - "fingerprint": 1050004352, - "type": 0, + "foldername": "me", + "fingerprint": 4045768744, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2681478273, - "type": 0, + "fingerprint": 1362099752, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2851979133, - "type": 0, + "fingerprint": 619273959, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4064848781, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "tetra.mixins.json", - "fingerprint": 2565242496, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "tetra.refmap.json", - "fingerprint": 1482182319, - "type": 0, + "fingerprint": 3273911401, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 54417051, + "packageFingerprint": 3877441169, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2204361, + "projectId": 380998, + "packageFingerprintId": 619172570, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2773708, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "tetra-1.16.5-3.17.0.jar" + "FileNameOnDisk": "integratednbt-1.16.4-1.4.2.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3441195Z", - "dateUpdated": "2021-09-22T17:51:12.9333836Z", - "dateLastUpdateAttempted": "2021-09-22T17:51:12.9333836Z", + "dateInstalled": "2021-07-05T20:20:57.5125806Z", + "dateUpdated": "2021-07-05T20:20:57.5125806Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10221,17 +10711,17 @@ "installedTargets": null }, { - "addonID": 372372, + "addonID": 436964, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3085736, - "displayName": "enigmatica-1.16.3-0.1.1.jar", - "fileName": "enigmatica-1.16.3-0.1.1.jar", - "fileDate": "2020-10-18T19:03:45.317Z", - "fileLength": 16418, + "id": 3196072, + "displayName": "Babel-1.0.5.jar", + "fileName": "Babel-1.0.5.jar", + "fileDate": "2021-02-07T19:27:53.32Z", + "fileLength": 169895, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3085/736/enigmatica-1.16.3-0.1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3196/72/Babel-1.0.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -10239,34 +10729,52 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4016046725, + "fingerprint": 1894740131, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1832662880, + "fingerprint": 161197484, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "babel.mixins.json", + "fingerprint": 211910296, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 4077331125, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, + "fingerprint": 1438559181, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "babel.refmap.json", + "fingerprint": 2693877171, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4104131162, + "packageFingerprint": 2164717903, "gameVersion": [ - "1.16.3", + "1.16.5", "1.16.4" ], "sortableGameVersion": [ { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { "gameVersionPadded": "0000000001.0000000016.0000000004", @@ -10280,18 +10788,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2022243, - "projectId": 372372, - "packageFingerprintId": 538196021, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2483668, - "gameVersionId": 8056, + "renderCacheId": 2161821, + "projectId": 436964, + "packageFingerprintId": 601179633, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2705510, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "enigmatica-1.16.3-0.1.1.jar" + "FileNameOnDisk": "Babel-1.0.5.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3371157Z", - "dateUpdated": "2021-07-05T20:21:03.3371157Z", + "dateInstalled": "2021-07-05T20:20:57.5425808Z", + "dateUpdated": "2021-07-05T20:20:57.5425808Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -10305,76 +10813,80 @@ "installedTargets": null }, { - "addonID": 306475, + "addonID": 378802, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3350866, - "displayName": "Useful-Railroads-1.16.5-1.4.6.38", - "fileName": "useful_railroads-1.16.5-1.4.6.38.jar", - "fileDate": "2021-06-13T21:48:29.86Z", - "fileLength": 245933, + "id": 3268432, + "displayName": "Structure Gel 1.16.5-v1.7.7", + "fileName": "structure_gel-1.16.5-1.7.7.jar", + "fileDate": "2021-04-07T17:23:38.58Z", + "fileLength": 260027, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3350/866/useful_railroads-1.16.5-1.4.6.38.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3268/432/structure_gel-1.16.5-1.7.7.jar", "isAlternate": false, - "alternateFileId": 3350867, - "dependencies": [ - { - "id": 66338435, - "addonId": 273744, - "type": 3, - "fileId": 3350866 - } - ], + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2156712906, + "fingerprint": 3699027761, "type": 3, "invalidFingerprint": false }, { - "foldername": "LICENSE", - "fingerprint": 3262929571, + "foldername": "com", + "fingerprint": 544735032, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 4292861086, + "foldername": "asm", + "fingerprint": 518878678, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2384038841, + "foldername": "assets", + "fingerprint": 2942120461, "type": 3, "invalidFingerprint": false }, { - "foldername": "info", - "fingerprint": 2396302533, + "foldername": "data", + "fingerprint": 205919636, "type": 3, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 4140808576, + "fingerprint": 3271828178, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3705753273, + "fingerprint": 3360178793, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "structure_gel.mixins.json", + "fingerprint": 134253058, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "structure_gel.refmap.json", + "fingerprint": 996767834, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 406089835, + "packageFingerprint": 1576729289, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "sortableGameVersion": [ { @@ -10382,12 +10894,6 @@ "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" } ], "hasInstallScript": false, @@ -10395,18 +10901,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2361100, - "projectId": 306475, - "packageFingerprintId": 683289987, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3041175, - "gameVersionId": 4458, + "renderCacheId": 2255538, + "projectId": 378802, + "packageFingerprintId": 639962308, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2849789, + "gameVersionId": 8203, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "useful_railroads-1.16.5-1.4.6.38.jar" + "FileNameOnDisk": "structure_gel-1.16.5-1.7.7.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9741847Z", - "dateUpdated": "2021-07-05T20:20:47.9741847Z", + "dateInstalled": "2021-07-05T20:20:57.5275809Z", + "dateUpdated": "2021-07-05T20:20:57.5275809Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -10420,23 +10926,23 @@ "installedTargets": null }, { - "addonID": 59621, + "addonID": 347488, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3469295, - "displayName": "Atum-1.16.5-2.2.8.jar", - "fileName": "Atum-1.16.5-2.2.8.jar", - "fileDate": "2021-09-23T13:27:38.793Z", - "fileLength": 4565396, + "id": 3476252, + "displayName": "Valhelsia Structures - 0.1.6", + "fileName": "valhelsia_structures-1.16.5-0.1.6.jar", + "fileDate": "2021-09-29T10:26:55.7Z", + "fileLength": 1540395, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3469/295/Atum-1.16.5-2.2.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/252/valhelsia_structures-1.16.5-0.1.6.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 309927, + "addonId": 416935, "type": 3, "fileId": 0 } @@ -10445,141 +10951,62 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2414912907, + "fingerprint": 3259240420, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1278841367, + "fingerprint": 1111993149, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 906004068, + "foldername": ".cache", + "fingerprint": 3952993768, "type": 0, "invalidFingerprint": false }, { - "foldername": "atum.mixins.json", - "fingerprint": 2572298239, + "foldername": "assets", + "fingerprint": 144640972, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2676786229, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 801415253, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "atum.refmap.json", - "fingerprint": 932911122, - "type": 0, - "invalidFingerprint": false - } - ], - "packageFingerprint": 645474583, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Atum-1.16.5-2.2.8.jar" - }, - "dateInstalled": "2021-07-05T20:21:08.4604717Z", - "dateUpdated": "2021-09-24T18:44:42.3362342Z", - "dateLastUpdateAttempted": "2021-09-24T18:44:42.3362342Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 232758, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3474910, - "displayName": "CyclopsCore-1.16.5-1.11.10.jar", - "fileName": "CyclopsCore-1.16.5-1.11.10.jar", - "fileDate": "2021-09-27T17:37:47.15Z", - "fileLength": 844480, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/910/CyclopsCore-1.16.5-1.11.10.jar", - "isAlternate": false, - "alternateFileId": 3474911, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3548156480, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "org", - "fingerprint": 780530223, + "fingerprint": 2141717525, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3876077990, + "foldername": "logo.png", + "fingerprint": 3639630371, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3536622113, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo_small.png", - "fingerprint": 3202528997, + "fingerprint": 1701865676, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2620577581, + "foldername": "valhelsia_structures.mixins.json", + "fingerprint": 4279890370, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2866114932, + "foldername": "valhelsia_structures.refmap.json", + "fingerprint": 2292881831, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 297894024, + "packageFingerprint": 2141856648, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -10590,11 +11017,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CyclopsCore-1.16.5-1.11.10.jar" + "FileNameOnDisk": "valhelsia_structures-1.16.5-0.1.6.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9741847Z", - "dateUpdated": "2021-09-27T17:47:39.8746612Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:39.8746612Z", + "dateInstalled": "2021-07-05T20:20:57.5365845Z", + "dateUpdated": "2021-10-02T18:33:04.1466519Z", + "dateLastUpdateAttempted": "2021-10-02T18:33:04.1466519Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10607,121 +11034,85 @@ "installedTargets": null }, { - "addonID": 453925, + "addonID": 423547, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472412, - "displayName": "[ 1.0.1 / 1.16.5] Macaw's Fences and Walls", - "fileName": "mcw-fences-1.0.1-mc1.16.5.jar", - "fileDate": "2021-09-25T21:43:11.763Z", - "fileLength": 224442, + "id": 3287364, + "displayName": "restriction-1.16.5-0.1.2.jar", + "fileName": "restriction-1.16.5-0.1.2.jar", + "fileDate": "2021-04-24T09:08:29.607Z", + "fileLength": 38912, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/412/mcw-fences-1.0.1-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3287/364/restriction-1.16.5-0.1.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 359540, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 438116, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 352039, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 363569, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 400933, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 378646, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 351725, + "id": 62050377, + "addonId": 268655, "type": 2, - "fileId": 0 + "fileId": 3287364 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1745398176, - "type": 0, + "fingerprint": 2376029490, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 741900088, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 57442850, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 2064858653, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "fenceslogo.png", - "fingerprint": 3490178184, - "type": 0, + "fingerprint": 2926690350, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2508710582, - "type": 0, + "fingerprint": 1438559181, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 578473414, + "packageFingerprint": 923089085, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2280103, + "projectId": 423547, + "packageFingerprintId": 649504967, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2887310, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "mcw-fences-1.0.1-mc1.16.5.jar" + "FileNameOnDisk": "restriction-1.16.5-0.1.2.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9750637Z", - "dateUpdated": "2021-09-26T11:25:08.1429425Z", - "dateLastUpdateAttempted": "2021-09-26T11:25:08.1429425Z", + "dateInstalled": "2021-07-05T20:20:57.541583Z", + "dateUpdated": "2021-07-05T20:20:57.541583Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10734,85 +11125,106 @@ "installedTargets": null }, { - "addonID": 353399, + "addonID": 358700, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3407020, - "displayName": "archers_paradox-1.16.5-1.3.1.jar", - "fileName": "archers_paradox-1.16.5-1.3.1.jar", - "fileDate": "2021-07-31T01:04:55.43Z", - "fileLength": 207184, + "id": 3037991, + "displayName": "moredragoneggs-1.4.jar", + "fileName": "moredragoneggs-1.4.jar", + "fileDate": "2020-08-20T22:01:47.98Z", + "fileLength": 4022, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3407/20/archers_paradox-1.16.5-1.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3037/991/moredragoneggs-1.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 69162, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1119489821, - "type": 0, + "fingerprint": 2233813031, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 938137764, - "type": 0, + "foldername": "com", + "fingerprint": 1448632594, + "type": 3, "invalidFingerprint": false }, { - "foldername": "cofh", - "fingerprint": 1146224861, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 3380797652, + "type": 3, "invalidFingerprint": false + } + ], + "packageFingerprint": 1857503838, + "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" }, { - "foldername": "data", - "fingerprint": 448199995, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" }, { - "foldername": "logo.png", - "fingerprint": 1194177890, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], - "packageFingerprint": 1151695862, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 1964118, + "projectId": 358700, + "packageFingerprintId": 508846140, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2388884, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "archers_paradox-1.16.5-1.3.1.jar" + "FileNameOnDisk": "moredragoneggs-1.4.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9720633Z", - "dateUpdated": "2021-08-02T19:54:19.0505098Z", - "dateLastUpdateAttempted": "2021-08-02T19:54:19.0505098Z", + "dateInstalled": "2021-07-05T20:20:57.5395841Z", + "dateUpdated": "2021-07-05T20:20:57.5395841Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10825,80 +11237,94 @@ "installedTargets": null }, { - "addonID": 242818, + "addonID": 313970, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3456069, - "displayName": "CodeChicken Lib 1.16.5-4.0.3.434-universal", - "fileName": "CodeChickenLib-1.16.5-4.0.3.434-universal.jar", - "fileDate": "2021-09-11T03:03:14.44Z", - "fileLength": 622321, + "id": 3451418, + "displayName": "Apotheosis-1.16.5-4.8.0.jar", + "fileName": "Apotheosis-1.16.5-4.8.0.jar", + "fileDate": "2021-09-05T19:51:43.623Z", + "fileLength": 925636, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3456/69/CodeChickenLib-1.16.5-4.0.3.434-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3451/418/Apotheosis-1.16.5-4.8.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 250419, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 283644, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 253449, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4224770076, + "fingerprint": 4219668769, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 1353120109, + "foldername": "com", + "fingerprint": 1733758917, "type": 0, "invalidFingerprint": false }, { - "foldername": "LICENSE", - "fingerprint": 2989649023, + "foldername": "shadows", + "fingerprint": 544914589, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3096024256, + "fingerprint": 3327823722, "type": 0, "invalidFingerprint": false }, { - "foldername": "codechicken", - "fingerprint": 3354410204, + "foldername": "coremods", + "fingerprint": 1365971321, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3899647396, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "mixins.codechickenlib.json", - "fingerprint": 1076180799, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "mixins.codechickenlib.refmap.json", - "fingerprint": 3334444269, + "fingerprint": 778286281, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 427284745, + "fingerprint": 3850463208, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1058829035, + "packageFingerprint": 3774337239, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -10906,14 +11332,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CodeChickenLib-1.16.5-4.0.3.434-universal.jar" + "FileNameOnDisk": "Apotheosis-1.16.5-4.8.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3451193Z", - "dateUpdated": "2021-09-15T16:52:55.0352486Z", - "dateLastUpdateAttempted": "2021-09-15T16:52:55.0352486Z", + "dateInstalled": "2021-09-27T18:50:08.2167934Z", + "dateUpdated": "2021-09-27T18:50:08.2297943Z", + "dateLastUpdateAttempted": "2021-09-27T18:50:08.2297943Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10926,87 +11352,63 @@ "installedTargets": null }, { - "addonID": 441647, + "addonID": 410168, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3453471, - "displayName": "FramedBlocks-2.10.0.jar", - "fileName": "FramedBlocks-2.10.0.jar", - "fileDate": "2021-09-07T21:41:00.093Z", - "fileLength": 535672, + "id": 3443945, + "displayName": "ExtraStorage-1.16.5-1.5.0", + "fileName": "ExtraStorage-1.16.5-1.5.0.jar", + "fileDate": "2021-08-30T16:56:55.65Z", + "fileLength": 340736, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3453/471/FramedBlocks-2.10.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3443/945/ExtraStorage-1.16.5-1.5.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 243076, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4073729383, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "team", - "fingerprint": 1322605695, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "xfacthd", - "fingerprint": 3176010730, + "fingerprint": 3187886756, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 2730059780, + "foldername": "edivad", + "fingerprint": 3119130182, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1188843323, + "fingerprint": 3042492374, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 296462197, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "framedblocks.mixin.json", - "fingerprint": 3441545819, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 789975261, + "fingerprint": 98727507, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3799552759, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "framedblocks.refmap.json", - "fingerprint": 307935087, + "fingerprint": 1204004125, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1193117242, + "packageFingerprint": 1367771010, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -11014,14 +11416,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "FramedBlocks-2.10.0.jar" + "FileNameOnDisk": "ExtraStorage-1.16.5-1.5.0.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2563413Z", - "dateUpdated": "2021-09-08T17:53:19.2414871Z", - "dateLastUpdateAttempted": "2021-09-08T17:53:19.2414871Z", + "dateInstalled": "2021-07-05T20:20:57.5145815Z", + "dateUpdated": "2021-08-31T18:21:52.1581965Z", + "dateLastUpdateAttempted": "2021-08-31T18:21:52.1581965Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -11034,24 +11436,24 @@ "installedTargets": null }, { - "addonID": 391382, + "addonID": 309516, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3395133, - "displayName": "[1.16.5] MoreOverlays 1.18.15", - "fileName": "moreoverlays-1.18.15-mc1.16.5.jar", - "fileDate": "2021-07-20T16:09:31.017Z", - "fileLength": 82557, + "id": 3239647, + "displayName": "Bountiful-1.16.4-3.3.1.jar", + "fileName": "Bountiful-1.16.4-3.3.1.jar", + "fileDate": "2021-03-14T22:03:42.273Z", + "fileLength": 336577, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3395/133/moreoverlays-1.18.15-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3239/647/Bountiful-1.16.4-3.3.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 238222, - "type": 2, + "addonId": 351264, + "type": 3, "fileId": 0 } ], @@ -11059,42 +11461,39 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3118902320, + "fingerprint": 2035055663, "type": 0, "invalidFingerprint": false }, { - "foldername": "at", - "fingerprint": 2131957051, + "foldername": "ejektaflex", + "fingerprint": 1260082630, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2084075221, + "fingerprint": 2844277695, "type": 0, "invalidFingerprint": false }, { - "foldername": "moreoverlays.png", - "fingerprint": 2277803217, + "foldername": "data", + "fingerprint": 3575987840, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 21643154, + "fingerprint": 4253522632, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 396610009, + "packageFingerprint": 4051624247, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -11102,14 +11501,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "moreoverlays-1.18.15-mc1.16.5.jar" + "FileNameOnDisk": "Bountiful-1.16.4-3.3.1.jar" }, - "dateInstalled": "2021-07-15T19:20:48.0217084Z", - "dateUpdated": "2021-07-24T19:09:59.4186608Z", - "dateLastUpdateAttempted": "2021-07-24T19:09:59.4186608Z", + "dateInstalled": "2021-09-27T04:45:06.6421109Z", + "dateUpdated": "2021-09-27T04:45:06.6621069Z", + "dateLastUpdateAttempted": "2021-09-27T04:45:06.6621069Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -11122,17 +11521,17 @@ "installedTargets": null }, { - "addonID": 354522, + "addonID": 314002, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3275942, - "displayName": "quickstack-4.0.1.jar", - "fileName": "quickstack-4.0.1.jar", - "fileDate": "2021-04-14T15:00:16.15Z", - "fileLength": 41661, + "id": 3055679, + "displayName": "overloadedarmorbar-5.1.0.jar", + "fileName": "overloadedarmorbar-5.1.0.jar", + "fileDate": "2020-09-12T19:45:16.947Z", + "fileLength": 13362, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3275/942/quickstack-4.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3055/679/overloadedarmorbar-5.1.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -11140,33 +11539,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1164272100, + "fingerprint": 1571834731, "type": 3, "invalidFingerprint": false }, { - "foldername": "scp002", - "fingerprint": 4120626592, + "foldername": "tfar", + "fingerprint": 3133132408, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 3697211808, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3556696154, + "packageFingerprint": 3982474778, "gameVersion": [ - "1.16.5" + "1.16.3", + "1.16.5", + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -11174,18 +11594,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2265411, - "projectId": 354522, - "packageFingerprintId": 644069928, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2865490, - "gameVersionId": 8203, + "renderCacheId": 1986091, + "projectId": 314002, + "packageFingerprintId": 520318098, + "gameVersionDateReleased": "2020-08-11T16:42:21.863Z", + "gameVersionMappingId": 2425359, + "gameVersionId": 8010, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "quickstack-4.0.1.jar" + "FileNameOnDisk": "overloadedarmorbar-5.1.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3511181Z", - "dateUpdated": "2021-07-05T20:21:03.3511181Z", + "dateInstalled": "2021-07-05T20:20:57.5405842Z", + "dateUpdated": "2021-07-05T20:20:57.5405842Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -11199,85 +11619,110 @@ "installedTargets": null }, { - "addonID": 429371, + "addonID": 394535, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3407451, - "displayName": "kubejs-create-1605.1.2-build.7.jar", - "fileName": "kubejs-create-1605.1.2-build.7.jar", - "fileDate": "2021-07-31T13:47:40.073Z", - "fileLength": 10141, + "id": 3301005, + "displayName": "trashcans-1.0.10-mc1.16.5", + "fileName": "trashcans-1.0.10-mc1.16.5.jar", + "fileDate": "2021-05-07T01:11:51.403Z", + "fileLength": 141416, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3407/451/kubejs-create-1605.1.2-build.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3301/5/trashcans-1.0.10-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 238086, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 328085, + "id": 63086821, + "addonId": 454372, "type": 3, - "fileId": 0 + "fileId": 3301005 } ], "isAvailable": true, "modules": [ { - "foldername": "kubejs.plugins.txt", - "fingerprint": 64417371, - "type": 0, + "foldername": "META-INF", + "fingerprint": 4294042001, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4041992327, - "type": 0, + "foldername": "com", + "fingerprint": 1145353408, + "type": 3, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 258914244, - "type": 0, + "foldername": "assets", + "fingerprint": 2390005551, + "type": 3, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 3892145808, - "type": 0, + "foldername": "data", + "fingerprint": 1480966558, + "type": 3, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 970984042, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 1822775244, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "trashcans.png", + "fingerprint": 495895946, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 63099391, + "packageFingerprint": 3517305194, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2298001, + "projectId": 394535, + "packageFingerprintId": 657936532, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2915948, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "kubejs-create-1605.1.2-build.7.jar" + "FileNameOnDisk": "trashcans-1.0.10-mc1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:21:18.991063Z", - "dateUpdated": "2021-08-02T19:51:16.370784Z", - "dateLastUpdateAttempted": "2021-08-02T19:51:16.370784Z", + "dateInstalled": "2021-07-05T20:20:57.5315793Z", + "dateUpdated": "2021-07-05T20:20:57.5315793Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -11290,76 +11735,101 @@ "installedTargets": null }, { - "addonID": 241721, + "addonID": 352039, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3333980, - "displayName": "AstralSorcery-1.16.5-1.13.12.jar", - "fileName": "astralsorcery-1.16-1.16.5-1.13.12.jar", - "fileDate": "2021-06-01T18:28:11.38Z", - "fileLength": 30123369, - "releaseType": 2, + "id": 3182364, + "displayName": "[2.0.1 / 1.16.5/4] Macaw's Roofs ", + "fileName": "mcw-roofs-2.0.1-mc1.16.5-4.jar", + "fileDate": "2021-01-26T17:53:49.73Z", + "fileLength": 1464218, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3333/980/astralsorcery-1.16-1.16.5-1.13.12.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3182/364/mcw-roofs-2.0.1-mc1.16.5-4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 65230963, - "addonId": 309927, - "type": 3, - "fileId": 3333980 + "id": 56369377, + "addonId": 400933, + "type": 2, + "fileId": 3182364 }, { - "id": 65230964, - "addonId": 316833, - "type": 3, - "fileId": 3333980 + "id": 56369375, + "addonId": 351725, + "type": 2, + "fileId": 3182364 + }, + { + "id": 56369376, + "addonId": 378646, + "type": 2, + "fileId": 3182364 + }, + { + "id": 56369379, + "addonId": 438116, + "type": 2, + "fileId": 3182364 + }, + { + "id": 56369380, + "addonId": 359540, + "type": 2, + "fileId": 3182364 + }, + { + "id": 56369378, + "addonId": 363569, + "type": 2, + "fileId": 3182364 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3755312493, + "fingerprint": 4117983584, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 12430641, + "foldername": "com", + "fingerprint": 754969621, "type": 3, "invalidFingerprint": false }, { - "foldername": "coremods", - "fingerprint": 2731907184, + "foldername": "assets", + "fingerprint": 1228396592, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 818080104, + "fingerprint": 70981520, "type": 3, "invalidFingerprint": false }, { - "foldername": "hellfirepvp", - "fingerprint": 1808630609, + "foldername": "pack.mcmeta", + "fingerprint": 2700479703, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1232891596, + "foldername": "roofslogo.png", + "fingerprint": 4291183467, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3597463763, + "packageFingerprint": 1432521408, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ { @@ -11373,6 +11843,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -11380,18 +11856,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2340018, - "projectId": 241721, - "packageFingerprintId": 674255407, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2997659, - "gameVersionId": 4458, + "renderCacheId": 2144210, + "projectId": 352039, + "packageFingerprintId": 593990043, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2675585, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "astralsorcery-1.16-1.16.5-1.13.12.jar" + "FileNameOnDisk": "mcw-roofs-2.0.1-mc1.16.5-4.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3701172Z", - "dateUpdated": "2021-07-05T20:21:03.3701172Z", + "dateInstalled": "2021-07-05T20:20:57.5165826Z", + "dateUpdated": "2021-07-05T20:20:57.5165826Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -11405,86 +11881,84 @@ "installedTargets": null }, { - "addonID": 415974, + "addonID": 273744, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3227802, - "displayName": "Personality 1.16.5 - 1.0.2", - "fileName": "personality-1.16.5-1.0.2.jar", - "fileDate": "2021-03-05T23:34:16.35Z", - "fileLength": 288116, + "id": 3350619, + "displayName": "U-Team-Core-1.16.5-3.2.1.196", + "fileName": "u_team_core-1.16.5-3.2.1.196.jar", + "fileDate": "2021-06-13T18:16:59.537Z", + "fileLength": 397203, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3227/802/personality-1.16.5-1.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3350/619/u_team_core-1.16.5-3.2.1.196.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3350620, "dependencies": [ { - "id": 58357150, - "addonId": 382216, - "type": 3, - "fileId": 3227802 + "id": 66323647, + "addonId": 453627, + "type": 2, + "fileId": 3350619 + }, + { + "id": 66323648, + "addonId": 238222, + "type": 2, + "fileId": 3350619 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3661890182, + "fingerprint": 3943365671, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 803622411, + "foldername": "LICENSE", + "fingerprint": 3262929571, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 28649168, + "fingerprint": 3380198306, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3642463421, + "foldername": "data", + "fingerprint": 2603296706, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2078024720, + "foldername": "info", + "fingerprint": 3204025215, "type": 3, "invalidFingerprint": false }, { - "foldername": "personality.mixins.json", - "fingerprint": 2797283708, + "foldername": "logo.png", + "fingerprint": 3365032926, "type": 3, "invalidFingerprint": false }, { - "foldername": "personality.refmap.json", - "fingerprint": 2478861883, + "foldername": "pack.mcmeta", + "fingerprint": 4035234439, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 216447918, + "packageFingerprint": 1589661685, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -11496,12 +11970,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -11509,18 +11977,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2203001, - "projectId": 415974, - "packageFingerprintId": 618471746, + "renderCacheId": 2360788, + "projectId": 273744, + "packageFingerprintId": 683185965, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2771489, + "gameVersionMappingId": 3040463, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "personality-1.16.5-1.0.2.jar" + "FileNameOnDisk": "u_team_core-1.16.5-3.2.1.196.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9850631Z", - "dateUpdated": "2021-07-05T20:21:18.9850631Z", + "dateInstalled": "2021-07-05T20:20:57.5155814Z", + "dateUpdated": "2021-07-05T20:20:57.5155814Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -11534,17 +12002,17 @@ "installedTargets": null }, { - "addonID": 238372, + "addonID": 399022, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3182258, - "displayName": "Neat 1.7-27.jar", - "fileName": "Neat 1.7-27.jar", - "fileDate": "2021-01-26T16:34:51.23Z", - "fileLength": 21664, + "id": 3161147, + "displayName": "SpawnerFix-1.16.2-1.0.0.2.jar", + "fileName": "SpawnerFix-1.16.2-1.0.0.2.jar", + "fileDate": "2021-01-07T11:49:47.323Z", + "fileLength": 60588, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3182/258/Neat 1.7-27.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3161/147/SpawnerFix-1.16.2-1.0.0.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -11552,35 +12020,42 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1584426342, + "fingerprint": 452913603, "type": 3, "invalidFingerprint": false }, { - "foldername": "vazkii", - "fingerprint": 1897733620, + "foldername": "com", + "fingerprint": 4017679902, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 4211325937, + "foldername": "asm", + "fingerprint": 3758700893, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 3937101646, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1353712245, + "fingerprint": 3075940282, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 191411038, + "packageFingerprint": 2673409532, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -11606,6 +12081,12 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -11613,18 +12094,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2144082, - "projectId": 238372, - "packageFingerprintId": 593945817, + "renderCacheId": 2117081, + "projectId": 399022, + "packageFingerprintId": 581534932, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2675374, + "gameVersionMappingId": 2631374, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Neat 1.7-27.jar" + "FileNameOnDisk": "SpawnerFix-1.16.2-1.0.0.2.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3461189Z", - "dateUpdated": "2021-07-05T20:21:03.3461189Z", + "dateInstalled": "2021-07-05T20:20:57.5225798Z", + "dateUpdated": "2021-07-05T20:20:57.5225798Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -11638,56 +12119,104 @@ "installedTargets": null }, { - "addonID": 223852, + "addonID": 289412, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3402515, - "displayName": "StorageDrawers-1.16.3-8.3.0.jar", - "fileName": "StorageDrawers-1.16.3-8.3.0.jar", - "fileDate": "2021-07-27T04:54:34.703Z", - "fileLength": 500792, + "id": 3469837, + "displayName": "ftb-quests-forge-1605.3.5-build.64.jar", + "fileName": "ftb-quests-forge-1605.3.5-build.64.jar", + "fileDate": "2021-09-23T23:43:31.837Z", + "fileLength": 939623, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3402/515/StorageDrawers-1.16.3-8.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3469/837/ftb-quests-forge-1605.3.5-build.64.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 309674, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 404468, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 238086, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 404465, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 997917962, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 3371782786, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1729075938, + "foldername": "data", + "fingerprint": 1908987372, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 400019514, + "fingerprint": 1345485831, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 289885862, + "foldername": "pack.mcmeta", + "fingerprint": 239616976, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2933347059, + "foldername": "META-INF", + "fingerprint": 246062193, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 2391237473, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_FTBQuests1165_common_4a5ef85546a54440aaacb191ec872146", + "fingerprint": 3840500979, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1640644228, + "packageFingerprint": 3097798653, "gameVersion": [ - "1.16.3", "1.16.5", "Forge" ], @@ -11697,14 +12226,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "StorageDrawers-1.16.3-8.3.0.jar" + "FileNameOnDisk": "ftb-quests-forge-1605.3.5-build.64.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9542016Z", - "dateUpdated": "2021-07-27T20:19:56.5188218Z", - "dateLastUpdateAttempted": "2021-07-27T20:19:56.5188218Z", + "dateInstalled": "2021-07-05T20:20:57.5375822Z", + "dateUpdated": "2021-09-24T18:44:39.0782347Z", + "dateLastUpdateAttempted": "2021-09-24T18:44:39.0782347Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -11717,125 +12246,30 @@ "installedTargets": null }, { - "addonID": 361246, + "addonID": 251389, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3224872, - "displayName": "tanknull-2.3-1.16.4.jar", - "fileName": "tanknull-2.3-1.16.4.jar", - "fileDate": "2021-03-03T09:51:48.053Z", - "fileLength": 104601, + "id": 3443979, + "displayName": "IntegratedTunnels-1.16.5-1.8.6.jar", + "fileName": "IntegratedTunnels-1.16.5-1.8.6.jar", + "fileDate": "2021-08-30T17:31:12.17Z", + "fileLength": 591666, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3224/872/tanknull-2.3-1.16.4.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 1571104740, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "tfar", - "fingerprint": 137910794, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2964323020, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1305264911, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 2026934031, - "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2199157, - "projectId": 361246, - "packageFingerprintId": 616693214, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2765383, - "gameVersionId": 8203, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "tanknull-2.3-1.16.4.jar" - }, - "dateInstalled": "2021-07-05T20:21:03.380118Z", - "dateUpdated": "2021-07-05T20:21:03.380118Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 525447, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3468265, - "displayName": "jmi-1.16.5-0.3-20.jar", - "fileName": "jmi-1.16.5-0.3-20.jar", - "fileDate": "2021-09-22T07:45:21.627Z", - "fileLength": 32369, - "releaseType": 2, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3468/265/jmi-1.16.5-0.3-20.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3443/979/IntegratedTunnels-1.16.5-1.8.6.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3443980, "dependencies": [ { "id": 0, - "addonId": 32274, + "addonId": 232758, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 314906, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 245755, - "type": 2, + "addonId": 236307, + "type": 3, "fileId": 0 } ], @@ -11843,48 +12277,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 630855513, + "fingerprint": 2091418331, "type": 0, "invalidFingerprint": false }, { - "foldername": "frankv", - "fingerprint": 1126008471, + "foldername": "org", + "fingerprint": 170040213, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 629585932, + "foldername": "pack.mcmeta", + "fingerprint": 4044870590, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3000352658, + "foldername": "assets", + "fingerprint": 3961494986, "type": 0, "invalidFingerprint": false }, { - "foldername": "jmi.mixins.json", - "fingerprint": 1250536460, + "foldername": "logo_small.png", + "fingerprint": 3667489292, "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 3217472394, + "fingerprint": 152818033, "type": 0, "invalidFingerprint": false }, { - "foldername": "jmi.refmap.json", - "fingerprint": 1493072104, + "foldername": "data", + "fingerprint": 2522231078, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 465523846, + "packageFingerprint": 1525529218, "gameVersion": [ "1.16.5", "Forge" @@ -11898,11 +12332,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "jmi-1.16.5-0.3-20.jar" + "FileNameOnDisk": "IntegratedTunnels-1.16.5-1.8.6.jar" }, - "dateInstalled": "2021-09-09T17:38:34.3676105Z", - "dateUpdated": "2021-09-22T17:26:03.1631779Z", - "dateLastUpdateAttempted": "2021-09-22T17:26:03.1631779Z", + "dateInstalled": "2021-07-05T20:19:25.2909342Z", + "dateUpdated": "2021-08-31T18:22:25.6272784Z", + "dateLastUpdateAttempted": "2021-08-31T18:22:25.6272784Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -11915,17 +12349,17 @@ "installedTargets": null }, { - "addonID": 445025, + "addonID": 401273, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3255801, - "displayName": "time-in-a-bottle-1.1.0.jar", - "fileName": "time-in-a-bottle-1.1.0.jar", - "fileDate": "2021-03-30T16:33:15.897Z", - "fileLength": 37088, + "id": 3459238, + "displayName": "DustrialDecor-1.2.9.jar", + "fileName": "DustrialDecor-1.2.9.jar", + "fileDate": "2021-09-14T10:41:31.5Z", + "fileLength": 386102, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3255/801/time-in-a-bottle-1.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3459/238/DustrialDecor-1.2.9.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -11933,79 +12367,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 178001372, - "type": 3, + "fingerprint": 1968031179, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2663929952, - "type": 3, + "foldername": "blueduck", + "fingerprint": 2496080695, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1378863282, - "type": 3, + "fingerprint": 3695811546, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3601938090, - "type": 3, + "fingerprint": 2226651332, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, + "fingerprint": 3380797652, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2016503207, + "packageFingerprint": 3685840737, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2240380, - "projectId": 445025, - "packageFingerprintId": 634692760, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2828275, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "time-in-a-bottle-1.1.0.jar" + "FileNameOnDisk": "DustrialDecor-1.2.9.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9690637Z", - "dateUpdated": "2021-07-05T20:21:18.9690637Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:57.5475792Z", + "dateUpdated": "2021-09-15T16:53:13.3865615Z", + "dateLastUpdateAttempted": "2021-09-15T16:53:13.3865615Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -12018,79 +12427,78 @@ "installedTargets": null }, { - "addonID": 353434, + "addonID": 416935, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348573, - "displayName": "BetterBurning-1.16.5-6.0.7.jar", - "fileName": "BetterBurning-1.16.5-6.0.7.jar", - "fileDate": "2021-06-12T02:34:58.16Z", - "fileLength": 11273, - "releaseType": 3, + "id": 3476240, + "displayName": "Valhelsia Core - 16.0.11", + "fileName": "valhelsia_core-16.0.11.jar", + "fileDate": "2021-09-29T09:57:12.173Z", + "fileLength": 147622, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/573/BetterBurning-1.16.5-6.0.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/240/valhelsia_core-16.0.11.jar", "isAlternate": false, - "alternateFileId": 3348574, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3349186275, - "type": 3, + "fingerprint": 1112319723, + "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 4266099226, - "type": 3, + "fingerprint": 366878019, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1275515862, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2334717132, - "type": 3, + "fingerprint": 1007223261, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 1587881114, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "sortableGameVersion": [ + }, { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "foldername": "valhelsia_core.mixins.json", + "fingerprint": 2846435592, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "foldername": "valhelsia_core.refmap.json", + "fingerprint": 3069778118, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 7973234, + "gameVersion": [ + "1.16.5" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2358233, - "projectId": 353434, - "packageFingerprintId": 681989367, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034741, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "BetterBurning-1.16.5-6.0.7.jar" + "FileNameOnDisk": "valhelsia_core-16.0.11.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9990636Z", - "dateUpdated": "2021-07-05T20:21:18.9990636Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-07-05T20:20:57.5175818Z", + "dateUpdated": "2021-10-02T18:33:03.6606507Z", + "dateLastUpdateAttempted": "2021-10-02T18:33:03.6606507Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12102,72 +12510,66 @@ "installedTargets": null }, { - "addonID": 433862, + "addonID": 331936, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3414676, - "displayName": "Architects-Palette-1.16.4-1.1.4.jar", - "fileName": "Architects-Palette-1.16.4-1.1.4.jar", - "fileDate": "2021-08-05T23:18:05.077Z", - "fileLength": 952330, + "id": 3441028, + "displayName": "citadel-1.8.1-1.16.5", + "fileName": "citadel-1.8.1-1.16.5.jar", + "fileDate": "2021-08-27T18:01:33.18Z", + "fileLength": 482439, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3414/676/Architects-Palette-1.16.4-1.1.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3441/28/citadel-1.8.1-1.16.5.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3441030, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1921484492, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "architectspalette", - "fingerprint": 4095034718, + "fingerprint": 3456560468, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 3131250241, + "foldername": "com", + "fingerprint": 1229433154, "type": 0, "invalidFingerprint": false }, { - "foldername": "architects_palette.mixins.json", - "fingerprint": 4129071417, + "foldername": "assets", + "fingerprint": 3761291802, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3511204508, + "foldername": "citadel.mixins.json", + "fingerprint": 1094208602, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1057543536, + "foldername": "citadel.png", + "fingerprint": 1603167710, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2119478912, + "fingerprint": 4253522632, "type": 0, "invalidFingerprint": false }, { - "foldername": "architects_palette.refmap.json", - "fingerprint": 3209901540, + "foldername": "citadel.refmap.json", + "fingerprint": 3921905408, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2909365477, + "packageFingerprint": 1338246451, "gameVersion": [ "1.16.3", "1.16.5", @@ -12180,14 +12582,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Architects-Palette-1.16.4-1.1.4.jar" + "FileNameOnDisk": "citadel-1.8.1-1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:21:19.0040623Z", - "dateUpdated": "2021-08-07T17:47:39.0912341Z", - "dateLastUpdateAttempted": "2021-08-07T17:47:39.0912341Z", + "dateInstalled": "2021-07-05T20:20:57.5245785Z", + "dateUpdated": "2021-08-28T19:47:21.6153562Z", + "dateLastUpdateAttempted": "2021-08-28T19:47:21.6153562Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -12200,87 +12602,91 @@ "installedTargets": null }, { - "addonID": 428277, + "addonID": 251407, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3451660, - "displayName": "kubejs-blood-magic-1605.1.1-build.3.jar", - "fileName": "kubejs-blood-magic-1605.1.1-build.3.jar", - "fileDate": "2021-09-06T00:52:01.107Z", - "fileLength": 11666, + "id": 3222131, + "displayName": "ClientTweaks_1.16.3-5.3.0.jar", + "fileName": "ClientTweaks_1.16.3-5.3.0.jar", + "fileDate": "2021-02-28T22:12:48.44Z", + "fileLength": 31203, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3451/660/kubejs-blood-magic-1605.1.1-build.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3222/131/ClientTweaks_1.16.3-5.3.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 224791, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238086, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2036439221, - "type": 0, + "fingerprint": 3215016202, + "type": 3, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 4174743390, - "type": 0, + "foldername": "net", + "fingerprint": 1184065800, + "type": 3, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 2104185026, - "type": 0, + "foldername": "assets", + "fingerprint": 3401440730, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2942097348, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs.plugins.txt", - "fingerprint": 3296210164, - "type": 0, + "fingerprint": 1097162695, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 280110829, + "packageFingerprint": 3821383761, "gameVersion": [ "1.16.3", "1.16.5", - "1.16.4", - "1.16.2" + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2195574, + "projectId": 251407, + "packageFingerprintId": 614879926, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2759535, + "gameVersionId": 8056, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "kubejs-blood-magic-1605.1.1-build.3.jar" + "FileNameOnDisk": "ClientTweaks_1.16.3-5.3.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3631205Z", - "dateUpdated": "2021-09-08T17:54:14.952827Z", - "dateLastUpdateAttempted": "2021-09-08T17:54:14.952827Z", + "dateInstalled": "2021-07-05T20:20:57.5235787Z", + "dateUpdated": "2021-07-05T20:20:57.5235787Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -12293,17 +12699,17 @@ "installedTargets": null }, { - "addonID": 438332, + "addonID": 231275, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3413938, - "displayName": "supermartijn642configlib-1.0.9-mc1.16", - "fileName": "supermartijn642configlib-1.0.9-mc1.16.jar", - "fileDate": "2021-08-05T12:22:20.98Z", - "fileLength": 153654, + "id": 3222705, + "displayName": "Ding-1.16.5-1.3.0.jar", + "fileName": "Ding-1.16.5-1.3.0.jar", + "fileDate": "2021-03-01T12:06:24.023Z", + "fileLength": 10483, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3413/938/supermartijn642configlib-1.0.9-mc1.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3222/705/Ding-1.16.5-1.3.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -12311,53 +12717,80 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3418836823, - "type": 0, + "fingerprint": 1546344329, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2309091922, - "type": 0, + "foldername": "me", + "fingerprint": 313153936, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3700933549, - "type": 0, + "foldername": "assets", + "fingerprint": 2813156055, + "type": 3, "invalidFingerprint": false }, { - "foldername": "supermartijn642configlib.png", - "fingerprint": 4041043145, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 1839000226, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 928048254, + "packageFingerprint": 862704897, "gameVersion": [ "1.16.3", - "1.16.1", - "1.16", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2196358, + "projectId": 231275, + "packageFingerprintId": 615239585, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2760785, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "supermartijn642configlib-1.0.9-mc1.16.jar" + "FileNameOnDisk": "Ding-1.16.5-1.3.0.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9760635Z", - "dateUpdated": "2021-08-05T20:52:48.2261373Z", - "dateLastUpdateAttempted": "2021-08-05T20:52:48.2261373Z", + "dateInstalled": "2021-07-05T20:20:57.5345808Z", + "dateUpdated": "2021-07-05T20:20:57.5345808Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -12370,23 +12803,29 @@ "installedTargets": null }, { - "addonID": 240630, + "addonID": 361026, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3435305, - "displayName": "JustEnoughResources-1.16.5-0.12.1.128", - "fileName": "JustEnoughResources-1.16.5-0.12.1.128.jar", - "fileDate": "2021-08-23T10:40:40.45Z", - "fileLength": 235574, - "releaseType": 3, + "id": 3475377, + "displayName": "occultism-1.15.0.jar", + "fileName": "occultism-1.16.5-1.15.0.jar", + "fileDate": "2021-09-28T06:53:57.103Z", + "fileLength": 4268046, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3435/305/JustEnoughResources-1.16.5-0.12.1.128.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3475/377/occultism-1.16.5-1.15.0.jar", "isAlternate": false, - "alternateFileId": 3435306, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 238222, + "addonId": 309927, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 306770, "type": 3, "fileId": 0 } @@ -12395,33 +12834,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2985696359, + "fingerprint": 595215799, "type": 0, "invalidFingerprint": false }, { - "foldername": "jeresources", - "fingerprint": 30993055, + "foldername": "com", + "fingerprint": 728086299, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1963540963, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2295823985, + "fingerprint": 3656974019, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2621008982, + "foldername": "data", + "fingerprint": 918326848, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "occultism.png", + "fingerprint": 3138228409, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 522225892, + "packageFingerprint": 2179117715, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -12429,15 +12883,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "JustEnoughResources-1.16.5-0.12.1.128.jar" + "FileNameOnDisk": "occultism-1.16.5-1.15.0.jar" }, - "dateInstalled": "2021-09-26T19:22:53.8191174Z", - "dateUpdated": "2021-09-26T19:22:53.8311161Z", - "dateLastUpdateAttempted": "2021-09-26T19:22:53.8311161Z", - "status": 5, + "dateInstalled": "2021-09-25T14:41:32.7416314Z", + "dateUpdated": "2021-10-02T18:16:40.8324708Z", + "dateLastUpdateAttempted": "2021-10-02T18:16:40.8324708Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12449,112 +12903,58 @@ "installedTargets": null }, { - "addonID": 268560, + "addonID": 255902, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3206392, - "displayName": "Mekanism-1.16.5-10.0.21.448.jar", - "fileName": "Mekanism-1.16.5-10.0.21.448.jar", - "fileDate": "2021-02-16T19:07:58.13Z", - "fileLength": 8962038, + "id": 3172803, + "displayName": "Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar", + "fileName": "Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar", + "fileDate": "2021-01-18T18:27:43.81Z", + "fileLength": 24109, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3206/392/Mekanism-1.16.5-10.0.21.448.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3172/803/Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar", "isAlternate": false, - "alternateFileId": 3206394, + "alternateFileId": 0, "dependencies": [ { - "id": 56995137, - "addonId": 267602, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995132, - "addonId": 248020, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995136, - "addonId": 324164, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995139, - "addonId": 238222, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995134, - "addonId": 220318, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995138, - "addonId": 253449, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995135, - "addonId": 245211, - "type": 2, - "fileId": 3206392 - }, - { - "id": 56995133, - "addonId": 226410, - "type": 2, - "fileId": 3206392 + "id": 54705139, + "addonId": 283644, + "type": 3, + "fileId": 3172803 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 678764324, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "mekanism", - "fingerprint": 163431123, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 72123268, + "fingerprint": 2142761029, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 595176173, + "foldername": "shadows", + "fingerprint": 3420901665, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1535469697, + "fingerprint": 4071149343, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3151715192, + "fingerprint": 13905160, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3390446425, + "packageFingerprint": 169920213, "gameVersion": [ "1.16.5", - "Forge" + "1.16.4" ], "sortableGameVersion": [ { @@ -12564,10 +12964,10 @@ "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -12575,18 +12975,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2175396, - "projectId": 268560, - "packageFingerprintId": 607016319, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2727613, - "gameVersionId": 4458, + "renderCacheId": 2131829, + "projectId": 255902, + "packageFingerprintId": 588540686, + "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", + "gameVersionMappingId": 2654359, + "gameVersionId": 8134, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Mekanism-1.16.5-10.0.21.448.jar" + "FileNameOnDisk": "Wither-Skeleton-Tweaks-1.16.4-5.3.0.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5203908Z", - "dateUpdated": "2021-07-05T20:20:52.5203908Z", + "dateInstalled": "2021-07-05T20:20:57.5235787Z", + "dateUpdated": "2021-07-05T20:20:57.5235787Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -12600,67 +13000,42 @@ "installedTargets": null }, { - "addonID": 362393, + "addonID": 280510, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3249309, - "displayName": "Atmospheric 1.16.5 - 3.1.0", - "fileName": "atmospheric-1.16.5-3.1.0.jar", - "fileDate": "2021-03-23T23:17:33.693Z", - "fileLength": 1527658, - "releaseType": 1, + "id": 3348562, + "displayName": "AttributeFix-1.16.5-10.1.3.jar", + "fileName": "AttributeFix-1.16.5-10.1.3.jar", + "fileDate": "2021-06-12T02:34:33.59Z", + "fileLength": 9554, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3249/309/atmospheric-1.16.5-3.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/562/AttributeFix-1.16.5-10.1.3.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 59801256, - "addonId": 382216, - "type": 3, - "fileId": 3249309 - } - ], + "alternateFileId": 3348565, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3564679160, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 3503516366, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1135583533, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 2657682908, + "fingerprint": 2633036203, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2550136508, + "foldername": "net", + "fingerprint": 3829182254, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1611599056, + "fingerprint": 3694468057, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3579867340, + "packageFingerprint": 1953602614, "gameVersion": [ "1.16.5", "Forge" @@ -12684,18 +13059,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2231843, - "projectId": 362393, - "packageFingerprintId": 630899680, + "renderCacheId": 2358222, + "projectId": 280510, + "packageFingerprintId": 681989173, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2814140, + "gameVersionMappingId": 3034708, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "atmospheric-1.16.5-3.1.0.jar" + "FileNameOnDisk": "AttributeFix-1.16.5-10.1.3.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1753943Z", - "dateUpdated": "2021-07-05T20:31:05.1753943Z", + "dateInstalled": "2021-07-05T20:20:57.5115829Z", + "dateUpdated": "2021-07-05T20:20:57.5115829Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -12709,17 +13084,17 @@ "installedTargets": null }, { - "addonID": 361276, + "addonID": 461710, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474391, - "displayName": "lootr-1.16.5-0.0.8.23.jar", - "fileName": "lootr-1.16.5-0.0.8.23.jar", - "fileDate": "2021-09-27T00:13:51.543Z", - "fileLength": 198584, + "id": 3348960, + "displayName": "redstonepen-1.16.5-1.0.6.jar", + "fileName": "redstonepen-1.16.5-1.0.6.jar", + "fileDate": "2021-06-12T10:30:37.903Z", + "fileLength": 223014, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/391/lootr-1.16.5-0.0.8.23.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/960/redstonepen-1.16.5-1.0.6.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -12727,48 +13102,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 429005880, + "fingerprint": 2647255887, "type": 0, "invalidFingerprint": false }, { - "foldername": "noobanidus", - "fingerprint": 3566295206, + "foldername": ".gitversion-redstonepen", + "fingerprint": 2190935792, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1896879357, + "fingerprint": 122194153, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2690589465, + "fingerprint": 926804945, "type": 0, "invalidFingerprint": false }, { - "foldername": "lootr.mixins.json", - "fingerprint": 3491726392, + "foldername": "logo.png", + "fingerprint": 421868000, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 792060934, + "fingerprint": 375492961, "type": 0, "invalidFingerprint": false }, { - "foldername": "lootr.refmap.json", - "fingerprint": 2384464821, + "foldername": "wile", + "fingerprint": 2976262479, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3645318813, + "packageFingerprint": 2506627402, "gameVersion": [ "1.16.5", "Forge", @@ -12780,15 +13155,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "lootr-1.16.5-0.0.8.23.jar" + "FileNameOnDisk": "redstonepen-1.16.5-1.0.6.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3531188Z", - "dateUpdated": "2021-09-27T17:47:35.5904154Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:35.5904154Z", - "status": 4, + "dateInstalled": "2021-08-04T13:31:47.4586549Z", + "dateUpdated": "2021-08-04T13:31:47.4756546Z", + "dateLastUpdateAttempted": "2021-08-04T13:31:47.4756546Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12800,72 +13175,73 @@ "installedTargets": null }, { - "addonID": 268566, + "addonID": 412525, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3206395, - "displayName": "MekanismGenerators-1.16.5-10.0.21.448.jar", - "fileName": "MekanismGenerators-1.16.5-10.0.21.448.jar", - "fileDate": "2021-02-16T19:08:01.257Z", - "fileLength": 945876, + "id": 3329216, + "displayName": "LibX-1.16.3-1.0.76.jar", + "fileName": "LibX-1.16.3-1.0.76.jar", + "fileDate": "2021-05-29T09:37:10.79Z", + "fileLength": 373391, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3206/395/MekanismGenerators-1.16.5-10.0.21.448.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3329/216/LibX-1.16.3-1.0.76.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 56995140, - "addonId": 268560, - "type": 3, - "fileId": 3206395 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2824892800, + "fingerprint": 3657830091, "type": 3, "invalidFingerprint": false }, { - "foldername": "mekanism", - "fingerprint": 4064440780, + "foldername": "io", + "fingerprint": 2457004889, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 4175009076, + "foldername": "assets", + "fingerprint": 2712045477, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 595176173, + "foldername": "pack.mcmeta", + "fingerprint": 1678410490, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 881097483, + "foldername": "libx.mixins.json", + "fingerprint": 1759726830, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1879495570, + "foldername": "libx.refmap.json", + "fingerprint": 4244098989, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1746161766, + "packageFingerprint": 3832570968, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -12877,6 +13253,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -12884,18 +13266,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2175399, - "projectId": 268566, - "packageFingerprintId": 607022986, + "renderCacheId": 2334188, + "projectId": 412525, + "packageFingerprintId": 672033904, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2727620, + "gameVersionMappingId": 2986737, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "MekanismGenerators-1.16.5-10.0.21.448.jar" + "FileNameOnDisk": "LibX-1.16.3-1.0.76.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", + "dateInstalled": "2021-07-05T20:20:57.5395841Z", + "dateUpdated": "2021-07-05T20:20:57.5395841Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -12909,103 +13291,80 @@ "installedTargets": null }, { - "addonID": 268567, + "addonID": 376737, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3206396, - "displayName": "MekanismTools-1.16.5-10.0.21.448.jar", - "fileName": "MekanismTools-1.16.5-10.0.21.448.jar", - "fileDate": "2021-02-16T19:08:02.9Z", - "fileLength": 352787, + "id": 3472990, + "displayName": "PrettyPipes-1.9.5.jar", + "fileName": "PrettyPipes-1.9.5.jar", + "fileDate": "2021-09-26T15:07:24.677Z", + "fileLength": 1552424, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3206/396/MekanismTools-1.16.5-10.0.21.448.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3472/990/PrettyPipes-1.9.5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 56995141, - "addonId": 268560, - "type": 3, - "fileId": 3206396 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1971079856, - "type": 3, + "fingerprint": 2643377313, + "type": 0, "invalidFingerprint": false }, { - "foldername": "mekanism", - "fingerprint": 1307450485, - "type": 3, + "foldername": "de", + "fingerprint": 2171597558, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1353343892, - "type": 3, + "foldername": "assets", + "fingerprint": 2911328373, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 595176173, - "type": 3, + "foldername": "data", + "fingerprint": 2242770304, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 808996551, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 2949935882, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 699725023, - "type": 3, + "foldername": "org", + "fingerprint": 2104039922, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1369952707, + "packageFingerprint": 3727158791, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2175400, - "projectId": 268567, - "packageFingerprintId": 607023464, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2727623, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "MekanismTools-1.16.5-10.0.21.448.jar" + "FileNameOnDisk": "PrettyPipes-1.9.5.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:20:57.519581Z", + "dateUpdated": "2021-09-26T18:55:18.5073968Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:18.5073968Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13018,90 +13377,145 @@ "installedTargets": null }, { - "addonID": 317716, + "addonID": 291737, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3231248, - "displayName": "curiouselytra-forge-1.16.5-4.0.2.3.jar", - "fileName": "curiouselytra-forge-1.16.5-4.0.2.3.jar", - "fileDate": "2021-03-08T07:41:20.407Z", - "fileLength": 30182, + "id": 3404886, + "displayName": "thermal_innovation-1.16.5-1.3.0.jar", + "fileName": "thermal_innovation-1.16.5-1.3.0.jar", + "fileDate": "2021-07-29T04:33:31.177Z", + "fileLength": 167908, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3231/248/curiouselytra-forge-1.16.5-4.0.2.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3404/886/thermal_innovation-1.16.5-1.3.0.jar", "isAlternate": false, - "alternateFileId": 3231249, + "alternateFileId": 0, "dependencies": [ { - "id": 58527867, - "addonId": 309927, - "type": 3, - "fileId": 3231248 - }, - { - "id": 58527866, - "addonId": 308989, + "id": 0, + "addonId": 222880, "type": 3, - "fileId": 3231248 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 428491447, - "type": 3, + "fingerprint": 1896560957, + "type": 0, "invalidFingerprint": false }, { - "foldername": "top", - "fingerprint": 3889961128, - "type": 3, + "foldername": "assets", + "fingerprint": 3039217023, + "type": 0, "invalidFingerprint": false }, { - "foldername": "CHANGELOG.md", - "fingerprint": 1342753430, - "type": 3, + "foldername": "cofh", + "fingerprint": 2681824150, + "type": 0, "invalidFingerprint": false }, { - "foldername": "curiouselytra_icon.png", - "fingerprint": 2512131936, - "type": 3, + "foldername": "data", + "fingerprint": 3353708073, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2883822936, - "type": 3, + "foldername": "logo.png", + "fingerprint": 721674231, + "type": 0, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 3368067102, + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "thermal_innovation.png", + "fingerprint": 1060679981, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 3270795898, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "thermal_innovation-1.16.5-1.3.0.jar" + }, + "dateInstalled": "2021-07-05T20:20:57.5305805Z", + "dateUpdated": "2021-07-30T07:15:31.4413543Z", + "dateLastUpdateAttempted": "2021-07-30T07:15:31.4413543Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 224633, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3107222, + "displayName": "PassthroughSigns-1.16.4-2.3.7.jar", + "fileName": "PassthroughSigns-1.16.4-2.3.7.jar", + "fileDate": "2020-11-09T22:56:55.35Z", + "fileLength": 10676, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3107/222/PassthroughSigns-1.16.4-2.3.7.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 2014619178, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1111621113, + "foldername": "com", + "fingerprint": 2308490179, "type": 3, "invalidFingerprint": false }, { - "foldername": "README.md", - "fingerprint": 347289972, + "foldername": "pack.mcmeta", + "fingerprint": 441247734, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2772272810, + "packageFingerprint": 2033324903, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -13127,6 +13541,12 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -13134,18 +13554,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2207254, - "projectId": 317716, - "packageFingerprintId": 620099809, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2777829, - "gameVersionId": 4458, + "renderCacheId": 2048548, + "projectId": 224633, + "packageFingerprintId": 551233401, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2525332, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "curiouselytra-forge-1.16.5-4.0.2.3.jar" + "FileNameOnDisk": "PassthroughSigns-1.16.4-2.3.7.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", + "dateInstalled": "2021-07-05T20:20:57.5265805Z", + "dateUpdated": "2021-07-05T20:20:57.5265805Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -13159,23 +13579,23 @@ "installedTargets": null }, { - "addonID": 306549, + "addonID": 247007, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3445360, - "displayName": "Tips-1.16.5-4.0.10.jar", - "fileName": "Tips-1.16.5-4.0.10.jar", - "fileDate": "2021-08-31T23:16:31.333Z", - "fileLength": 63459, - "releaseType": 3, + "id": 3474905, + "displayName": "CommonCapabilities-1.16.5-2.7.1.jar", + "fileName": "CommonCapabilities-1.16.5-2.7.1.jar", + "fileDate": "2021-09-27T17:37:36.527Z", + "fileLength": 232695, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3445/360/Tips-1.16.5-4.0.10.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/905/CommonCapabilities-1.16.5-2.7.1.jar", "isAlternate": false, - "alternateFileId": 3445361, + "alternateFileId": 3474906, "dependencies": [ { "id": 0, - "addonId": 228525, + "addonId": 232758, "type": 3, "fileId": 0 } @@ -13184,30 +13604,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2382889519, + "fingerprint": 1750697612, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 871510552, + "foldername": "org", + "fingerprint": 792019091, "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 3590871681, + "fingerprint": 3744435153, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2496779235, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 867245095, + "fingerprint": 1769657426, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo_small.png", + "fingerprint": 2163496590, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 3091802498, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4225229060, + "packageFingerprint": 4255918634, "gameVersion": [ "1.16.5", "Forge" @@ -13221,11 +13659,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Tips-1.16.5-4.0.10.jar" + "FileNameOnDisk": "CommonCapabilities-1.16.5-2.7.1.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-09-02T12:00:16.9144647Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:16.9144647Z", + "dateInstalled": "2021-07-05T20:20:57.5465805Z", + "dateUpdated": "2021-09-27T17:47:39.9756577Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:39.9756577Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13238,17 +13676,17 @@ "installedTargets": null }, { - "addonID": 306555, + "addonID": 425973, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3421094, - "displayName": "Sound Device Options 1.4.3", - "fileName": "sounddeviceoptions-1.4.3.jar", - "fileDate": "2021-08-10T08:34:33.567Z", - "fileLength": 21663, + "id": 3221966, + "displayName": "Portable Stonecutter-1.16.4-1.3.4", + "fileName": "portable_stonecutter-1.16.4-1.3.4.jar", + "fileDate": "2021-02-28T19:57:29.49Z", + "fileLength": 69181, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3421/94/sounddeviceoptions-1.4.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3221/966/portable_stonecutter-1.16.4-1.3.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -13256,48 +13694,78 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2123611148, - "type": 0, + "fingerprint": 4288451836, + "type": 3, "invalidFingerprint": false }, { - "foldername": "ichttt", - "fingerprint": 2351971303, - "type": 0, + "foldername": "xyz", + "fingerprint": 2721563245, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2303297079, - "type": 0, + "fingerprint": 3230716175, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2602360141, - "type": 0, + "foldername": "data", + "fingerprint": 1550201691, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 3857328094, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 121299131, + "packageFingerprint": 3472649707, "gameVersion": [ "1.16.5", - "Forge" + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2195366, + "projectId": 425973, + "packageFingerprintId": 614796319, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2759239, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "sounddeviceoptions-1.4.3.jar" + "FileNameOnDisk": "portable_stonecutter-1.16.4-1.3.4.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-08-11T14:53:09.3637473Z", - "dateLastUpdateAttempted": "2021-08-11T14:53:09.3637473Z", + "dateInstalled": "2021-07-05T20:20:57.5335796Z", + "dateUpdated": "2021-07-05T20:20:57.5335796Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13310,17 +13778,17 @@ "installedTargets": null }, { - "addonID": 486392, + "addonID": 374529, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3459739, - "displayName": "flywheel-1.16-0.2.4.jar", - "fileName": "flywheel-1.16-0.2.4.jar", - "fileDate": "2021-09-14T20:36:33.653Z", - "fileLength": 422516, - "releaseType": 2, + "id": 3432890, + "displayName": "pitg-1.16.5-2.0.1.jar", + "fileName": "pitg-1.16.5-2.0.1.jar", + "fileDate": "2021-08-20T23:51:53.28Z", + "fileLength": 575719, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3459/739/flywheel-1.16-0.2.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3432/890/pitg-1.16.5-2.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -13328,48 +13796,36 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3978269137, + "fingerprint": 929513396, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2754567531, + "foldername": "tv", + "fingerprint": 1007499520, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 91055496, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "flywheel.mixins.json", - "fingerprint": 2357842713, + "fingerprint": 1536104327, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 102418554, + "foldername": "data", + "fingerprint": 2574383883, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2941651391, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "flywheel.refmap.json", - "fingerprint": 910748664, + "fingerprint": 4225796759, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 638063654, + "packageFingerprint": 2146737499, "gameVersion": [ "1.16.5", "Forge" @@ -13383,11 +13839,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "flywheel-1.16-0.2.4.jar" + "FileNameOnDisk": "pitg-1.16.5-2.0.1.jar" }, - "dateInstalled": "2021-08-03T05:55:50.362607Z", - "dateUpdated": "2021-09-18T21:18:48.9433663Z", - "dateLastUpdateAttempted": "2021-09-18T21:18:48.9433663Z", + "dateInstalled": "2021-07-05T20:20:57.5385865Z", + "dateUpdated": "2021-08-22T11:02:43.5730672Z", + "dateLastUpdateAttempted": "2021-08-22T11:02:43.5730672Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13400,55 +13856,56 @@ "installedTargets": null }, { - "addonID": 237307, + "addonID": 327554, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3398000, - "displayName": "CosmeticArmorReworked-1.16.5-v4.jar", - "fileName": "CosmeticArmorReworked-1.16.5-v4.jar", - "fileDate": "2021-07-23T05:53:21.86Z", - "fileLength": 86844, + "id": 3400041, + "displayName": "simplefarming-1.16.5-1.3.8.jar", + "fileName": "simplefarming-1.16.5-1.3.8.jar", + "fileDate": "2021-07-25T02:28:27.743Z", + "fileLength": 3145190, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3398/0/CosmeticArmorReworked-1.16.5-v4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3400/41/simplefarming-1.16.5-1.3.8.jar", "isAlternate": false, - "alternateFileId": 3398001, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3538467986, + "fingerprint": 1387198613, "type": 0, "invalidFingerprint": false }, { - "foldername": "LICENSE.txt", - "fingerprint": 213336249, + "foldername": "enemeez", + "fingerprint": 3250076997, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3268752115, + "fingerprint": 2887811277, "type": 0, "invalidFingerprint": false }, { - "foldername": "lain", - "fingerprint": 797966852, + "foldername": "data", + "fingerprint": 3771737789, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4050523715, + "fingerprint": 1438559181, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1715933748, + "packageFingerprint": 1768405112, "gameVersion": [ + "1.16", "1.16.5", "Forge" ], @@ -13458,14 +13915,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CosmeticArmorReworked-1.16.5-v4.jar" + "FileNameOnDisk": "simplefarming-1.16.5-1.3.8.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5079Z", - "dateUpdated": "2021-07-25T20:32:13.2667651Z", - "dateLastUpdateAttempted": "2021-07-25T20:32:13.2667651Z", + "dateInstalled": "2021-07-05T20:21:03.3481192Z", + "dateUpdated": "2021-07-25T20:33:11.1378232Z", + "dateLastUpdateAttempted": "2021-07-25T20:33:11.1378232Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13478,71 +13935,130 @@ "installedTargets": null }, { - "addonID": 450659, + "addonID": 32274, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3462166, - "displayName": "smallships-1.16.5-1.10.3.jar", - "fileName": "smallships-1.16.5-1.10.3.jar", - "fileDate": "2021-09-17T18:20:50.9Z", - "fileLength": 2507943, - "releaseType": 3, + "id": 3397059, + "displayName": "journeymap-1.16.5-5.7.3", + "fileName": "journeymap-1.16.5-5.7.3.jar", + "fileDate": "2021-07-22T13:43:44.23Z", + "fileLength": 6868069, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3462/166/smallships-1.16.5-1.10.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3397/59/journeymap-1.16.5-5.7.3.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3397060, + "dependencies": [ + { + "id": 0, + "addonId": 226005, + "type": 4, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2790741597, + "fingerprint": 3352046944, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3195867458, + "foldername": "journeymap", + "fingerprint": 2912876585, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "modinfo", + "fingerprint": 2573368323, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "net", + "fingerprint": 3964265600, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 495594178, + "fingerprint": 3629551885, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2655009653, + "foldername": "journeymap.mixins.json", + "fingerprint": 3259271730, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3344424320, + "foldername": "journeymap.png", + "fingerprint": 3357985534, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "license.txt", + "fingerprint": 3206912840, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 2930129283, "type": 0, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 1816028860, + "foldername": "potion-effects-shift.js", + "fingerprint": 4254871621, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "render-event-transformer.js", + "fingerprint": 2784044465, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "info", + "fingerprint": 614130607, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "NOTICE.txt", + "fingerprint": 3411389661, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "about.html", + "fingerprint": 1421502970, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "org", + "fingerprint": 1462564042, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "jetty-dir.css", + "fingerprint": 4183154058, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3282488310, + "packageFingerprint": 2703253920, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -13550,14 +14066,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "smallships-1.16.5-1.10.3.jar" + "FileNameOnDisk": "journeymap-1.16.5-5.7.3.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2583373Z", - "dateUpdated": "2021-09-18T21:22:11.7679943Z", - "dateLastUpdateAttempted": "2021-09-18T21:22:11.7679943Z", + "dateInstalled": "2021-07-05T20:21:03.3351195Z", + "dateUpdated": "2021-07-25T20:32:52.6740534Z", + "dateLastUpdateAttempted": "2021-07-25T20:32:52.6740534Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13570,17 +14086,17 @@ "installedTargets": null }, { - "addonID": 282001, + "addonID": 441647, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3434680, - "displayName": "cc-tweaked-1.16.5-1.98.2.jar", - "fileName": "cc-tweaked-1.16.5-1.98.2.jar", - "fileDate": "2021-08-22T17:05:47.14Z", - "fileLength": 1865152, + "id": 3453471, + "displayName": "FramedBlocks-2.10.0.jar", + "fileName": "FramedBlocks-2.10.0.jar", + "fileDate": "2021-09-07T21:41:00.093Z", + "fileLength": 535672, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3434/680/cc-tweaked-1.16.5-1.98.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3453/471/FramedBlocks-2.10.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -13588,54 +14104,66 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1130747466, + "fingerprint": 4073729383, "type": 0, "invalidFingerprint": false }, { - "foldername": "dan200", - "fingerprint": 2612172011, + "foldername": "team", + "fingerprint": 1322605695, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3511260374, + "foldername": "xfacthd", + "fingerprint": 3176010730, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2208217621, + "foldername": ".cache", + "fingerprint": 2730059780, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.png", - "fingerprint": 1002598164, + "foldername": "assets", + "fingerprint": 1188843323, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 1153495610, + "foldername": "data", + "fingerprint": 296462197, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1379925519, + "foldername": "framedblocks.mixin.json", + "fingerprint": 3441545819, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 1751164419, + "foldername": "logo.png", + "fingerprint": 789975261, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3799552759, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "framedblocks.refmap.json", + "fingerprint": 307935087, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2562506460, + "packageFingerprint": 1193117242, "gameVersion": [ "1.16.5", "Forge" @@ -13649,11 +14177,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cc-tweaked-1.16.5-1.98.2.jar" + "FileNameOnDisk": "FramedBlocks-2.10.0.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5193918Z", - "dateUpdated": "2021-08-25T05:56:16.6505152Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:16.6505152Z", + "dateInstalled": "2021-07-10T17:55:07.2563413Z", + "dateUpdated": "2021-09-08T17:53:19.2414871Z", + "dateLastUpdateAttempted": "2021-09-08T17:53:19.2414871Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13666,82 +14194,69 @@ "installedTargets": null }, { - "addonID": 309927, + "addonID": 486392, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3456953, - "displayName": "curios-forge-1.16.5-4.0.5.3.jar", - "fileName": "curios-forge-1.16.5-4.0.5.3.jar", - "fileDate": "2021-09-11T22:21:49.353Z", - "fileLength": 246281, - "releaseType": 1, + "id": 3459739, + "displayName": "flywheel-1.16-0.2.4.jar", + "fileName": "flywheel-1.16-0.2.4.jar", + "fileDate": "2021-09-14T20:36:33.653Z", + "fileLength": 422516, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3456/953/curios-forge-1.16.5-4.0.5.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3459/739/flywheel-1.16-0.2.4.jar", "isAlternate": false, - "alternateFileId": 3456954, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4256455901, + "fingerprint": 3978269137, "type": 0, "invalidFingerprint": false }, { - "foldername": "top", - "fingerprint": 2804167027, + "foldername": "com", + "fingerprint": 2754567531, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 904727021, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "CHANGELOG.md", - "fingerprint": 1167743156, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "curios_icon.png", - "fingerprint": 1224242090, + "fingerprint": 91055496, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 4248303262, + "foldername": "flywheel.mixins.json", + "fingerprint": 2357842713, "type": 0, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 3550732819, + "foldername": "logo.png", + "fingerprint": 102418554, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2759340961, + "fingerprint": 2941651391, "type": 0, "invalidFingerprint": false }, { - "foldername": "README.md", - "fingerprint": 4172690372, + "foldername": "flywheel.refmap.json", + "fingerprint": 910748664, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 920080633, + "packageFingerprint": 638063654, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -13752,11 +14267,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "curios-forge-1.16.5-4.0.5.3.jar" + "FileNameOnDisk": "flywheel-1.16-0.2.4.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3411189Z", - "dateUpdated": "2021-09-15T16:52:53.8725531Z", - "dateLastUpdateAttempted": "2021-09-15T16:52:53.8725531Z", + "dateInstalled": "2021-08-03T05:55:50.362607Z", + "dateUpdated": "2021-09-18T21:18:48.9433663Z", + "dateLastUpdateAttempted": "2021-09-18T21:18:48.9433663Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13769,90 +14284,125 @@ "installedTargets": null }, { - "addonID": 351264, + "addonID": 238086, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3452303, - "displayName": "Kotlin for Forge 1.15.1", - "fileName": "kotlinforforge-1.15.1-obf.jar", - "fileDate": "2021-09-06T17:53:03.31Z", - "fileLength": 6683413, + "id": 3476601, + "displayName": "kubejs-forge-1605.3.18-build.141.jar", + "fileName": "kubejs-forge-1605.3.18-build.141.jar", + "fileDate": "2021-09-29T19:08:19.02Z", + "fileLength": 850681, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3452/303/kotlinforforge-1.15.1-obf.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/601/kubejs-forge-1605.3.18-build.141.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 268655, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 416294, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 1262130341, + "foldername": "data", + "fingerprint": 3279136865, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3994551163, + "foldername": "kubejs-common.mixins.json", + "fingerprint": 2796111738, "type": 0, "invalidFingerprint": false }, { - "foldername": "thedarkcolour", - "fingerprint": 348560608, + "foldername": "assets", + "fingerprint": 2083650698, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kubejs_logo.png", + "fingerprint": 658118443, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kubejs-common-refmap.json", + "fingerprint": 2607262402, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kubejs.plugins.txt", + "fingerprint": 2117761820, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2664257206, + "fingerprint": 1290654324, "type": 0, "invalidFingerprint": false }, { - "foldername": "kotlinx", - "fingerprint": 190327772, + "foldername": "kubejs.mixins.json", + "fingerprint": 3372627309, "type": 0, "invalidFingerprint": false }, { - "foldername": "DebugProbesKt.bin", - "fingerprint": 3678533875, + "foldername": "META-INF", + "fingerprint": 319174324, "type": 0, "invalidFingerprint": false }, { - "foldername": "kotlin", - "fingerprint": 2265153921, + "foldername": "dev", + "fingerprint": 3835847390, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 2223804006, + "foldername": "architectury_inject_KubeJS1165_common_50fdb9eedad74cb7974c212aa0feec32", + "fingerprint": 1235254752, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kubejs-forge-refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1677492753, + "packageFingerprint": 764324113, "gameVersion": [ - "1.16-Snapshot", - "1.16.3", - "1.15-Snapshot", - "1.16.1", - "1.14.4", - "1.14.1", - "1.15", - "1.16", - "1.14.3", "1.16.5", - "1.14", - "1.15.2", - "1.14.2", - "1.16.4", - "1.16.2", - "1.14-Snapshot", - "1.15.1" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -13863,12 +14413,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kotlinforforge-1.15.1-obf.jar" + "FileNameOnDisk": "kubejs-forge-1605.3.18-build.141.jar" }, - "dateInstalled": "2021-09-27T04:02:25.6149583Z", - "dateUpdated": "2021-09-27T04:02:25.6269586Z", - "dateLastUpdateAttempted": "2021-09-27T04:02:25.6269586Z", - "status": 5, + "dateInstalled": "2021-09-28T18:08:09.9226898Z", + "dateUpdated": "2021-10-02T18:14:12.8349593Z", + "dateLastUpdateAttempted": "2021-10-02T18:14:12.8349593Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13880,42 +14430,79 @@ "installedTargets": null }, { - "addonID": 435051, + "addonID": 309674, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3164842, - "displayName": "Shift n Scroll on Mac 1.16.4.0.0.1.s1", - "fileName": "shiftnscrollonmac-1.16.4-0.0.1.s1.jar", - "fileDate": "2021-01-11T02:45:20.913Z", - "fileLength": 7459, + "id": 3376819, + "displayName": "item-filters-forge-1605.2.5-build.9.jar", + "fileName": "item-filters-forge-1605.2.5-build.9.jar", + "fileDate": "2021-07-05T00:30:35.13Z", + "fileLength": 106801, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3164/842/shiftnscrollonmac-1.16.4-0.0.1.s1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3376/819/item-filters-forge-1605.2.5-build.9.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 2208835400, + "foldername": "itemfilters-common.mixins.json", + "fingerprint": 3895545159, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3023886237, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3407176033, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3670627474, + "foldername": "item-filters-common-refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1284734594, + "fingerprint": 4007635963, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "META-INF", + "fingerprint": 185804119, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 2819232880, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_ItemFilters1165_common_1193252d27c84c9d916d77f0c87ce283", + "fingerprint": 1897237996, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2576483913, + "packageFingerprint": 4059505426, "gameVersion": [ "1.16.5", "Forge", @@ -13930,11 +14517,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "shiftnscrollonmac-1.16.4-0.0.1.s1.jar" + "FileNameOnDisk": "item-filters-forge-1605.2.5-build.9.jar" }, - "dateInstalled": "2021-07-31T19:25:03.7581489Z", - "dateUpdated": "2021-07-31T19:25:03.8661448Z", - "dateLastUpdateAttempted": "2021-07-31T19:25:03.8661448Z", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-07-05T20:31:37.5784675Z", + "dateLastUpdateAttempted": "2021-07-05T20:31:37.5784675Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -13947,17 +14534,17 @@ "installedTargets": null }, { - "addonID": 363569, + "addonID": 363363, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3443597, - "displayName": "[2.0.0 / 1.16.5] Macaw's Windows", - "fileName": "mcw-windows-2.0.0-mc1.16.5.jar", - "fileDate": "2021-08-30T09:44:57.623Z", - "fileLength": 775690, + "id": 3470966, + "displayName": "Extreme Sound Muffler 3.15 - Forge 1.16.5", + "fileName": "extremeSoundMuffler-3.15_1.16.5.jar", + "fileDate": "2021-09-25T12:21:48.053Z", + "fileLength": 283646, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3443/597/mcw-windows-2.0.0-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3470/966/extremeSoundMuffler-3.15_1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -13965,46 +14552,45 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1823841224, + "fingerprint": 1240450862, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1915046793, + "fingerprint": 3878571952, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2074495638, + "fingerprint": 2159168, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2941861502, + "foldername": "esm_logo.png", + "fingerprint": 1632690954, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2076017508, + "fingerprint": 2066463772, "type": 0, "invalidFingerprint": false }, { - "foldername": "windowslogo.png", - "fingerprint": 2971042943, + "foldername": "extremesoundmuffler.refmap.json", + "fingerprint": 823211581, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1242939671, + "packageFingerprint": 1435304898, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -14012,14 +14598,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcw-windows-2.0.0-mc1.16.5.jar" + "FileNameOnDisk": "extremeSoundMuffler-3.15_1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3341184Z", - "dateUpdated": "2021-08-31T18:22:24.3562395Z", - "dateLastUpdateAttempted": "2021-08-31T18:22:24.3562395Z", + "dateInstalled": "2021-07-05T20:21:03.3831197Z", + "dateUpdated": "2021-09-25T14:37:02.399646Z", + "dateLastUpdateAttempted": "2021-09-25T14:37:02.399646Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14032,83 +14618,97 @@ "installedTargets": null }, { - "addonID": 261924, + "addonID": 347706, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3332379, - "displayName": "FarmingForBlockheads_1.16.5-7.3.1.jar", - "fileName": "FarmingForBlockheads_1.16.5-7.3.1.jar", - "fileDate": "2021-06-01T09:11:48.307Z", - "fileLength": 282034, + "id": 3424919, + "displayName": "RFToolsBuilder - 1.16-3.1.2", + "fileName": "rftoolsbuilder-1.16-3.1.2.jar", + "fileDate": "2021-08-14T05:25:08.283Z", + "fileLength": 541026, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3332/379/FarmingForBlockheads_1.16.5-7.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3424/919/rftoolsbuilder-1.16-3.1.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 233105, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 270789, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 326041, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 245211, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 194273907, - "type": 3, + "fingerprint": 3788617393, + "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 2138447866, - "type": 3, + "foldername": "mcjty", + "fingerprint": 568163916, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 619786569, - "type": 3, + "fingerprint": 3076156737, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1269960286, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 1047313438, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2071239246, - "type": 3, + "foldername": "data", + "fingerprint": 2469026570, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2248587174, + "packageFingerprint": 3107207587, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2338264, - "projectId": 261924, - "packageFingerprintId": 673947769, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2994889, - "gameVersionId": 8203, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "FarmingForBlockheads_1.16.5-7.3.1.jar" + "FileNameOnDisk": "rftoolsbuilder-1.16-3.1.2.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5423923Z", - "dateUpdated": "2021-07-05T20:20:52.5423923Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-10T17:55:07.2603391Z", + "dateUpdated": "2021-08-14T19:13:11.7262117Z", + "dateLastUpdateAttempted": "2021-08-14T19:13:11.7262117Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14121,117 +14721,73 @@ "installedTargets": null }, { - "addonID": 409371, + "addonID": 519973, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3217067, - "displayName": "meetyourfight-1.16.5-1.1.2.jar", - "fileName": "meetyourfight-1.16.5-1.1.2.jar", - "fileDate": "2021-02-25T19:39:06.987Z", - "fileLength": 155486, + "id": 3456696, + "displayName": " tconplanner-1.16.5-1.1.0", + "fileName": "tconplanner-1.16.5-1.1.0.jar", + "fileDate": "2021-09-11T17:44:33.853Z", + "fileLength": 91258, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3217/67/meetyourfight-1.16.5-1.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3456/696/tconplanner-1.16.5-1.1.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 57702621, - "addonId": 405077, - "type": 2, - "fileId": 3217067 - }, - { - "id": 57702622, - "addonId": 309927, + "id": 0, + "addonId": 74072, "type": 3, - "fileId": 3217067 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 497403191, - "type": 3, + "fingerprint": 3780888486, + "type": 0, "invalidFingerprint": false }, { - "foldername": "lykrast", - "fingerprint": 1826879218, - "type": 3, + "foldername": "net", + "fingerprint": 369200167, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2319687881, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 2959280668, - "type": 3, + "fingerprint": 352316897, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1027373573, - "type": 3, + "fingerprint": 1602026690, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2079575776, + "packageFingerprint": 3716136557, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2189283, - "projectId": 409371, - "packageFingerprintId": 612767180, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2750360, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2017-09-17T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "meetyourfight-1.16.5-1.1.2.jar" + "FileNameOnDisk": "tconplanner-1.16.5-1.1.0.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-11T18:07:20.3428008Z", + "dateUpdated": "2021-09-11T18:07:20.3598032Z", + "dateLastUpdateAttempted": "2021-09-11T18:07:20.3598032Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14244,102 +14800,59 @@ "installedTargets": null }, { - "addonID": 245174, + "addonID": 267193, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3361748, - "displayName": "Ender Storage 1.16.5-2.8.0.168-universal", - "fileName": "EnderStorage-1.16.5-2.8.0.168-universal.jar", - "fileDate": "2021-06-23T02:38:31.833Z", - "fileLength": 214797, + "id": 3436684, + "displayName": "Chunk Pregenerator-V1.16-3.1.1", + "fileName": "Chunk Pregenerator-V1.16-3.1.1.jar", + "fileDate": "2021-08-23T17:48:03.24Z", + "fileLength": 443474, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3361/748/EnderStorage-1.16.5-2.8.0.168-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3436/684/Chunk Pregenerator-V1.16-3.1.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 67089758, - "addonId": 242818, - "type": 3, - "fileId": 3361748 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2465419853, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 1741201014, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "LICENSE.txt", - "fingerprint": 3073539858, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1639442627, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "codechicken", - "fingerprint": 1633749891, - "type": 3, + "fingerprint": 453566642, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1705870988, - "type": 3, + "foldername": "pregenerator", + "fingerprint": 2918504312, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3414590961, - "type": 3, + "fingerprint": 1438559181, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 858512634, + "packageFingerprint": 4213455804, "gameVersion": [ "1.16.5" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2375052, - "projectId": 245174, - "packageFingerprintId": 689847341, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3068243, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "EnderStorage-1.16.5-2.8.0.168-universal.jar" + "FileNameOnDisk": "Chunk Pregenerator-V1.16-3.1.1.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3811198Z", - "dateUpdated": "2021-07-05T20:21:03.3811198Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:03.3721197Z", + "dateUpdated": "2021-08-25T05:56:33.1205011Z", + "dateLastUpdateAttempted": "2021-08-25T05:56:33.1205011Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14352,115 +14865,92 @@ "installedTargets": null }, { - "addonID": 250763, + "addonID": 287342, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3380280, - "displayName": "RFToolsControl - 1.16-4.0.11", - "fileName": "rftoolscontrol-1.16-4.0.11.jar", - "fileDate": "2021-07-07T16:51:39.4Z", - "fileLength": 615168, - "releaseType": 1, + "id": 3446253, + "displayName": "titanium-1.16.5-3.2.8.5-20.jar", + "fileName": "titanium-1.16.5-3.2.8.5-20.jar", + "fileDate": "2021-09-01T18:13:01.963Z", + "fileLength": 635346, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3380/280/rftoolscontrol-1.16-4.0.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3446/253/titanium-1.16.5-3.2.8.5-20.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 68281240, - "addonId": 233105, - "type": 3, - "fileId": 3380280 - }, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 68281238, - "addonId": 245211, - "type": 2, - "fileId": 3380280 + "foldername": "META-INF", + "fingerprint": 1011221335, + "type": 0, + "invalidFingerprint": false }, { - "id": 68281239, - "addonId": 270789, - "type": 2, - "fileId": 3380280 + "foldername": "com", + "fingerprint": 1120020810, + "type": 0, + "invalidFingerprint": false }, { - "id": 68281237, - "addonId": 326041, - "type": 3, - "fileId": 3380280 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 2019200650, - "type": 3, + "foldername": "LICENSE.txt", + "fingerprint": 1136524626, + "type": 0, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 345349831, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 3273911401, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 945044135, - "type": 3, + "fingerprint": 988698250, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2138234017, - "type": 3, + "foldername": "mcmod.info", + "fingerprint": 973258688, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 586754434, - "type": 3, + "fingerprint": 1368271518, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "LICENSE.html", + "fingerprint": 3618638319, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2371023085, + "packageFingerprint": 3046559515, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2398193, - "projectId": 250763, - "packageFingerprintId": 700569496, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3111828, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolscontrol-1.16-4.0.11.jar" + "FileNameOnDisk": "titanium-1.16.5-3.2.8.5-20.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2643391Z", - "dateUpdated": "2021-07-10T17:55:07.2643391Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:03.3611195Z", + "dateUpdated": "2021-09-02T12:00:16.1534623Z", + "dateLastUpdateAttempted": "2021-09-02T12:00:16.1534623Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14473,95 +14963,72 @@ "installedTargets": null }, { - "addonID": 301034, + "addonID": 428277, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3390770, - "displayName": "entangled-1.3.6-mc1.16.5", - "fileName": "entangled-1.3.6-mc1.16.5.jar", - "fileDate": "2021-07-16T15:31:16.117Z", - "fileLength": 100293, + "id": 3451660, + "displayName": "kubejs-blood-magic-1605.1.1-build.3.jar", + "fileName": "kubejs-blood-magic-1605.1.1-build.3.jar", + "fileDate": "2021-09-06T00:52:01.107Z", + "fileLength": 11666, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3390/770/entangled-1.3.6-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3451/660/kubejs-blood-magic-1605.1.1-build.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 438332, + "addonId": 224791, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 454372, + "addonId": 238086, "type": 3, "fileId": 0 - }, - { - "id": 0, - "addonId": 245211, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 253449, - "type": 2, - "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1430591938, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 380727526, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1674089544, + "fingerprint": 2036439221, "type": 0, "invalidFingerprint": false }, { - "foldername": "entangled.png", - "fingerprint": 2977040850, + "foldername": "dev", + "fingerprint": 4174743390, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 729597033, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 2104185026, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2120620978, + "foldername": "pack.mcmeta", + "fingerprint": 2942097348, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1042306422, + "foldername": "kubejs.plugins.txt", + "fingerprint": 3296210164, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2263250420, + "packageFingerprint": 280110829, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -14569,14 +15036,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "entangled-1.3.6-mc1.16.5.jar" + "FileNameOnDisk": "kubejs-blood-magic-1605.1.1-build.3.jar" }, - "dateInstalled": "2021-07-15T18:43:58.4199855Z", - "dateUpdated": "2021-07-24T18:19:11.8446402Z", - "dateLastUpdateAttempted": "2021-07-24T18:19:11.8446402Z", + "dateInstalled": "2021-07-05T20:21:03.3631205Z", + "dateUpdated": "2021-09-08T17:54:14.952827Z", + "dateLastUpdateAttempted": "2021-09-08T17:54:14.952827Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14589,29 +15056,35 @@ "installedTargets": null }, { - "addonID": 431725, + "addonID": 287357, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3451857, - "displayName": "Advanced Peripherals 1.16.5 0.7.2r", - "fileName": "advancedperipherals-1.16.5-0.7.2r.jar", - "fileDate": "2021-09-06T05:21:25.133Z", - "fileLength": 638804, + "id": 3409900, + "displayName": "IntegratedCrafting-1.16.5-1.0.17.jar", + "fileName": "IntegratedCrafting-1.16.5-1.0.17.jar", + "fileDate": "2021-08-02T17:56:50.023Z", + "fileLength": 265234, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3451/857/advancedperipherals-1.16.5-0.7.2r.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3409/900/IntegratedCrafting-1.16.5-1.0.17.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3409901, "dependencies": [ { "id": 0, - "addonId": 306770, - "type": 2, + "addonId": 236307, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 282001, + "addonId": 232758, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 251389, "type": 3, "fileId": 0 } @@ -14620,48 +15093,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2191278770, + "fingerprint": 651679679, "type": 0, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 2866957555, + "foldername": "org", + "fingerprint": 2327455343, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 25144669, + "foldername": "pack.mcmeta", + "fingerprint": 1296569065, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1909641687, + "fingerprint": 2126579824, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1329933406, + "foldername": "logo_small.png", + "fingerprint": 1376710925, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "foldername": "logo.png", + "fingerprint": 3950789569, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.png", - "fingerprint": 2562449174, + "foldername": "data", + "fingerprint": 3192681218, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1515981420, + "packageFingerprint": 1446969018, "gameVersion": [ "1.16.5", "Forge" @@ -14675,11 +15148,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "advancedperipherals-1.16.5-0.7.2r.jar" + "FileNameOnDisk": "IntegratedCrafting-1.16.5-1.0.17.jar" }, - "dateInstalled": "2021-07-05T20:21:19.0010623Z", - "dateUpdated": "2021-09-08T17:52:10.0938359Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:10.0938359Z", + "dateInstalled": "2021-07-05T20:19:25.3039342Z", + "dateUpdated": "2021-08-02T19:50:42.4933794Z", + "dateLastUpdateAttempted": "2021-08-02T19:50:42.4933794Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14692,17 +15165,17 @@ "installedTargets": null }, { - "addonID": 317792, + "addonID": 450659, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3089690, - "displayName": "The Mighty Architect - mc1.16.3_v0.5", - "fileName": "mightyarchitect-mc1.16.3_v0.5.jar", - "fileDate": "2020-10-22T17:01:41.567Z", - "fileLength": 690774, - "releaseType": 2, + "id": 3462166, + "displayName": "smallships-1.16.5-1.10.3.jar", + "fileName": "smallships-1.16.5-1.10.3.jar", + "fileDate": "2021-09-17T18:20:50.9Z", + "fileLength": 2507943, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3089/690/mightyarchitect-mc1.16.3_v0.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3462/166/smallships-1.16.5-1.10.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -14710,98 +15183,68 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1281009558, - "type": 3, + "fingerprint": 2790741597, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 4059930146, - "type": 3, + "fingerprint": 3195867458, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3830620685, - "type": 3, + "fingerprint": 495594178, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2274920061, - "type": 3, + "foldername": "data", + "fingerprint": 2655009653, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3008705646, - "type": 3, + "foldername": "logo.png", + "fingerprint": 3344424320, + "type": 0, "invalidFingerprint": false }, { - "foldername": "palettes", - "fingerprint": 2559091357, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, "invalidFingerprint": false }, { - "foldername": "themes", - "fingerprint": 1669747802, - "type": 3, + "foldername": "de", + "fingerprint": 1816028860, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1913767755, + "packageFingerprint": 3282488310, "gameVersion": [ "1.16.3", "1.16.5", "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2027017, - "projectId": 317792, - "packageFingerprintId": 540096364, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2490254, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mightyarchitect-mc1.16.3_v0.5.jar" + "FileNameOnDisk": "smallships-1.16.5-1.10.3.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-10T17:55:07.2583373Z", + "dateUpdated": "2021-09-18T21:22:11.7679943Z", + "dateLastUpdateAttempted": "2021-09-18T21:22:11.7679943Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14814,17 +15257,17 @@ "installedTargets": null }, { - "addonID": 347954, + "addonID": 372372, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3232534, - "displayName": "Lollipop-1.16.5-3.2.9.jar", - "fileName": "Lollipop-1.16.5-3.2.9.jar", - "fileDate": "2021-03-09T09:33:52.11Z", - "fileLength": 683534, + "id": 3085736, + "displayName": "enigmatica-1.16.3-0.1.1.jar", + "fileName": "enigmatica-1.16.3-0.1.1.jar", + "fileDate": "2020-10-18T19:03:45.317Z", + "fileLength": 16418, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3232/534/Lollipop-1.16.5-3.2.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3085/736/enigmatica-1.16.3-0.1.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -14832,39 +15275,40 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1701288995, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "owmii", - "fingerprint": 2642039042, + "fingerprint": 4016046725, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2815777029, + "foldername": "com", + "fingerprint": 1832662880, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3717667376, + "fingerprint": 3380797652, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3157196806, + "packageFingerprint": 4104131162, "gameVersion": [ - "1.16.5" + "1.16.3", + "1.16.4" ], "sortableGameVersion": [ { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -14872,18 +15316,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2208928, - "projectId": 347954, - "packageFingerprintId": 621065954, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2780276, - "gameVersionId": 4458, + "renderCacheId": 2022243, + "projectId": 372372, + "packageFingerprintId": 538196021, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2483668, + "gameVersionId": 8056, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Lollipop-1.16.5-3.2.9.jar" + "FileNameOnDisk": "enigmatica-1.16.3-0.1.1.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3731177Z", - "dateUpdated": "2021-07-05T20:21:03.3731177Z", + "dateInstalled": "2021-07-05T20:21:03.3371157Z", + "dateUpdated": "2021-07-05T20:21:03.3371157Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -14897,55 +15341,79 @@ "installedTargets": null }, { - "addonID": 519973, + "addonID": 350006, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3456696, - "displayName": " tconplanner-1.16.5-1.1.0", - "fileName": "tconplanner-1.16.5-1.1.0.jar", - "fileDate": "2021-09-11T17:44:33.853Z", - "fileLength": 91258, + "id": 3402865, + "displayName": "RFToolsStorage - 1.16-2.0.13", + "fileName": "rftoolsstorage-1.16-2.0.13.jar", + "fileDate": "2021-07-27T13:34:54.713Z", + "fileLength": 367821, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3456/696/tconplanner-1.16.5-1.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3402/865/rftoolsstorage-1.16-2.0.13.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 74072, + "addonId": 233105, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 245211, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 326041, "type": 3, "fileId": 0 + }, + { + "id": 0, + "addonId": 270789, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3780888486, + "fingerprint": 1290791731, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 369200167, + "foldername": "mcjty", + "fingerprint": 3410540396, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 352316897, + "fingerprint": 73430381, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1602026690, + "fingerprint": 326947708, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3473661348, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3716136557, + "packageFingerprint": 2729936181, "gameVersion": [ "1.16.5", "Forge" @@ -14956,14 +15424,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2017-09-17T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "tconplanner-1.16.5-1.1.0.jar" + "FileNameOnDisk": "rftoolsstorage-1.16-2.0.13.jar" }, - "dateInstalled": "2021-09-11T18:07:20.3428008Z", - "dateUpdated": "2021-09-11T18:07:20.3598032Z", - "dateLastUpdateAttempted": "2021-09-11T18:07:20.3598032Z", + "dateInstalled": "2021-07-05T20:21:03.35712Z", + "dateUpdated": "2021-07-27T20:19:58.5278217Z", + "dateLastUpdateAttempted": "2021-07-27T20:19:58.5278217Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14976,99 +15444,91 @@ "installedTargets": null }, { - "addonID": 306626, + "addonID": 271740, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472977, - "displayName": "NaturesAura-34.3.jar", - "fileName": "NaturesAura-34.3.jar", - "fileDate": "2021-09-26T14:53:52.83Z", - "fileLength": 1381468, + "id": 3172881, + "displayName": "Toast-Control-1.16.4-4.3.1.jar", + "fileName": "Toast-Control-1.16.4-4.3.1.jar", + "fileDate": "2021-01-18T19:52:21.843Z", + "fileLength": 23929, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/977/NaturesAura-34.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3172/881/Toast-Control-1.16.4-4.3.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 306770, + "id": 54709027, + "addonId": 283644, "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 309927, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 313272, - "type": 2, - "fileId": 0 + "fileId": 3172881 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3699649426, - "type": 0, + "fingerprint": 1650513819, + "type": 3, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 4245162054, - "type": 0, + "foldername": "shadows", + "fingerprint": 3164139588, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3254365699, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 539793675, - "type": 0, + "fingerprint": 3127646252, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4034026680, - "type": 0, + "fingerprint": 2902809506, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 358643820, + "packageFingerprint": 2311015693, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2131940, + "projectId": 271740, + "packageFingerprintId": 588586840, + "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", + "gameVersionMappingId": 2654562, + "gameVersionId": 8134, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "NaturesAura-34.3.jar" + "FileNameOnDisk": "Toast-Control-1.16.4-4.3.1.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5333929Z", - "dateUpdated": "2021-09-26T18:55:19.9934226Z", - "dateLastUpdateAttempted": "2021-09-26T18:55:19.9934226Z", + "dateInstalled": "2021-07-05T20:21:03.3751191Z", + "dateUpdated": "2021-07-05T20:21:03.3751191Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15081,17 +15541,17 @@ "installedTargets": null }, { - "addonID": 446253, + "addonID": 435051, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3421281, - "displayName": "betterbiomeblend-1.16.4-1.2.9-forge.jar", - "fileName": "betterbiomeblend-1.16.4-1.2.9-forge.jar", - "fileDate": "2021-08-10T13:30:28.68Z", - "fileLength": 33454, + "id": 3164842, + "displayName": "Shift n Scroll on Mac 1.16.4.0.0.1.s1", + "fileName": "shiftnscrollonmac-1.16.4-0.0.1.s1.jar", + "fileDate": "2021-01-11T02:45:20.913Z", + "fileLength": 7459, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3421/281/betterbiomeblend-1.16.4-1.2.9-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3164/842/shiftnscrollonmac-1.16.4-0.0.1.s1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -15099,42 +15559,24 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3863957861, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "fionathemortal", - "fingerprint": 1978594109, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2957873138, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "betterbiomeblend.mixins.json", - "fingerprint": 3584393406, + "fingerprint": 2208835400, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3842706603, + "foldername": "com", + "fingerprint": 3670627474, "type": 0, "invalidFingerprint": false }, - { - "foldername": "betterbiomeblend.refmap.json", - "fingerprint": 3383798334, + { + "foldername": "pack.mcmeta", + "fingerprint": 1284734594, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3019499608, + "packageFingerprint": 2576483913, "gameVersion": [ "1.16.5", "Forge", @@ -15149,11 +15591,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "betterbiomeblend-1.16.4-1.2.9-forge.jar" + "FileNameOnDisk": "shiftnscrollonmac-1.16.4-0.0.1.s1.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3491181Z", - "dateUpdated": "2021-08-11T14:52:51.0302501Z", - "dateLastUpdateAttempted": "2021-08-11T14:52:51.0302501Z", + "dateInstalled": "2021-07-31T19:25:03.7581489Z", + "dateUpdated": "2021-07-31T19:25:03.8661448Z", + "dateLastUpdateAttempted": "2021-07-31T19:25:03.8661448Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15166,63 +15608,81 @@ "installedTargets": null }, { - "addonID": 388172, + "addonID": 231484, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3448099, - "displayName": "geckolib-forge-1.16.5-3.0.46.jar", - "fileName": "geckolib-forge-1.16.5-3.0.46.jar", - "fileDate": "2021-09-03T13:32:20.22Z", - "fileLength": 3379542, + "id": 3445172, + "displayName": "CookingForBlockheads_1.16.5-9.3.4.jar", + "fileName": "CookingForBlockheads_1.16.5-9.3.4.jar", + "fileDate": "2021-08-31T19:25:34.413Z", + "fileLength": 683179, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3448/99/geckolib-forge-1.16.5-3.0.46.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3445/172/CookingForBlockheads_1.16.5-9.3.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 222348, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 235328, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 242247, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 221857, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 827433959, + "fingerprint": 703957060, "type": 0, "invalidFingerprint": false }, { - "foldername": "software", - "fingerprint": 1491112003, + "foldername": "net", + "fingerprint": 760257851, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1572223755, + "fingerprint": 729017089, "type": 0, "invalidFingerprint": false }, { - "foldername": "geckolib.png", - "fingerprint": 4086380729, + "foldername": "data", + "fingerprint": 1907251185, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "org", - "fingerprint": 407977535, + "fingerprint": 1121832191, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 103042845, + "packageFingerprint": 2798864228, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -15230,14 +15690,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "geckolib-forge-1.16.5-3.0.46.jar" + "FileNameOnDisk": "CookingForBlockheads_1.16.5-9.3.4.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3581211Z", - "dateUpdated": "2021-09-03T18:46:33.8537888Z", - "dateLastUpdateAttempted": "2021-09-03T18:46:33.8537888Z", + "dateInstalled": "2021-07-05T20:21:03.3741186Z", + "dateUpdated": "2021-09-02T11:59:47.2464621Z", + "dateLastUpdateAttempted": "2021-09-02T11:59:47.2464621Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15250,17 +15710,17 @@ "installedTargets": null }, { - "addonID": 335673, + "addonID": 354522, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3250771, - "displayName": "dankstorage-3.16.jar", - "fileName": "dankstorage-3.16.jar", - "fileDate": "2021-03-25T14:10:44.453Z", - "fileLength": 158268, + "id": 3275942, + "displayName": "quickstack-4.0.1.jar", + "fileName": "quickstack-4.0.1.jar", + "fileDate": "2021-04-14T15:00:16.15Z", + "fileLength": 41661, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3250/771/dankstorage-3.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3275/942/quickstack-4.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -15268,54 +15728,113 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1034404246, + "fingerprint": 1164272100, "type": 3, "invalidFingerprint": false }, { - "foldername": "tfar", - "fingerprint": 3038451062, + "foldername": "scp002", + "fingerprint": 4120626592, "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 2661016923, + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, "type": 3, "invalidFingerprint": false - }, + } + ], + "packageFingerprint": 3556696154, + "gameVersion": [ + "1.16.5" + ], + "sortableGameVersion": [ { - "foldername": "assets", - "fingerprint": 3382637053, + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2265411, + "projectId": 354522, + "packageFingerprintId": 644069928, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2865490, + "gameVersionId": 8203, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "quickstack-4.0.1.jar" + }, + "dateInstalled": "2021-07-05T20:21:03.3511181Z", + "dateUpdated": "2021-07-05T20:21:03.3511181Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 361246, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3224872, + "displayName": "tanknull-2.3-1.16.4.jar", + "fileName": "tanknull-2.3-1.16.4.jar", + "fileDate": "2021-03-03T09:51:48.053Z", + "fileLength": 104601, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3224/872/tanknull-2.3-1.16.4.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1571104740, "type": 3, "invalidFingerprint": false }, { - "foldername": "dankstorage.mixins.json", - "fingerprint": 1477469161, + "foldername": "tfar", + "fingerprint": 137910794, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1136729427, + "foldername": "assets", + "fingerprint": 2964323020, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 676596830, + "foldername": "data", + "fingerprint": 1305264911, "type": 3, "invalidFingerprint": false }, { - "foldername": "dankstorage.refmap.json", - "fingerprint": 1637630964, + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2586721171, + "packageFingerprint": 2026934031, "gameVersion": [ "1.16.5" ], @@ -15332,18 +15851,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2233723, - "projectId": 335673, - "packageFingerprintId": 631724792, + "renderCacheId": 2199157, + "projectId": 361246, + "packageFingerprintId": 616693214, "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2817446, + "gameVersionMappingId": 2765383, "gameVersionId": 8203, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "dankstorage-3.16.jar" + "FileNameOnDisk": "tanknull-2.3-1.16.4.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9542016Z", - "dateUpdated": "2021-07-05T20:20:47.9542016Z", + "dateInstalled": "2021-07-05T20:21:03.380118Z", + "dateUpdated": "2021-07-05T20:21:03.380118Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -15357,70 +15876,64 @@ "installedTargets": null }, { - "addonID": 268655, + "addonID": 446253, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3437962, - "displayName": "GameStages-Forge-1.16.5-7.3.10.jar", - "fileName": "GameStages-Forge-1.16.5-7.3.10.jar", - "fileDate": "2021-08-24T20:03:23.883Z", - "fileLength": 63718, - "releaseType": 3, + "id": 3421281, + "displayName": "betterbiomeblend-1.16.4-1.2.9-forge.jar", + "fileName": "betterbiomeblend-1.16.4-1.2.9-forge.jar", + "fileDate": "2021-08-10T13:30:28.68Z", + "fileLength": 33454, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3437/962/GameStages-Forge-1.16.5-7.3.10.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3421/281/betterbiomeblend-1.16.4-1.2.9-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 228525, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3333913414, + "fingerprint": 3863957861, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 540451952, + "foldername": "fionathemortal", + "fingerprint": 1978594109, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2112833506, + "foldername": "assets", + "fingerprint": 2957873138, "type": 0, "invalidFingerprint": false }, { - "foldername": "mod_logo.png", - "fingerprint": 3615909690, + "foldername": "betterbiomeblend.mixins.json", + "fingerprint": 3584393406, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 1175285496, + "foldername": "pack.mcmeta", + "fingerprint": 3842706603, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 962224717, + "foldername": "betterbiomeblend.refmap.json", + "fingerprint": 3383798334, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 263692990, + "packageFingerprint": 3019499608, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -15431,11 +15944,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "GameStages-Forge-1.16.5-7.3.10.jar" + "FileNameOnDisk": "betterbiomeblend-1.16.4-1.2.9-forge.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5028989Z", - "dateUpdated": "2021-08-25T05:56:57.3715017Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:57.3715017Z", + "dateInstalled": "2021-07-05T20:21:03.3491181Z", + "dateUpdated": "2021-08-11T14:52:51.0302501Z", + "dateLastUpdateAttempted": "2021-08-11T14:52:51.0302501Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15448,45 +15961,83 @@ "installedTargets": null }, { - "addonID": 514397, + "addonID": 224791, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3425361, - "displayName": "NBT-Ingredient-Predicate-1.3.jar", - "fileName": "NBT-Ingredient-Predicate-1.3.jar", - "fileDate": "2021-08-14T18:37:11.713Z", - "fileLength": 5471, - "releaseType": 1, + "id": 3477631, + "displayName": "BloodMagic-1.16.4-3.1.5-25.jar", + "fileName": "BloodMagic-1.16.4-3.1.5-25.jar", + "fileDate": "2021-09-30T22:46:58.02Z", + "fileLength": 9500507, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3425/361/NBT-Ingredient-Predicate-1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3477/631/BloodMagic-1.16.4-3.1.5-25.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3477632, + "dependencies": [ + { + "id": 0, + "addonId": 306770, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 253449, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 546140912, + "fingerprint": 4275781993, "type": 0, "invalidFingerprint": false }, { - "foldername": "us", - "fingerprint": 3587427883, + "foldername": "wayoftime", + "fingerprint": 2896115831, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 3890228788, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2008803942, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 673560321, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3725528100, + "fingerprint": 1354411325, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2870425848, + "packageFingerprint": 6829997, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -15494,15 +16045,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "NBT-Ingredient-Predicate-1.3.jar" + "FileNameOnDisk": "BloodMagic-1.16.4-3.1.5-25.jar" }, - "dateInstalled": "2021-08-13T17:53:21.4418285Z", - "dateUpdated": "2021-08-14T19:13:03.8312335Z", - "dateLastUpdateAttempted": "2021-08-14T19:13:03.8312335Z", - "status": 5, + "dateInstalled": "2021-07-05T20:21:03.3771196Z", + "dateUpdated": "2021-10-02T18:12:00.1484229Z", + "dateLastUpdateAttempted": "2021-10-02T18:12:00.1484229Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -15514,67 +16065,48 @@ "installedTargets": null }, { - "addonID": 421694, + "addonID": 238222, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3446503, - "displayName": "kubejs-thermal-1605.1.4-build.2.jar", - "fileName": "kubejs-thermal-1605.1.4-build.2.jar", - "fileDate": "2021-09-01T21:56:42.437Z", - "fileLength": 19861, - "releaseType": 1, + "id": 3438494, + "displayName": "jei-1.16.5-7.7.1.121.jar", + "fileName": "jei-1.16.5-7.7.1.121.jar", + "fileDate": "2021-08-25T06:28:30.36Z", + "fileLength": 814217, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3446/503/kubejs-thermal-1605.1.4-build.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3438/494/jei-1.16.5-7.7.1.121.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 238086, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 69163, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "kubejs.plugins.txt", - "fingerprint": 1170006305, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3337758313, + "foldername": "META-INF", + "fingerprint": 2317160737, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 3678918621, + "foldername": "mezz", + "fingerprint": 3778864182, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 1571371932, + "foldername": "pack.mcmeta", + "fingerprint": 1645019714, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 1161891988, + "foldername": "assets", + "fingerprint": 2041060550, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3498924808, + "packageFingerprint": 3158079338, "gameVersion": [ "1.16.5", "Forge" @@ -15588,11 +16120,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kubejs-thermal-1605.1.4-build.2.jar" + "FileNameOnDisk": "jei-1.16.5-7.7.1.121.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3661182Z", - "dateUpdated": "2021-09-02T12:00:02.5024629Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:02.5024629Z", + "dateInstalled": "2021-07-05T20:21:03.3651184Z", + "dateUpdated": "2021-08-26T19:09:25.9874397Z", + "dateLastUpdateAttempted": "2021-08-26T19:09:25.9874397Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15605,17 +16137,17 @@ "installedTargets": null }, { - "addonID": 407174, + "addonID": 74924, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3188120, - "displayName": "Shutup Experimental Settings! 1.0.3 MCV: 1.16.5", - "fileName": "shutupexperimentalsettings-1.0.3.jar", - "fileDate": "2021-01-31T20:52:15.273Z", - "fileLength": 4140, - "releaseType": 1, + "id": 3439180, + "displayName": "Mantle 1.6.123 for 1.16.5", + "fileName": "Mantle-1.16.5-1.6.123.jar", + "fileDate": "2021-08-25T22:02:55.607Z", + "fileLength": 742903, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3188/120/shutupexperimentalsettings-1.0.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3439/180/Mantle-1.16.5-1.6.123.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -15623,72 +16155,60 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 320847970, - "type": 3, + "fingerprint": 1004667897, + "type": 0, "invalidFingerprint": false }, { - "foldername": "corgitaco", - "fingerprint": 1863411352, - "type": 3, + "foldername": "slimeknights", + "fingerprint": 4098133632, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1510015062, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 120273643, - "type": 3, + "fingerprint": 3720854501, + "type": 0, "invalidFingerprint": false }, { - "foldername": "shutupexperimentalsettings.mixins.json", - "fingerprint": 2002995717, - "type": 3, + "foldername": "Mantle.png", + "fingerprint": 3296224890, + "type": 0, "invalidFingerprint": false }, { - "foldername": "shutupexperimentalsettings.refmap.json", - "fingerprint": 576557739, - "type": 3, + "foldername": "assets", + "fingerprint": 1734166776, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 577234596, + "packageFingerprint": 1203431666, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2151684, - "projectId": 407174, - "packageFingerprintId": 597028085, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2688506, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "shutupexperimentalsettings-1.0.3.jar" + "FileNameOnDisk": "Mantle-1.16.5-1.6.123.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:03.3541194Z", + "dateUpdated": "2021-08-26T19:09:30.6854897Z", + "dateLastUpdateAttempted": "2021-08-26T19:09:30.6854897Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15701,76 +16221,59 @@ "installedTargets": null }, { - "addonID": 245211, + "addonID": 459701, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3319255, - "displayName": "TheOneProbe - 1.16-3.1.4", - "fileName": "theoneprobe-1.16-3.1.4.jar", - "fileDate": "2021-05-22T13:26:45.78Z", - "fileLength": 327081, + "id": 3399554, + "displayName": "Catalogue 1.3.0", + "fileName": "catalogue-1.3.0-1.16.5.jar", + "fileDate": "2021-07-24T17:06:24.66Z", + "fileLength": 94861, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3319/255/theoneprobe-1.16-3.1.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3399/554/catalogue-1.3.0-1.16.5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 244651, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 270789, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 227083, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1307948644, + "fingerprint": 2059876328, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 537476041, + "foldername": "com", + "fingerprint": 2731586018, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1096082130, + "fingerprint": 1274697124, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3099463473, + "foldername": "catalogue.png", + "fingerprint": 2198241190, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2393313921, + "foldername": "pack.mcmeta", + "fingerprint": 3734479371, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 650328085, + "packageFingerprint": 1032240676, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -15778,14 +16281,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "theoneprobe-1.16-3.1.4.jar" + "FileNameOnDisk": "catalogue-1.3.0-1.16.5.jar" }, - "dateInstalled": "2021-09-20T04:14:01.0498938Z", - "dateUpdated": "2021-09-20T04:14:01.0899026Z", - "dateLastUpdateAttempted": "2021-09-20T04:14:01.0899026Z", + "dateInstalled": "2021-09-16T11:30:52.2001709Z", + "dateUpdated": "2021-09-16T11:30:52.2111504Z", + "dateLastUpdateAttempted": "2021-09-16T11:30:52.2111504Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15798,82 +16301,70 @@ "installedTargets": null }, { - "addonID": 222880, + "addonID": 361276, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3412300, - "displayName": "thermal_foundation-1.16.5-1.3.2.jar", - "fileName": "thermal_foundation-1.16.5-1.3.2.jar", - "fileDate": "2021-08-04T00:30:20.643Z", - "fileLength": 4430095, + "id": 3474391, + "displayName": "lootr-1.16.5-0.0.8.23.jar", + "fileName": "lootr-1.16.5-0.0.8.23.jar", + "fileDate": "2021-09-27T00:13:51.543Z", + "fileLength": 198584, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3412/300/thermal_foundation-1.16.5-1.3.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/391/lootr-1.16.5-0.0.8.23.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 69162, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1794248821, + "fingerprint": 429005880, "type": 0, "invalidFingerprint": false }, { - "foldername": "cofh", - "fingerprint": 3057857852, + "foldername": "noobanidus", + "fingerprint": 3566295206, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3078537305, + "fingerprint": 1896879357, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3340946445, + "fingerprint": 2690589465, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2229765295, + "foldername": "lootr.mixins.json", + "fingerprint": 3491726392, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "thermal_foundation.png", - "fingerprint": 2954702152, + "fingerprint": 792060934, "type": 0, "invalidFingerprint": false }, { - "foldername": "thermal_series.png", - "fingerprint": 3723551670, + "foldername": "lootr.refmap.json", + "fingerprint": 2384464821, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2482344754, + "packageFingerprint": 3645318813, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -15884,11 +16375,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_foundation-1.16.5-1.3.2.jar" + "FileNameOnDisk": "lootr-1.16.5-0.0.8.23.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4234722Z", - "dateUpdated": "2021-08-04T13:04:55.5768193Z", - "dateLastUpdateAttempted": "2021-08-04T13:04:55.5768193Z", + "dateInstalled": "2021-07-05T20:21:03.3531188Z", + "dateUpdated": "2021-09-27T17:47:35.5904154Z", + "dateLastUpdateAttempted": "2021-09-27T17:47:35.5904154Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15901,17 +16392,17 @@ "installedTargets": null }, { - "addonID": 277616, + "addonID": 520110, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3420107, - "displayName": "SoL-Carrot-1.16.5-1.10.1.jar", - "fileName": "SoL-Carrot-1.16.5-1.10.1.jar", - "fileDate": "2021-08-09T12:54:17.767Z", - "fileLength": 121064, + "id": 3477536, + "displayName": "Iceberg-1.16.5-1.0.11.jar", + "fileName": "Iceberg-1.16.5-1.0.11.jar", + "fileDate": "2021-09-30T21:00:41.2Z", + "fileLength": 46197, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3420/107/SoL-Carrot-1.16.5-1.10.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3477/536/Iceberg-1.16.5-1.0.11.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -15919,42 +16410,42 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 770890979, + "fingerprint": 3346167086, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2679126851, + "fingerprint": 3037381733, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo 160.png", - "fingerprint": 4228682874, + "foldername": "iceberg.mixins.json", + "fingerprint": 3580825262, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 701828344, + "foldername": "icon.png", + "fingerprint": 577472019, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3853847922, + "foldername": "pack.mcmeta", + "fingerprint": 2638007011, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2269927293, + "foldername": "iceberg.refmap.json", + "fingerprint": 736849517, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2227292078, + "packageFingerprint": 2607564172, "gameVersion": [ "1.16.5", "Forge" @@ -15965,15 +16456,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "SoL-Carrot-1.16.5-1.10.1.jar" + "FileNameOnDisk": "Iceberg-1.16.5-1.0.11.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5444125Z", - "dateUpdated": "2021-08-09T21:29:33.4199637Z", - "dateLastUpdateAttempted": "2021-08-09T21:29:33.4199637Z", - "status": 5, + "dateInstalled": "2021-09-17T18:18:50.3163976Z", + "dateUpdated": "2021-10-02T18:13:49.3718365Z", + "dateLastUpdateAttempted": "2021-10-02T18:13:49.3718365Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -15985,72 +16476,77 @@ "installedTargets": null }, { - "addonID": 396019, + "addonID": 291936, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3160833, - "displayName": "SaveYourPets-1.16.2-1.0.0.5.jar", - "fileName": "SaveYourPets-1.16.2-1.0.0.5.jar", - "fileDate": "2021-01-07T00:42:25.007Z", - "fileLength": 65230, + "id": 3297137, + "displayName": "findme-1.16.3-2.2.0.0.jar", + "fileName": "findme-1.16.3-2.2.0.0.jar", + "fileDate": "2021-05-03T15:28:10.1Z", + "fileLength": 30493, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3160/833/SaveYourPets-1.16.2-1.0.0.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3297/137/findme-1.16.3-2.2.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 62803795, + "addonId": 238222, + "type": 3, + "fileId": 3297137 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1729192994, + "fingerprint": 1320427214, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2799349549, + "fingerprint": 1150112572, "type": 3, "invalidFingerprint": false }, { - "foldername": "asm", - "fingerprint": 2143126825, + "foldername": "assets", + "fingerprint": 1789828301, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1465053331, + "foldername": "findme.mixins.json", + "fingerprint": 923617865, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 543606034, + "foldername": "mcmod.info", + "fingerprint": 149078902, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 201093375, + "foldername": "pack.mcmeta", + "fingerprint": 3273911401, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 25571737, + "foldername": "findme.refmap.json", + "fingerprint": 3560964079, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 651912613, + "packageFingerprint": 1009738247, "gameVersion": [ "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "sortableGameVersion": [ { @@ -16065,23 +16561,11 @@ "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -16089,18 +16573,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2116677, - "projectId": 396019, - "packageFingerprintId": 581365529, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2630668, - "gameVersionId": 4458, + "renderCacheId": 2292957, + "projectId": 291936, + "packageFingerprintId": 655500911, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2907293, + "gameVersionId": 8056, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "SaveYourPets-1.16.2-1.0.0.5.jar" + "FileNameOnDisk": "findme-1.16.3-2.2.0.0.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9641636Z", - "dateUpdated": "2021-07-05T20:20:47.9641636Z", + "dateInstalled": "2021-07-05T20:21:03.3591186Z", + "dateUpdated": "2021-07-05T20:21:03.3591186Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -16114,17 +16598,17 @@ "installedTargets": null }, { - "addonID": 284324, + "addonID": 499980, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3184796, - "displayName": "emojiful-1.16.4-2.1.4.jar", - "fileName": "emojiful-1.16.4-2.1.4.jar", - "fileDate": "2021-01-28T18:46:32.32Z", - "fileLength": 239634, + "id": 3476236, + "displayName": "selene-1.16.5-1.8.0.jar", + "fileName": "selene-1.16.5-1.8.0.jar", + "fileDate": "2021-09-29T09:41:36.637Z", + "fileLength": 216470, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3184/796/emojiful-1.16.4-2.1.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/236/selene-1.16.5-1.8.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16132,73 +16616,69 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1874247693, - "type": 3, + "fingerprint": 243796268, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1993229689, - "type": 3, + "foldername": "net", + "fingerprint": 4007407683, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2386744581, - "type": 3, + "fingerprint": 2350850469, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2131275852, - "type": 3, + "foldername": "icon.png", + "fingerprint": 2561671616, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, - "type": 3, + "fingerprint": 1438559181, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "selene.mixins.json", + "fingerprint": 1369264015, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "selene.refmap.json", + "fingerprint": 1953642943, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 408502814, + "packageFingerprint": 1302162671, "gameVersion": [ + "1.16.3", "1.16.5", + "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2147326, - "projectId": 284324, - "packageFingerprintId": 595260313, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2681099, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "emojiful-1.16.4-2.1.4.jar" + "FileNameOnDisk": "selene-1.16.5-1.8.0.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5243914Z", - "dateUpdated": "2021-07-05T20:20:52.5243914Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-07-10T17:55:07.2513379Z", + "dateUpdated": "2021-10-02T18:16:38.2314712Z", + "dateLastUpdateAttempted": "2021-10-02T18:16:38.2314712Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16210,42 +16690,67 @@ "installedTargets": null }, { - "addonID": 409429, + "addonID": 421694, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3442608, - "displayName": "configswapper-1.5.jar", - "fileName": "configswapper-1.5.jar", - "fileDate": "2021-08-29T10:00:49.773Z", - "fileLength": 20816, + "id": 3446503, + "displayName": "kubejs-thermal-1605.1.4-build.2.jar", + "fileName": "kubejs-thermal-1605.1.4-build.2.jar", + "fileDate": "2021-09-01T21:56:42.437Z", + "fileLength": 19861, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3442/608/configswapper-1.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3446/503/kubejs-thermal-1605.1.4-build.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 238086, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 69163, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 576235456, + "foldername": "kubejs.plugins.txt", + "fingerprint": 1170006305, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 4157166763, + "foldername": "pack.mcmeta", + "fingerprint": 3337758313, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 3678918621, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "META-INF", + "fingerprint": 1571371932, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 1161891988, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1788901389, + "packageFingerprint": 3498924808, "gameVersion": [ "1.16.5", "Forge" @@ -16256,14 +16761,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "configswapper-1.5.jar" + "FileNameOnDisk": "kubejs-thermal-1605.1.4-build.2.jar" }, - "dateInstalled": "2021-08-29T17:29:36.8913804Z", - "dateUpdated": "2021-08-29T17:29:36.9860939Z", - "dateLastUpdateAttempted": "2021-08-29T17:29:36.9860939Z", + "dateInstalled": "2021-07-05T20:21:03.3661182Z", + "dateUpdated": "2021-09-02T12:00:02.5024629Z", + "dateLastUpdateAttempted": "2021-09-02T12:00:02.5024629Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16276,23 +16781,23 @@ "installedTargets": null }, { - "addonID": 307788, + "addonID": 289712, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3425634, - "displayName": "rsrequestify-1.16.5-2.1.3.jar", - "fileName": "rsrequestify-1.16.5-2.1.3.jar", - "fileDate": "2021-08-14T23:35:26.71Z", - "fileLength": 61784, + "id": 3468014, + "displayName": "tetra-1.16.5-3.17.0.jar", + "fileName": "tetra-1.16.5-3.17.0.jar", + "fileDate": "2021-09-21T23:14:09.977Z", + "fileLength": 2990458, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3425/634/rsrequestify-1.16.5-2.1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3468/14/tetra-1.16.5-3.17.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 243076, + "addonId": 351914, "type": 3, "fileId": 0 } @@ -16301,45 +16806,52 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2909008428, + "fingerprint": 728194680, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 417099370, + "foldername": "se", + "fingerprint": 1050004352, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 943343185, + "fingerprint": 2681478273, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3052571584, + "fingerprint": 2851979133, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 2072392136, + "foldername": "pack.mcmeta", + "fingerprint": 4064848781, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2707499699, + "foldername": "tetra.mixins.json", + "fingerprint": 2565242496, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "tetra.refmap.json", + "fingerprint": 1482182319, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1460254527, + "packageFingerprint": 54417051, "gameVersion": [ "1.16.3", "1.16.5", + "Forge", "1.16.4" ], "hasInstallScript": false, @@ -16348,14 +16860,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rsrequestify-1.16.5-2.1.3.jar" + "FileNameOnDisk": "tetra-1.16.5-3.17.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3331219Z", - "dateUpdated": "2021-08-15T17:21:42.4826887Z", - "dateLastUpdateAttempted": "2021-08-15T17:21:42.4826887Z", + "dateInstalled": "2021-07-05T20:21:03.3441195Z", + "dateUpdated": "2021-09-22T17:51:12.9333836Z", + "dateLastUpdateAttempted": "2021-09-22T17:51:12.9333836Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16368,17 +16880,17 @@ "installedTargets": null }, { - "addonID": 459701, + "addonID": 388172, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3399554, - "displayName": "Catalogue 1.3.0", - "fileName": "catalogue-1.3.0-1.16.5.jar", - "fileDate": "2021-07-24T17:06:24.66Z", - "fileLength": 94861, + "id": 3448099, + "displayName": "geckolib-forge-1.16.5-3.0.46.jar", + "fileName": "geckolib-forge-1.16.5-3.0.46.jar", + "fileDate": "2021-09-03T13:32:20.22Z", + "fileLength": 3379542, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3399/554/catalogue-1.3.0-1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3448/99/geckolib-forge-1.16.5-3.0.46.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16386,41 +16898,45 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2059876328, + "fingerprint": 827433959, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2731586018, + "foldername": "software", + "fingerprint": 1491112003, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1274697124, + "fingerprint": 1572223755, "type": 0, "invalidFingerprint": false }, { - "foldername": "catalogue.png", - "fingerprint": 2198241190, + "foldername": "geckolib.png", + "fingerprint": 4086380729, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3734479371, + "fingerprint": 3380797652, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "org", + "fingerprint": 407977535, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1032240676, + "packageFingerprint": 103042845, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -16428,14 +16944,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "catalogue-1.3.0-1.16.5.jar" + "FileNameOnDisk": "geckolib-forge-1.16.5-3.0.46.jar" }, - "dateInstalled": "2021-09-16T11:30:52.2001709Z", - "dateUpdated": "2021-09-16T11:30:52.2111504Z", - "dateLastUpdateAttempted": "2021-09-16T11:30:52.2111504Z", + "dateInstalled": "2021-07-05T20:21:03.3581211Z", + "dateUpdated": "2021-09-03T18:46:33.8537888Z", + "dateLastUpdateAttempted": "2021-09-03T18:46:33.8537888Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16448,17 +16964,17 @@ "installedTargets": null }, { - "addonID": 460819, + "addonID": 363569, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3249059, - "displayName": " LazyDFU 0.1.3", - "fileName": "lazydfu-0.1.3.jar", - "fileDate": "2021-03-23T18:42:06.78Z", - "fileLength": 15258, + "id": 3443597, + "displayName": "[2.0.0 / 1.16.5] Macaw's Windows", + "fileName": "mcw-windows-2.0.0-mc1.16.5.jar", + "fileDate": "2021-08-30T09:44:57.623Z", + "fileLength": 775690, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3249/59/lazydfu-0.1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3443/597/mcw-windows-2.0.0-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16466,48 +16982,46 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2347795336, + "fingerprint": 1823841224, "type": 0, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 43392969, + "foldername": "com", + "fingerprint": 1915046793, "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 1040627429, + "foldername": "assets", + "fingerprint": 2074495638, "type": 0, "invalidFingerprint": false }, { - "foldername": "lazydfu.mixins.json", - "fingerprint": 672362357, + "foldername": "data", + "fingerprint": 2941861502, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 808515154, + "fingerprint": 2076017508, "type": 0, "invalidFingerprint": false }, { - "foldername": "lazydfu.refmap.json", - "fingerprint": 3595148347, + "foldername": "windowslogo.png", + "fingerprint": 2971042943, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1326498838, + "packageFingerprint": 1242939671, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "1.16.4", - "1.16.2" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -16515,15 +17029,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-06-24T12:41:11.823Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "lazydfu-0.1.3.jar" + "FileNameOnDisk": "mcw-windows-2.0.0-mc1.16.5.jar" }, - "dateInstalled": "2021-09-27T20:15:33.5393303Z", - "dateUpdated": "2021-09-27T20:15:33.6088625Z", - "dateLastUpdateAttempted": "2021-09-27T20:15:33.6088625Z", - "status": 4, + "dateInstalled": "2021-07-05T20:21:03.3341184Z", + "dateUpdated": "2021-08-31T18:22:24.3562395Z", + "dateLastUpdateAttempted": "2021-08-31T18:22:24.3562395Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16535,54 +17049,115 @@ "installedTargets": null }, { - "addonID": 362528, + "addonID": 421760, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3166283, - "displayName": "decorative_blocks-1.16.4-1.7.2.jar", - "fileName": "decorative_blocks-1.16.4-1.7.2.jar", - "fileDate": "2021-01-12T13:54:20.667Z", - "fileLength": 576443, + "id": 3311520, + "displayName": "decorative_blocks_abnormals-1.2.jar", + "fileName": "decorative_blocks_abnormals-1.2.jar", + "fileDate": "2021-05-16T12:27:56.333Z", + "fileLength": 351053, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3166/283/decorative_blocks-1.16.4-1.7.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3311/520/decorative_blocks_abnormals-1.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 63938685, + "addonId": 452344, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938684, + "addonId": 388992, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938691, + "addonId": 362528, + "type": 3, + "fileId": 3311520 + }, + { + "id": 63938686, + "addonId": 362393, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938689, + "addonId": 291509, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938683, + "addonId": 452345, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938690, + "addonId": 326895, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938688, + "addonId": 383725, + "type": 2, + "fileId": 3311520 + }, + { + "id": 63938687, + "addonId": 365045, + "type": 2, + "fileId": 3311520 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4217647388, + "fingerprint": 768395863, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3482054246, + "fingerprint": 1420430770, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 2131810946, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2984315610, + "fingerprint": 2513766183, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2076193682, + "fingerprint": 2425500377, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2513699377, + "fingerprint": 456585031, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2373058841, + "packageFingerprint": 3407006170, "gameVersion": [ "1.16.3", "1.16.5", @@ -16627,18 +17202,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2123628, - "projectId": 362528, - "packageFingerprintId": 584650464, + "renderCacheId": 2311849, + "projectId": 421760, + "packageFingerprintId": 663793433, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2640626, + "gameVersionMappingId": 2944790, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "decorative_blocks-1.16.4-1.7.2.jar" + "FileNameOnDisk": "decorative_blocks_abnormals-1.2.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9741847Z", - "dateUpdated": "2021-07-05T20:20:47.9741847Z", + "dateInstalled": "2021-07-05T20:21:03.3821183Z", + "dateUpdated": "2021-07-05T20:21:03.3821183Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -16652,29 +17227,29 @@ "installedTargets": null }, { - "addonID": 236307, + "addonID": 421770, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3443990, - "displayName": "IntegratedDynamics-1.16.5-1.9.4.jar", - "fileName": "IntegratedDynamics-1.16.5-1.9.4.jar", - "fileDate": "2021-08-30T17:32:29.137Z", - "fileLength": 3144708, + "id": 3462644, + "displayName": "kubejs-immersive-engineering-1605.1.1-build.2.jar", + "fileName": "kubejs-immersive-engineering-1605.1.1-build.2.jar", + "fileDate": "2021-09-18T09:32:46.903Z", + "fileLength": 22097, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3443/990/IntegratedDynamics-1.16.5-1.9.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3462/644/kubejs-immersive-engineering-1605.1.1-build.2.jar", "isAlternate": false, - "alternateFileId": 3443991, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 247007, + "addonId": 231951, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 232758, + "addonId": 238086, "type": 3, "fileId": 0 } @@ -16682,64 +17257,39 @@ "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 1162722928, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 238173476, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 4059579663, + "foldername": "kubejs.plugins.txt", + "fingerprint": 4031426610, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 898374091, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2360440062, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "LICENSE-re2j.txt", - "fingerprint": 66756537, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo_small.png", - "fingerprint": 2118832145, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 711418639, + "fingerprint": 270698753, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3939935539, + "foldername": "META-INF", + "fingerprint": 3626308492, "type": 0, "invalidFingerprint": false }, { - "foldername": "vendors", - "fingerprint": 1036984855, + "foldername": "dev", + "fingerprint": 3753308825, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1535507924, + "packageFingerprint": 2837827252, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -16750,11 +17300,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IntegratedDynamics-1.16.5-1.9.4.jar" + "FileNameOnDisk": "kubejs-immersive-engineering-1605.1.1-build.2.jar" }, - "dateInstalled": "2021-07-05T20:19:25.3009353Z", - "dateUpdated": "2021-08-31T18:22:28.1122806Z", - "dateLastUpdateAttempted": "2021-08-31T18:22:28.1122806Z", + "dateInstalled": "2021-07-05T20:21:03.3541194Z", + "dateUpdated": "2021-09-18T21:21:34.7055959Z", + "dateLastUpdateAttempted": "2021-09-18T21:21:34.7055959Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16767,52 +17317,50 @@ "installedTargets": null }, { - "addonID": 377051, + "addonID": 347954, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348569, - "displayName": "BedBenefits-1.16.5-5.0.4.jar", - "fileName": "BedBenefits-1.16.5-5.0.4.jar", - "fileDate": "2021-06-12T02:34:50.673Z", - "fileLength": 7035, - "releaseType": 3, + "id": 3232534, + "displayName": "Lollipop-1.16.5-3.2.9.jar", + "fileName": "Lollipop-1.16.5-3.2.9.jar", + "fileDate": "2021-03-09T09:33:52.11Z", + "fileLength": 683534, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/569/BedBenefits-1.16.5-5.0.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3232/534/Lollipop-1.16.5-3.2.9.jar", "isAlternate": false, - "alternateFileId": 3348570, - "dependencies": [ - { - "id": 66179135, - "addonId": 228525, - "type": 3, - "fileId": 3348569 - } - ], + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3070474222, + "fingerprint": 1701288995, "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 810190735, + "foldername": "owmii", + "fingerprint": 2642039042, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2815777029, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 184985586, + "fingerprint": 3717667376, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4137996182, + "packageFingerprint": 3157196806, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "sortableGameVersion": [ { @@ -16820,12 +17368,6 @@ "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" } ], "hasInstallScript": false, @@ -16833,18 +17375,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2358229, - "projectId": 377051, - "packageFingerprintId": 681989307, + "renderCacheId": 2208928, + "projectId": 347954, + "packageFingerprintId": 621065954, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034729, + "gameVersionMappingId": 2780276, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "BedBenefits-1.16.5-5.0.4.jar" + "FileNameOnDisk": "Lollipop-1.16.5-3.2.9.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3521182Z", - "dateUpdated": "2021-07-05T20:21:03.3521182Z", + "dateInstalled": "2021-07-05T20:21:03.3731177Z", + "dateUpdated": "2021-07-05T20:21:03.3731177Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -16858,207 +17400,97 @@ "installedTargets": null }, { - "addonID": 241895, + "addonID": 309927, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3222119, - "displayName": "KleeSlabs_1.16.5-9.2.1.jar", - "fileName": "KleeSlabs_1.16.5-9.2.1.jar", - "fileDate": "2021-02-28T22:00:53.607Z", - "fileLength": 38992, + "id": 3456953, + "displayName": "curios-forge-1.16.5-4.0.5.3.jar", + "fileName": "curios-forge-1.16.5-4.0.5.3.jar", + "fileDate": "2021-09-11T22:21:49.353Z", + "fileLength": 246281, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3222/119/KleeSlabs_1.16.5-9.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3456/953/curios-forge-1.16.5-4.0.5.3.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3456954, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 92585831, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 1117119438, - "type": 3, + "fingerprint": 4256455901, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1436964838, - "type": 3, + "foldername": "top", + "fingerprint": 2804167027, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1944611527, - "type": 3, + "foldername": "assets", + "fingerprint": 904727021, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 2261297292, - "gameVersion": [ - "1.16.3", - "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2195559, - "projectId": 241895, - "packageFingerprintId": 614879343, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2759518, - "gameVersionId": 8056, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "KleeSlabs_1.16.5-9.2.1.jar" - }, - "dateInstalled": "2021-07-05T20:20:52.5183915Z", - "dateUpdated": "2021-07-05T20:20:52.5183915Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 250832, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3238352, - "displayName": "elevatorid-1.16.5-1.7.13.jar", - "fileName": "elevatorid-1.16.5-1.7.13.jar", - "fileDate": "2021-03-13T19:04:42.84Z", - "fileLength": 183750, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3238/352/elevatorid-1.16.5-1.7.13.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3630131266, - "type": 3, + "foldername": "CHANGELOG.md", + "fingerprint": 1167743156, + "type": 0, "invalidFingerprint": false }, { - "foldername": "xyz", - "fingerprint": 1767482914, - "type": 3, + "foldername": "curios_icon.png", + "fingerprint": 1224242090, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 628713720, - "type": 3, + "foldername": "data", + "fingerprint": 4248303262, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 4269820384, - "type": 3, + "foldername": "licenses", + "fingerprint": 3550732819, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2583521980, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 2759340961, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 972975125, - "type": 3, + "foldername": "README.md", + "fingerprint": 4172690372, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2325835132, + "packageFingerprint": 920080633, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2216374, - "projectId": 250832, - "packageFingerprintId": 623789917, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2791277, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "elevatorid-1.16.5-1.7.13.jar" + "FileNameOnDisk": "curios-forge-1.16.5-4.0.5.3.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5173914Z", - "dateUpdated": "2021-07-05T20:20:52.5173914Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:03.3411189Z", + "dateUpdated": "2021-09-15T16:52:53.8725531Z", + "dateLastUpdateAttempted": "2021-09-15T16:52:53.8725531Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -17071,17 +17503,17 @@ "installedTargets": null }, { - "addonID": 222908, + "addonID": 457570, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3158118, - "displayName": "1.16.2+ (3.0.2)", - "fileName": "cookiecore-1.16.2-3.0.2-9389769.jar", - "fileDate": "2021-01-04T11:41:47.73Z", - "fileLength": 48620, + "id": 3434071, + "displayName": "Configured 1.2.0", + "fileName": "configured-1.2.0-1.16.3.jar", + "fileDate": "2021-08-22T06:20:13.033Z", + "fileLength": 75690, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3158/118/cookiecore-1.16.2-3.0.2-9389769.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3434/71/configured-1.2.0-1.16.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -17089,99 +17521,62 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2659065218, - "type": 3, + "fingerprint": 1404851920, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2087109271, - "type": 3, + "foldername": "com", + "fingerprint": 1463912306, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1001256355, - "type": 3, + "foldername": "assets", + "fingerprint": 1486104158, + "type": 0, "invalidFingerprint": false }, { - "foldername": "be", - "fingerprint": 2721873757, - "type": 3, + "foldername": "configured_icon.png", + "fingerprint": 2545899887, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3056700204, - "type": 3, + "foldername": "configured_logo.png", + "fingerprint": 1580524172, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, + "fingerprint": 959311262, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2269858638, + "packageFingerprint": 895730471, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } + "1.16.4" ], "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2113194, - "projectId": 222908, - "packageFingerprintId": 579889353, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2625653, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cookiecore-1.16.2-3.0.2-9389769.jar" + "FileNameOnDisk": "configured-1.2.0-1.16.3.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4424742Z", - "dateUpdated": "2021-07-05T20:21:08.4424742Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-16T11:30:56.4159563Z", + "dateUpdated": "2021-09-16T11:30:56.422976Z", + "dateLastUpdateAttempted": "2021-09-16T11:30:56.422976Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -17194,143 +17589,95 @@ "installedTargets": null }, { - "addonID": 345779, + "addonID": 242818, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3299406, - "displayName": "plonk-1.16.5-9.0.8.jar", - "fileName": "plonk-1.16.5-9.0.8.jar", - "fileDate": "2021-05-05T15:00:50.05Z", - "fileLength": 150064, + "id": 3456069, + "displayName": "CodeChicken Lib 1.16.5-4.0.3.434-universal", + "fileName": "CodeChickenLib-1.16.5-4.0.3.434-universal.jar", + "fileDate": "2021-09-11T03:03:14.44Z", + "fileLength": 622321, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3299/406/plonk-1.16.5-9.0.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3456/69/CodeChickenLib-1.16.5-4.0.3.434-universal.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 62959926, - "addonId": 299488, - "type": 2, - "fileId": 3299406 - }, - { - "id": 62959925, - "addonId": 258587, - "type": 2, - "fileId": 3299406 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3063714212, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1925063370, - "type": 3, + "fingerprint": 4224770076, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2540546577, - "type": 3, + "foldername": ".cache", + "fingerprint": 1353120109, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1711061251, - "type": 3, + "foldername": "LICENSE", + "fingerprint": 2989649023, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.png", - "fingerprint": 1463917477, - "type": 3, + "foldername": "assets", + "fingerprint": 3096024256, + "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 4095395561, - "type": 3, + "foldername": "codechicken", + "fingerprint": 3354410204, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3484761773, - "type": 3, + "fingerprint": 3899647396, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 3322325304, - "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16.5", - "Forge", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "foldername": "mixins.codechickenlib.json", + "fingerprint": 1076180799, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "foldername": "mixins.codechickenlib.refmap.json", + "fingerprint": 3334444269, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" + "foldername": "pack.mcmeta", + "fingerprint": 427284745, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 1058829035, + "gameVersion": [ + "1.16.5" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2295914, - "projectId": 345779, - "packageFingerprintId": 656871520, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2911693, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "plonk-1.16.5-9.0.8.jar" + "FileNameOnDisk": "CodeChickenLib-1.16.5-4.0.3.434-universal.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3781188Z", - "dateUpdated": "2021-07-05T20:21:03.3781188Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:03.3451193Z", + "dateUpdated": "2021-09-15T16:52:55.0352486Z", + "dateLastUpdateAttempted": "2021-09-15T16:52:55.0352486Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -17343,69 +17690,54 @@ "installedTargets": null }, { - "addonID": 267602, + "addonID": 377051, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3137659, - "displayName": "CTM - MC1.16.1-1.1.2.6", - "fileName": "CTM-MC1.16.1-1.1.2.6.jar", - "fileDate": "2020-12-13T18:05:47.6Z", - "fileLength": 186068, - "releaseType": 2, + "id": 3348569, + "displayName": "BedBenefits-1.16.5-5.0.4.jar", + "fileName": "BedBenefits-1.16.5-5.0.4.jar", + "fileDate": "2021-06-12T02:34:50.673Z", + "fileLength": 7035, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3137/659/CTM-MC1.16.1-1.1.2.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/569/BedBenefits-1.16.5-5.0.4.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3348570, + "dependencies": [ + { + "id": 66179135, + "addonId": 228525, + "type": 3, + "fileId": 3348569 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2314499695, + "fingerprint": 3070474222, "type": 3, "invalidFingerprint": false }, { - "foldername": "team", - "fingerprint": 1421294105, + "foldername": "net", + "fingerprint": 810190735, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2904194323, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "mcmod.info", - "fingerprint": 929912909, + "fingerprint": 184985586, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1104122771, + "packageFingerprint": 4137996182, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -17417,18 +17749,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -17436,18 +17756,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2087245, - "projectId": 267602, - "packageFingerprintId": 567005171, + "renderCacheId": 2358229, + "projectId": 377051, + "packageFingerprintId": 681989307, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2586262, + "gameVersionMappingId": 3034729, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "CTM-MC1.16.1-1.1.2.6.jar" + "FileNameOnDisk": "BedBenefits-1.16.5-5.0.4.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4304734Z", - "dateUpdated": "2021-07-05T20:21:08.4304734Z", + "dateInstalled": "2021-07-05T20:21:03.3521182Z", + "dateUpdated": "2021-07-05T20:21:03.3521182Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -17461,17 +17781,17 @@ "installedTargets": null }, { - "addonID": 247496, + "addonID": 238372, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3065697, - "displayName": "Ranged Pumps 0.8.2", - "fileName": "rangedpumps-0.8.2.jar", - "fileDate": "2020-09-25T19:47:38.857Z", - "fileLength": 26035, + "id": 3182258, + "displayName": "Neat 1.7-27.jar", + "fileName": "Neat 1.7-27.jar", + "fileDate": "2021-01-26T16:34:51.23Z", + "fileLength": 21664, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3065/697/rangedpumps-0.8.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3182/258/Neat 1.7-27.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -17479,36 +17799,30 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3296727235, + "fingerprint": 1584426342, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1541089140, + "foldername": "vazkii", + "fingerprint": 1897733620, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 201576547, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3194850042, + "fingerprint": 4211325937, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4221644177, + "fingerprint": 1353712245, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 870328279, + "packageFingerprint": 191411038, "gameVersion": [ "1.16.3", "1.16.5", @@ -17546,18 +17860,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1998149, - "projectId": 247496, - "packageFingerprintId": 526360412, + "renderCacheId": 2144082, + "projectId": 238372, + "packageFingerprintId": 593945817, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2446802, + "gameVersionMappingId": 2675374, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "rangedpumps-0.8.2.jar" + "FileNameOnDisk": "Neat 1.7-27.jar" }, - "dateInstalled": "2021-07-05T20:21:08.431472Z", - "dateUpdated": "2021-07-05T20:21:08.431472Z", + "dateInstalled": "2021-07-05T20:21:03.3461189Z", + "dateUpdated": "2021-07-05T20:21:03.3461189Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -17571,121 +17885,73 @@ "installedTargets": null }, { - "addonID": 260912, + "addonID": 240630, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3310471, - "displayName": "XNet - 1.16-3.0.13", - "fileName": "xnet-1.16-3.0.13.jar", - "fileDate": "2021-05-15T12:55:01.417Z", - "fileLength": 538686, - "releaseType": 1, + "id": 3435305, + "displayName": "JustEnoughResources-1.16.5-0.12.1.128", + "fileName": "JustEnoughResources-1.16.5-0.12.1.128.jar", + "fileDate": "2021-08-23T10:40:40.45Z", + "fileLength": 235574, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3310/471/xnet-1.16-3.0.13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3435/305/JustEnoughResources-1.16.5-0.12.1.128.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3435306, "dependencies": [ { - "id": 63860129, - "addonId": 233105, - "type": 3, - "fileId": 3310471 - }, - { - "id": 63860126, - "addonId": 326041, + "id": 0, + "addonId": 238222, "type": 3, - "fileId": 3310471 - }, - { - "id": 63860128, - "addonId": 270789, - "type": 2, - "fileId": 3310471 - }, - { - "id": 63860127, - "addonId": 245211, - "type": 2, - "fileId": 3310471 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3412820401, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "mcjty", - "fingerprint": 4044172560, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "mcmod.info", - "fingerprint": 4235334237, - "type": 3, + "fingerprint": 2985696359, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 4131991424, - "type": 3, + "foldername": "jeresources", + "fingerprint": 30993055, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3479397869, - "type": 3, + "fingerprint": 2295823985, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1285014051, - "type": 3, + "foldername": "assets", + "fingerprint": 2621008982, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3934016888, + "packageFingerprint": 522225892, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2310395, - "projectId": 260912, - "packageFingerprintId": 663290503, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2941911, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "xnet-1.16-3.0.13.jar" + "FileNameOnDisk": "JustEnoughResources-1.16.5-0.12.1.128.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4334742Z", - "dateUpdated": "2021-07-05T20:21:08.4334742Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-26T19:22:53.8191174Z", + "dateUpdated": "2021-09-26T19:22:53.8311161Z", + "dateLastUpdateAttempted": "2021-09-26T19:22:53.8311161Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -17698,117 +17964,198 @@ "installedTargets": null }, { - "addonID": 421760, + "addonID": 301034, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3311520, - "displayName": "decorative_blocks_abnormals-1.2.jar", - "fileName": "decorative_blocks_abnormals-1.2.jar", - "fileDate": "2021-05-16T12:27:56.333Z", - "fileLength": 351053, + "id": 3390770, + "displayName": "entangled-1.3.6-mc1.16.5", + "fileName": "entangled-1.3.6-mc1.16.5.jar", + "fileDate": "2021-07-16T15:31:16.117Z", + "fileLength": 100293, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3311/520/decorative_blocks_abnormals-1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3390/770/entangled-1.3.6-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 63938685, - "addonId": 452344, + "id": 0, + "addonId": 438332, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 454372, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 245211, "type": 2, - "fileId": 3311520 + "fileId": 0 }, { - "id": 63938684, - "addonId": 388992, + "id": 0, + "addonId": 253449, "type": 2, - "fileId": 3311520 + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1430591938, + "type": 0, + "invalidFingerprint": false }, { - "id": 63938691, - "addonId": 362528, - "type": 3, - "fileId": 3311520 + "foldername": "assets", + "fingerprint": 380727526, + "type": 0, + "invalidFingerprint": false }, { - "id": 63938686, - "addonId": 362393, - "type": 2, - "fileId": 3311520 + "foldername": "com", + "fingerprint": 1674089544, + "type": 0, + "invalidFingerprint": false }, { - "id": 63938689, - "addonId": 291509, - "type": 2, - "fileId": 3311520 + "foldername": "entangled.png", + "fingerprint": 2977040850, + "type": 0, + "invalidFingerprint": false }, { - "id": 63938683, - "addonId": 452345, - "type": 2, - "fileId": 3311520 + "foldername": "mcmod.info", + "fingerprint": 729597033, + "type": 0, + "invalidFingerprint": false }, { - "id": 63938690, - "addonId": 326895, - "type": 2, - "fileId": 3311520 + "foldername": "data", + "fingerprint": 2120620978, + "type": 0, + "invalidFingerprint": false }, { - "id": 63938688, - "addonId": 383725, + "foldername": "pack.mcmeta", + "fingerprint": 1042306422, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 2263250420, + "gameVersion": [ + "1.16.5", + "Forge", + "1.16.4" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "entangled-1.3.6-mc1.16.5.jar" + }, + "dateInstalled": "2021-07-15T18:43:58.4199855Z", + "dateUpdated": "2021-07-24T18:19:11.8446402Z", + "dateLastUpdateAttempted": "2021-07-24T18:19:11.8446402Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 345779, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3299406, + "displayName": "plonk-1.16.5-9.0.8.jar", + "fileName": "plonk-1.16.5-9.0.8.jar", + "fileDate": "2021-05-05T15:00:50.05Z", + "fileLength": 150064, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3299/406/plonk-1.16.5-9.0.8.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 62959926, + "addonId": 299488, "type": 2, - "fileId": 3311520 + "fileId": 3299406 }, { - "id": 63938687, - "addonId": 365045, + "id": 62959925, + "addonId": 258587, "type": 2, - "fileId": 3311520 + "fileId": 3299406 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 768395863, + "fingerprint": 3063714212, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1420430770, + "fingerprint": 1925063370, "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 2131810946, + "foldername": "assets", + "fingerprint": 2540546577, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2513766183, + "foldername": "pack.mcmeta", + "fingerprint": 1711061251, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2425500377, + "foldername": "pack.png", + "fingerprint": 1463917477, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 456585031, + "foldername": ".cache", + "fingerprint": 4095395561, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3484761773, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3407006170, + "packageFingerprint": 3322325304, "gameVersion": [ "1.16.3", + "1.16.1", "1.16.5", "Forge", "1.16.4", @@ -17821,6 +18168,12 @@ "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", "gameVersionName": "1.16.3" }, + { + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -17851,18 +18204,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2311849, - "projectId": 421760, - "packageFingerprintId": 663793433, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2944790, - "gameVersionId": 7498, + "renderCacheId": 2295914, + "projectId": 345779, + "packageFingerprintId": 656871520, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2911693, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "decorative_blocks_abnormals-1.2.jar" + "FileNameOnDisk": "plonk-1.16.5-9.0.8.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3821183Z", - "dateUpdated": "2021-07-05T20:21:03.3821183Z", + "dateInstalled": "2021-07-05T20:21:03.3781188Z", + "dateUpdated": "2021-07-05T20:21:03.3781188Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -17876,54 +18229,132 @@ "installedTargets": null }, { - "addonID": 228525, + "addonID": 417365, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474499, - "displayName": "Bookshelf-Forge-1.16.5-10.3.29.jar", - "fileName": "Bookshelf-Forge-1.16.5-10.3.29.jar", - "fileDate": "2021-09-27T03:30:20.037Z", - "fileLength": 315420, + "id": 3367220, + "displayName": "[1.16.5] More Crafting Tables Forge ", + "fileName": "MoreCraftingTables1.16.5.jar", + "fileDate": "2021-06-28T02:55:28.313Z", + "fileLength": 119960, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/499/Bookshelf-Forge-1.16.5-10.3.29.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3367/220/MoreCraftingTables1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ + { + "foldername": "assets", + "fingerprint": 3245263841, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 82768127, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3607957206, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "mctb.png", + "fingerprint": 1143679357, + "type": 0, + "invalidFingerprint": false + }, { "foldername": "META-INF", - "fingerprint": 3805763113, + "fingerprint": 2411630567, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1384105030, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 99334920, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "MoreCraftingTables1.16.5.jar" + }, + "dateInstalled": "2021-07-12T17:54:13.8362496Z", + "dateUpdated": "2021-07-12T17:54:13.8468566Z", + "dateLastUpdateAttempted": "2021-07-12T17:54:13.8468566Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 377109, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3478341, + "displayName": "ToolStats-1.16.5-6.0.3.jar", + "fileName": "ToolStats-1.16.5-6.0.3.jar", + "fileDate": "2021-10-01T21:03:50.323Z", + "fileLength": 9853, + "releaseType": 3, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3478/341/ToolStats-1.16.5-6.0.3.jar", + "isAlternate": false, + "alternateFileId": 3478342, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1466050769, "type": 0, "invalidFingerprint": false }, { - "foldername": "mod_logo.png", - "fingerprint": 777571610, + "foldername": "assets", + "fingerprint": 2327503992, "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 573849751, + "fingerprint": 2271101884, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1432491059, + "fingerprint": 2718909787, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3146577677, + "packageFingerprint": 2169543073, "gameVersion": [ "1.16.5", "Forge" @@ -17937,11 +18368,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Bookshelf-Forge-1.16.5-10.3.29.jar" + "FileNameOnDisk": "ToolStats-1.16.5-6.0.3.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5233912Z", - "dateUpdated": "2021-09-27T17:47:39.7686603Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:39.7686603Z", + "dateInstalled": "2021-07-05T20:21:03.3451193Z", + "dateUpdated": "2021-10-02T18:16:17.3444961Z", + "dateLastUpdateAttempted": "2021-10-02T18:16:17.3444961Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -17954,69 +18385,149 @@ "installedTargets": null }, { - "addonID": 421770, + "addonID": 421850, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3462644, - "displayName": "kubejs-immersive-engineering-1605.1.1-build.2.jar", - "fileName": "kubejs-immersive-engineering-1605.1.1-build.2.jar", - "fileDate": "2021-09-18T09:32:46.903Z", - "fileLength": 22097, + "id": 3412585, + "displayName": "[1.16.4 / 1.16.5] YUNG's API vForge-12", + "fileName": "YungsApi-1.16.4-Forge-12.jar", + "fileDate": "2021-08-04T07:27:41.133Z", + "fileLength": 106044, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3462/644/kubejs-immersive-engineering-1605.1.1-build.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3412/585/YungsApi-1.16.4-Forge-12.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 0, - "addonId": 231951, - "type": 3, - "fileId": 0 + "foldername": "META-INF", + "fingerprint": 2597342886, + "type": 0, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 238086, - "type": 3, - "fileId": 0 + "foldername": "com", + "fingerprint": 4089625021, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2686543822, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "yungsapi.mixins.json", + "fingerprint": 146205936, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "yungsapi.refmap.json", + "fingerprint": 841431199, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 2028424798, + "gameVersion": [ + "1.16", + "1.16.5", + "Forge", + "1.16.4" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "YungsApi-1.16.4-Forge-12.jar" + }, + "dateInstalled": "2021-07-05T20:21:03.3511181Z", + "dateUpdated": "2021-08-04T20:05:46.8369854Z", + "dateLastUpdateAttempted": "2021-08-04T20:05:46.8369854Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 482265, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3424588, + "displayName": "trofers-1.16.5-1.1.0.jar", + "fileName": "trofers-1.16.5-1.1.0.jar", + "fileDate": "2021-08-13T20:44:12.857Z", + "fileLength": 48964, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3424/588/trofers-1.16.5-1.1.0.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 238173476, + "foldername": "META-INF", + "fingerprint": 3402050634, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.plugins.txt", - "fingerprint": 4031426610, + "foldername": "trofers", + "fingerprint": 1766080325, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 270698753, + "foldername": ".cache", + "fingerprint": 4240226762, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 3626308492, + "foldername": "assets", + "fingerprint": 3145863783, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 3753308825, + "foldername": "data", + "fingerprint": 898276826, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 1676724837, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 4066379327, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2837827252, + "packageFingerprint": 2330694505, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18024,15 +18535,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kubejs-immersive-engineering-1605.1.1-build.2.jar" + "FileNameOnDisk": "trofers-1.16.5-1.1.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3541194Z", - "dateUpdated": "2021-09-18T21:21:34.7055959Z", - "dateLastUpdateAttempted": "2021-09-18T21:21:34.7055959Z", - "status": 5, + "dateInstalled": "2021-09-22T17:52:43.1731957Z", + "dateUpdated": "2021-09-22T17:52:43.3733049Z", + "dateLastUpdateAttempted": "2021-09-22T17:52:43.3733049Z", + "status": 3, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18044,41 +18555,134 @@ "installedTargets": null }, { - "addonID": 342466, + "addonID": 381605, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3424922, - "displayName": "RFToolsUtility - 1.16-3.1.2", - "fileName": "rftoolsutility-1.16-3.1.2.jar", - "fileDate": "2021-08-14T05:26:51.973Z", - "fileLength": 1606928, + "id": 3035686, + "displayName": "DrawersTooltip-1.16.2-2.1.0.jar", + "fileName": "DrawersTooltip-1.16.2-2.1.0.jar", + "fileDate": "2020-08-18T06:09:17.793Z", + "fileLength": 12907, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3424/922/rftoolsutility-1.16-3.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3035/686/DrawersTooltip-1.16.2-2.1.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 245211, - "type": 2, - "fileId": 0 + "id": 54672115, + "addonId": 223852, + "type": 3, + "fileId": 3035686 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 766716947, + "type": 3, + "invalidFingerprint": false }, { - "id": 0, - "addonId": 233105, + "foldername": "snownee", + "fingerprint": 3572036476, "type": 3, - "fileId": 0 + "invalidFingerprint": false }, { - "id": 0, - "addonId": 270789, - "type": 2, - "fileId": 0 + "foldername": "data", + "fingerprint": 2008431972, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2983742861, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 2696312150, + "gameVersion": [ + "1.16.3", + "1.16.5", + "1.16.4", + "1.16.2" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 1961296, + "projectId": 381605, + "packageFingerprintId": 507405396, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2383526, + "gameVersionId": 4458, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "DrawersTooltip-1.16.2-2.1.0.jar" + }, + "dateInstalled": "2021-07-05T20:21:03.3671226Z", + "dateUpdated": "2021-07-05T20:21:03.3671226Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 307788, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3425634, + "displayName": "rsrequestify-1.16.5-2.1.3.jar", + "fileName": "rsrequestify-1.16.5-2.1.3.jar", + "fileDate": "2021-08-14T23:35:26.71Z", + "fileLength": 61784, + "releaseType": 2, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3425/634/rsrequestify-1.16.5-2.1.3.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ { "id": 0, - "addonId": 326041, + "addonId": 243076, "type": 3, "fileId": 0 } @@ -18087,39 +18691,46 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3044384234, + "fingerprint": 2909008428, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 634041100, + "foldername": "com", + "fingerprint": 417099370, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4122953665, + "fingerprint": 943343185, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2052052530, + "foldername": "data", + "fingerprint": 3052571584, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2564539114, + "foldername": "mcmod.info", + "fingerprint": 2072392136, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2707499699, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1973625588, + "packageFingerprint": 1460254527, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18127,14 +18738,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsutility-1.16-3.1.2.jar" + "FileNameOnDisk": "rsrequestify-1.16.5-2.1.3.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2653389Z", - "dateUpdated": "2021-08-14T19:13:10.6013954Z", - "dateLastUpdateAttempted": "2021-08-14T19:13:10.6013954Z", + "dateInstalled": "2021-07-05T20:21:03.3331219Z", + "dateUpdated": "2021-08-15T17:21:42.4826887Z", + "dateLastUpdateAttempted": "2021-08-15T17:21:42.4826887Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -18147,74 +18758,73 @@ "installedTargets": null }, { - "addonID": 245287, + "addonID": 433071, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3190374, - "displayName": "Morph-o-Tool-1.4-27.jar", - "fileName": "Morph-o-Tool-1.4-27.jar", - "fileDate": "2021-02-02T18:04:59.36Z", - "fileLength": 32615, + "id": 3330242, + "displayName": "Undergarden-Tetra Patch-1.2.1.jar", + "fileName": "Undergarden-Tetra Patch-1.2.1.jar", + "fileDate": "2021-05-30T07:31:52.62Z", + "fileLength": 21240, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3190/374/Morph-o-Tool-1.4-27.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3330/242/Undergarden-Tetra Patch-1.2.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 55931001, - "addonId": 250363, + "id": 65062464, + "addonId": 379849, "type": 3, - "fileId": 3190374 + "fileId": 3330242 + }, + { + "id": 65062463, + "addonId": 289712, + "type": 3, + "fileId": 3330242 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 506253200, + "fingerprint": 89735275, "type": 3, "invalidFingerprint": false }, { - "foldername": "vazkii", - "fingerprint": 4212961044, + "foldername": "com", + "fingerprint": 476573060, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4025585458, + "fingerprint": 3892198104, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3519127425, + "fingerprint": 3768798660, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3644656812, + "fingerprint": 2975439979, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3401581101, + "packageFingerprint": 1694346812, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -18239,18 +18849,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2154522, - "projectId": 245287, - "packageFingerprintId": 598028791, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2692920, - "gameVersionId": 4458, + "renderCacheId": 2335545, + "projectId": 433071, + "packageFingerprintId": 672543180, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2989560, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Morph-o-Tool-1.4-27.jar" + "FileNameOnDisk": "Undergarden-Tetra Patch-1.2.1.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4564709Z", - "dateUpdated": "2021-07-05T20:21:08.4564709Z", + "dateInstalled": "2021-07-05T20:21:03.3431201Z", + "dateUpdated": "2021-07-05T20:21:03.3431201Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -18264,109 +18874,102 @@ "installedTargets": null }, { - "addonID": 266515, + "addonID": 245174, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3446262, - "displayName": "industrial-foregoing-1.16.5-3.2.14.6-14.jar", - "fileName": "industrial-foregoing-1.16.5-3.2.14.6-14.jar", - "fileDate": "2021-09-01T18:19:44.403Z", - "fileLength": 3582355, - "releaseType": 2, + "id": 3361748, + "displayName": "Ender Storage 1.16.5-2.8.0.168-universal", + "fileName": "EnderStorage-1.16.5-2.8.0.168-universal.jar", + "fileDate": "2021-06-23T02:38:31.833Z", + "fileLength": 214797, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3446/262/industrial-foregoing-1.16.5-3.2.14.6-14.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3361/748/EnderStorage-1.16.5-2.8.0.168-universal.jar", "isAlternate": false, - "alternateFileId": 3446263, + "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 306770, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 287342, + "id": 67089758, + "addonId": 242818, "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 309927, - "type": 2, - "fileId": 0 + "fileId": 3361748 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2386262878, - "type": 0, + "fingerprint": 2465419853, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 379152991, - "type": 0, + "foldername": ".cache", + "fingerprint": 1741201014, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3273911401, - "type": 0, + "foldername": "LICENSE.txt", + "fingerprint": 3073539858, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3527524723, - "type": 0, + "fingerprint": 1639442627, + "type": 3, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 390265695, - "type": 0, + "foldername": "codechicken", + "fingerprint": 1633749891, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3758311251, - "type": 0, + "fingerprint": 1705870988, + "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 1480491764, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 3414590961, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3118610869, + "packageFingerprint": 858512634, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2375052, + "projectId": 245174, + "packageFingerprintId": 689847341, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 3068243, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "industrial-foregoing-1.16.5-3.2.14.6-14.jar" + "FileNameOnDisk": "EnderStorage-1.16.5-2.8.0.168-universal.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5105727Z", - "dateUpdated": "2021-09-02T12:00:08.1204617Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:08.1204617Z", + "dateInstalled": "2021-07-05T20:21:03.3811198Z", + "dateUpdated": "2021-07-05T20:21:03.3811198Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -18379,51 +18982,58 @@ "installedTargets": null }, { - "addonID": 377109, + "addonID": 437558, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348655, - "displayName": "ToolStats-1.16.5-6.0.2.jar", - "fileName": "ToolStats-1.16.5-6.0.2.jar", - "fileDate": "2021-06-12T02:51:47.493Z", - "fileLength": 9484, - "releaseType": 3, + "id": 3172880, + "displayName": "JEPB-1.0.0.jar", + "fileName": "JEPB-1.0.0.jar", + "fileDate": "2021-01-18T19:51:37.313Z", + "fileLength": 18166, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/655/ToolStats-1.16.5-6.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3172/880/JEPB-1.0.0.jar", "isAlternate": false, - "alternateFileId": 3348656, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 56313408, + "addonId": 436964, + "type": 3, + "fileId": 3172880 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2821314706, + "fingerprint": 1952758967, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1483211410, + "foldername": "com", + "fingerprint": 2754379502, "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 2271101884, + "foldername": "assets", + "fingerprint": 3226995485, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2718909787, + "fingerprint": 1438559181, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3864835317, + "packageFingerprint": 1022842827, "gameVersion": [ "1.16.5", - "Forge" + "1.16.4" ], "sortableGameVersion": [ { @@ -18433,10 +19043,10 @@ "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -18444,18 +19054,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2358316, - "projectId": 377109, - "packageFingerprintId": 682001588, + "renderCacheId": 2131939, + "projectId": 437558, + "packageFingerprintId": 588586821, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034978, + "gameVersionMappingId": 2654559, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "ToolStats-1.16.5-6.0.2.jar" + "FileNameOnDisk": "JEPB-1.0.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3451193Z", - "dateUpdated": "2021-07-05T20:21:03.3451193Z", + "dateInstalled": "2021-07-05T20:21:03.3641192Z", + "dateUpdated": "2021-07-05T20:21:03.3641192Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -18469,17 +19079,17 @@ "installedTargets": null }, { - "addonID": 296686, + "addonID": 486778, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3390492, - "displayName": "rsgauges-1.16.4-1.2.11.jar", - "fileName": "rsgauges-1.16.4-1.2.11.jar", - "fileDate": "2021-07-16T07:47:04.75Z", - "fileLength": 979375, + "id": 3354784, + "displayName": "ExperienceBugFix-1.36.0.2.jar", + "fileName": "ExperienceBugFix-1.36.0.2.jar", + "fileDate": "2021-06-17T04:29:06.753Z", + "fileLength": 3231, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3390/492/rsgauges-1.16.4-1.2.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3354/784/ExperienceBugFix-1.36.0.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18487,52 +19097,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1604687917, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".gitversion-rsgauges", - "fingerprint": 449354936, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1897879953, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1195558833, + "fingerprint": 1102232454, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2495119306, + "foldername": "com", + "fingerprint": 1125588113, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1558535636, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "wile", - "fingerprint": 626408179, + "fingerprint": 3620546750, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2608370220, + "packageFingerprint": 835556151, "gameVersion": [ + "1.16.3", + "1.16.1", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18540,14 +19129,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rsgauges-1.16.4-1.2.11.jar" + "FileNameOnDisk": "ExperienceBugFix-1.36.0.2.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4624731Z", - "dateUpdated": "2021-07-24T19:09:37.0404256Z", - "dateLastUpdateAttempted": "2021-07-24T19:09:37.0404256Z", + "dateInstalled": "2021-08-23T04:32:46.7536831Z", + "dateUpdated": "2021-08-23T04:32:46.8412501Z", + "dateLastUpdateAttempted": "2021-08-23T04:32:46.8412501Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -18560,17 +19149,17 @@ "installedTargets": null }, { - "addonID": 499980, + "addonID": 426386, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3472679, - "displayName": "selene-1.16.5-1.7.2.jar", - "fileName": "selene-1.16.5-1.7.2.jar", - "fileDate": "2021-09-26T08:32:05.973Z", - "fileLength": 213799, + "id": 3392461, + "displayName": "Shrink-1.16.5-1.1.5.jar", + "fileName": "Shrink-1.16.5-1.1.5.jar", + "fileDate": "2021-07-18T05:53:27.217Z", + "fileLength": 77256, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3472/679/selene-1.16.5-1.7.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3392/461/Shrink-1.16.5-1.1.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18578,53 +19167,57 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2082829720, + "fingerprint": 2417167581, "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 1488067299, + "fingerprint": 881117774, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 2761835503, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2350850469, + "fingerprint": 1733346331, "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 2561671616, + "foldername": "data", + "fingerprint": 4209830787, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 170392659, "type": 0, "invalidFingerprint": false }, { - "foldername": "selene.mixins.json", - "fingerprint": 1369264015, + "foldername": "shrink.mixins.json", + "fingerprint": 3292667501, "type": 0, "invalidFingerprint": false }, { - "foldername": "selene.refmap.json", - "fingerprint": 1953642943, + "foldername": "shrink.refmap.json", + "fingerprint": 4258142700, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 486215869, + "packageFingerprint": 1098313763, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18632,14 +19225,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "selene-1.16.5-1.7.2.jar" + "FileNameOnDisk": "Shrink-1.16.5-1.1.5.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2513379Z", - "dateUpdated": "2021-09-26T11:25:12.4724169Z", - "dateLastUpdateAttempted": "2021-09-26T11:25:12.4724169Z", + "dateInstalled": "2021-07-15T21:20:34.8223984Z", + "dateUpdated": "2021-07-24T19:10:14.6274079Z", + "dateLastUpdateAttempted": "2021-07-24T19:10:14.6274079Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -18652,48 +19245,223 @@ "installedTargets": null }, { - "addonID": 233019, + "addonID": 359289, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3031978, - "displayName": "AI-Improvements-1.16.X-0.3.0.jar", - "fileName": "AI-Improvements-1.16.2-0.3.0.jar", - "fileDate": "2020-08-14T09:03:57.22Z", - "fileLength": 22152, + "id": 3139471, + "displayName": "BotaniaAdditionsMC1.16.4-1.0.4", + "fileName": "BotaniaAdditionsMC1.16.4-1.0.4.jar", + "fileDate": "2020-12-15T15:36:25.577Z", + "fileLength": 57594, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3031/978/AI-Improvements-1.16.2-0.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3139/471/BotaniaAdditionsMC1.16.4-1.0.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 54521945, + "addonId": 306770, + "type": 3, + "fileId": 3139471 + }, + { + "id": 54521944, + "addonId": 238222, + "type": 2, + "fileId": 3139471 + }, + { + "id": 54521942, + "addonId": 225643, + "type": 3, + "fileId": 3139471 + }, + { + "id": 54521943, + "addonId": 309927, + "type": 3, + "fileId": 3139471 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 2999451516, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 138746661, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3397815931, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "BotaniaAdditionsLogo.png", + "fingerprint": 2385058241, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 632705534, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 36862499, + "type": 3, + "invalidFingerprint": false + } + ], + "packageFingerprint": 1404205690, + "gameVersion": [ + "1.16.5", + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2089545, + "projectId": 359289, + "packageFingerprintId": 568278379, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2589293, + "gameVersionId": 7498, + "gameId": 432, + "isServerPack": false, + "FileNameOnDisk": "BotaniaAdditionsMC1.16.4-1.0.4.jar" + }, + "dateInstalled": "2021-07-05T20:21:08.4604717Z", + "dateUpdated": "2021-07-05T20:21:08.4604717Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 386134, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3409570, + "displayName": "ftb-ultimine-forge-1605.3.0-build.25.jar", + "fileName": "ftb-ultimine-forge-1605.3.0-build.25.jar", + "fileDate": "2021-08-02T13:51:03.443Z", + "fileLength": 77169, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3409/570/ftb-ultimine-forge-1605.3.0-build.25.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 404465, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 2898261365, + "foldername": "data", + "fingerprint": 668690037, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ftbultimine.accesswidener", + "fingerprint": 2828944861, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kubejs.classfilter.txt", + "fingerprint": 2281635539, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3349911820, + "foldername": "assets", + "fingerprint": 133322903, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 111449960, + "fingerprint": 2914933217, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "META-INF", + "fingerprint": 1606682521, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 266643835, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_FTBUltimine1165_common_482e62daa2a74b129dc76f7a99c81f93", + "fingerprint": 2222672506, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1334565280, + "packageFingerprint": 379087819, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18704,11 +19472,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "AI-Improvements-1.16.2-0.3.0.jar" + "FileNameOnDisk": "ftb-ultimine-forge-1605.3.0-build.25.jar" }, - "dateInstalled": "2021-08-16T05:38:22.4360837Z", - "dateUpdated": "2021-08-16T05:38:22.5430744Z", - "dateLastUpdateAttempted": "2021-08-16T05:38:22.5430744Z", + "dateInstalled": "2021-07-05T20:21:08.477471Z", + "dateUpdated": "2021-08-02T19:50:44.82838Z", + "dateLastUpdateAttempted": "2021-08-02T19:50:44.82838Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -18721,17 +19489,17 @@ "installedTargets": null }, { - "addonID": 222967, + "addonID": 399558, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3172028, - "displayName": "Ping-1.16.4-1.6.9.jar", - "fileName": "Ping-1.16.4-1.6.9.jar", - "fileDate": "2021-01-18T00:44:26.977Z", - "fileLength": 74487, + "id": 3285196, + "displayName": "constructionwand-1.16.5-2.2.jar", + "fileName": "constructionwand-1.16.5-2.2.jar", + "fileDate": "2021-04-22T06:23:58.49Z", + "fileLength": 193910, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3172/28/Ping-1.16.4-1.6.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3285/196/constructionwand-1.16.5-2.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18739,36 +19507,42 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 728094235, + "fingerprint": 4036072437, "type": 3, "invalidFingerprint": false }, { - "foldername": "dmillerw", - "fingerprint": 2671317452, + "foldername": "thetadev", + "fingerprint": 3081620486, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3690507763, + "fingerprint": 1893517105, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1373703541, "type": 3, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 2063318241, + "fingerprint": 1765697479, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 214469095, + "fingerprint": 4148778574, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3676475429, + "packageFingerprint": 476710429, "gameVersion": [ "1.16.3", "1.16.5", @@ -18813,18 +19587,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2130845, - "projectId": 222967, - "packageFingerprintId": 588221708, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2652688, - "gameVersionId": 7498, + "renderCacheId": 2277204, + "projectId": 399558, + "packageFingerprintId": 648233959, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2882846, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Ping-1.16.4-1.6.9.jar" + "FileNameOnDisk": "constructionwand-1.16.5-2.2.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4284725Z", - "dateUpdated": "2021-07-05T20:21:08.4284725Z", + "dateInstalled": "2021-07-05T20:21:08.4404715Z", + "dateUpdated": "2021-07-05T20:21:08.4404715Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -18838,84 +19612,102 @@ "installedTargets": null }, { - "addonID": 243076, + "addonID": 404038, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3400575, - "displayName": "Refined Storage 1.9.15", - "fileName": "refinedstorage-1.9.15.jar", - "fileDate": "2021-07-25T14:59:24.147Z", - "fileLength": 3130693, + "id": 3242497, + "displayName": "LostTrinkets-1.16.5-0.1.27.jar", + "fileName": "LostTrinkets-1.16.5-0.1.27.jar", + "fileDate": "2021-03-17T11:27:42.42Z", + "fileLength": 323141, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3400/575/refinedstorage-1.9.15.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3242/497/LostTrinkets-1.16.5-0.1.27.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 59232490, + "addonId": 347954, + "type": 3, + "fileId": 3242497 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 549440526, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1263910759, - "type": 0, + "fingerprint": 65383375, + "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 1059854772, - "type": 0, + "foldername": "owmii", + "fingerprint": 1320834181, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1506065654, - "type": 0, + "fingerprint": 180507744, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 580726858, - "type": 0, + "fingerprint": 3278550944, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3020331149, - "type": 0, + "foldername": "losttrinkets.mixins.json", + "fingerprint": 3076126122, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 244798530, - "type": 0, + "fingerprint": 3276926842, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "losttrinkets.refmap.json", + "fingerprint": 2452624775, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 971626747, + "packageFingerprint": 1316093734, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2221839, + "projectId": 404038, + "packageFingerprintId": 626513246, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2799420, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "refinedstorage-1.9.15.jar" + "FileNameOnDisk": "LostTrinkets-1.16.5-0.1.27.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4494726Z", - "dateUpdated": "2021-07-25T20:34:21.8317287Z", - "dateLastUpdateAttempted": "2021-07-25T20:34:21.8317287Z", + "dateInstalled": "2021-07-05T20:21:08.4254714Z", + "dateUpdated": "2021-07-05T20:21:08.4254714Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -18928,90 +19720,73 @@ "installedTargets": null }, { - "addonID": 308989, + "addonID": 245211, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3403876, - "displayName": "caelus-forge-1.16.5-2.1.3.1.jar", - "fileName": "caelus-forge-1.16.5-2.1.3.1.jar", - "fileDate": "2021-07-28T09:00:15.973Z", - "fileLength": 41793, + "id": 3319255, + "displayName": "TheOneProbe - 1.16-3.1.4", + "fileName": "theoneprobe-1.16-3.1.4.jar", + "fileDate": "2021-05-22T13:26:45.78Z", + "fileLength": 327081, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3403/876/caelus-forge-1.16.5-2.1.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3319/255/theoneprobe-1.16-3.1.4.jar", "isAlternate": false, - "alternateFileId": 3403877, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 2211930798, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "top", - "fingerprint": 1292321890, - "type": 0, - "invalidFingerprint": false - }, + "alternateFileId": 0, + "dependencies": [ { - "foldername": "assets", - "fingerprint": 353144346, - "type": 0, - "invalidFingerprint": false + "id": 0, + "addonId": 244651, + "type": 2, + "fileId": 0 }, { - "foldername": "caelus.mixins.json", - "fingerprint": 2479739610, - "type": 0, - "invalidFingerprint": false + "id": 0, + "addonId": 270789, + "type": 2, + "fileId": 0 }, { - "foldername": "caelus_icon.png", - "fingerprint": 2107451488, - "type": 0, - "invalidFingerprint": false - }, + "id": 0, + "addonId": 227083, + "type": 2, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ { - "foldername": "CHANGELOG.md", - "fingerprint": 2484148725, + "foldername": "META-INF", + "fingerprint": 1307948644, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 4073022409, + "foldername": "mcjty", + "fingerprint": 537476041, "type": 0, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 3374142206, + "foldername": "assets", + "fingerprint": 1096082130, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2008059415, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "README.md", - "fingerprint": 847246422, + "fingerprint": 3099463473, "type": 0, "invalidFingerprint": false }, { - "foldername": "caelus.refmap.json", - "fingerprint": 3426438488, + "foldername": "data", + "fingerprint": 2393313921, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2077954968, + "packageFingerprint": 650328085, "gameVersion": [ "1.16.5", "Forge" @@ -19025,11 +19800,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "caelus-forge-1.16.5-2.1.3.1.jar" + "FileNameOnDisk": "theoneprobe-1.16-3.1.4.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5144171Z", - "dateUpdated": "2021-07-29T17:38:10.4912404Z", - "dateLastUpdateAttempted": "2021-07-29T17:38:10.4912404Z", + "dateInstalled": "2021-09-20T04:14:01.0498938Z", + "dateUpdated": "2021-09-20T04:14:01.0899026Z", + "dateLastUpdateAttempted": "2021-09-20T04:14:01.0899026Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -19042,202 +19817,103 @@ "installedTargets": null }, { - "addonID": 429625, + "addonID": 419699, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3157832, - "displayName": "eidolon-0.2.7.jar", - "fileName": "eidolon-0.2.7.jar", - "fileDate": "2021-01-04T02:56:27.373Z", - "fileLength": 2040762, - "releaseType": 2, + "id": 3462013, + "displayName": "[Forge 1.16.4/5] v1.23.33", + "fileName": "architectury-1.23.33-forge.jar", + "fileDate": "2021-09-17T14:44:40.27Z", + "fileLength": 513560, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3157/832/eidolon-0.2.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3462/13/architectury-1.23.33-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 309927, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 1952269718, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "elucent", - "fingerprint": 3226906529, + "foldername": "architectury-common.mixins.json", + "fingerprint": 1305967297, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1034786461, + "foldername": "architectury.accessWidener", + "fingerprint": 257494810, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 537449533, + "foldername": "architectury-common-refmap.json", + "fingerprint": 1953518274, "type": 0, "invalidFingerprint": false }, { - "foldername": "eidolon.mixins.json", - "fingerprint": 347554349, + "foldername": "icon.png", + "fingerprint": 337711864, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 1096803035, "type": 0, "invalidFingerprint": false }, { - "foldername": "eidolon.refmap.json", - "fingerprint": 1806857758, + "foldername": "architectury.mixins.json", + "fingerprint": 1554387086, "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 360156398, - "gameVersion": [ - "1.16.3", - "1.16.5", - "Forge", - "1.16.4" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "eidolon-0.2.7.jar" - }, - "dateInstalled": "2021-09-16T17:54:57.4762018Z", - "dateUpdated": "2021-09-16T17:54:57.4892313Z", - "dateLastUpdateAttempted": "2021-09-16T17:54:57.4892313Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 288885, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3245271, - "displayName": "FastWorkbench-1.16.4-4.5.1.jar", - "fileName": "FastWorkbench-1.16.4-4.5.1.jar", - "fileDate": "2021-03-20T00:26:45.9Z", - "fileLength": 33772, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3245/271/FastWorkbench-1.16.4-4.5.1.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 59438096, - "addonId": 283644, - "type": 3, - "fileId": 3245271 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 4043952143, - "type": 3, - "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3464325349, - "type": 3, + "foldername": "META-INF", + "fingerprint": 1184458518, + "type": 0, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 2742177847, - "type": 3, + "foldername": "me", + "fingerprint": 187094204, + "type": 0, "invalidFingerprint": false }, { - "foldername": "coremods", - "fingerprint": 3651907618, - "type": 3, + "foldername": "architectury_inject_architectury_common_53d158909e4141f29a002e4e846289d1_65633a536525e78795f5d2e868e91d166738c055fb3ad8e01516b6119e872ad6architectury12333devjar", + "fingerprint": 2315980521, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1063136111, - "type": 3, + "foldername": "architectury-forge-refmap.json", + "fingerprint": 3556241074, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1034278883, + "packageFingerprint": 1955599694, "gameVersion": [ "1.16.5", + "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2226500, - "projectId": 288885, - "packageFingerprintId": 628236256, - "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", - "gameVersionMappingId": 2805252, - "gameVersionId": 8134, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "FastWorkbench-1.16.4-4.5.1.jar" + "FileNameOnDisk": "architectury-1.23.33-forge.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5079Z", - "dateUpdated": "2021-07-05T20:20:52.5079Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:19:25.2879367Z", + "dateUpdated": "2021-09-18T21:18:53.0353687Z", + "dateLastUpdateAttempted": "2021-09-18T21:18:53.0353687Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -19250,17 +19926,17 @@ "installedTargets": null }, { - "addonID": 349206, + "addonID": 267602, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3301978, - "displayName": "seals-1.16.3-2.1.2.jar", - "fileName": "seals-1.16.3-2.1.2.jar", - "fileDate": "2021-05-07T22:07:47.427Z", - "fileLength": 37607, - "releaseType": 1, + "id": 3137659, + "displayName": "CTM - MC1.16.1-1.1.2.6", + "fileName": "CTM-MC1.16.1-1.1.2.6.jar", + "fileDate": "2020-12-13T18:05:47.6Z", + "fileLength": 186068, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3301/978/seals-1.16.3-2.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3137/659/CTM-MC1.16.1-1.1.2.6.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -19268,46 +19944,37 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 9915634, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 3993713864, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1149959580, + "fingerprint": 2314499695, "type": 3, "invalidFingerprint": false }, - { - "foldername": "pack.mcmeta", - "fingerprint": 958460847, + { + "foldername": "team", + "fingerprint": 1421294105, "type": 3, "invalidFingerprint": false }, { - "foldername": "seals.mixins.json", - "fingerprint": 1412240311, + "foldername": "pack.mcmeta", + "fingerprint": 2904194323, "type": 3, "invalidFingerprint": false }, { - "foldername": "seals.refmap.json", - "fingerprint": 1202218701, + "foldername": "mcmod.info", + "fingerprint": 929912909, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3725189602, + "packageFingerprint": 1104122771, "gameVersion": [ "1.16.3", + "1.16.1", "1.16.5", - "1.16.4" + "Forge", + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -19316,17 +19983,35 @@ "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", "gameVersionName": "1.16.3" }, + { + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -19334,18 +20019,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2299291, - "projectId": 349206, - "packageFingerprintId": 658497540, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2918486, - "gameVersionId": 8056, + "renderCacheId": 2087245, + "projectId": 267602, + "packageFingerprintId": 567005171, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2586262, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "seals-1.16.3-2.1.2.jar" + "FileNameOnDisk": "CTM-MC1.16.1-1.1.2.6.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5454032Z", - "dateUpdated": "2021-07-05T20:20:52.5454032Z", + "dateInstalled": "2021-07-05T20:21:08.4304734Z", + "dateUpdated": "2021-07-05T20:21:08.4304734Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -19359,90 +20044,71 @@ "installedTargets": null }, { - "addonID": 525693, + "addonID": 430906, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3453953, - "displayName": "occultism_kubejs-0.0.1", - "fileName": "occultism_kubejs-1.16.5-0.0.1.jar", - "fileDate": "2021-09-08T11:41:06.047Z", - "fileLength": 406286, - "releaseType": 2, + "id": 3252734, + "displayName": "catjammies-1.1.0.jar", + "fileName": "catjammies-1.1.0.jar", + "fileDate": "2021-03-27T12:54:26.603Z", + "fileLength": 10698, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3453/953/occultism_kubejs-1.16.5-0.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3252/734/catjammies-1.1.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 361026, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 238086, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3465815652, - "type": 0, + "fingerprint": 2124015258, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1572905025, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs.plugins.txt", - "fingerprint": 2276234037, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "occultism-kubejs.png", - "fingerprint": 3138228409, - "type": 0, + "fingerprint": 2861836196, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 57918967, - "type": 0, + "fingerprint": 2553090070, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2665602663, + "packageFingerprint": 797192788, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16", - "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2236251, + "projectId": 430906, + "packageFingerprintId": 632754313, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2821204, + "gameVersionId": 8203, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "occultism_kubejs-1.16.5-0.0.1.jar" + "FileNameOnDisk": "catjammies-1.1.0.jar" }, - "dateInstalled": "2021-09-09T16:09:26.8563286Z", - "dateUpdated": "2021-09-09T16:09:26.8673298Z", - "dateLastUpdateAttempted": "2021-09-09T16:09:26.8673298Z", + "dateInstalled": "2021-07-05T20:21:08.4434737Z", + "dateUpdated": "2021-07-05T20:21:08.4434737Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -19455,17 +20121,17 @@ "installedTargets": null }, { - "addonID": 247560, + "addonID": 296686, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3444476, - "displayName": "Biomes You Go 1.3.4 MCV: 1.16.5", - "fileName": "byg-1.3.4.jar", - "fileDate": "2021-08-31T02:54:58.89Z", - "fileLength": 10313922, + "id": 3390492, + "displayName": "rsgauges-1.16.4-1.2.11.jar", + "fileName": "rsgauges-1.16.4-1.2.11.jar", + "fileDate": "2021-07-16T07:47:04.75Z", + "fileLength": 979375, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3444/476/byg-1.3.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3390/492/rsgauges-1.16.4-1.2.11.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -19473,69 +20139,52 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1985442624, + "fingerprint": 1604687917, "type": 0, "invalidFingerprint": false }, { - "foldername": "corgiaoc", - "fingerprint": 2592629088, + "foldername": ".gitversion-rsgauges", + "fingerprint": 449354936, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2728574134, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "byg.mixins.json", - "fingerprint": 3019215720, + "fingerprint": 1897879953, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 4025516341, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo_byg1.png", - "fingerprint": 55594528, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo_text.png", - "fingerprint": 220232087, + "fingerprint": 1195558833, "type": 0, "invalidFingerprint": false }, { - "foldername": "mini_logo.png", - "fingerprint": 217914077, + "foldername": "logo.png", + "fingerprint": 2495119306, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2337918188, + "fingerprint": 1558535636, "type": 0, "invalidFingerprint": false }, { - "foldername": "byg.refmap.json", - "fingerprint": 146847686, + "foldername": "wile", + "fingerprint": 626408179, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 803105978, + "packageFingerprint": 2608370220, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -19546,11 +20195,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "byg-1.3.4.jar" + "FileNameOnDisk": "rsgauges-1.16.4-1.2.11.jar" }, - "dateInstalled": "2021-08-25T04:42:14.3967903Z", - "dateUpdated": "2021-08-31T18:22:24.0062386Z", - "dateLastUpdateAttempted": "2021-08-31T18:22:24.0062386Z", + "dateInstalled": "2021-07-05T20:21:08.4624731Z", + "dateUpdated": "2021-07-24T19:09:37.0404256Z", + "dateLastUpdateAttempted": "2021-07-24T19:09:37.0404256Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -19563,60 +20212,91 @@ "installedTargets": null }, { - "addonID": 520110, + "addonID": 312353, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3467865, - "displayName": "Iceberg-1.16.5-1.0.8.jar", - "fileName": "Iceberg-1.16.5-1.0.8.jar", - "fileDate": "2021-09-21T19:21:06.41Z", - "fileLength": 40039, + "id": 3475090, + "displayName": "Artifacts-1.16.5-2.10.2.jar", + "fileName": "Artifacts-1.16.5-2.10.2.jar", + "fileDate": "2021-09-27T21:10:28.033Z", + "fileLength": 466241, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3467/865/Iceberg-1.16.5-1.0.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3475/90/Artifacts-1.16.5-2.10.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 465066, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 194860943, + "fingerprint": 1115433340, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2966179457, + "foldername": "artifacts", + "fingerprint": 3308877399, "type": 0, "invalidFingerprint": false }, { - "foldername": "iceberg.mixins.json", - "fingerprint": 3580825262, + "foldername": ".cache", + "fingerprint": 2587024261, "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 577472019, + "foldername": "assets", + "fingerprint": 3452165575, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2793233805, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 699841184, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "mixins.artifacts.json", + "fingerprint": 2472515905, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2638007011, + "fingerprint": 2577392592, "type": 0, "invalidFingerprint": false }, { - "foldername": "iceberg.refmap.json", - "fingerprint": 736849517, + "foldername": "mixins.artifacts.refmap.json", + "fingerprint": 731415803, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2721580835, + "packageFingerprint": 3318923622, "gameVersion": [ "1.16.5", "Forge" @@ -19627,15 +20307,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Iceberg-1.16.5-1.0.8.jar" + "FileNameOnDisk": "Artifacts-1.16.5-2.10.2.jar" }, - "dateInstalled": "2021-09-17T18:18:50.3163976Z", - "dateUpdated": "2021-09-21T20:09:30.5229542Z", - "dateLastUpdateAttempted": "2021-09-21T20:09:30.5229542Z", - "status": 5, + "dateInstalled": "2021-07-05T20:19:25.3019353Z", + "dateUpdated": "2021-10-02T18:11:57.5574198Z", + "dateLastUpdateAttempted": "2021-10-02T18:11:57.5574198Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -19647,101 +20327,58 @@ "installedTargets": null }, { - "addonID": 55438, + "addonID": 352622, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3346467, - "displayName": "Furniture Mod 7.0.0pre22", - "fileName": "cfm-7.0.0pre22-1.16.3.jar", - "fileDate": "2021-06-10T13:59:34.013Z", - "fileLength": 2033912, - "releaseType": 2, + "id": 3098120, + "displayName": "justenoughbeacons-3.1-1.16.3.jar", + "fileName": "justenoughbeacons-3.1-1.16.3.jar", + "fileDate": "2020-10-31T16:40:19.03Z", + "fileLength": 17003, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3346/467/cfm-7.0.0pre22-1.16.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3098/120/justenoughbeacons-3.1-1.16.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 66011681, - "addonId": 457570, - "type": 2, - "fileId": 3346467 - }, - { - "id": 66011680, - "addonId": 459701, - "type": 2, - "fileId": 3346467 + "id": 56938944, + "addonId": 238222, + "type": 3, + "fileId": 3098120 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3006079121, + "fingerprint": 755286497, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2346244016, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 138447672, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 2261645772, + "fingerprint": 3879731397, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2807042880, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "cfm.mixins.json", - "fingerprint": 3721913457, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 2704393417, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "furniture.png", - "fingerprint": 4074948463, + "fingerprint": 1916634993, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2646193082, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "cfm.refmap.json", - "fingerprint": 660210366, + "fingerprint": 2432683592, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4276867605, + "packageFingerprint": 3588661632, "gameVersion": [ "1.16.3", "1.16.5", - "Forge", "1.16.4" ], "sortableGameVersion": [ @@ -19757,12 +20394,6 @@ "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", @@ -19775,18 +20406,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2355611, - "projectId": 55438, - "packageFingerprintId": 680585073, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3028842, - "gameVersionId": 7498, + "renderCacheId": 2037432, + "projectId": 352622, + "packageFingerprintId": 545433630, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2505157, + "gameVersionId": 8056, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "cfm-7.0.0pre22-1.16.3.jar" + "FileNameOnDisk": "justenoughbeacons-3.1-1.16.3.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1120321Z", - "dateUpdated": "2021-07-05T20:21:15.1120321Z", + "dateInstalled": "2021-07-05T20:21:08.4244717Z", + "dateUpdated": "2021-07-05T20:21:08.4244717Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -19800,183 +20431,90 @@ "installedTargets": null }, { - "addonID": 381605, + "addonID": 316833, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3035686, - "displayName": "DrawersTooltip-1.16.2-2.1.0.jar", - "fileName": "DrawersTooltip-1.16.2-2.1.0.jar", - "fileDate": "2020-08-18T06:09:17.793Z", - "fileLength": 12907, + "id": 3333962, + "displayName": "ObserverLib-1.16.5-1.5.3.jar", + "fileName": "observerlib-1.16.5-1.5.3.jar", + "fileDate": "2021-06-01T18:21:26.543Z", + "fileLength": 150815, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3035/686/DrawersTooltip-1.16.2-2.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3333/962/observerlib-1.16.5-1.5.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 54672115, - "addonId": 223852, - "type": 3, - "fileId": 3035686 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 766716947, + "fingerprint": 3898875287, "type": 3, "invalidFingerprint": false }, { - "foldername": "snownee", - "fingerprint": 3572036476, + "foldername": "hellfirepvp", + "fingerprint": 992663720, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2008431972, + "foldername": "javascript", + "fingerprint": 2727651585, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3068550138, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2983742861, + "fingerprint": 3982211534, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2696312150, + "packageFingerprint": 2841987314, "gameVersion": [ - "1.16.3", "1.16.5", - "1.16.4", - "1.16.2" + "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 1961296, - "projectId": 381605, - "packageFingerprintId": 507405396, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2383526, - "gameVersionId": 4458, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "DrawersTooltip-1.16.2-2.1.0.jar" - }, - "dateInstalled": "2021-07-05T20:21:03.3671226Z", - "dateUpdated": "2021-07-05T20:21:03.3671226Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 254268, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3433163, - "displayName": "torchmaster-2.3.8.jar", - "fileName": "torchmaster-2.3.8.jar", - "fileDate": "2021-08-21T07:05:59.897Z", - "fileLength": 94627, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3433/163/torchmaster-2.3.8.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3484587481, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 2550158330, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1335251349, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3524681025, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0, - "invalidFingerprint": false + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" } ], - "packageFingerprint": 1743150879, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2339998, + "projectId": 316833, + "packageFingerprintId": 674251785, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2997617, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "torchmaster-2.3.8.jar" + "FileNameOnDisk": "observerlib-1.16.5-1.5.3.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4634736Z", - "dateUpdated": "2021-08-22T11:02:56.9416501Z", - "dateLastUpdateAttempted": "2021-08-22T11:02:56.9416501Z", + "dateInstalled": "2021-07-05T20:21:08.4794714Z", + "dateUpdated": "2021-07-05T20:21:08.4794714Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -19989,23 +20527,23 @@ "installedTargets": null }, { - "addonID": 235279, + "addonID": 222880, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3376782, - "displayName": "Chisel - MC1.16.5-2.0.1-alpha.4", - "fileName": "Chisel-MC1.16.5-2.0.1-alpha.4.jar", - "fileDate": "2021-07-04T23:38:36.057Z", - "fileLength": 7313725, - "releaseType": 3, + "id": 3412300, + "displayName": "thermal_foundation-1.16.5-1.3.2.jar", + "fileName": "thermal_foundation-1.16.5-1.3.2.jar", + "fileDate": "2021-08-04T00:30:20.643Z", + "fileLength": 4430095, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3376/782/Chisel-MC1.16.5-2.0.1-alpha.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3412/300/thermal_foundation-1.16.5-1.3.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 267602, + "addonId": 69162, "type": 3, "fileId": 0 } @@ -20014,42 +20552,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1999748061, + "fingerprint": 1794248821, "type": 0, "invalidFingerprint": false }, { - "foldername": "team", - "fingerprint": 2022868106, + "foldername": "cofh", + "fingerprint": 3057857852, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3078537305, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 824854242, + "fingerprint": 3340946445, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2229765295, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4171709066, + "fingerprint": 4253522632, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 3123031256, + "foldername": "thermal_foundation.png", + "fingerprint": 2954702152, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2217915551, + "foldername": "thermal_series.png", + "fingerprint": 3723551670, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1882005860, + "packageFingerprint": 2482344754, "gameVersion": [ "1.16.5", "Forge" @@ -20063,11 +20613,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Chisel-MC1.16.5-2.0.1-alpha.4.jar" + "FileNameOnDisk": "thermal_foundation-1.16.5-1.3.2.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-07-05T20:31:32.2439202Z", - "dateLastUpdateAttempted": "2021-07-05T20:31:32.2439202Z", + "dateInstalled": "2021-07-05T20:21:08.4234722Z", + "dateUpdated": "2021-08-04T13:04:55.5768193Z", + "dateLastUpdateAttempted": "2021-08-04T13:04:55.5768193Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -20080,91 +20630,85 @@ "installedTargets": null }, { - "addonID": 312353, + "addonID": 260912, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3374317, - "displayName": "Artifacts-1.16.5-2.10.0.jar", - "fileName": "Artifacts-1.16.5-2.10.0.jar", - "fileDate": "2021-07-02T20:59:04.887Z", - "fileLength": 464318, + "id": 3310471, + "displayName": "XNet - 1.16-3.0.13", + "fileName": "xnet-1.16-3.0.13.jar", + "fileDate": "2021-05-15T12:55:01.417Z", + "fileLength": 538686, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3374/317/Artifacts-1.16.5-2.10.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3310/471/xnet-1.16-3.0.13.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 67879323, - "addonId": 309927, + "id": 63860129, + "addonId": 233105, "type": 3, - "fileId": 3374317 + "fileId": 3310471 }, { - "id": 67879324, - "addonId": 465066, + "id": 63860126, + "addonId": 326041, "type": 3, - "fileId": 3374317 + "fileId": 3310471 + }, + { + "id": 63860128, + "addonId": 270789, + "type": 2, + "fileId": 3310471 + }, + { + "id": 63860127, + "addonId": 245211, + "type": 2, + "fileId": 3310471 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1739477954, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "artifacts", - "fingerprint": 1739447542, + "fingerprint": 3412820401, "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 2587024261, + "foldername": "mcjty", + "fingerprint": 4044172560, "type": 3, "invalidFingerprint": false }, { - "foldername": "artifacts.mixins.json", - "fingerprint": 2910579360, + "foldername": "mcmod.info", + "fingerprint": 4235334237, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3187471784, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 2793233805, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 699841184, + "fingerprint": 4131991424, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2577392592, + "fingerprint": 3479397869, "type": 3, "invalidFingerprint": false }, { - "foldername": "artifacts.refmap.json", - "fingerprint": 1241368700, + "foldername": "data", + "fingerprint": 1285014051, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1778053120, + "packageFingerprint": 3934016888, "gameVersion": [ "1.16.5", "Forge" @@ -20188,18 +20732,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2390792, - "projectId": 312353, - "packageFingerprintId": 697148328, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3097124, - "gameVersionId": 7498, + "renderCacheId": 2310395, + "projectId": 260912, + "packageFingerprintId": 663290503, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2941911, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Artifacts-1.16.5-2.10.0.jar" + "FileNameOnDisk": "xnet-1.16-3.0.13.jar" }, - "dateInstalled": "2021-07-05T20:19:25.3019353Z", - "dateUpdated": "2021-07-05T20:19:25.3019353Z", + "dateInstalled": "2021-07-05T20:21:08.4334742Z", + "dateUpdated": "2021-07-05T20:21:08.4334742Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -20213,63 +20757,76 @@ "installedTargets": null }, { - "addonID": 364852, + "addonID": 361579, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3263830, - "displayName": "RSLargePatterns-1.16.5-2.1.0.3.jar", - "fileName": "RSLargePatterns-1.16.5-2.1.0.3.jar", - "fileDate": "2021-04-05T08:28:35.253Z", - "fileLength": 124744, - "releaseType": 2, + "id": 3337641, + "displayName": "1.6.0 (Forge 1.16.5)", + "fileName": "spark-forge.jar", + "fileDate": "2021-06-04T13:29:25.917Z", + "fileLength": 2519703, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3263/830/RSLargePatterns-1.16.5-2.1.0.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3337/641/spark-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 60595740, - "addonId": 243076, - "type": 3, - "fileId": 3263830 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2864329655, + "fingerprint": 1045422118, "type": 3, "invalidFingerprint": false }, { - "foldername": "thelm", - "fingerprint": 2642925518, + "foldername": "me", + "fingerprint": 2648919686, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 441457746, + "foldername": "pack.mcmeta", + "fingerprint": 875227375, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 4225636517, + "foldername": "spark", + "fingerprint": 3271438722, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3455540839, + "foldername": "libasyncProfiler.so", + "fingerprint": 3394078410, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "google", + "fingerprint": 2947709351, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "win32-x86-64", + "fingerprint": 2158727245, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "win32-x86", + "fingerprint": 2564852001, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2083800620, + "packageFingerprint": 3681000633, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge", + "1.16.4" ], "sortableGameVersion": [ { @@ -20277,6 +20834,18 @@ "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -20284,18 +20853,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2250173, - "projectId": 364852, - "packageFingerprintId": 638404754, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2842644, - "gameVersionId": 8203, + "renderCacheId": 2344715, + "projectId": 361579, + "packageFingerprintId": 676068808, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3007032, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "RSLargePatterns-1.16.5-2.1.0.3.jar" + "FileNameOnDisk": "spark-forge.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5324017Z", - "dateUpdated": "2021-07-05T20:20:52.5324017Z", + "dateInstalled": "2021-07-05T20:21:08.4714712Z", + "dateUpdated": "2021-07-05T20:21:08.4714712Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -20309,70 +20878,94 @@ "installedTargets": null }, { - "addonID": 306770, + "addonID": 236307, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3459118, - "displayName": "Patchouli-1.16.4-53.2.jar", - "fileName": "Patchouli-1.16.4-53.2.jar", - "fileDate": "2021-09-14T05:44:05.877Z", - "fileLength": 593114, + "id": 3476398, + "displayName": "IntegratedDynamics-1.16.5-1.10.1.jar", + "fileName": "IntegratedDynamics-1.16.5-1.10.1.jar", + "fileDate": "2021-09-29T14:43:46.607Z", + "fileLength": 3162333, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3459/118/Patchouli-1.16.4-53.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/398/IntegratedDynamics-1.16.5-1.10.1.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3476399, + "dependencies": [ + { + "id": 0, + "addonId": 232758, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 247007, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 324335310, + "fingerprint": 3158566783, "type": 0, "invalidFingerprint": false }, { - "foldername": "vazkii", - "fingerprint": 742263531, + "foldername": "org", + "fingerprint": 1249784503, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2360440062, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 887639394, + "fingerprint": 898374091, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 636248690, + "foldername": "logo_small.png", + "fingerprint": 2118832145, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 141162411, + "fingerprint": 3939935539, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "LICENSE-re2j.txt", + "fingerprint": 66756537, "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 4171053254, + "fingerprint": 711418639, "type": 0, "invalidFingerprint": false }, { - "foldername": "patchouli.refmap.json", - "fingerprint": 3277061942, + "foldername": "vendors", + "fingerprint": 1036984855, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1640373126, + "packageFingerprint": 1352345368, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -20383,12 +20976,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Patchouli-1.16.4-53.2.jar" + "FileNameOnDisk": "IntegratedDynamics-1.16.5-1.10.1.jar" }, - "dateInstalled": "2021-07-05T20:20:52.525391Z", - "dateUpdated": "2021-09-15T16:38:45.3101888Z", - "dateLastUpdateAttempted": "2021-09-15T16:38:45.3101888Z", - "status": 5, + "dateInstalled": "2021-07-05T20:19:25.3009353Z", + "dateUpdated": "2021-10-02T18:14:22.4409612Z", + "dateLastUpdateAttempted": "2021-10-02T18:14:22.4409612Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -20400,17 +20993,17 @@ "installedTargets": null }, { - "addonID": 457570, + "addonID": 359344, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3434071, - "displayName": "Configured 1.2.0", - "fileName": "configured-1.2.0-1.16.3.jar", - "fileDate": "2021-08-22T06:20:13.033Z", - "fileLength": 75690, + "id": 3146507, + "displayName": "Interactio-1.16.4-3.1.1.jar", + "fileName": "Interactio-1.16.4-3.1.1.jar", + "fileDate": "2020-12-22T21:03:52.46Z", + "fileLength": 184601, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3434/71/configured-1.2.0-1.16.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3146/507/Interactio-1.16.4-3.1.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -20418,62 +21011,85 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1404851920, - "type": 0, + "fingerprint": 2397881799, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1463912306, - "type": 0, + "foldername": "dev", + "fingerprint": 2638646285, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1486104158, - "type": 0, + "fingerprint": 358227914, + "type": 3, "invalidFingerprint": false }, { - "foldername": "configured_icon.png", - "fingerprint": 2545899887, - "type": 0, + "foldername": "interactio.mixins.json", + "fingerprint": 3034597747, + "type": 3, "invalidFingerprint": false }, { - "foldername": "configured_logo.png", - "fingerprint": 1580524172, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 1690738335, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 959311262, - "type": 0, + "foldername": "interactio.refmap.json", + "fingerprint": 2099327145, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 895730471, + "packageFingerprint": 505532498, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2098466, + "projectId": 359344, + "packageFingerprintId": 572521093, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2602151, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "configured-1.2.0-1.16.3.jar" + "FileNameOnDisk": "Interactio-1.16.4-3.1.1.jar" }, - "dateInstalled": "2021-09-16T11:30:56.4159563Z", - "dateUpdated": "2021-09-16T11:30:56.422976Z", - "dateLastUpdateAttempted": "2021-09-16T11:30:56.422976Z", + "dateInstalled": "2021-07-05T20:21:08.4684718Z", + "dateUpdated": "2021-07-05T20:21:08.4684718Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -20486,17 +21102,17 @@ "installedTargets": null }, { - "addonID": 316833, + "addonID": 368293, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3333962, - "displayName": "ObserverLib-1.16.5-1.5.3.jar", - "fileName": "observerlib-1.16.5-1.5.3.jar", - "fileDate": "2021-06-01T18:21:26.543Z", - "fileLength": 150815, + "id": 3469414, + "displayName": "Repurposed Structures v3.2.5 (1.16.5 MC)", + "fileName": "repurposed_structures_forge-3.2.5+1.16.5.jar", + "fileDate": "2021-09-23T16:25:23.263Z", + "fileLength": 5239086, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3333/962/observerlib-1.16.5-1.5.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3469/414/repurposed_structures_forge-3.2.5+1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -20504,72 +21120,72 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3898875287, - "type": 3, + "fingerprint": 524167333, + "type": 0, "invalidFingerprint": false }, { - "foldername": "hellfirepvp", - "fingerprint": 992663720, - "type": 3, + "foldername": "com", + "fingerprint": 1666062541, + "type": 0, "invalidFingerprint": false }, { - "foldername": "javascript", - "fingerprint": 2727651585, - "type": 3, + "foldername": "assets", + "fingerprint": 335128433, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3068550138, - "type": 3, + "foldername": "data", + "fingerprint": 954114756, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3982211534, - "type": 3, + "fingerprint": 2993123570, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "RepurposedStructuresLogo.png", + "fingerprint": 197399281, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "repurposed_structures.mixins.json", + "fingerprint": 2605214407, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "repurposed_structures.refmap.json", + "fingerprint": 2123920743, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2841987314, + "packageFingerprint": 744666860, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2339998, - "projectId": 316833, - "packageFingerprintId": 674251785, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2997617, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "observerlib-1.16.5-1.5.3.jar" - }, - "dateInstalled": "2021-07-05T20:21:08.4794714Z", - "dateUpdated": "2021-07-05T20:21:08.4794714Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "FileNameOnDisk": "repurposed_structures_forge-3.2.5+1.16.5.jar" + }, + "dateInstalled": "2021-08-05T21:06:59.9349112Z", + "dateUpdated": "2021-09-24T18:45:33.5399274Z", + "dateLastUpdateAttempted": "2021-09-24T18:45:33.5399274Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -20582,17 +21198,17 @@ "installedTargets": null }, { - "addonID": 405077, + "addonID": 357108, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3323323, - "displayName": "gunswithoutroses-1.16.5-1.0.9.jar", - "fileName": "gunswithoutroses-1.16.5-1.0.9.jar", - "fileDate": "2021-05-24T18:30:40.11Z", - "fileLength": 118936, + "id": 3120864, + "displayName": "clockout-1.16.4-2.0.0.1.jar", + "fileName": "clockout-1.16.4-2.0.0.1.jar", + "fileDate": "2020-11-23T17:07:00.823Z", + "fileLength": 38094, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3323/323/gunswithoutroses-1.16.5-1.0.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3120/864/clockout-1.16.4-2.0.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -20600,36 +21216,42 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1464571035, + "fingerprint": 561900800, "type": 3, "invalidFingerprint": false }, { - "foldername": "lykrast", - "fingerprint": 2300657282, + "foldername": "commoble", + "fingerprint": 27039134, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1018287968, + "fingerprint": 37490097, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 741703825, + "fingerprint": 681119471, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 929559612, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2295410020, + "fingerprint": 3380797652, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 451168249, + "packageFingerprint": 3736035107, "gameVersion": [ "1.16.5", "Forge", @@ -20660,18 +21282,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2326671, - "projectId": 405077, - "packageFingerprintId": 668990640, + "renderCacheId": 2065431, + "projectId": 357108, + "packageFingerprintId": 558258675, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2971601, + "gameVersionMappingId": 3026020, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "gunswithoutroses-1.16.5-1.0.9.jar" + "FileNameOnDisk": "clockout-1.16.4-2.0.0.1.jar" }, - "dateInstalled": "2021-07-05T20:20:47.9542016Z", - "dateUpdated": "2021-07-05T20:20:47.9542016Z", + "dateInstalled": "2021-07-05T20:21:08.4584744Z", + "dateUpdated": "2021-07-05T20:21:08.4584744Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -20685,60 +21307,96 @@ "installedTargets": null }, { - "addonID": 417365, + "addonID": 363820, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3367220, - "displayName": "[1.16.5] More Crafting Tables Forge ", - "fileName": "MoreCraftingTables1.16.5.jar", - "fileDate": "2021-06-28T02:55:28.313Z", - "fileLength": 119960, - "releaseType": 1, + "id": 3460560, + "displayName": "0.2.16-BETA-2", + "fileName": "TerraForged-1.16.5-0.2.16-BETA-2.jar", + "fileDate": "2021-09-15T18:50:36.75Z", + "fileLength": 1675339, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3367/220/MoreCraftingTables1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3460/560/TerraForged-1.16.5-0.2.16-BETA-2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ + { + "foldername": "META-INF", + "fingerprint": 94526114, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "LICENSE", + "fingerprint": 2618262665, + "type": 0, + "invalidFingerprint": false + }, { "foldername": "assets", - "fingerprint": 3245263841, + "fingerprint": 3166510882, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "biomes.png", + "fingerprint": 2949016127, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "biomes.txt", + "fingerprint": 366301374, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 82768127, + "fingerprint": 3777362097, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3607957206, + "fingerprint": 2274904774, "type": 0, "invalidFingerprint": false }, { - "foldername": "mctb.png", - "fingerprint": 1143679357, + "foldername": "mixin.terraforged.json", + "fingerprint": 4127921330, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 2411630567, + "foldername": "mixin.terraforged.refmap.json", + "fingerprint": 2848482156, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "fingerprint": 143006859, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "presets", + "fingerprint": 1043228814, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "terraforged.png", + "fingerprint": 618737389, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 99334920, + "packageFingerprint": 3901499587, "gameVersion": [ "1.16.5", "Forge" @@ -20752,11 +21410,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "MoreCraftingTables1.16.5.jar" + "FileNameOnDisk": "TerraForged-1.16.5-0.2.16-BETA-2.jar" }, - "dateInstalled": "2021-07-12T17:54:13.8362496Z", - "dateUpdated": "2021-07-12T17:54:13.8468566Z", - "dateLastUpdateAttempted": "2021-07-12T17:54:13.8468566Z", + "dateInstalled": "2021-09-27T04:45:03.6608098Z", + "dateUpdated": "2021-09-27T04:45:03.6788058Z", + "dateLastUpdateAttempted": "2021-09-27T04:45:03.6788058Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -20769,79 +21427,54 @@ "installedTargets": null }, { - "addonID": 326895, + "addonID": 247496, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3249419, - "displayName": "Upgrade Aquatic 1.16.5 - 3.1.0", - "fileName": "upgrade_aquatic-1.16.5-3.1.0.jar", - "fileDate": "2021-03-24T02:32:44.197Z", - "fileLength": 3668858, + "id": 3065697, + "displayName": "Ranged Pumps 0.8.2", + "fileName": "rangedpumps-0.8.2.jar", + "fileDate": "2020-09-25T19:47:38.857Z", + "fileLength": 26035, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3249/419/upgrade_aquatic-1.16.5-3.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3065/697/rangedpumps-0.8.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 59753669, - "addonId": 382216, - "type": 3, - "fileId": 3249419 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2541154927, + "fingerprint": 3296727235, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 4011241285, + "fingerprint": 1541089140, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 550130734, + "fingerprint": 201576547, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 432142397, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 2503877444, + "fingerprint": 3194850042, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1244293505, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "upgrade_aquatic.mixins.json", - "fingerprint": 3476066495, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "upgrade_aquatic.refmap.json", - "fingerprint": 4050559090, + "fingerprint": 4221644177, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 618021379, + "packageFingerprint": 870328279, "gameVersion": [ "1.16.3", "1.16.5", @@ -20879,18 +21512,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2231991, - "projectId": 326895, - "packageFingerprintId": 630944847, + "renderCacheId": 1998149, + "projectId": 247496, + "packageFingerprintId": 526360412, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2814454, + "gameVersionMappingId": 2446802, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "upgrade_aquatic-1.16.5-3.1.0.jar" + "FileNameOnDisk": "rangedpumps-0.8.2.jar" }, - "dateInstalled": "2021-07-05T20:20:52.549392Z", - "dateUpdated": "2021-07-05T20:20:52.549392Z", + "dateInstalled": "2021-07-05T20:21:08.431472Z", + "dateUpdated": "2021-07-05T20:21:08.431472Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -20904,202 +21537,69 @@ "installedTargets": null }, { - "addonID": 243121, + "addonID": 410811, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3394265, - "displayName": "Quark-r2.4-316.jar", - "fileName": "Quark-r2.4-316.jar", - "fileDate": "2021-07-19T20:47:46.443Z", - "fileLength": 7999660, + "id": 3453355, + "displayName": "ftb-essentials-1605.1.4-build.20.jar", + "fileName": "ftb-essentials-1605.1.4-build.20.jar", + "fileDate": "2021-09-07T18:47:25.05Z", + "fileLength": 74966, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3394/265/Quark-r2.4-316.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3453/355/ftb-essentials-1605.1.4-build.20.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 250363, - "type": 3, + "addonId": 314905, + "type": 2, "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 794764165, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "vazkii", - "fingerprint": 3033013436, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1180932916, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 4264593583, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 2899891612, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "proxypack.mcmeta", - "fingerprint": 2303534909, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "proxypack.png", - "fingerprint": 3258380684, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "quark.mixins.json", - "fingerprint": 4015462449, - "type": 0, - "invalidFingerprint": false }, { - "foldername": "quark.mixins.refmap.json", - "fingerprint": 3001659495, - "type": 0, - "invalidFingerprint": false + "id": 0, + "addonId": 404465, + "type": 3, + "fileId": 0 } ], - "packageFingerprint": 462326912, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Quark-r2.4-316.jar" - }, - "dateInstalled": "2021-07-05T20:21:08.4484749Z", - "dateUpdated": "2021-07-24T19:10:17.4154108Z", - "dateLastUpdateAttempted": "2021-07-24T19:10:17.4154108Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 231951, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3431122, - "displayName": "ImmersiveEngineering-1.16.5-5.0.3-138", - "fileName": "ImmersiveEngineering-1.16.5-5.0.3-138.jar", - "fileDate": "2021-08-19T07:15:45.65Z", - "fileLength": 9350846, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3431/122/ImmersiveEngineering-1.16.5-5.0.3-138.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 4152006374, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 3620024271, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1017809187, + "foldername": "pack.mcmeta", + "fingerprint": 1298629587, "type": 0, "invalidFingerprint": false }, { - "foldername": "blusunrize", - "fingerprint": 1225333525, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 2278401661, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3575715482, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "immersiveengineering.mixins.json", - "fingerprint": 1779063861, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "immersiveengineering.refmap.json", - "fingerprint": 1394608551, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "invtweaks", - "fingerprint": 1311683996, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 2329186512, + "fingerprint": 2116477754, "type": 0, "invalidFingerprint": false }, { - "foldername": "malte0811", - "fingerprint": 3682147943, + "foldername": "META-INF", + "fingerprint": 3953174334, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 262602997, + "foldername": "dev", + "fingerprint": 4120833002, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4265682932, + "packageFingerprint": 3394438896, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -21110,11 +21610,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ImmersiveEngineering-1.16.5-5.0.3-138.jar" + "FileNameOnDisk": "ftb-essentials-1605.1.4-build.20.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-08-22T11:00:54.8809408Z", - "dateLastUpdateAttempted": "2021-08-22T11:00:54.8809408Z", + "dateInstalled": "2021-07-05T20:21:08.4264731Z", + "dateUpdated": "2021-09-08T17:52:51.9229571Z", + "dateLastUpdateAttempted": "2021-09-08T17:52:51.9229571Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -21127,89 +21627,76 @@ "installedTargets": null }, { - "addonID": 359289, + "addonID": 466739, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3139471, - "displayName": "BotaniaAdditionsMC1.16.4-1.0.4", - "fileName": "BotaniaAdditionsMC1.16.4-1.0.4.jar", - "fileDate": "2020-12-15T15:36:25.577Z", - "fileLength": 57594, + "id": 3263286, + "displayName": "NaturesStarlight-1.1.jar", + "fileName": "NaturesStarlight-1.1.jar", + "fileDate": "2021-04-04T19:12:00.847Z", + "fileLength": 45109, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3139/471/BotaniaAdditionsMC1.16.4-1.0.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3263/286/NaturesStarlight-1.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 54521945, - "addonId": 306770, - "type": 3, - "fileId": 3139471 - }, - { - "id": 54521944, - "addonId": 238222, - "type": 2, - "fileId": 3139471 - }, - { - "id": 54521942, - "addonId": 225643, + "id": 60557573, + "addonId": 306626, "type": 3, - "fileId": 3139471 + "fileId": 3263286 }, { - "id": 54521943, - "addonId": 309927, + "id": 60557574, + "addonId": 241721, "type": 3, - "fileId": 3139471 + "fileId": 3263286 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2999451516, + "fingerprint": 3784565838, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 138746661, + "foldername": "de", + "fingerprint": 1241418413, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3397815931, + "foldername": "assets", + "fingerprint": 2770774562, "type": 3, "invalidFingerprint": false }, { - "foldername": "BotaniaAdditionsLogo.png", - "fingerprint": 2385058241, + "foldername": "data", + "fingerprint": 2021714351, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 632705534, + "foldername": "naturesstarlight.mixins.json", + "fingerprint": 1486319831, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 36862499, + "fingerprint": 2013958283, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1404205690, + "packageFingerprint": 2427634132, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "sortableGameVersion": [ { @@ -21223,12 +21710,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -21236,18 +21717,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2089545, - "projectId": 359289, - "packageFingerprintId": 568278379, + "renderCacheId": 2249464, + "projectId": 466739, + "packageFingerprintId": 638031892, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2589293, + "gameVersionMappingId": 2841685, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "BotaniaAdditionsMC1.16.4-1.0.4.jar" + "FileNameOnDisk": "NaturesStarlight-1.1.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4604717Z", - "dateUpdated": "2021-07-05T20:21:08.4604717Z", + "dateInstalled": "2021-07-05T20:21:08.4534731Z", + "dateUpdated": "2021-07-05T20:21:08.4534731Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -21261,17 +21742,17 @@ "installedTargets": null }, { - "addonID": 233071, + "addonID": 399630, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3330406, - "displayName": "CraftingTweaks_1.16.5-12.2.1.jar", - "fileName": "CraftingTweaks_1.16.5-12.2.1.jar", - "fileDate": "2021-05-30T11:26:23.79Z", - "fileLength": 111189, - "releaseType": 1, + "id": 3457017, + "displayName": "EmendatusEnigmatica-1.16.5-1.2.10", + "fileName": "EmendatusEnigmatica-1.16.5-1.2.10.jar", + "fileDate": "2021-09-11T23:48:15.223Z", + "fileLength": 3977740, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3330/406/CraftingTweaks_1.16.5-12.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3457/17/EmendatusEnigmatica-1.16.5-1.2.10.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -21279,59 +21760,74 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1309147782, - "type": 3, + "fingerprint": 3780514876, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 2749551635, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1589911189, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3975310760, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "emendatusenigmatica.mixins.json", + "fingerprint": 332023941, + "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3029677335, - "type": 3, + "foldername": "logo.png", + "fingerprint": 1118063826, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2295690175, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 2276242867, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3365466299, - "type": 3, + "foldername": "emendatusenigmatica.refmap.json", + "fingerprint": 1265371035, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1130306748, + "packageFingerprint": 2712966922, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.3", + "1.16.5", + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2335746, - "projectId": 233071, - "packageFingerprintId": 672655215, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2990114, - "gameVersionId": 8203, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CraftingTweaks_1.16.5-12.2.1.jar" + "FileNameOnDisk": "EmendatusEnigmatica-1.16.5-1.2.10.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5433913Z", - "dateUpdated": "2021-07-05T20:20:52.5433913Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-13T17:30:41.8608324Z", + "dateUpdated": "2021-09-13T17:30:41.8728329Z", + "dateLastUpdateAttempted": "2021-09-13T17:30:41.8728329Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -21344,17 +21840,17 @@ "installedTargets": null }, { - "addonID": 264353, + "addonID": 222908, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3103028, - "displayName": "swingthroughgrass-1.16.4-1.5.3.jar", - "fileName": "swingthroughgrass-1.16.4-1.5.3.jar", - "fileDate": "2020-11-05T17:50:44.973Z", - "fileLength": 22955, + "id": 3158118, + "displayName": "1.16.2+ (3.0.2)", + "fileName": "cookiecore-1.16.2-3.0.2-9389769.jar", + "fileDate": "2021-01-04T11:41:47.73Z", + "fileLength": 48620, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3103/28/swingthroughgrass-1.16.4-1.5.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3158/118/cookiecore-1.16.2-3.0.2-9389769.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -21362,36 +21858,56 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2845278821, + "fingerprint": 2659065218, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 809304273, + "foldername": "data", + "fingerprint": 2087109271, "type": 3, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 3796077447, + "fingerprint": 1001256355, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "be", + "fingerprint": 2721873757, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3056700204, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3883671949, + "fingerprint": 1438559181, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2288553898, + "packageFingerprint": 2269858638, "gameVersion": [ + "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -21409,6 +21925,12 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -21416,18 +21938,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2043371, - "projectId": 264353, - "packageFingerprintId": 548688255, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2516155, - "gameVersionId": 4458, + "renderCacheId": 2113194, + "projectId": 222908, + "packageFingerprintId": 579889353, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2625653, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "swingthroughgrass-1.16.4-1.5.3.jar" + "FileNameOnDisk": "cookiecore-1.16.2-3.0.2-9389769.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5039009Z", - "dateUpdated": "2021-07-05T20:20:52.5039009Z", + "dateInstalled": "2021-07-05T20:21:08.4424742Z", + "dateUpdated": "2021-07-05T20:21:08.4424742Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -21441,74 +21963,96 @@ "installedTargets": null }, { - "addonID": 421850, + "addonID": 352656, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3412585, - "displayName": "[1.16.4 / 1.16.5] YUNG's API vForge-12", - "fileName": "YungsApi-1.16.4-Forge-12.jar", - "fileDate": "2021-08-04T07:27:41.133Z", - "fileLength": 106044, + "id": 3232535, + "displayName": "Powah-1.16.5-2.3.16.jar", + "fileName": "Powah-1.16.5-2.3.16.jar", + "fileDate": "2021-03-09T09:33:59.867Z", + "fileLength": 1192090, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3412/585/YungsApi-1.16.4-Forge-12.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3232/535/Powah-1.16.5-2.3.16.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 58618221, + "addonId": 347954, + "type": 3, + "fileId": 3232535 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2597342886, - "type": 0, + "fingerprint": 744385121, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 4089625021, - "type": 0, + "foldername": "owmii", + "fingerprint": 3107215616, + "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2686543822, - "type": 0, + "foldername": ".cache", + "fingerprint": 4160467681, + "type": 3, "invalidFingerprint": false }, { - "foldername": "yungsapi.mixins.json", - "fingerprint": 146205936, - "type": 0, + "foldername": "assets", + "fingerprint": 3518983103, + "type": 3, "invalidFingerprint": false }, { - "foldername": "yungsapi.refmap.json", - "fingerprint": 841431199, - "type": 0, + "foldername": "data", + "fingerprint": 3053359315, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3678931194, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2028424798, + "packageFingerprint": 872581196, "gameVersion": [ - "1.16", - "1.16.5", - "Forge", - "1.16.4" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2208929, + "projectId": 352656, + "packageFingerprintId": 621066187, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2780278, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "YungsApi-1.16.4-Forge-12.jar" + "FileNameOnDisk": "Powah-1.16.5-2.3.16.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3511181Z", - "dateUpdated": "2021-08-04T20:05:46.8369854Z", - "dateLastUpdateAttempted": "2021-08-04T20:05:46.8369854Z", + "dateInstalled": "2021-07-05T20:21:08.4474707Z", + "dateUpdated": "2021-07-05T20:21:08.4474707Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -21521,70 +22065,91 @@ "installedTargets": null }, { - "addonID": 358191, + "addonID": 245287, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3292171, - "displayName": "PackMenu-1.16.4-2.4.2.jar", - "fileName": "PackMenu-1.16.4-2.4.2.jar", - "fileDate": "2021-04-28T18:53:25.867Z", - "fileLength": 532449, + "id": 3190374, + "displayName": "Morph-o-Tool-1.4-27.jar", + "fileName": "Morph-o-Tool-1.4-27.jar", + "fileDate": "2021-02-02T18:04:59.36Z", + "fileLength": 32615, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3292/171/PackMenu-1.16.4-2.4.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3190/374/Morph-o-Tool-1.4-27.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 62409538, - "addonId": 283644, + "id": 55931001, + "addonId": 250363, "type": 3, - "fileId": 3292171 + "fileId": 3190374 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4266690605, + "fingerprint": 506253200, "type": 3, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 394334626, + "foldername": "vazkii", + "fingerprint": 4212961044, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3392932931, + "fingerprint": 4025585458, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1879247889, + "foldername": "data", + "fingerprint": 3519127425, "type": 3, "invalidFingerprint": false }, { - "foldername": "resources.zip", - "fingerprint": 3195187532, + "foldername": "pack.mcmeta", + "fingerprint": 3644656812, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 71349159, + "packageFingerprint": 3401581101, "gameVersion": [ - "1.16.5" + "1.16.3", + "1.16.5", + "Forge", + "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -21592,18 +22157,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2286381, - "projectId": 358191, - "packageFingerprintId": 652573802, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2896984, - "gameVersionId": 8203, + "renderCacheId": 2154522, + "projectId": 245287, + "packageFingerprintId": 598028791, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2692920, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "PackMenu-1.16.4-2.4.2.jar" + "FileNameOnDisk": "Morph-o-Tool-1.4-27.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5193918Z", - "dateUpdated": "2021-07-05T20:20:52.5193918Z", + "dateInstalled": "2021-07-05T20:21:08.4564709Z", + "dateUpdated": "2021-07-05T20:21:08.4564709Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -21750,164 +22315,91 @@ "installedTargets": null }, { - "addonID": 492246, + "addonID": 59621, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3432202, - "displayName": "MaxHealthFix-Forge-1.16.5-1.0.4.jar", - "fileName": "MaxHealthFix-Forge-1.16.5-1.0.4.jar", - "fileDate": "2021-08-20T07:37:14.143Z", - "fileLength": 6703, + "id": 3469295, + "displayName": "Atum-1.16.5-2.2.8.jar", + "fileName": "Atum-1.16.5-2.2.8.jar", + "fileDate": "2021-09-23T13:27:38.793Z", + "fileLength": 4565396, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3432/202/MaxHealthFix-Forge-1.16.5-1.0.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3469/295/Atum-1.16.5-2.2.8.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 816719500, + "fingerprint": 2414912907, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 1467555661, + "foldername": "com", + "fingerprint": 1278841367, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 393274625, + "foldername": "assets", + "fingerprint": 906004068, "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 2520279336, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "MaxHealthFix-Forge-1.16.5-1.0.4.jar" - }, - "dateInstalled": "2021-07-10T18:31:23.7540147Z", - "dateUpdated": "2021-08-22T11:02:47.2667233Z", - "dateLastUpdateAttempted": "2021-08-22T11:02:47.2667233Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 352622, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3098120, - "displayName": "justenoughbeacons-3.1-1.16.3.jar", - "fileName": "justenoughbeacons-3.1-1.16.3.jar", - "fileDate": "2020-10-31T16:40:19.03Z", - "fileLength": 17003, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3098/120/justenoughbeacons-3.1-1.16.3.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 56938944, - "addonId": 238222, - "type": 3, - "fileId": 3098120 - } - ], - "isAvailable": true, - "modules": [ + }, { - "foldername": "META-INF", - "fingerprint": 755286497, - "type": 3, + "foldername": "atum.mixins.json", + "fingerprint": 2572298239, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3879731397, - "type": 3, + "foldername": "data", + "fingerprint": 2676786229, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1916634993, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 801415253, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2432683592, - "type": 3, + "foldername": "atum.refmap.json", + "fingerprint": 932911122, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3588661632, + "packageFingerprint": 645474583, "gameVersion": [ - "1.16.3", "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2037432, - "projectId": 352622, - "packageFingerprintId": 545433630, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2505157, - "gameVersionId": 8056, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "justenoughbeacons-3.1-1.16.3.jar" + "FileNameOnDisk": "Atum-1.16.5-2.2.8.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4244717Z", - "dateUpdated": "2021-07-05T20:21:08.4244717Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:08.4604717Z", + "dateUpdated": "2021-09-24T18:44:42.3362342Z", + "dateLastUpdateAttempted": "2021-09-24T18:44:42.3362342Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -21920,75 +22412,51 @@ "installedTargets": null }, { - "addonID": 314645, + "addonID": 377281, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3455488, - "displayName": "Immersive Posts 4.2.2", - "fileName": "immersiveposts-1.16.5-4.2.2.jar", - "fileDate": "2021-09-10T13:18:37.14Z", - "fileLength": 527307, - "releaseType": 1, + "id": 3478394, + "displayName": "DarkPaintings-1.16.5-6.0.4.jar", + "fileName": "DarkPaintings-1.16.5-6.0.4.jar", + "fileDate": "2021-10-01T21:35:35.513Z", + "fileLength": 26335, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3455/488/immersiveposts-1.16.5-4.2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/394/DarkPaintings-1.16.5-6.0.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 231951, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1791365695, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 3572950464, + "fingerprint": 329766613, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1506605672, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3783728978, + "fingerprint": 4286905945, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3758265988, + "foldername": "net", + "fingerprint": 604437232, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 57741600, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "twistedgate", - "fingerprint": 1965932406, + "fingerprint": 2841832441, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2363281232, + "packageFingerprint": 3685268912, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -21999,12 +22467,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "immersiveposts-1.16.5-4.2.2.jar" + "FileNameOnDisk": "DarkPaintings-1.16.5-6.0.4.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4384732Z", - "dateUpdated": "2021-09-10T17:30:42.5852374Z", - "dateLastUpdateAttempted": "2021-09-10T17:30:42.5852374Z", - "status": 5, + "dateInstalled": "2021-07-05T20:21:08.4824714Z", + "dateUpdated": "2021-10-02T18:13:55.9579688Z", + "dateLastUpdateAttempted": "2021-10-02T18:13:55.9579688Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -22016,69 +22484,75 @@ "installedTargets": null }, { - "addonID": 307943, + "addonID": 314645, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3464437, - "displayName": "cakechomps-forge-1.16.5-5.0.0.3.jar", - "fileName": "cakechomps-forge-1.16.5-5.0.0.3.jar", - "fileDate": "2021-09-19T05:46:46.89Z", - "fileLength": 22750, + "installedFile": { + "id": 3455488, + "displayName": "Immersive Posts 4.2.2", + "fileName": "immersiveposts-1.16.5-4.2.2.jar", + "fileDate": "2021-09-10T13:18:37.14Z", + "fileLength": 527307, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3464/437/cakechomps-forge-1.16.5-5.0.0.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3455/488/immersiveposts-1.16.5-4.2.2.jar", "isAlternate": false, - "alternateFileId": 3464438, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 231951, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3280155135, + "fingerprint": 1791365695, "type": 0, "invalidFingerprint": false }, { - "foldername": "top", - "fingerprint": 642536497, + "foldername": ".cache", + "fingerprint": 3572950464, "type": 0, "invalidFingerprint": false }, { - "foldername": "cake_chomps_icon.png", - "fingerprint": 827851432, + "foldername": "assets", + "fingerprint": 1506605672, "type": 0, "invalidFingerprint": false }, { - "foldername": "CHANGELOG.md", - "fingerprint": 286881049, + "foldername": "data", + "fingerprint": 3783728978, "type": 0, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 372158851, + "foldername": "logo.png", + "fingerprint": 3758265988, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2159415186, + "fingerprint": 57741600, "type": 0, "invalidFingerprint": false }, { - "foldername": "README.md", - "fingerprint": 29722654, + "foldername": "twistedgate", + "fingerprint": 1965932406, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3170091282, + "packageFingerprint": 2363281232, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -22089,11 +22563,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cakechomps-forge-1.16.5-5.0.0.3.jar" + "FileNameOnDisk": "immersiveposts-1.16.5-4.2.2.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4364777Z", - "dateUpdated": "2021-09-21T13:04:03.3940635Z", - "dateLastUpdateAttempted": "2021-09-21T13:04:03.3940635Z", + "dateInstalled": "2021-07-05T20:21:08.4384732Z", + "dateUpdated": "2021-09-10T17:30:42.5852374Z", + "dateLastUpdateAttempted": "2021-09-10T17:30:42.5852374Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22106,61 +22580,79 @@ "installedTargets": null }, { - "addonID": 233105, + "addonID": 502561, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3402861, - "displayName": "McJtyLib - 1.16-5.0.22", - "fileName": "mcjtylib-1.16-5.0.22.jar", - "fileDate": "2021-07-27T13:34:01.007Z", - "fileLength": 562853, + "id": 3477434, + "displayName": "EquipmentCompare-1.16.5-1.2.4.jar", + "fileName": "EquipmentCompare-1.16.5-1.2.4.jar", + "fileDate": "2021-09-30T18:50:53.107Z", + "fileLength": 19989, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3402/861/mcjtylib-1.16-5.0.22.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3477/434/EquipmentCompare-1.16.5-1.2.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 245211, + "addonId": 366844, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 270789, + "addonId": 309927, "type": 2, "fileId": 0 + }, + { + "id": 0, + "addonId": 520110, + "type": 3, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 166700395, + "fingerprint": 1308155646, "type": 0, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 2207894873, + "foldername": "com", + "fingerprint": 3379482068, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1001358588, + "foldername": "equipmentcompare.mixins.json", + "fingerprint": 3499906537, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "icon.png", + "fingerprint": 2496969351, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1867893230, + "fingerprint": 1363303791, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "equipmentcompare.refmap.json", + "fingerprint": 2966418634, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 68474313, + "packageFingerprint": 3180964751, "gameVersion": [ "1.16.5", "Forge" @@ -22174,12 +22666,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcjtylib-1.16-5.0.22.jar" + "FileNameOnDisk": "EquipmentCompare-1.16.5-1.2.4.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2543409Z", - "dateUpdated": "2021-07-27T20:20:08.3323329Z", - "dateLastUpdateAttempted": "2021-07-27T20:20:08.3323329Z", - "status": 5, + "dateInstalled": "2021-09-17T18:18:50.6213974Z", + "dateUpdated": "2021-10-02T18:13:52.0801122Z", + "dateLastUpdateAttempted": "2021-10-02T18:13:52.0801122Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -22191,89 +22683,69 @@ "installedTargets": null }, { - "addonID": 386134, + "addonID": 307943, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3409570, - "displayName": "ftb-ultimine-forge-1605.3.0-build.25.jar", - "fileName": "ftb-ultimine-forge-1605.3.0-build.25.jar", - "fileDate": "2021-08-02T13:51:03.443Z", - "fileLength": 77169, + "id": 3464437, + "displayName": "cakechomps-forge-1.16.5-5.0.0.3.jar", + "fileName": "cakechomps-forge-1.16.5-5.0.0.3.jar", + "fileDate": "2021-09-19T05:46:46.89Z", + "fileLength": 22750, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3409/570/ftb-ultimine-forge-1605.3.0-build.25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3464/437/cakechomps-forge-1.16.5-5.0.0.3.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 419699, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 404465, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 3464438, + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "data", - "fingerprint": 668690037, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "ftbultimine.accesswidener", - "fingerprint": 2828944861, + "foldername": "META-INF", + "fingerprint": 3280155135, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 2281635539, + "foldername": "top", + "fingerprint": 642536497, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 133322903, + "foldername": "cake_chomps_icon.png", + "fingerprint": 827851432, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2914933217, + "foldername": "CHANGELOG.md", + "fingerprint": 286881049, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 1606682521, + "foldername": "licenses", + "fingerprint": 372158851, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 266643835, + "foldername": "pack.mcmeta", + "fingerprint": 2159415186, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBUltimine1165_common_482e62daa2a74b129dc76f7a99c81f93", - "fingerprint": 2222672506, + "foldername": "README.md", + "fingerprint": 29722654, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 379087819, + "packageFingerprint": 3170091282, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -22284,11 +22756,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-ultimine-forge-1605.3.0-build.25.jar" + "FileNameOnDisk": "cakechomps-forge-1.16.5-5.0.0.3.jar" }, - "dateInstalled": "2021-07-05T20:21:08.477471Z", - "dateUpdated": "2021-08-02T19:50:44.82838Z", - "dateLastUpdateAttempted": "2021-08-02T19:50:44.82838Z", + "dateInstalled": "2021-07-05T20:21:08.4364777Z", + "dateUpdated": "2021-09-21T13:04:03.3940635Z", + "dateLastUpdateAttempted": "2021-09-21T13:04:03.3940635Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22301,23 +22773,23 @@ "installedTargets": null }, { - "addonID": 416294, + "addonID": 345973, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3470925, - "displayName": "rhino-forge-1605.1.4-build.63.jar", - "fileName": "rhino-forge-1605.1.4-build.63.jar", - "fileDate": "2021-09-25T11:01:15.257Z", - "fileLength": 1004797, + "id": 3449269, + "displayName": "cyclepaintings_1.16.5-2.0.jar", + "fileName": "cyclepaintings_1.16.5-2.0.jar", + "fileDate": "2021-09-04T17:40:28.963Z", + "fileLength": 6696, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3470/925/rhino-forge-1605.1.4-build.63.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3449/269/cyclepaintings_1.16.5-2.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 419699, + "addonId": 342584, "type": 3, "fileId": 0 } @@ -22325,60 +22797,28 @@ "isAvailable": true, "modules": [ { - "foldername": "rhino-common.mixins.json", - "fingerprint": 3620685965, + "foldername": "META-INF", + "fingerprint": 3282749904, "type": 0, "invalidFingerprint": false }, { - "foldername": "rhino-common-refmap.json", - "fingerprint": 1493072104, + "foldername": "com", + "fingerprint": 733274285, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 770561941, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "rhino.mixins.json", - "fingerprint": 227373560, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "dev", - "fingerprint": 1266231130, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "META-INF", - "fingerprint": 3524606193, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "architectury_inject_Rhino_common_fce7d84ea92645c4ba03bda56ec02cbc", - "fingerprint": 4259051973, + "fingerprint": 2746728718, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4046909362, + "packageFingerprint": 2482208013, "gameVersion": [ - "1.17.1", - "1.16.3", - "1.16.1", - "1.14.4", - "1.17", "1.16.5", - "Forge", - "1.15.2", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -22386,14 +22826,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rhino-forge-1605.1.4-build.63.jar" + "FileNameOnDisk": "cyclepaintings_1.16.5-2.0.jar" }, - "dateInstalled": "2021-09-16T06:15:58.9533579Z", - "dateUpdated": "2021-09-25T14:37:05.8983263Z", - "dateLastUpdateAttempted": "2021-09-25T14:37:05.8983263Z", + "dateInstalled": "2021-07-10T17:55:07.2633389Z", + "dateUpdated": "2021-09-05T17:03:59.910847Z", + "dateLastUpdateAttempted": "2021-09-05T17:03:59.910847Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22406,143 +22846,84 @@ "installedTargets": null }, { - "addonID": 285612, + "addonID": 243076, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3211323, - "displayName": "RandomPatches 2.4.4-forge", - "fileName": "randompatches-2.4.4-forge.jar", - "fileDate": "2021-02-21T04:28:36.047Z", - "fileLength": 423940, + "id": 3400575, + "displayName": "Refined Storage 1.9.15", + "fileName": "refinedstorage-1.9.15.jar", + "fileDate": "2021-07-25T14:59:24.147Z", + "fileLength": 3130693, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3211/323/randompatches-2.4.4-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3400/575/refinedstorage-1.9.15.jar", "isAlternate": false, - "alternateFileId": 3211324, - "dependencies": [ - { - "id": 57322299, - "addonId": 348521, - "type": 2, - "fileId": 3211323 - } - ], + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1638063143, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "LICENSE", - "fingerprint": 116556605, - "type": 3, + "fingerprint": 549440526, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1824450009, - "type": 3, + "foldername": "com", + "fingerprint": 1263910759, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3056701416, - "type": 3, + "foldername": ".cache", + "fingerprint": 1059854772, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 449600121, - "type": 3, + "foldername": "assets", + "fingerprint": 1506065654, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2570708431, - "type": 3, + "foldername": "data", + "fingerprint": 580726858, + "type": 0, "invalidFingerprint": false }, { - "foldername": "randompatches.mixins.json", - "fingerprint": 1069549616, - "type": 3, + "foldername": "logo.png", + "fingerprint": 3020331149, + "type": 0, "invalidFingerprint": false }, { - "foldername": "randompatches.refmap.json", - "fingerprint": 3621200479, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 244798530, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2375576311, + "packageFingerprint": 971626747, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2181884, - "projectId": 285612, - "packageFingerprintId": 609781101, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2738858, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "randompatches-2.4.4-forge.jar" + "FileNameOnDisk": "refinedstorage-1.9.15.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4434737Z", - "dateUpdated": "2021-07-05T20:21:08.4434737Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:08.4494726Z", + "dateUpdated": "2021-07-25T20:34:21.8317287Z", + "dateLastUpdateAttempted": "2021-07-25T20:34:21.8317287Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22555,97 +22936,109 @@ "installedTargets": null }, { - "addonID": 284497, + "addonID": 328085, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3375360, - "displayName": "IronJetpacks-1.16.5-4.2.1.jar", - "fileName": "IronJetpacks-1.16.5-4.2.1.jar", - "fileDate": "2021-07-03T20:36:49.973Z", - "fileLength": 122608, + "id": 3419412, + "displayName": " Create 1.16.5 v0.3.2d", + "fileName": "create-mc1.16.5_v0.3.2d.jar", + "fileDate": "2021-08-08T18:50:11.737Z", + "fileLength": 11337001, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3375/360/IronJetpacks-1.16.5-4.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3419/412/create-mc1.16.5_v0.3.2d.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 67947082, - "addonId": 272335, + "id": 0, + "addonId": 486392, "type": 3, - "fileId": 3375360 + "fileId": 0 + }, + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 41589344, - "type": 3, + "fingerprint": 188467572, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3575232724, - "type": 3, + "fingerprint": 680092021, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 2786113706, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1444626772, - "type": 3, + "fingerprint": 907648433, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "create.mixins.json", + "fingerprint": 3505967421, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 4016076390, - "type": 3, + "fingerprint": 3604133244, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2004783834, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4100022256, - "type": 3, + "fingerprint": 1782673937, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "create.refmap.json", + "fingerprint": 1151107717, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3428496331, + "packageFingerprint": 262284899, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2392113, - "projectId": 284497, - "packageFingerprintId": 697743597, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3099650, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IronJetpacks-1.16.5-4.2.1.jar" + "FileNameOnDisk": "create-mc1.16.5_v0.3.2d.jar" }, - "dateInstalled": "2021-07-05T20:19:25.2969373Z", - "dateUpdated": "2021-07-05T20:19:25.2969373Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-12T18:56:07.2846942Z", + "dateUpdated": "2021-08-11T14:43:31.2909174Z", + "dateLastUpdateAttempted": "2021-08-11T14:43:31.2909174Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22657,18 +23050,18 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 342584, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3454173, - "displayName": "collective-1.16.5-2.64.jar", - "fileName": "collective-1.16.5-2.64.jar", - "fileDate": "2021-09-08T18:02:57.26Z", - "fileLength": 140636, + { + "addonID": 254268, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3433163, + "displayName": "torchmaster-2.3.8.jar", + "fileName": "torchmaster-2.3.8.jar", + "fileDate": "2021-08-21T07:05:59.897Z", + "fileLength": 94627, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3454/173/collective-1.16.5-2.64.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3433/163/torchmaster-2.3.8.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -22676,24 +23069,36 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3221704459, + "fingerprint": 3484587481, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 4091665802, + "foldername": "net", + "fingerprint": 2550158330, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1335251349, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 3524681025, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3040452267, + "fingerprint": 4253522632, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1223616813, + "packageFingerprint": 1743150879, "gameVersion": [ "1.16.5", "Forge" @@ -22707,11 +23112,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "collective-1.16.5-2.64.jar" + "FileNameOnDisk": "torchmaster-2.3.8.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-09-10T17:30:43.5702357Z", - "dateLastUpdateAttempted": "2021-09-10T17:30:43.5702357Z", + "dateInstalled": "2021-07-05T20:21:08.4634736Z", + "dateUpdated": "2021-08-22T11:02:56.9416501Z", + "dateLastUpdateAttempted": "2021-08-22T11:02:56.9416501Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22724,17 +23129,17 @@ "installedTargets": null }, { - "addonID": 357108, + "addonID": 247560, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3120864, - "displayName": "clockout-1.16.4-2.0.0.1.jar", - "fileName": "clockout-1.16.4-2.0.0.1.jar", - "fileDate": "2020-11-23T17:07:00.823Z", - "fileLength": 38094, + "id": 3444476, + "displayName": "Biomes You Go 1.3.4 MCV: 1.16.5", + "fileName": "byg-1.3.4.jar", + "fileDate": "2021-08-31T02:54:58.89Z", + "fileLength": 10313922, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3120/864/clockout-1.16.4-2.0.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3444/476/byg-1.3.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -22742,85 +23147,84 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 561900800, - "type": 3, + "fingerprint": 1985442624, + "type": 0, "invalidFingerprint": false }, { - "foldername": "commoble", - "fingerprint": 27039134, - "type": 3, + "foldername": "corgiaoc", + "fingerprint": 2592629088, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 37490097, - "type": 3, + "fingerprint": 2728574134, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "byg.mixins.json", + "fingerprint": 3019215720, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 681119471, - "type": 3, + "fingerprint": 4025516341, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 929559612, - "type": 3, + "foldername": "logo_byg1.png", + "fingerprint": 55594528, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3380797652, - "type": 3, + "foldername": "logo_text.png", + "fingerprint": 220232087, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 3736035107, - "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ + }, { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "foldername": "mini_logo.png", + "fingerprint": 217914077, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "foldername": "pack.mcmeta", + "fingerprint": 2337918188, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "foldername": "byg.refmap.json", + "fingerprint": 146847686, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 803105978, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2065431, - "projectId": 357108, - "packageFingerprintId": 558258675, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3026020, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "clockout-1.16.4-2.0.0.1.jar" + "FileNameOnDisk": "byg-1.3.4.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4584744Z", - "dateUpdated": "2021-07-05T20:21:08.4584744Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-08-25T04:42:14.3967903Z", + "dateUpdated": "2021-08-31T18:22:24.0062386Z", + "dateLastUpdateAttempted": "2021-08-31T18:22:24.0062386Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22833,66 +23237,158 @@ "installedTargets": null }, { - "addonID": 359344, + "addonID": 486928, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3146507, - "displayName": "Interactio-1.16.4-3.1.1.jar", - "fileName": "Interactio-1.16.4-3.1.1.jar", - "fileDate": "2020-12-22T21:03:52.46Z", - "fileLength": 184601, + "id": 3346602, + "displayName": "More Furniture Mod 1.3.1", + "fileName": "morecfm-1.3.1-1.16.3.jar", + "fileDate": "2021-06-10T16:04:18.627Z", + "fileLength": 6132491, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3146/507/Interactio-1.16.4-3.1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3346/602/morecfm-1.3.1-1.16.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 66019820, + "addonId": 459701, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019815, + "addonId": 452344, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019816, + "addonId": 291509, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019821, + "addonId": 457570, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019824, + "addonId": 247560, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019819, + "addonId": 220318, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019814, + "addonId": 452345, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019817, + "addonId": 362393, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019823, + "addonId": 55438, + "type": 3, + "fileId": 3346602 + }, + { + "id": 66019818, + "addonId": 365045, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019813, + "addonId": 326895, + "type": 2, + "fileId": 3346602 + }, + { + "id": 66019822, + "addonId": 388992, + "type": 2, + "fileId": 3346602 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2397881799, + "fingerprint": 3063515872, "type": 3, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 2638646285, + "foldername": "com", + "fingerprint": 3218102758, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 4228227605, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 358227914, + "fingerprint": 3435469703, "type": 3, "invalidFingerprint": false }, { - "foldername": "interactio.mixins.json", - "fingerprint": 3034597747, + "foldername": "data", + "fingerprint": 2210200796, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "morecfm.mixins.json", + "fingerprint": 2909494522, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1690738335, + "fingerprint": 257550339, "type": 3, "invalidFingerprint": false }, { - "foldername": "interactio.refmap.json", - "fingerprint": 2099327145, + "foldername": "morecfm.refmap.json", + "fingerprint": 3062085781, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 505532498, + "packageFingerprint": 3325796312, "gameVersion": [ + "1.16.3", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -22917,18 +23413,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2098466, - "projectId": 359344, - "packageFingerprintId": 572521093, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2602151, - "gameVersionId": 4458, + "renderCacheId": 2355784, + "projectId": 486928, + "packageFingerprintId": 680691212, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 3029203, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Interactio-1.16.4-3.1.1.jar" + "FileNameOnDisk": "morecfm-1.3.1-1.16.3.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4684718Z", - "dateUpdated": "2021-07-05T20:21:08.4684718Z", + "dateInstalled": "2021-07-05T20:21:08.4694719Z", + "dateUpdated": "2021-07-05T20:21:08.4694719Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -22942,17 +23438,17 @@ "installedTargets": null }, { - "addonID": 361579, + "addonID": 462326, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3337641, - "displayName": "1.6.0 (Forge 1.16.5)", - "fileName": "spark-forge.jar", - "fileDate": "2021-06-04T13:29:25.917Z", - "fileLength": 2519703, + "id": 3397600, + "displayName": "TacticalFishing-1.16.5-v1.0.2.jar", + "fileName": "TacticalFishing-1.16.5-v1.0.2.jar", + "fileDate": "2021-07-22T21:34:05.85Z", + "fileLength": 86237, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3337/641/spark-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3397/600/TacticalFishing-1.16.5-v1.0.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -22960,97 +23456,59 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1045422118, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "me", - "fingerprint": 2648919686, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 875227375, - "type": 3, + "fingerprint": 2501104334, + "type": 0, "invalidFingerprint": false }, { - "foldername": "spark", - "fingerprint": 3271438722, - "type": 3, + "foldername": "com", + "fingerprint": 3595980658, + "type": 0, "invalidFingerprint": false }, { - "foldername": "libasyncProfiler.so", - "fingerprint": 3394078410, - "type": 3, + "foldername": "assets", + "fingerprint": 4057594709, + "type": 0, "invalidFingerprint": false }, { - "foldername": "google", - "fingerprint": 2947709351, - "type": 3, + "foldername": "data", + "fingerprint": 3059738483, + "type": 0, "invalidFingerprint": false }, { - "foldername": "win32-x86-64", - "fingerprint": 2158727245, - "type": 3, + "foldername": "modicon.png", + "fingerprint": 724728568, + "type": 0, "invalidFingerprint": false }, { - "foldername": "win32-x86", - "fingerprint": 2564852001, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 1398498657, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3681000633, + "packageFingerprint": 1401371920, "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2344715, - "projectId": 361579, - "packageFingerprintId": 676068808, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3007032, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "spark-forge.jar" + "FileNameOnDisk": "TacticalFishing-1.16.5-v1.0.2.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4714712Z", - "dateUpdated": "2021-07-05T20:21:08.4714712Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:08.4224716Z", + "dateUpdated": "2021-07-25T20:33:44.2619571Z", + "dateLastUpdateAttempted": "2021-07-25T20:33:44.2619571Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -23063,17 +23521,17 @@ "installedTargets": null }, { - "addonID": 399558, + "addonID": 222967, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3285196, - "displayName": "constructionwand-1.16.5-2.2.jar", - "fileName": "constructionwand-1.16.5-2.2.jar", - "fileDate": "2021-04-22T06:23:58.49Z", - "fileLength": 193910, + "id": 3172028, + "displayName": "Ping-1.16.4-1.6.9.jar", + "fileName": "Ping-1.16.4-1.6.9.jar", + "fileDate": "2021-01-18T00:44:26.977Z", + "fileLength": 74487, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3285/196/constructionwand-1.16.5-2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3172/28/Ping-1.16.4-1.6.9.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -23081,42 +23539,36 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4036072437, + "fingerprint": 728094235, "type": 3, "invalidFingerprint": false }, { - "foldername": "thetadev", - "fingerprint": 3081620486, + "foldername": "dmillerw", + "fingerprint": 2671317452, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1893517105, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1373703541, + "fingerprint": 3690507763, "type": 3, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 1765697479, + "fingerprint": 2063318241, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4148778574, + "fingerprint": 214469095, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 476710429, + "packageFingerprint": 3676475429, "gameVersion": [ "1.16.3", "1.16.5", @@ -23161,18 +23613,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2277204, - "projectId": 399558, - "packageFingerprintId": 648233959, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2882846, - "gameVersionId": 4458, + "renderCacheId": 2130845, + "projectId": 222967, + "packageFingerprintId": 588221708, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2652688, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "constructionwand-1.16.5-2.2.jar" + "FileNameOnDisk": "Ping-1.16.4-1.6.9.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4404715Z", - "dateUpdated": "2021-07-05T20:21:08.4404715Z", + "dateInstalled": "2021-07-05T20:21:08.4284725Z", + "dateUpdated": "2021-07-05T20:21:08.4284725Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -23186,73 +23638,63 @@ "installedTargets": null }, { - "addonID": 433071, + "addonID": 366140, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3330242, - "displayName": "Undergarden-Tetra Patch-1.2.1.jar", - "fileName": "Undergarden-Tetra Patch-1.2.1.jar", - "fileDate": "2021-05-30T07:31:52.62Z", - "fileLength": 21240, + "id": 3358883, + "displayName": "dynviewdist-2.0.jar", + "fileName": "dynviewdist-2.0.jar", + "fileDate": "2021-06-20T19:15:13.64Z", + "fileLength": 13472, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3330/242/Undergarden-Tetra Patch-1.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3358/883/dynviewdist-2.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 65062464, - "addonId": 379849, - "type": 3, - "fileId": 3330242 - }, - { - "id": 65062463, - "addonId": 289712, - "type": 3, - "fileId": 3330242 + "id": 66896507, + "addonId": 456640, + "type": 2, + "fileId": 3358883 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 89735275, + "fingerprint": 298316196, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 476573060, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3892198104, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3768798660, + "fingerprint": 2562954710, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2975439979, + "fingerprint": 3903986230, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1694346812, + "packageFingerprint": 2102439104, "gameVersion": [ + "1.16.3", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -23270,6 +23712,12 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -23277,18 +23725,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2335545, - "projectId": 433071, - "packageFingerprintId": 672543180, + "renderCacheId": 2371373, + "projectId": 366140, + "packageFingerprintId": 688203696, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2989560, + "gameVersionMappingId": 3061243, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Undergarden-Tetra Patch-1.2.1.jar" + "FileNameOnDisk": "dynviewdist-2.0.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3431201Z", - "dateUpdated": "2021-07-05T20:21:03.3431201Z", + "dateInstalled": "2021-07-05T20:21:08.4764725Z", + "dateUpdated": "2021-07-05T20:21:08.4764725Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -23302,114 +23750,143 @@ "installedTargets": null }, { - "addonID": 363820, + "addonID": 285612, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3460560, - "displayName": "0.2.16-BETA-2", - "fileName": "TerraForged-1.16.5-0.2.16-BETA-2.jar", - "fileDate": "2021-09-15T18:50:36.75Z", - "fileLength": 1675339, - "releaseType": 2, + "id": 3211323, + "displayName": "RandomPatches 2.4.4-forge", + "fileName": "randompatches-2.4.4-forge.jar", + "fileDate": "2021-02-21T04:28:36.047Z", + "fileLength": 423940, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3460/560/TerraForged-1.16.5-0.2.16-BETA-2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3211/323/randompatches-2.4.4-forge.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3211324, + "dependencies": [ + { + "id": 57322299, + "addonId": 348521, + "type": 2, + "fileId": 3211323 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 94526114, - "type": 0, + "fingerprint": 1638063143, + "type": 3, "invalidFingerprint": false }, { "foldername": "LICENSE", - "fingerprint": 2618262665, - "type": 0, + "fingerprint": 116556605, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3166510882, - "type": 0, + "fingerprint": 1824450009, + "type": 3, "invalidFingerprint": false }, { - "foldername": "biomes.png", - "fingerprint": 2949016127, - "type": 0, + "foldername": "com", + "fingerprint": 3056701416, + "type": 3, "invalidFingerprint": false }, { - "foldername": "biomes.txt", - "fingerprint": 366301374, - "type": 0, + "foldername": "logo.png", + "fingerprint": 449600121, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3777362097, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 2570708431, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2274904774, - "type": 0, + "foldername": "randompatches.mixins.json", + "fingerprint": 1069549616, + "type": 3, "invalidFingerprint": false }, { - "foldername": "mixin.terraforged.json", - "fingerprint": 4127921330, - "type": 0, + "foldername": "randompatches.refmap.json", + "fingerprint": 3621200479, + "type": 3, "invalidFingerprint": false + } + ], + "packageFingerprint": 2375576311, + "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" }, { - "foldername": "mixin.terraforged.refmap.json", - "fingerprint": 2848482156, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" }, { - "foldername": "pack.mcmeta", - "fingerprint": 143006859, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" }, { - "foldername": "presets", - "fingerprint": 1043228814, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" }, { - "foldername": "terraforged.png", - "fingerprint": 618737389, - "type": 0, - "invalidFingerprint": false + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], - "packageFingerprint": 3901499587, - "gameVersion": [ - "1.16.5", - "Forge" - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2181884, + "projectId": 285612, + "packageFingerprintId": 609781101, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2738858, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "TerraForged-1.16.5-0.2.16-BETA-2.jar" + "FileNameOnDisk": "randompatches-2.4.4-forge.jar" }, - "dateInstalled": "2021-09-27T04:45:03.6608098Z", - "dateUpdated": "2021-09-27T04:45:03.6788058Z", - "dateLastUpdateAttempted": "2021-09-27T04:45:03.6788058Z", + "dateInstalled": "2021-07-05T20:21:08.4434737Z", + "dateUpdated": "2021-07-05T20:21:08.4434737Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -23422,72 +23899,85 @@ "installedTargets": null }, { - "addonID": 368293, + "addonID": 243121, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3469414, - "displayName": "Repurposed Structures v3.2.5 (1.16.5 MC)", - "fileName": "repurposed_structures_forge-3.2.5+1.16.5.jar", - "fileDate": "2021-09-23T16:25:23.263Z", - "fileLength": 5239086, + "id": 3394265, + "displayName": "Quark-r2.4-316.jar", + "fileName": "Quark-r2.4-316.jar", + "fileDate": "2021-07-19T20:47:46.443Z", + "fileLength": 7999660, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3469/414/repurposed_structures_forge-3.2.5+1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3394/265/Quark-r2.4-316.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 250363, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 524167333, + "fingerprint": 794764165, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1666062541, + "foldername": "vazkii", + "fingerprint": 3033013436, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 335128433, + "fingerprint": 1180932916, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 954114756, + "fingerprint": 4264593583, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2993123570, + "fingerprint": 2899891612, "type": 0, "invalidFingerprint": false }, { - "foldername": "RepurposedStructuresLogo.png", - "fingerprint": 197399281, + "foldername": "proxypack.mcmeta", + "fingerprint": 2303534909, "type": 0, "invalidFingerprint": false }, { - "foldername": "repurposed_structures.mixins.json", - "fingerprint": 2605214407, + "foldername": "proxypack.png", + "fingerprint": 3258380684, "type": 0, "invalidFingerprint": false }, { - "foldername": "repurposed_structures.refmap.json", - "fingerprint": 2123920743, + "foldername": "quark.mixins.json", + "fingerprint": 4015462449, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "quark.mixins.refmap.json", + "fingerprint": 3001659495, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 744666860, + "packageFingerprint": 462326912, "gameVersion": [ "1.16.5", "Forge" @@ -23501,11 +23991,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "repurposed_structures_forge-3.2.5+1.16.5.jar" + "FileNameOnDisk": "Quark-r2.4-316.jar" }, - "dateInstalled": "2021-08-05T21:06:59.9349112Z", - "dateUpdated": "2021-09-24T18:45:33.5399274Z", - "dateLastUpdateAttempted": "2021-09-24T18:45:33.5399274Z", + "dateInstalled": "2021-07-05T20:21:08.4484749Z", + "dateUpdated": "2021-07-24T19:10:17.4154108Z", + "dateLastUpdateAttempted": "2021-07-24T19:10:17.4154108Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -23518,102 +24008,81 @@ "installedTargets": null }, { - "addonID": 404038, + "addonID": 426558, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3242497, - "displayName": "LostTrinkets-1.16.5-0.1.27.jar", - "fileName": "LostTrinkets-1.16.5-0.1.27.jar", - "fileDate": "2021-03-17T11:27:42.42Z", - "fileLength": 323141, + "id": 3467280, + "displayName": "alexsmobs-1.12.1", + "fileName": "alexsmobs-1.12.1.jar", + "fileDate": "2021-09-21T00:32:41.873Z", + "fileLength": 18135643, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3242/497/LostTrinkets-1.16.5-0.1.27.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3467/280/alexsmobs-1.12.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 59232490, - "addonId": 347954, + "id": 0, + "addonId": 331936, "type": 3, - "fileId": 3242497 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 65383375, - "type": 3, + "fingerprint": 3721473459, + "type": 0, "invalidFingerprint": false }, { - "foldername": "owmii", - "fingerprint": 1320834181, - "type": 3, + "foldername": "com", + "fingerprint": 3160208743, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 180507744, - "type": 3, + "fingerprint": 982179895, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3278550944, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "losttrinkets.mixins.json", - "fingerprint": 3076126122, - "type": 3, + "fingerprint": 480513532, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3276926842, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "losttrinkets.refmap.json", - "fingerprint": 2452624775, - "type": 3, + "fingerprint": 1438559181, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1316093734, + "packageFingerprint": 2288821940, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.3", + "1.16.5", + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2221839, - "projectId": 404038, - "packageFingerprintId": 626513246, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2799420, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "LostTrinkets-1.16.5-0.1.27.jar" + "FileNameOnDisk": "alexsmobs-1.12.1.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4254714Z", - "dateUpdated": "2021-07-05T20:21:08.4254714Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-09-21T13:03:53.8405492Z", + "dateLastUpdateAttempted": "2021-09-21T13:03:53.8405492Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -23626,132 +24095,36 @@ "installedTargets": null }, { - "addonID": 352656, + "addonID": 401955, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3232535, - "displayName": "Powah-1.16.5-2.3.16.jar", - "fileName": "Powah-1.16.5-2.3.16.jar", - "fileDate": "2021-03-09T09:33:59.867Z", - "fileLength": 1192090, + "id": 3468666, + "displayName": "ars_nouveau-1.16.5-1.23.11.jar", + "fileName": "ars_nouveau-1.16.5-1.23.11.jar", + "fileDate": "2021-09-22T19:02:42.603Z", + "fileLength": 4408420, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3232/535/Powah-1.16.5-2.3.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3468/666/ars_nouveau-1.16.5-1.23.11.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 58618221, - "addonId": 347954, - "type": 3, - "fileId": 3232535 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 744385121, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "owmii", - "fingerprint": 3107215616, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 4160467681, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3518983103, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3053359315, + "id": 0, + "addonId": 388172, "type": 3, - "invalidFingerprint": false + "fileId": 0 }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3678931194, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 872581196, - "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2208929, - "projectId": 352656, - "packageFingerprintId": 621066187, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2780278, - "gameVersionId": 4458, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "Powah-1.16.5-2.3.16.jar" - }, - "dateInstalled": "2021-07-05T20:21:08.4474707Z", - "dateUpdated": "2021-07-05T20:21:08.4474707Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 328085, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3419412, - "displayName": " Create 1.16.5 v0.3.2d", - "fileName": "create-mc1.16.5_v0.3.2d.jar", - "fileDate": "2021-08-08T18:50:11.737Z", - "fileLength": 11337001, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3419/412/create-mc1.16.5_v0.3.2d.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ { "id": 0, - "addonId": 486392, + "addonId": 309927, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 238222, - "type": 2, + "addonId": 306770, + "type": 3, "fileId": 0 } ], @@ -23759,60 +24132,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 188467572, + "fingerprint": 1614055338, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 680092021, + "fingerprint": 2693371356, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 2786113706, + "foldername": "ars_nouveau.mixins.json", + "fingerprint": 2187798320, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 907648433, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "create.mixins.json", - "fingerprint": 3505967421, + "fingerprint": 249292124, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3604133244, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 2004783834, + "fingerprint": 2574989674, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1782673937, + "fingerprint": 4056328335, "type": 0, "invalidFingerprint": false }, { - "foldername": "create.refmap.json", - "fingerprint": 1151107717, + "foldername": "ars_nouveau.refmap.json", + "fingerprint": 889156519, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 262284899, + "packageFingerprint": 3486668826, "gameVersion": [ "1.16.5", "Forge" @@ -23826,11 +24187,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "create-mc1.16.5_v0.3.2d.jar" + "FileNameOnDisk": "ars_nouveau-1.16.5-1.23.11.jar" }, - "dateInstalled": "2021-07-12T18:56:07.2846942Z", - "dateUpdated": "2021-08-11T14:43:31.2909174Z", - "dateLastUpdateAttempted": "2021-08-11T14:43:31.2909174Z", + "dateInstalled": "2021-07-27T06:39:11.3494624Z", + "dateUpdated": "2021-09-24T18:44:44.4462354Z", + "dateLastUpdateAttempted": "2021-09-24T18:44:44.4462354Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -23843,63 +24204,58 @@ "installedTargets": null }, { - "addonID": 429735, + "addonID": 334853, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348414, - "displayName": "compactcrafting-1.0.0-beta.3.jar", - "fileName": "compactcrafting-1.0.0-beta.3.jar", - "fileDate": "2021-06-11T23:47:06.21Z", - "fileLength": 309615, - "releaseType": 2, + "id": 3103834, + "displayName": "SimpleDiscordRichPresence-1.16.4-1.3.5.jar", + "fileName": "SimpleDiscordRichPresence-1.16.4-1.3.5.jar", + "fileDate": "2020-11-06T16:37:08.187Z", + "fileLength": 122588, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/414/compactcrafting-1.0.0-beta.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3103/834/SimpleDiscordRichPresence-1.16.4-1.3.5.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3103835, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2430283600, + "fingerprint": 3783818223, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3823144946, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 1269182687, + "fingerprint": 1881626321, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 28181765, + "foldername": "assets", + "fingerprint": 2414690169, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3681724189, + "foldername": "pack.mcmeta", + "fingerprint": 1348461390, "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 3018483409, + "foldername": "logo.png", + "fingerprint": 1114439685, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 824721554, + "packageFingerprint": 2909395883, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ { @@ -23913,6 +24269,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -23920,18 +24282,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2358047, - "projectId": 429735, - "packageFingerprintId": 681908996, + "renderCacheId": 2044365, + "projectId": 334853, + "packageFingerprintId": 549229027, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034210, + "gameVersionMappingId": 2517802, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "compactcrafting-1.0.0-beta.3.jar" + "FileNameOnDisk": "SimpleDiscordRichPresence-1.16.4-1.3.5.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5303961Z", - "dateUpdated": "2021-07-05T20:20:52.5303961Z", + "dateInstalled": "2021-07-05T20:21:08.4474707Z", + "dateUpdated": "2021-07-05T20:21:08.4474707Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -23945,75 +24307,71 @@ "installedTargets": null }, { - "addonID": 426386, + "addonID": 319194, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3392461, - "displayName": "Shrink-1.16.5-1.1.5.jar", - "fileName": "Shrink-1.16.5-1.1.5.jar", - "fileDate": "2021-07-18T05:53:27.217Z", - "fileLength": 77256, + "id": 3413072, + "displayName": "glassential-forge-1.16.5-1.1.7.jar", + "fileName": "glassential-forge-1.16.5-1.1.7.jar", + "fileDate": "2021-08-04T17:52:07.113Z", + "fileLength": 45602, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3392/461/Shrink-1.16.5-1.1.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3413/72/glassential-forge-1.16.5-1.1.7.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 267602, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2417167581, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 881117774, + "fingerprint": 790047011, "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 2761835503, + "foldername": "lykrast", + "fingerprint": 2029850904, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1733346331, + "fingerprint": 285535733, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 4209830787, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 170392659, + "fingerprint": 3462236109, "type": 0, "invalidFingerprint": false }, { - "foldername": "shrink.mixins.json", - "fingerprint": 3292667501, + "foldername": "logo.png", + "fingerprint": 2983663141, "type": 0, "invalidFingerprint": false }, { - "foldername": "shrink.refmap.json", - "fingerprint": 4258142700, + "foldername": "pack.mcmeta", + "fingerprint": 3143254585, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1098313763, + "packageFingerprint": 2810914847, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -24021,14 +24379,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Shrink-1.16.5-1.1.5.jar" + "FileNameOnDisk": "glassential-forge-1.16.5-1.1.7.jar" }, - "dateInstalled": "2021-07-15T21:20:34.8223984Z", - "dateUpdated": "2021-07-24T19:10:14.6274079Z", - "dateLastUpdateAttempted": "2021-07-24T19:10:14.6274079Z", + "dateInstalled": "2021-07-05T20:21:08.4704715Z", + "dateUpdated": "2021-08-04T20:02:34.3034355Z", + "dateLastUpdateAttempted": "2021-08-04T20:02:34.3034355Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -24041,91 +24399,108 @@ "installedTargets": null }, { - "addonID": 437558, + "addonID": 231951, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3172880, - "displayName": "JEPB-1.0.0.jar", - "fileName": "JEPB-1.0.0.jar", - "fileDate": "2021-01-18T19:51:37.313Z", - "fileLength": 18166, + "id": 3431122, + "displayName": "ImmersiveEngineering-1.16.5-5.0.3-138", + "fileName": "ImmersiveEngineering-1.16.5-5.0.3-138.jar", + "fileDate": "2021-08-19T07:15:45.65Z", + "fileLength": 9350846, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3172/880/JEPB-1.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3431/122/ImmersiveEngineering-1.16.5-5.0.3-138.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 56313408, - "addonId": 436964, - "type": 3, - "fileId": 3172880 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1952758967, - "type": 3, + "fingerprint": 4152006374, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2754379502, - "type": 3, + "foldername": ".cache", + "fingerprint": 3620024271, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3226995485, - "type": 3, + "fingerprint": 1017809187, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "blusunrize", + "fingerprint": 1225333525, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3575715482, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "immersiveengineering.mixins.json", + "fingerprint": 1779063861, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "immersiveengineering.refmap.json", + "fingerprint": 1394608551, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "invtweaks", + "fingerprint": 1311683996, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2329186512, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "malte0811", + "fingerprint": 3682147943, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, + "fingerprint": 262602997, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1022842827, + "packageFingerprint": 4265682932, "gameVersion": [ "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2131939, - "projectId": 437558, - "packageFingerprintId": 588586821, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2654559, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "JEPB-1.0.0.jar" + "FileNameOnDisk": "ImmersiveEngineering-1.16.5-5.0.3-138.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3641192Z", - "dateUpdated": "2021-07-05T20:21:03.3641192Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-08-22T11:00:54.8809408Z", + "dateLastUpdateAttempted": "2021-08-22T11:00:54.8809408Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -24138,52 +24513,58 @@ "installedTargets": null }, { - "addonID": 248787, + "addonID": 417645, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3395800, - "displayName": "appleskin-forge-mc1.16.x-2.1.0.jar", - "fileName": "appleskin-forge-mc1.16.x-2.1.0.jar", - "fileDate": "2021-07-21T06:15:07.117Z", - "fileLength": 46287, + "id": 3478185, + "displayName": "JustEnoughProfessions-1.16.5-1.2.2.jar", + "fileName": "JustEnoughProfessions-1.16.5-1.2.2.jar", + "fileDate": "2021-10-01T17:38:49.697Z", + "fileLength": 19387, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3395/800/appleskin-forge-mc1.16.x-2.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/185/JustEnoughProfessions-1.16.5-1.2.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3026614748, + "fingerprint": 2819867439, "type": 0, "invalidFingerprint": false }, { - "foldername": "squeek", - "fingerprint": 1022454976, + "foldername": "com", + "fingerprint": 1828272135, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3472000903, + "foldername": "assets", + "fingerprint": 4030348416, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3447702788, + "foldername": "pack.mcmeta", + "fingerprint": 1570185774, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3838742211, + "packageFingerprint": 1264078239, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -24191,15 +24572,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "appleskin-forge-mc1.16.x-2.1.0.jar" + "FileNameOnDisk": "JustEnoughProfessions-1.16.5-1.2.2.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9128241Z", - "dateUpdated": "2021-07-24T18:17:53.7009745Z", - "dateLastUpdateAttempted": "2021-07-24T18:17:53.7009745Z", - "status": 5, + "dateInstalled": "2021-07-05T20:21:08.4554703Z", + "dateUpdated": "2021-10-02T18:14:13.3940074Z", + "dateLastUpdateAttempted": "2021-10-02T18:14:13.3940074Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -24211,17 +24592,17 @@ "installedTargets": null }, { - "addonID": 224218, + "addonID": 513857, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3229196, - "displayName": "compactmachines-4.0.0-beta.2.jar", - "fileName": "compactmachines-4.0.0-beta.2.jar", - "fileDate": "2021-03-07T10:12:15.197Z", - "fileLength": 345749, - "releaseType": 2, + "id": 3447941, + "displayName": "oauth-1.06.1-1.16.jar", + "fileName": "oauth-1.06.1-1.16.jar", + "fileDate": "2021-09-03T10:15:10.273Z", + "fileLength": 51399, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3229/196/compactmachines-4.0.0-beta.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3447/941/oauth-1.06.1-1.16.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -24229,85 +24610,49 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3454253115, - "type": 3, + "fingerprint": 2368002889, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 461324764, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 2860794722, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1393581798, - "type": 3, + "fingerprint": 2578193890, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1760035182, - "type": 3, + "foldername": "oauth.png", + "fingerprint": 1778038094, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2008650935, - "type": 3, + "fingerprint": 2021780760, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3360947371, + "packageFingerprint": 2915755594, "gameVersion": [ + "1.16", "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2204879, - "projectId": 224218, - "packageFingerprintId": 619383095, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2774645, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "compactmachines-4.0.0-beta.2.jar" + "FileNameOnDisk": "oauth-1.06.1-1.16.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9128241Z", - "dateUpdated": "2021-07-05T20:20:54.9128241Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-22T19:31:09.1959499Z", + "dateUpdated": "2021-09-22T19:31:09.2199512Z", + "dateLastUpdateAttempted": "2021-09-22T19:31:09.2199512Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -24320,180 +24665,68 @@ "installedTargets": null }, { - "addonID": 445385, + "addonID": 301356, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3349970, - "displayName": "Tetranomicon 1.3", - "fileName": "tetranomicon-1.3.jar", - "fileDate": "2021-06-13T05:37:42.633Z", - "fileLength": 100391, + "id": 3033223, + "displayName": "1.16.2-1.2.2 (Forge)", + "fileName": "demagnetize-forge-1.16.2-1.2.2.jar", + "fileDate": "2020-08-15T15:14:43.79Z", + "fileLength": 63566, "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3349/970/tetranomicon-1.3.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 66280072, - "addonId": 430404, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280068, - "addonId": 247560, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280064, - "addonId": 401284, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280061, - "addonId": 428877, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280071, - "addonId": 291509, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280075, - "addonId": 326895, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280067, - "addonId": 351914, - "type": 3, - "fileId": 3349970 - }, - { - "id": 66280058, - "addonId": 365045, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280073, - "addonId": 227639, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280070, - "addonId": 289712, - "type": 3, - "fileId": 3349970 - }, - { - "id": 66280065, - "addonId": 388992, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280063, - "addonId": 328085, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280074, - "addonId": 406825, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280062, - "addonId": 220318, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280059, - "addonId": 348215, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280076, - "addonId": 340333, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280069, - "addonId": 243121, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280060, - "addonId": 452344, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280066, - "addonId": 264231, - "type": 2, - "fileId": 3349970 - }, - { - "id": 66280057, - "addonId": 362393, - "type": 2, - "fileId": 3349970 - } - ], + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3033/223/demagnetize-forge-1.16.2-1.2.2.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 769532427, + "fingerprint": 607311716, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3715609168, + "foldername": "link", + "fingerprint": 3985638801, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1697669882, + "fingerprint": 779861323, "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2661794979, + "fingerprint": 1386762740, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2771947904, + "fingerprint": 51845876, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3906217757, + "packageFingerprint": 2282712898, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -24505,6 +24738,18 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -24512,18 +24757,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2359960, - "projectId": 445385, - "packageFingerprintId": 682715981, + "renderCacheId": 1958307, + "projectId": 301356, + "packageFingerprintId": 505960348, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3038663, + "gameVersionMappingId": 2378275, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "tetranomicon-1.3.jar" + "FileNameOnDisk": "demagnetize-forge-1.16.2-1.2.2.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5049002Z", - "dateUpdated": "2021-07-05T20:20:52.5049002Z", + "dateInstalled": "2021-07-05T20:21:08.4534731Z", + "dateUpdated": "2021-07-05T20:21:08.4534731Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -24537,49 +24782,78 @@ "installedTargets": null }, { - "addonID": 345973, + "addonID": 428877, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3449269, - "displayName": "cyclepaintings_1.16.5-2.0.jar", - "fileName": "cyclepaintings_1.16.5-2.0.jar", - "fileDate": "2021-09-04T17:40:28.963Z", - "fileLength": 6696, + "id": 3467948, + "displayName": "betterendforge-1.16.5-1.6.3.jar", + "fileName": "betterendforge-1.16.5-1.6.3.jar", + "fileDate": "2021-09-21T21:18:32.87Z", + "fileLength": 81199992, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3449/269/cyclepaintings_1.16.5-2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3467/948/betterendforge-1.16.5-1.6.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 342584, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3282749904, + "fingerprint": 1699242318, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 733274285, + "foldername": "mod", + "fingerprint": 4097893790, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 1669343746, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1297909031, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "betterendforge.mixins.json", + "fingerprint": 1650242948, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2956310274, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "icon.png", + "fingerprint": 2838482931, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2746728718, + "fingerprint": 2232138773, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "betterendforge.refmap.json", + "fingerprint": 971288029, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2482208013, + "packageFingerprint": 1766414999, "gameVersion": [ "1.16.5", "Forge" @@ -24593,11 +24867,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cyclepaintings_1.16.5-2.0.jar" + "FileNameOnDisk": "betterendforge-1.16.5-1.6.3.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2633389Z", - "dateUpdated": "2021-09-05T17:03:59.910847Z", - "dateLastUpdateAttempted": "2021-09-05T17:03:59.910847Z", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-09-22T17:51:45.9249458Z", + "dateLastUpdateAttempted": "2021-09-22T17:51:45.9249458Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -24610,88 +24884,64 @@ "installedTargets": null }, { - "addonID": 419699, + "addonID": 272302, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3462013, - "displayName": "[Forge 1.16.4/5] v1.23.33", - "fileName": "architectury-1.23.33-forge.jar", - "fileDate": "2021-09-17T14:44:40.27Z", - "fileLength": 513560, + "id": 3400591, + "displayName": "Refined Storage Addons 0.7.3", + "fileName": "refinedstorageaddons-0.7.3.jar", + "fileDate": "2021-07-25T15:08:56.713Z", + "fileLength": 30393, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3462/13/architectury-1.23.33-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3400/591/refinedstorageaddons-0.7.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 243076, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "architectury-common.mixins.json", - "fingerprint": 1305967297, + "foldername": "META-INF", + "fingerprint": 2175369359, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury.accessWidener", - "fingerprint": 257494810, + "foldername": "com", + "fingerprint": 3876489601, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury-common-refmap.json", - "fingerprint": 1953518274, + "foldername": "assets", + "fingerprint": 1543911551, "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 337711864, + "foldername": "data", + "fingerprint": 4281536443, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1096803035, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "architectury.mixins.json", - "fingerprint": 1554387086, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "META-INF", - "fingerprint": 1184458518, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "me", - "fingerprint": 187094204, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "architectury_inject_architectury_common_53d158909e4141f29a002e4e846289d1_65633a536525e78795f5d2e868e91d166738c055fb3ad8e01516b6119e872ad6architectury12333devjar", - "fingerprint": 2315980521, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "architectury-forge-refmap.json", - "fingerprint": 3556241074, + "fingerprint": 3031651969, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1955599694, + "packageFingerprint": 212512365, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -24702,11 +24952,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "architectury-1.23.33-forge.jar" + "FileNameOnDisk": "refinedstorageaddons-0.7.3.jar" }, - "dateInstalled": "2021-07-05T20:19:25.2879367Z", - "dateUpdated": "2021-09-18T21:18:53.0353687Z", - "dateLastUpdateAttempted": "2021-09-18T21:18:53.0353687Z", + "dateInstalled": "2021-07-05T20:21:08.4544714Z", + "dateUpdated": "2021-07-25T20:33:12.1578233Z", + "dateLastUpdateAttempted": "2021-07-25T20:33:12.1578233Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -24823,125 +25073,74 @@ "installedTargets": null }, { - "addonID": 60028, + "addonID": 413234, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3454318, - "displayName": "Aquaculture-1.16.5-2.1.21.jar", - "fileName": "Aquaculture-1.16.5-2.1.21.jar", - "fileDate": "2021-09-08T22:16:15.143Z", - "fileLength": 551025, + "id": 3265112, + "displayName": "TravelAnchors-2.4.jar", + "fileName": "TravelAnchors-2.4.jar", + "fileDate": "2021-04-06T10:38:38.707Z", + "fileLength": 66496, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3454/318/Aquaculture-1.16.5-2.1.21.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3265/112/TravelAnchors-2.4.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 60678361, + "addonId": 412525, + "type": 3, + "fileId": 3265112 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2795671848, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 4053942748, - "type": 0, + "fingerprint": 4022918486, + "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2994241971, - "type": 0, + "foldername": "de", + "fingerprint": 3616831204, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2508343055, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 4140618555, - "type": 0, - "invalidFingerprint": false - } - ], - "packageFingerprint": 335846721, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Aquaculture-1.16.5-2.1.21.jar" - }, - "dateInstalled": "2021-07-05T20:21:15.1120321Z", - "dateUpdated": "2021-09-10T17:30:31.9542342Z", - "dateLastUpdateAttempted": "2021-09-10T17:30:31.9542342Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 282313, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3348548, - "displayName": "TipTheScales-1.16.5-3.0.0.15.jar", - "fileName": "TipTheScales-1.16.5-3.0.0.15.jar", - "fileDate": "2021-06-12T02:24:18.95Z", - "fileLength": 9142, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/548/TipTheScales-1.16.5-3.0.0.15.jar", - "isAlternate": false, - "alternateFileId": 3348549, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3103709232, + "fingerprint": 3659963375, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2104658913, + "foldername": "pack.mcmeta", + "fingerprint": 650085956, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 526527258, + "foldername": "assets", + "fingerprint": 3476242192, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3352585251, + "packageFingerprint": 2377763499, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -24953,6 +25152,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -24960,18 +25165,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2358204, - "projectId": 282313, - "packageFingerprintId": 681984675, + "renderCacheId": 2251827, + "projectId": 413234, + "packageFingerprintId": 639018448, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034669, + "gameVersionMappingId": 2845317, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "TipTheScales-1.16.5-3.0.0.15.jar" + "FileNameOnDisk": "TravelAnchors-2.4.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5069Z", - "dateUpdated": "2021-07-05T20:20:52.5069Z", + "dateInstalled": "2021-07-05T20:21:08.4564709Z", + "dateUpdated": "2021-07-05T20:21:08.4564709Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -24985,85 +25190,116 @@ "installedTargets": null }, { - "addonID": 482265, + "addonID": 290209, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3424588, - "displayName": "trofers-1.16.5-1.1.0.jar", - "fileName": "trofers-1.16.5-1.1.0.jar", - "fileDate": "2021-08-13T20:44:12.857Z", - "fileLength": 48964, + "id": 3380276, + "displayName": "RFToolsPower - 1.16-3.0.9", + "fileName": "rftoolspower-1.16-3.0.9.jar", + "fileDate": "2021-07-07T16:48:54.04Z", + "fileLength": 567903, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3424/588/trofers-1.16.5-1.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3380/276/rftoolspower-1.16-3.0.9.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ + "dependencies": [ { - "foldername": "META-INF", - "fingerprint": 3402050634, - "type": 0, - "invalidFingerprint": false + "id": 68281229, + "addonId": 245211, + "type": 2, + "fileId": 3380276 }, { - "foldername": "trofers", - "fingerprint": 1766080325, - "type": 0, - "invalidFingerprint": false + "id": 68281228, + "addonId": 326041, + "type": 3, + "fileId": 3380276 }, { - "foldername": ".cache", - "fingerprint": 4240226762, - "type": 0, - "invalidFingerprint": false + "id": 68281230, + "addonId": 270789, + "type": 2, + "fileId": 3380276 }, { - "foldername": "assets", - "fingerprint": 3145863783, - "type": 0, + "id": 68281231, + "addonId": 233105, + "type": 3, + "fileId": 3380276 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 417874721, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 898276826, - "type": 0, + "foldername": "mcjty", + "fingerprint": 2229322343, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1676724837, - "type": 0, + "foldername": "assets", + "fingerprint": 2151854769, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4066379327, - "type": 0, + "fingerprint": 1612267782, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3818121324, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2330694505, + "packageFingerprint": 257744224, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2398188, + "projectId": 290209, + "packageFingerprintId": 700566081, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3111816, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "trofers-1.16.5-1.1.0.jar" + "FileNameOnDisk": "rftoolspower-1.16-3.0.9.jar" }, - "dateInstalled": "2021-09-22T17:52:43.1731957Z", - "dateUpdated": "2021-09-22T17:52:43.3733049Z", - "dateLastUpdateAttempted": "2021-09-22T17:52:43.3733049Z", - "status": 3, + "dateInstalled": "2021-07-10T17:55:07.2503685Z", + "dateUpdated": "2021-07-10T17:55:07.2503685Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -25075,103 +25311,84 @@ "installedTargets": null }, { - "addonID": 487858, + "addonID": 386415, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3385994, - "displayName": "integrated_proxy-1.16-1.0.19.jar", - "fileName": "integrated_proxy-1.16-1.0.19.jar", - "fileDate": "2021-07-12T12:48:08.4Z", - "fileLength": 69176, + "id": 3103750, + "displayName": "towers_of_the_wild-1.16.4-2.0.1.jar", + "fileName": "towers_of_the_wild-1.16.4-2.0.1.jar", + "fileDate": "2020-11-06T14:59:21.373Z", + "fileLength": 157181, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3385/994/integrated_proxy-1.16-1.0.19.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3103/750/towers_of_the_wild-1.16.4-2.0.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 236307, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 232758, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2269517246, - "type": 0, + "fingerprint": 4122247997, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 485122952, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2421686355, - "type": 0, + "fingerprint": 70519731, + "type": 3, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 4092330642, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "icon.png", - "fingerprint": 595462858, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "mixins.integrated_proxy.json", - "fingerprint": 2104485388, - "type": 0, + "fingerprint": 1151932235, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4211499851, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "mixins.integrated_proxy.refmap.json", - "fingerprint": 3897704287, - "type": 0, + "fingerprint": 1438559181, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1076535041, + "packageFingerprint": 2289824670, "gameVersion": [ - "1.16.5", - "Forge" + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2044270, + "projectId": 386415, + "packageFingerprintId": 549197885, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2517612, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "integrated_proxy-1.16-1.0.19.jar" + "FileNameOnDisk": "towers_of_the_wild-1.16.4-2.0.1.jar" }, - "dateInstalled": "2021-07-10T17:55:07.259339Z", - "dateUpdated": "2021-07-12T18:49:59.2879581Z", - "dateLastUpdateAttempted": "2021-07-12T18:49:59.2879581Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-07-05T20:21:15.1220335Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25184,71 +25401,62 @@ "installedTargets": null }, { - "addonID": 319194, + "addonID": 496030, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3413072, - "displayName": "glassential-forge-1.16.5-1.1.7.jar", - "fileName": "glassential-forge-1.16.5-1.1.7.jar", - "fileDate": "2021-08-04T17:52:07.113Z", - "fileLength": 45602, + "id": 3451336, + "displayName": "EnigmaticGraves-1.6.2.jar", + "fileName": "EnigmaticGraves-1.6.2.jar", + "fileDate": "2021-09-05T18:29:46.57Z", + "fileLength": 72398, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3413/72/glassential-forge-1.16.5-1.1.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3451/336/EnigmaticGraves-1.6.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 267602, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 790047011, + "fingerprint": 3805657105, "type": 0, "invalidFingerprint": false }, { - "foldername": "lykrast", - "fingerprint": 2029850904, + "foldername": "dev", + "fingerprint": 1714614039, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 285535733, + "foldername": ".cache", + "fingerprint": 3920192458, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3462236109, + "foldername": "assets", + "fingerprint": 1514560904, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2983663141, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3143254585, + "foldername": "enigmaticgraves.refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2810914847, + "packageFingerprint": 1035292235, "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -25256,14 +25464,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "glassential-forge-1.16.5-1.1.7.jar" + "FileNameOnDisk": "EnigmaticGraves-1.6.2.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4704715Z", - "dateUpdated": "2021-08-04T20:02:34.3034355Z", - "dateLastUpdateAttempted": "2021-08-04T20:02:34.3034355Z", + "dateInstalled": "2021-07-13T20:16:02.8369272Z", + "dateUpdated": "2021-09-08T17:52:09.4778375Z", + "dateLastUpdateAttempted": "2021-09-08T17:52:09.4778375Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25276,17 +25484,17 @@ "installedTargets": null }, { - "addonID": 377281, + "addonID": 272335, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3358126, - "displayName": "DarkPaintings-1.16.5-6.0.3.jar", - "fileName": "DarkPaintings-1.16.5-6.0.3.jar", - "fileDate": "2021-06-20T05:03:40.65Z", - "fileLength": 25859, + "id": 3349690, + "displayName": "Cucumber-1.16.4-4.1.10.jar", + "fileName": "Cucumber-1.16.4-4.1.10.jar", + "fileDate": "2021-06-12T22:58:45.34Z", + "fileLength": 158783, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3358/126/DarkPaintings-1.16.5-6.0.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3349/690/Cucumber-1.16.4-4.1.10.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -25294,33 +25502,34 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4063965414, + "fingerprint": 3268531547, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1929791559, + "foldername": "com", + "fingerprint": 3024470326, "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3215649717, + "foldername": "assets", + "fingerprint": 1785728476, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2841832441, + "fingerprint": 1104857709, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 15769148, + "packageFingerprint": 3280041175, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ { @@ -25334,6 +25543,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -25341,18 +25556,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2370411, - "projectId": 377281, - "packageFingerprintId": 687657619, + "renderCacheId": 2359608, + "projectId": 272335, + "packageFingerprintId": 682567680, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3059292, + "gameVersionMappingId": 3037894, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "DarkPaintings-1.16.5-6.0.3.jar" + "FileNameOnDisk": "Cucumber-1.16.4-4.1.10.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4824714Z", - "dateUpdated": "2021-07-05T20:21:08.4824714Z", + "dateInstalled": "2021-07-05T20:21:15.1320328Z", + "dateUpdated": "2021-07-05T20:21:15.1320328Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -25366,71 +25581,64 @@ "installedTargets": null }, { - "addonID": 430906, + "addonID": 390898, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3252734, - "displayName": "catjammies-1.1.0.jar", - "fileName": "catjammies-1.1.0.jar", - "fileDate": "2021-03-27T12:54:26.603Z", - "fileLength": 10698, + "id": 3248894, + "displayName": "ERP-V1.8", + "fileName": "ERP-V1.8.zip", + "fileDate": "2021-03-23T15:56:05.357Z", + "fileLength": 1284222, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3252/734/catjammies-1.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3248/894/ERP-V1.8.zip", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 2124015258, - "type": 3, + "foldername": "assets", + "fingerprint": 874958223, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2861836196, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 2937881892, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2553090070, - "type": 3, + "foldername": "pack.png", + "fingerprint": 4104230281, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 797192788, + "packageFingerprint": 279866541, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.3", + "1.16.1", + "1.16", + "1.16.5", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2236251, - "projectId": 430906, - "packageFingerprintId": 632754313, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2821204, - "gameVersionId": 8203, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2020-06-23T13:41:08.75Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "catjammies-1.1.0.jar" + "FileNameOnDisk": "ERP-V1.8.zip" }, - "dateInstalled": "2021-07-05T20:21:08.4434737Z", - "dateUpdated": "2021-07-05T20:21:08.4434737Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-15T04:42:23.8973319Z", + "dateUpdated": "2021-07-15T04:42:23.9253291Z", + "dateLastUpdateAttempted": "2021-07-15T04:42:23.9253291Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25443,17 +25651,17 @@ "installedTargets": null }, { - "addonID": 399630, + "addonID": 370777, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3457017, - "displayName": "EmendatusEnigmatica-1.16.5-1.2.10", - "fileName": "EmendatusEnigmatica-1.16.5-1.2.10.jar", - "fileDate": "2021-09-11T23:48:15.223Z", - "fileLength": 3977740, - "releaseType": 3, + "id": 3211052, + "displayName": "scaffoldingpower-1.16.5-1.3.0.jar", + "fileName": "scaffoldingpower-1.16.5-1.3.0.jar", + "fileDate": "2021-02-20T23:04:20.583Z", + "fileLength": 20309, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3457/17/EmendatusEnigmatica-1.16.5-1.2.10.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3211/52/scaffoldingpower-1.16.5-1.3.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -25461,74 +25669,72 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3780514876, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 2749551635, - "type": 0, + "fingerprint": 3566018682, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1589911189, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 3975310760, - "type": 0, + "fingerprint": 118629613, + "type": 3, "invalidFingerprint": false }, { - "foldername": "emendatusenigmatica.mixins.json", - "fingerprint": 332023941, - "type": 0, + "foldername": "com", + "fingerprint": 2516784375, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1118063826, - "type": 0, + "foldername": "logoFile.png", + "fingerprint": 3874936702, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2276242867, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "emendatusenigmatica.refmap.json", - "fingerprint": 1265371035, - "type": 0, + "fingerprint": 4253522632, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2712966922, + "packageFingerprint": 883299237, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2181524, + "projectId": 370777, + "packageFingerprintId": 609620666, + "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", + "gameVersionMappingId": 2738376, + "gameVersionId": 8134, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "EmendatusEnigmatica-1.16.5-1.2.10.jar" + "FileNameOnDisk": "scaffoldingpower-1.16.5-1.3.0.jar" }, - "dateInstalled": "2021-09-13T17:30:41.8608324Z", - "dateUpdated": "2021-09-13T17:30:41.8728329Z", - "dateLastUpdateAttempted": "2021-09-13T17:30:41.8728329Z", + "dateInstalled": "2021-07-05T20:21:15.1520307Z", + "dateUpdated": "2021-07-05T20:21:15.1520307Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25541,60 +25747,84 @@ "installedTargets": null }, { - "addonID": 358304, + "addonID": 393149, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3466137, - "displayName": "logprot-1.16-1.4.jar", - "fileName": "logprot-1.16-1.4.jar", - "fileDate": "2021-09-19T18:52:57.91Z", - "fileLength": 13106, - "releaseType": 1, + "id": 3348676, + "displayName": "Runelic-1.16.5-7.0.2.jar", + "fileName": "Runelic-1.16.5-7.0.2.jar", + "fileDate": "2021-06-12T02:52:46.517Z", + "fileLength": 11267, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3466/137/logprot-1.16-1.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/676/Runelic-1.16.5-7.0.2.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3348677, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3534896497, - "type": 0, + "fingerprint": 1265235046, + "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3002930837, - "type": 0, + "foldername": "assets", + "fingerprint": 1372029690, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "net", + "fingerprint": 3118337032, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3543142243, - "type": 0, + "fingerprint": 3859778001, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 82815321, + "packageFingerprint": 1449181977, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2358337, + "projectId": 393149, + "packageFingerprintId": 682002312, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3035040, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "logprot-1.16-1.4.jar" + "FileNameOnDisk": "Runelic-1.16.5-7.0.2.jar" }, - "dateInstalled": "2021-07-05T20:20:52.541392Z", - "dateUpdated": "2021-09-21T13:07:09.7668739Z", - "dateLastUpdateAttempted": "2021-09-21T13:07:09.7668739Z", + "dateInstalled": "2021-07-05T20:21:15.1520307Z", + "dateUpdated": "2021-07-05T20:21:15.1520307Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25607,96 +25837,109 @@ "installedTargets": null }, { - "addonID": 398521, + "addonID": 326041, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3418719, - "displayName": "Farmer's Delight 0.4.6 - 1.16.5", - "fileName": "FarmersDelight-1.16.5-0.4.6.jar", - "fileDate": "2021-08-08T01:42:25.33Z", - "fileLength": 1272531, - "releaseType": 2, + "id": 3380271, + "displayName": "RFToolsBase - 1.16-2.0.11", + "fileName": "rftoolsbase-1.16-2.0.11.jar", + "fileDate": "2021-07-07T16:45:36.187Z", + "fileLength": 414291, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3418/719/FarmersDelight-1.16.5-0.4.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3380/271/rftoolsbase-1.16-2.0.11.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 463096840, - "type": 0, - "invalidFingerprint": false - }, + "dependencies": [ { - "foldername": "vectorwing", - "fingerprint": 3999852409, - "type": 0, - "invalidFingerprint": false + "id": 68281048, + "addonId": 270789, + "type": 2, + "fileId": 3380271 }, { - "foldername": ".cache", - "fingerprint": 72275537, - "type": 0, - "invalidFingerprint": false + "id": 68281049, + "addonId": 233105, + "type": 3, + "fileId": 3380271 }, { - "foldername": "assets", - "fingerprint": 3674012889, - "type": 0, - "invalidFingerprint": false - }, + "id": 68281047, + "addonId": 245211, + "type": 2, + "fileId": 3380271 + } + ], + "isAvailable": true, + "modules": [ { - "foldername": "data", - "fingerprint": 1446275177, - "type": 0, + "foldername": "META-INF", + "fingerprint": 1362579129, + "type": 3, "invalidFingerprint": false }, { - "foldername": "farmersdelight.mixins.json", - "fingerprint": 292693986, - "type": 0, + "foldername": "mcjty", + "fingerprint": 2177491659, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1179971505, - "type": 0, + "foldername": "assets", + "fingerprint": 423264590, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3949463021, - "type": 0, + "fingerprint": 3663424948, + "type": 3, "invalidFingerprint": false }, { - "foldername": "farmersdelight.refmap.json", - "fingerprint": 2088572430, - "type": 0, + "foldername": "data", + "fingerprint": 312641568, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1377413210, + "packageFingerprint": 126991286, "gameVersion": [ "1.16.5", "Forge" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2398183, + "projectId": 326041, + "packageFingerprintId": 700563973, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3111805, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "FarmersDelight-1.16.5-0.4.6.jar" + "FileNameOnDisk": "rftoolsbase-1.16-2.0.11.jar" }, - "dateInstalled": "2021-07-05T20:20:52.4999027Z", - "dateUpdated": "2021-08-10T16:57:06.8002067Z", - "dateLastUpdateAttempted": "2021-08-10T16:57:06.8002067Z", + "dateInstalled": "2021-07-10T17:55:07.2663387Z", + "dateUpdated": "2021-07-10T17:55:07.2663387Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25709,17 +25952,17 @@ "installedTargets": null }, { - "addonID": 454372, + "addonID": 511733, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3413422, - "displayName": "supermartijn642corelib-1.0.12-mc1.16.5", - "fileName": "supermartijn642corelib-1.0.12-mc1.16.5.jar", - "fileDate": "2021-08-04T23:28:06.07Z", - "fileLength": 202294, + "id": 3462648, + "displayName": "clickadv-1.8.jar", + "fileName": "clickadv-1.8.jar", + "fileDate": "2021-09-18T09:35:54.39Z", + "fileLength": 15162, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3413/422/supermartijn642corelib-1.0.12-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3462/648/clickadv-1.8.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -25727,42 +25970,41 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4032317977, + "fingerprint": 968228337, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 733152587, + "fingerprint": 1601293228, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1946121656, + "foldername": "clickadv.mixins.json", + "fingerprint": 69916680, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2415593438, + "fingerprint": 1438559181, "type": 0, "invalidFingerprint": false }, { - "foldername": "supermartijn642guilib.png", - "fingerprint": 1404450715, + "foldername": "clickadv.refmap.json", + "fingerprint": 2626024748, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 572436363, + "packageFingerprint": 628084508, "gameVersion": [ - "1.16.3", + "1.14.4", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.15.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -25770,14 +26012,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2019-07-19T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "supermartijn642corelib-1.0.12-mc1.16.5.jar" + "FileNameOnDisk": "clickadv-1.8.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5089Z", - "dateUpdated": "2021-08-05T20:52:49.5278732Z", - "dateLastUpdateAttempted": "2021-08-05T20:52:49.5278732Z", + "dateInstalled": "2021-08-13T18:01:17.0810367Z", + "dateUpdated": "2021-09-18T18:43:34.4872474Z", + "dateLastUpdateAttempted": "2021-09-18T18:43:34.4872474Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -25790,114 +26032,61 @@ "installedTargets": null }, { - "addonID": 432032, + "addonID": 256717, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3152348, - "displayName": "tamedsummon-1.0.0.jar", - "fileName": "tamedsummon-1.0.0.jar", - "fileDate": "2020-12-29T14:55:34.803Z", - "fileLength": 5917, + "id": 3478840, + "displayName": "Clumps-6.0.0.26.jar", + "fileName": "Clumps-6.0.0.26.jar", + "fileDate": "2021-10-02T09:45:49.72Z", + "fileLength": 18335, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3152/348/tamedsummon-1.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/840/Clumps-6.0.0.26.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3478841, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1622435281, - "type": 3, + "fingerprint": 1782882426, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1199598581, - "type": 3, + "fingerprint": 2941140876, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3657869870, - "type": 3, + "fingerprint": 3623522934, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3038821837, + "packageFingerprint": 1032545246, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016", - "gameVersion": "1.16", - "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", - "gameVersionName": "1.16" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2105887, - "projectId": 432032, - "packageFingerprintId": 576174687, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2613867, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "tamedsummon-1.0.0.jar" + "FileNameOnDisk": "Clumps-6.0.0.26.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5223918Z", - "dateUpdated": "2021-07-05T20:20:52.5223918Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-10-02T18:11:51.8144193Z", + "dateLastUpdateAttempted": "2021-10-02T18:11:51.8144193Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -25909,60 +26098,85 @@ "installedTargets": null }, { - "addonID": 334853, + "addonID": 446870, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3103834, - "displayName": "SimpleDiscordRichPresence-1.16.4-1.3.5.jar", - "fileName": "SimpleDiscordRichPresence-1.16.4-1.3.5.jar", - "fileDate": "2020-11-06T16:37:08.187Z", - "fileLength": 122588, + "id": 3241432, + "displayName": "RSInfinityBooster v1.16.5-1.0+6", + "fileName": "RSInfinityBooster-1.16.5-1.0+6.jar", + "fileDate": "2021-03-16T16:10:01.797Z", + "fileLength": 24130, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3103/834/SimpleDiscordRichPresence-1.16.4-1.3.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3241/432/RSInfinityBooster-1.16.5-1.0+6.jar", "isAlternate": false, - "alternateFileId": 3103835, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 59162019, + "addonId": 243076, + "type": 3, + "fileId": 3241432 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3783818223, + "fingerprint": 464313011, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1881626321, + "foldername": "uk", + "fingerprint": 732083628, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2414690169, + "foldername": "data", + "fingerprint": 3948203362, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1348461390, + "fingerprint": 4150378568, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1114439685, + "foldername": "assets", + "fingerprint": 2133868226, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 3385438859, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "rsinfinitybooster.mixins.json", + "fingerprint": 3739684882, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2909395883, + "packageFingerprint": 3343322362, "gameVersion": [ + "1.16", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016", + "gameVersion": "1.16", + "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", + "gameVersionName": "1.16" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -25974,12 +26188,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -25987,18 +26195,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2044365, - "projectId": 334853, - "packageFingerprintId": 549229027, + "renderCacheId": 2220503, + "projectId": 446870, + "packageFingerprintId": 625930430, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2517802, + "gameVersionMappingId": 2797306, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "SimpleDiscordRichPresence-1.16.4-1.3.5.jar" + "FileNameOnDisk": "RSInfinityBooster-1.16.5-1.0+6.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4474707Z", - "dateUpdated": "2021-07-05T20:21:08.4474707Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-07-05T20:21:15.1220335Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -26012,114 +26220,41 @@ "installedTargets": null }, { - "addonID": 272302, + "addonID": 496091, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3400591, - "displayName": "Refined Storage Addons 0.7.3", - "fileName": "refinedstorageaddons-0.7.3.jar", - "fileDate": "2021-07-25T15:08:56.713Z", - "fileLength": 30393, + "id": 3363907, + "displayName": "integratedadditions-1.1.3.jar", + "fileName": "integratedadditions-1.1.3.jar", + "fileDate": "2021-06-25T00:39:35.08Z", + "fileLength": 109642, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3400/591/refinedstorageaddons-0.7.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3363/907/integratedadditions-1.1.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 243076, + "addonId": 232758, "type": 3, "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 2175369359, - "type": 0, - "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3876489601, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 1543911551, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 4281536443, - "type": 0, - "invalidFingerprint": false + "id": 0, + "addonId": 487858, + "type": 2, + "fileId": 0 }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3031651969, - "type": 0, - "invalidFingerprint": false - } - ], - "packageFingerprint": 212512365, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "refinedstorageaddons-0.7.3.jar" - }, - "dateInstalled": "2021-07-05T20:21:08.4544714Z", - "dateUpdated": "2021-07-25T20:33:12.1578233Z", - "dateLastUpdateAttempted": "2021-07-25T20:33:12.1578233Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 410811, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3453355, - "displayName": "ftb-essentials-1605.1.4-build.20.jar", - "fileName": "ftb-essentials-1605.1.4-build.20.jar", - "fileDate": "2021-09-07T18:47:25.05Z", - "fileLength": 74966, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3453/355/ftb-essentials-1605.1.4-build.20.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ { "id": 0, - "addonId": 314905, + "addonId": 238222, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 404465, + "addonId": 236307, "type": 3, "fileId": 0 } @@ -26127,39 +26262,52 @@ "isAvailable": true, "modules": [ { - "foldername": "pack.mcmeta", - "fingerprint": 1298629587, + "foldername": "META-INF", + "fingerprint": 4201907105, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 2278401661, + "foldername": "com", + "fingerprint": 1484342748, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2906025824, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2116477754, + "fingerprint": 2241813805, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 3953174334, + "foldername": "mixins.integratedadditions.json", + "fingerprint": 166998886, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 4120833002, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "mixins.integratedadditions.refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3394438896, + "packageFingerprint": 3994992287, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -26167,14 +26315,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-essentials-1605.1.4-build.20.jar" + "FileNameOnDisk": "integratedadditions-1.1.3.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4264731Z", - "dateUpdated": "2021-09-08T17:52:51.9229571Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:51.9229571Z", + "dateInstalled": "2021-09-02T11:57:04.2351639Z", + "dateUpdated": "2021-09-02T11:57:04.251159Z", + "dateLastUpdateAttempted": "2021-09-02T11:57:04.251159Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26187,17 +26335,17 @@ "installedTargets": null }, { - "addonID": 230976, + "addonID": 232131, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3052146, - "displayName": "FastLeafDecay-v25.jar", - "fileName": "FastLeafDecay-v25.jar", - "fileDate": "2020-09-08T11:01:18Z", - "fileLength": 18175, + "id": 3330403, + "displayName": "DefaultOptions_1.16.5-12.2.1.jar", + "fileName": "DefaultOptions_1.16.5-12.2.1.jar", + "fileDate": "2021-05-30T11:23:32.24Z", + "fileLength": 18700, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3052/146/FastLeafDecay-v25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3330/403/DefaultOptions_1.16.5-12.2.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -26205,81 +26353,45 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2615603133, + "fingerprint": 3979043063, "type": 3, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 2539756150, + "fingerprint": 2728460759, "type": 3, "invalidFingerprint": false }, { - "foldername": "FastLeafDecay.png", - "fingerprint": 624095282, + "foldername": "mixins.defaultoptions.json", + "fingerprint": 4073960078, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, + "fingerprint": 3230626572, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "refmap.defaultoptions.json", + "fingerprint": 2474497720, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 711157654, + "packageFingerprint": 2945223857, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16", - "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "1.16.5" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016", - "gameVersion": "1.16", - "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", - "gameVersionName": "1.16" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -26287,18 +26399,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1981752, - "projectId": 230976, - "packageFingerprintId": 518051823, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2417317, - "gameVersionId": 7498, + "renderCacheId": 2335742, + "projectId": 232131, + "packageFingerprintId": 672654554, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2990109, + "gameVersionId": 8203, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "FastLeafDecay-v25.jar" + "FileNameOnDisk": "DefaultOptions_1.16.5-12.2.1.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateInstalled": "2021-07-05T20:21:15.1420317Z", + "dateUpdated": "2021-07-05T20:21:15.1420317Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -26312,53 +26424,58 @@ "installedTargets": null }, { - "addonID": 366140, + "addonID": 314904, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3358883, - "displayName": "dynviewdist-2.0.jar", - "fileName": "dynviewdist-2.0.jar", - "fileDate": "2021-06-20T19:15:13.64Z", - "fileLength": 13472, + "id": 3038811, + "displayName": "ftb-backups-2.1.1.6.jar", + "fileName": "ftb-backups-2.1.1.6.jar", + "fileDate": "2020-08-21T19:55:35.923Z", + "fileLength": 44329, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3358/883/dynviewdist-2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3038/811/ftb-backups-2.1.1.6.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 66896507, - "addonId": 456640, - "type": 2, - "fileId": 3358883 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 298316196, + "fingerprint": 877028652, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2562954710, + "fingerprint": 3270655232, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2230058698, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3903986230, + "fingerprint": 2532301426, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2955125231, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2102439104, + "packageFingerprint": 64481104, "gameVersion": [ "1.16.3", + "1.16.1", "1.16.5", - "Forge", "1.16.4", "1.16.2" ], @@ -26369,18 +26486,18 @@ "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", "gameVersionName": "1.16.3" }, + { + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", @@ -26399,18 +26516,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2371373, - "projectId": 366140, - "packageFingerprintId": 688203696, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3061243, - "gameVersionId": 7498, + "renderCacheId": 1965116, + "projectId": 314904, + "packageFingerprintId": 509372794, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2390529, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "dynviewdist-2.0.jar" + "FileNameOnDisk": "ftb-backups-2.1.1.6.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4764725Z", - "dateUpdated": "2021-07-05T20:21:08.4764725Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-07-05T20:21:15.1220335Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -26424,49 +26541,76 @@ "installedTargets": null }, { - "addonID": 486778, + "addonID": 314905, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3354784, - "displayName": "ExperienceBugFix-1.36.0.2.jar", - "fileName": "ExperienceBugFix-1.36.0.2.jar", - "fileDate": "2021-06-17T04:29:06.753Z", - "fileLength": 3231, + "id": 3458491, + "displayName": "ftb-ranks-1605.1.4-build.12-forge.jar", + "fileName": "ftb-ranks-1605.1.4-build.12-forge.jar", + "fileDate": "2021-09-13T14:53:12.467Z", + "fileLength": 67505, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3354/784/ExperienceBugFix-1.36.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3458/491/ftb-ranks-1605.1.4-build.12-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 404465, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 1102232454, + "foldername": "ftbranks-common.mixins.json", + "fingerprint": 3158185349, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1125588113, + "foldername": "ftb-ranks-common-refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3620546750, + "fingerprint": 2229603719, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "META-INF", + "fingerprint": 4170120938, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_FTBRanks1165_common_1a8602e351ba4f0d94ecbab8490feac0", + "fingerprint": 1449078950, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 3914633908, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 835556151, + "packageFingerprint": 2054546340, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -26477,11 +26621,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ExperienceBugFix-1.36.0.2.jar" + "FileNameOnDisk": "ftb-ranks-1605.1.4-build.12-forge.jar" }, - "dateInstalled": "2021-08-23T04:32:46.7536831Z", - "dateUpdated": "2021-08-23T04:32:46.8412501Z", - "dateLastUpdateAttempted": "2021-08-23T04:32:46.8412501Z", + "dateInstalled": "2021-07-10T17:55:07.2523422Z", + "dateUpdated": "2021-09-15T16:52:48.1105205Z", + "dateLastUpdateAttempted": "2021-09-15T16:52:48.1105205Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26494,111 +26638,247 @@ "installedTargets": null }, { - "addonID": 301356, + "addonID": 314906, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3033223, - "displayName": "1.16.2-1.2.2 (Forge)", - "fileName": "demagnetize-forge-1.16.2-1.2.2.jar", - "fileDate": "2020-08-15T15:14:43.79Z", - "fileLength": 63566, + "id": 3466965, + "displayName": "ftb-chunks-forge-1605.3.2-build.57.jar", + "fileName": "ftb-chunks-forge-1605.3.2-build.57.jar", + "fileDate": "2021-09-20T17:16:03.327Z", + "fileLength": 712556, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3033/223/demagnetize-forge-1.16.2-1.2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3466/965/ftb-chunks-forge-1605.3.2-build.57.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 404465, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 404468, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 419699, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 314905, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 607311716, - "type": 3, + "foldername": "ftbchunks-common.mixins.json", + "fingerprint": 691596479, + "type": 0, "invalidFingerprint": false }, { - "foldername": "link", - "fingerprint": 3985638801, - "type": 3, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 666273691, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1796985034, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "kubejs.plugins.txt", + "fingerprint": 1949217215, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 779861323, - "type": 3, + "fingerprint": 1623746368, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1386762740, - "type": 3, + "foldername": "ftb-chunks-common-refmap.json", + "fingerprint": 1767887801, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 51845876, - "type": 3, + "fingerprint": 812797178, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "META-INF", + "fingerprint": 493506663, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 1612836477, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_FTBChunks1165_common_02791dbdb0a347e69f58669087588986", + "fingerprint": 971609713, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2282712898, + "packageFingerprint": 1015439143, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], - "sortableGameVersion": [ + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "ftb-chunks-forge-1605.3.2-build.57.jar" + }, + "dateInstalled": "2021-09-10T17:14:11.272099Z", + "dateUpdated": "2021-09-21T13:03:59.7670597Z", + "dateLastUpdateAttempted": "2021-09-21T13:03:59.7670597Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 422301, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3455669, + "displayName": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar", + "fileName": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar", + "fileDate": "2021-09-10T16:56:34.73Z", + "fileLength": 1233886, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3455/669/sophisticatedbackpacks-1.16.5-3.2.12.337.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" + "id": 0, + "addonId": 301356, + "type": 2, + "fileId": 0 }, { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "id": 0, + "addonId": 233071, + "type": 2, + "fileId": 0 }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "id": 0, + "addonId": 225643, + "type": 2, + "fileId": 0 }, { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" + "id": 0, + "addonId": 243121, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 309927, + "type": 2, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1821336421, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "net", + "fingerprint": 893207206, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1415314844, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2552684475, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1102936719, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 4014858000, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 2880603544, + "gameVersion": [ + "1.16.5" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 1958307, - "projectId": 301356, - "packageFingerprintId": 505960348, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2378275, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "demagnetize-forge-1.16.2-1.2.2.jar" + "FileNameOnDisk": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4534731Z", - "dateUpdated": "2021-07-05T20:21:08.4534731Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:15.1320328Z", + "dateUpdated": "2021-09-10T17:30:59.4099218Z", + "dateLastUpdateAttempted": "2021-09-10T17:30:59.4099218Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26611,54 +26891,102 @@ "installedTargets": null }, { - "addonID": 60089, + "addonID": 55438, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3202662, - "displayName": "[1.16.2+] Mouse Tweaks 2.14", - "fileName": "MouseTweaks-2.14-mc1.16.2.jar", - "fileDate": "2021-02-13T16:42:27.547Z", - "fileLength": 58249, - "releaseType": 1, + "id": 3346467, + "displayName": "Furniture Mod 7.0.0pre22", + "fileName": "cfm-7.0.0pre22-1.16.3.jar", + "fileDate": "2021-06-10T13:59:34.013Z", + "fileLength": 2033912, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3202/662/MouseTweaks-2.14-mc1.16.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3346/467/cfm-7.0.0pre22-1.16.3.jar", "isAlternate": false, - "alternateFileId": 3202664, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 66011681, + "addonId": 457570, + "type": 2, + "fileId": 3346467 + }, + { + "id": 66011680, + "addonId": 459701, + "type": 2, + "fileId": 3346467 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 688257269, + "fingerprint": 3006079121, "type": 3, "invalidFingerprint": false }, { - "foldername": "yalter", - "fingerprint": 661815675, + "foldername": "com", + "fingerprint": 2346244016, "type": 3, "invalidFingerprint": false }, { - "foldername": "mousetweaks_logo.png", - "fingerprint": 523611981, + "foldername": "net", + "fingerprint": 138447672, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 2261645772, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2807042880, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "cfm.mixins.json", + "fingerprint": 3721913457, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2704393417, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "furniture.png", + "fingerprint": 4074948463, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 354461813, + "fingerprint": 2646193082, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "cfm.refmap.json", + "fingerprint": 660210366, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2888735780, + "packageFingerprint": 4276867605, "gameVersion": [ "1.16.3", "1.16.5", "Forge", - "1.16.4", - "1.16.2" + "1.16.4" ], "sortableGameVersion": [ { @@ -26684,12 +27012,6 @@ "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -26697,18 +27019,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2170573, - "projectId": 60089, - "packageFingerprintId": 604800181, + "renderCacheId": 2355611, + "projectId": 55438, + "packageFingerprintId": 680585073, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2719540, + "gameVersionMappingId": 3028842, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "MouseTweaks-2.14-mc1.16.2.jar" + "FileNameOnDisk": "cfm-7.0.0pre22-1.16.3.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-07-05T20:21:15.1320328Z", + "dateInstalled": "2021-07-05T20:21:15.1120321Z", + "dateUpdated": "2021-07-05T20:21:15.1120321Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -26722,17 +27044,17 @@ "installedTargets": null }, { - "addonID": 228756, + "addonID": 261251, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3405717, - "displayName": "ironchest-1.16.5-11.2.13.jar", - "fileName": "ironchest-1.16.5-11.2.13.jar", - "fileDate": "2021-07-29T20:28:20.407Z", - "fileLength": 220634, + "id": 3430455, + "displayName": "bwncr-1.16.5-3.10.16.jar", + "fileName": "bwncr-1.16.5-3.10.16.jar", + "fileDate": "2021-08-18T16:03:25.727Z", + "fileLength": 10554, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3405/717/ironchest-1.16.5-11.2.13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3430/455/bwncr-1.16.5-3.10.16.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -26740,36 +27062,30 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3862300753, + "fingerprint": 735629132, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1224443606, + "fingerprint": 2506208207, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3326506562, + "foldername": "assets", + "fingerprint": 2363923422, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1553870930, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2760446240, + "fingerprint": 3145140511, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3089749928, + "packageFingerprint": 2005131254, "gameVersion": [ "1.16.5", "Forge" @@ -26783,11 +27099,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ironchest-1.16.5-11.2.13.jar" + "FileNameOnDisk": "bwncr-1.16.5-3.10.16.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-08-02T19:50:41.2478654Z", - "dateLastUpdateAttempted": "2021-08-02T19:50:41.2478654Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-08-18T17:20:08.7392323Z", + "dateLastUpdateAttempted": "2021-08-18T17:20:08.7392323Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26800,29 +27116,29 @@ "installedTargets": null }, { - "addonID": 418651, + "addonID": 294815, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3446472, - "displayName": "kubejs-mekanism-1605.1.2-build.2.jar", - "fileName": "kubejs-mekanism-1605.1.2-build.2.jar", - "fileDate": "2021-09-01T21:26:41.257Z", - "fileLength": 20202, + "id": 3431677, + "displayName": "aiotbotania-1.16.5-1.8.1.jar", + "fileName": "aiotbotania-1.16.5-1.8.1.jar", + "fileDate": "2021-08-19T19:11:22.037Z", + "fileLength": 220723, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3446/472/kubejs-mekanism-1605.1.2-build.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3431/677/aiotbotania-1.16.5-1.8.1.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3431678, "dependencies": [ { "id": 0, - "addonId": 268560, - "type": 3, + "addonId": 400058, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 238086, + "addonId": 225643, "type": 3, "fileId": 0 } @@ -26830,39 +27146,46 @@ "isAvailable": true, "modules": [ { - "foldername": "kubejs.plugins.txt", - "fingerprint": 3969410618, + "foldername": "META-INF", + "fingerprint": 1194287551, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 510083211, + "foldername": "de", + "fingerprint": 724339096, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 513569437, + "foldername": "assets", + "fingerprint": 1955109219, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 1329565495, + "foldername": "pack.mcmeta", + "fingerprint": 222068915, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 3947561050, + "foldername": "data", + "fingerprint": 1692540400, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2459156036, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2057312983, + "packageFingerprint": 256948889, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -26873,11 +27196,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kubejs-mekanism-1605.1.2-build.2.jar" + "FileNameOnDisk": "aiotbotania-1.16.5-1.8.1.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5069Z", - "dateUpdated": "2021-09-02T12:00:03.4394629Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:03.4394629Z", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-08-22T11:00:36.7650096Z", + "dateLastUpdateAttempted": "2021-08-22T11:00:36.7650096Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26890,176 +27213,84 @@ "installedTargets": null }, { - "addonID": 272335, + "addonID": 308240, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3349690, - "displayName": "Cucumber-1.16.4-4.1.10.jar", - "fileName": "Cucumber-1.16.4-4.1.10.jar", - "fileDate": "2021-06-12T22:58:45.34Z", - "fileLength": 158783, + "id": 3372376, + "displayName": "cherishedworlds-forge-1.16.5-5.1.1.0.jar", + "fileName": "cherishedworlds-forge-1.16.5-5.1.1.0.jar", + "fileDate": "2021-07-01T09:18:00.4Z", + "fileLength": 47481, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3349/690/Cucumber-1.16.4-4.1.10.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3372/376/cherishedworlds-forge-1.16.5-5.1.1.0.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3372377, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3268531547, + "fingerprint": 821586536, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3024470326, + "foldername": "top", + "fingerprint": 1157513753, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1785728476, + "fingerprint": 970820416, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1104857709, + "foldername": "CHANGELOG.md", + "fingerprint": 1513104980, "type": 3, "invalidFingerprint": false - } - ], - "packageFingerprint": 3280041175, - "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2359608, - "projectId": 272335, - "packageFingerprintId": 682567680, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3037894, - "gameVersionId": 4458, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "Cucumber-1.16.4-4.1.10.jar" - }, - "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-07-05T20:21:15.1320328Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 290209, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3380276, - "displayName": "RFToolsPower - 1.16-3.0.9", - "fileName": "rftoolspower-1.16-3.0.9.jar", - "fileDate": "2021-07-07T16:48:54.04Z", - "fileLength": 567903, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3380/276/rftoolspower-1.16-3.0.9.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 68281229, - "addonId": 245211, - "type": 2, - "fileId": 3380276 }, { - "id": 68281228, - "addonId": 326041, + "foldername": "cherishedworlds.mixins.json", + "fingerprint": 3339576873, "type": 3, - "fileId": 3380276 - }, - { - "id": 68281230, - "addonId": 270789, - "type": 2, - "fileId": 3380276 + "invalidFingerprint": false }, { - "id": 68281231, - "addonId": 233105, - "type": 3, - "fileId": 3380276 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 417874721, + "foldername": "cherishedworlds_icon.png", + "fingerprint": 1157943607, "type": 3, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 2229322343, + "foldername": "licenses", + "fingerprint": 641710301, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2151854769, + "foldername": "pack.mcmeta", + "fingerprint": 3379439251, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1612267782, + "foldername": "README.md", + "fingerprint": 472199473, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3818121324, + "foldername": "cherishedworlds.refmap.json", + "fingerprint": 303262438, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 257744224, + "packageFingerprint": 96485251, "gameVersion": [ "1.16.5", "Forge" @@ -27083,107 +27314,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2398188, - "projectId": 290209, - "packageFingerprintId": 700566081, + "renderCacheId": 2388354, + "projectId": 308240, + "packageFingerprintId": 696071893, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3111816, + "gameVersionMappingId": 3092707, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "rftoolspower-1.16-3.0.9.jar" - }, - "dateInstalled": "2021-07-10T17:55:07.2503685Z", - "dateUpdated": "2021-07-10T17:55:07.2503685Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 232131, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3330403, - "displayName": "DefaultOptions_1.16.5-12.2.1.jar", - "fileName": "DefaultOptions_1.16.5-12.2.1.jar", - "fileDate": "2021-05-30T11:23:32.24Z", - "fileLength": 18700, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3330/403/DefaultOptions_1.16.5-12.2.1.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3979043063, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 2728460759, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "mixins.defaultoptions.json", - "fingerprint": 4073960078, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3230626572, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "refmap.defaultoptions.json", - "fingerprint": 2474497720, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 2945223857, - "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2335742, - "projectId": 232131, - "packageFingerprintId": 672654554, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 2990109, - "gameVersionId": 8203, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "DefaultOptions_1.16.5-12.2.1.jar" + "FileNameOnDisk": "cherishedworlds-forge-1.16.5-5.1.1.0.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1420317Z", - "dateUpdated": "2021-07-05T20:21:15.1420317Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-07-05T20:21:15.1220335Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -27197,17 +27339,17 @@ "installedTargets": null }, { - "addonID": 420913, + "addonID": 283644, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3224252, - "displayName": "smoothboot-forge-1.16.4-1.2.2.jar", - "fileName": "smoothboot-forge-1.16.4-1.2.2.jar", - "fileDate": "2021-03-02T18:49:53.913Z", - "fileLength": 84744, + "id": 3437009, + "displayName": "Placebo-1.16.5-4.6.0.jar", + "fileName": "Placebo-1.16.5-4.6.0.jar", + "fileDate": "2021-08-23T22:13:04.22Z", + "fileLength": 140163, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3224/252/smoothboot-forge-1.16.4-1.2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3437/9/Placebo-1.16.5-4.6.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -27215,50 +27357,39 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1423858599, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "io", - "fingerprint": 839167598, + "fingerprint": 2343812143, "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 1643735788, + "foldername": "shadows", + "fingerprint": 3944675926, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2140068133, + "foldername": "assets", + "fingerprint": 2111668988, "type": 0, "invalidFingerprint": false }, { - "foldername": "smoothboot.mixins.json", - "fingerprint": 176279091, + "foldername": "coremods", + "fingerprint": 2382392537, "type": 0, "invalidFingerprint": false }, { - "foldername": "smoothboot.refmap.json", - "fingerprint": 1493072104, + "foldername": "pack.mcmeta", + "fingerprint": 3099375411, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1408340562, + "packageFingerprint": 1133882761, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -27266,14 +27397,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "smoothboot-forge-1.16.4-1.2.2.jar" + "FileNameOnDisk": "Placebo-1.16.5-4.6.0.jar" }, - "dateInstalled": "2021-08-16T05:34:26.5250199Z", - "dateUpdated": "2021-08-16T05:34:26.544017Z", - "dateLastUpdateAttempted": "2021-08-16T05:34:26.544017Z", + "dateInstalled": "2021-07-05T20:21:15.1420317Z", + "dateUpdated": "2021-08-25T05:57:03.2835048Z", + "dateLastUpdateAttempted": "2021-08-25T05:57:03.2835048Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -27286,70 +27417,70 @@ "installedTargets": null }, { - "addonID": 242195, + "addonID": 348521, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348602, - "displayName": "DarkUtilities-1.16.5-8.0.11.jar", - "fileName": "DarkUtilities-1.16.5-8.0.11.jar", - "fileDate": "2021-06-12T02:39:29.447Z", - "fileLength": 249785, - "releaseType": 3, + "id": 3311352, + "displayName": "[Forge 1.16.4/5] v4.11.26", + "fileName": "cloth-config-4.11.26-forge.jar", + "fileDate": "2021-05-16T08:28:18.67Z", + "fileLength": 1337675, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/602/DarkUtilities-1.16.5-8.0.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3311/352/cloth-config-4.11.26-forge.jar", "isAlternate": false, - "alternateFileId": 3348603, - "dependencies": [ + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "id": 66179768, - "addonId": 393149, + "foldername": "me", + "fingerprint": 2191991237, "type": 3, - "fileId": 3348602 + "invalidFingerprint": false }, { - "id": 66179767, - "addonId": 228525, + "foldername": "assets", + "fingerprint": 1681417698, "type": 3, - "fileId": 3348602 - } - ], - "isAvailable": true, - "modules": [ + "invalidFingerprint": false + }, { - "foldername": "META-INF", - "fingerprint": 3710850888, + "foldername": "LICENSE.md", + "fingerprint": 589621802, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 239952618, + "foldername": "pack.mcmeta", + "fingerprint": 524945892, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1508833454, + "foldername": "icon.png", + "fingerprint": 2356087988, "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 366460892, + "foldername": "META-INF", + "fingerprint": 798014315, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3309770494, + "foldername": "architectury_inject_clothconfig_common_c760187c159d44b08ebe9c171811dfa8", + "fingerprint": 1190750826, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2830254161, + "packageFingerprint": 2866256229, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ { @@ -27363,6 +27494,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -27370,18 +27507,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2358262, - "projectId": 242195, - "packageFingerprintId": 681995298, + "renderCacheId": 2311629, + "projectId": 348521, + "packageFingerprintId": 663672050, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034828, + "gameVersionMappingId": 2944351, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "DarkUtilities-1.16.5-8.0.11.jar" + "FileNameOnDisk": "cloth-config-4.11.26-forge.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateInstalled": "2021-07-05T20:21:15.1120321Z", + "dateUpdated": "2021-07-05T20:21:15.1120321Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -27395,47 +27532,75 @@ "installedTargets": null }, { - "addonID": 256717, + "addonID": 310494, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348509, - "displayName": "Clumps-6.0.0.25.jar", - "fileName": "Clumps-6.0.0.25.jar", - "fileDate": "2021-06-12T01:54:22.523Z", - "fileLength": 18262, - "releaseType": 1, + "id": 3055694, + "displayName": "Masonry 0.3.6 (1.16.x) ", + "fileName": "masonry-1.16.3-0.3.6.jar", + "fileDate": "2020-09-12T20:03:19.58Z", + "fileLength": 890932, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/509/Clumps-6.0.0.25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3055/694/masonry-1.16.3-0.3.6.jar", "isAlternate": false, - "alternateFileId": 3348510, + "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2057209467, + "fingerprint": 1212386774, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2941140876, + "fingerprint": 1177698321, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 4027272616, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 222606676, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3623522934, + "fingerprint": 4049990944, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3761654941, + "packageFingerprint": 1710555351, "gameVersion": [ + "1.16.3", + "1.16.1", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -27447,6 +27612,18 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -27454,18 +27631,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2358162, - "projectId": 256717, - "packageFingerprintId": 681962680, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034481, - "gameVersionId": 4458, + "renderCacheId": 1986107, + "projectId": 310494, + "packageFingerprintId": 520326631, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2425388, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "Clumps-6.0.0.25.jar" + "FileNameOnDisk": "masonry-1.16.3-0.3.6.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", + "dateInstalled": "2021-07-05T20:21:15.1420317Z", + "dateUpdated": "2021-07-05T20:21:15.1420317Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -27479,17 +27656,17 @@ "installedTargets": null }, { - "addonID": 266784, + "addonID": 379849, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3398418, - "displayName": "Scannable-MC1.16.5-Forge-1.7.4+21.jar", - "fileName": "Scannable-MC1.16.5-Forge-1.7.4+21.jar", - "fileDate": "2021-07-23T15:33:43.727Z", - "fileLength": 366005, - "releaseType": 1, + "id": 3477594, + "displayName": "The Undergarden 0.5.5", + "fileName": "The_Undergarden-1.16.5-0.5.5.jar", + "fileDate": "2021-09-30T21:54:30.84Z", + "fileLength": 63449848, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3398/418/Scannable-MC1.16.5-Forge-1.7.4+21.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3477/594/The_Undergarden-1.16.5-0.5.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -27497,138 +27674,60 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1799005394, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "li", - "fingerprint": 49399111, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "js", - "fingerprint": 2509999351, + "fingerprint": 1885178317, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2964241226, + "foldername": "quek", + "fingerprint": 3036806059, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2927771060, + "foldername": ".cache", + "fingerprint": 516036412, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2795671112, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 2631015274, - "type": 0, - "invalidFingerprint": false - } - ], - "packageFingerprint": 801866381, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Scannable-MC1.16.5-Forge-1.7.4+21.jar" - }, - "dateInstalled": "2021-09-23T18:18:10.5592919Z", - "dateUpdated": "2021-09-23T18:18:10.5732912Z", - "dateLastUpdateAttempted": "2021-09-23T18:18:10.5732912Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 300297, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3468243, - "displayName": "projectvibrantjourneys-1.16.5-3.2.10.jar", - "fileName": "projectvibrantjourneys-1.16.5-3.2.10.jar", - "fileDate": "2021-09-22T06:39:38.897Z", - "fileLength": 1541592, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3468/243/projectvibrantjourneys-1.16.5-3.2.10.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3238025276, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "projectvibrantjourneys", - "fingerprint": 3027191275, + "fingerprint": 425349372, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1197352507, + "foldername": "data", + "fingerprint": 298867061, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3464851849, + "foldername": "logo.png", + "fingerprint": 3269923206, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1599004398, + "fingerprint": 695107257, "type": 0, "invalidFingerprint": false }, { - "foldername": "projectvibrantjourneys.mixins.json", - "fingerprint": 4012035673, + "foldername": "undergarden.mixins.json", + "fingerprint": 1644557152, "type": 0, "invalidFingerprint": false }, { - "foldername": "projectvibrantjourneys.refmap.json", - "fingerprint": 1009691780, + "foldername": "undergarden.refmap.json", + "fingerprint": 1174418451, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3410786210, + "packageFingerprint": 155674298, "gameVersion": [ "1.16.5", "Forge" @@ -27642,12 +27741,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "projectvibrantjourneys-1.16.5-3.2.10.jar" + "FileNameOnDisk": "The_Undergarden-1.16.5-0.5.5.jar" }, - "dateInstalled": "2021-09-22T18:08:53.3981312Z", - "dateUpdated": "2021-09-22T18:30:58.1370361Z", - "dateLastUpdateAttempted": "2021-09-22T18:30:58.1370361Z", - "status": 5, + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-10-02T18:17:03.1472457Z", + "dateLastUpdateAttempted": "2021-10-02T18:17:03.1472457Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -27659,153 +27758,96 @@ "installedTargets": null }, { - "addonID": 349447, + "addonID": 388800, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3407021, - "displayName": "ensorcellation-1.16.5-1.3.1.jar", - "fileName": "ensorcellation-1.16.5-1.3.1.jar", - "fileDate": "2021-07-31T01:04:59.253Z", - "fileLength": 132851, - "releaseType": 1, + "id": 3353732, + "displayName": "polymorph-forge-1.16.5-0.25.jar", + "fileName": "polymorph-forge-1.16.5-0.25.jar", + "fileDate": "2021-06-16T06:51:30.567Z", + "fileLength": 129304, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3407/21/ensorcellation-1.16.5-1.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3353/732/polymorph-forge-1.16.5-0.25.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 69162, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 3353733, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3385537980, - "type": 0, + "fingerprint": 1943844783, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "top", + "fingerprint": 3914904156, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 131250079, - "type": 0, + "fingerprint": 1492148029, + "type": 3, "invalidFingerprint": false }, { - "foldername": "cofh", - "fingerprint": 2953833620, - "type": 0, + "foldername": "CHANGELOG.md", + "fingerprint": 3723697635, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1090256434, - "type": 0, + "foldername": "licenses", + "fingerprint": 3094404643, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3801474552, - "type": 0, + "fingerprint": 974824912, + "type": 3, "invalidFingerprint": false - } - ], - "packageFingerprint": 3802468072, - "gameVersion": [ - "1.16.5", - "Forge" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "ensorcellation-1.16.5-1.3.1.jar" - }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-08-02T19:52:56.67851Z", - "dateLastUpdateAttempted": "2021-08-02T19:52:56.67851Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 389665, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3344719, - "displayName": "[1.16.4 / 1.16.5] YUNG's Better Mineshafts v2.0.4", - "fileName": "BetterMineshafts-Forge-1.16.4-2.0.4.jar", - "fileDate": "2021-06-09T06:11:00.197Z", - "fileLength": 289307, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3344/719/BetterMineshafts-Forge-1.16.4-2.0.4.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ + }, { - "id": 65897999, - "addonId": 421850, + "foldername": "polymorph.mixins.json", + "fingerprint": 3620266733, "type": 3, - "fileId": 3344719 - } - ], - "isAvailable": true, - "modules": [ + "invalidFingerprint": false + }, { - "foldername": "META-INF", - "fingerprint": 623889669, + "foldername": "polymorph_icon.png", + "fingerprint": 2565812113, "type": 3, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3240836778, + "foldername": "polymorph_integrations.mixins.json", + "fingerprint": 77310967, "type": 3, "invalidFingerprint": false }, { - "foldername": "BMLogo.png", - "fingerprint": 2440532130, + "foldername": "README.md", + "fingerprint": 3592852768, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 426164492, + "foldername": "polymorph.refmap.json", + "fingerprint": 1518924750, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1126142459, + "packageFingerprint": 4155397533, "gameVersion": [ - "1.16", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016", - "gameVersion": "1.16", - "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", - "gameVersionName": "1.16" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -27830,18 +27872,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2353443, - "projectId": 389665, - "packageFingerprintId": 679674115, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3024035, - "gameVersionId": 7498, + "renderCacheId": 2364769, + "projectId": 388800, + "packageFingerprintId": 685009523, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3048446, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "BetterMineshafts-Forge-1.16.4-2.0.4.jar" + "FileNameOnDisk": "polymorph-forge-1.16.5-0.25.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-07-05T20:20:54.9428204Z", + "dateInstalled": "2021-07-05T20:21:15.1620371Z", + "dateUpdated": "2021-07-05T20:21:15.1620371Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -27855,109 +27897,90 @@ "installedTargets": null }, { - "addonID": 466739, + "addonID": 276951, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3263286, - "displayName": "NaturesStarlight-1.1.jar", - "fileName": "NaturesStarlight-1.1.jar", - "fileDate": "2021-04-04T19:12:00.847Z", - "fileLength": 45109, + "id": 3438373, + "displayName": "comforts-forge-1.16.5-4.0.1.3.jar", + "fileName": "comforts-forge-1.16.5-4.0.1.3.jar", + "fileDate": "2021-08-25T02:58:07.927Z", + "fileLength": 225523, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3263/286/NaturesStarlight-1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3438/373/comforts-forge-1.16.5-4.0.1.3.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 60557573, - "addonId": 306626, - "type": 3, - "fileId": 3263286 - }, - { - "id": 60557574, - "addonId": 241721, - "type": 3, - "fileId": 3263286 - } - ], + "alternateFileId": 3438374, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3784565838, - "type": 3, + "fingerprint": 3046065515, + "type": 0, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 1241418413, - "type": 3, + "foldername": "top", + "fingerprint": 572552235, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2770774562, - "type": 3, + "fingerprint": 2884772189, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "comforts_icon.png", + "fingerprint": 3331194093, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2021714351, - "type": 3, + "fingerprint": 2788335590, + "type": 0, "invalidFingerprint": false }, { - "foldername": "naturesstarlight.mixins.json", - "fingerprint": 1486319831, - "type": 3, + "foldername": "licenses", + "fingerprint": 2780256419, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2013958283, - "type": 3, + "fingerprint": 2041281239, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "README.md", + "fingerprint": 3297141745, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2427634132, + "packageFingerprint": 3882810151, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2249464, - "projectId": 466739, - "packageFingerprintId": 638031892, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2841685, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "NaturesStarlight-1.1.jar" + "FileNameOnDisk": "comforts-forge-1.16.5-4.0.1.3.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4534731Z", - "dateUpdated": "2021-07-05T20:21:08.4534731Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:15.1520307Z", + "dateUpdated": "2021-08-25T05:56:38.409504Z", + "dateLastUpdateAttempted": "2021-08-25T05:56:38.409504Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -27970,79 +27993,91 @@ "installedTargets": null }, { - "addonID": 242223, + "addonID": 241160, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3429379, - "displayName": "JustEnoughCalculation-1.16.5-3.8.5.jar", - "fileName": "JustEnoughCalculation-1.16.5-3.8.5.jar", - "fileDate": "2021-08-17T16:37:15.51Z", - "fileLength": 298228, + "id": 3098229, + "displayName": "NetherPortalFix_1.16.3-7.2.1.jar", + "fileName": "NetherPortalFix_1.16.3-7.2.1.jar", + "fileDate": "2020-10-31T19:12:03.537Z", + "fileLength": 110010, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3429/379/JustEnoughCalculation-1.16.5-3.8.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3098/229/NetherPortalFix_1.16.3-7.2.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 238222, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1151445732, - "type": 0, + "fingerprint": 765763275, + "type": 3, "invalidFingerprint": false }, { - "foldername": "me", - "fingerprint": 2192409045, - "type": 0, + "foldername": "net", + "fingerprint": 3945883739, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3933986851, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 4098231829, - "type": 0, + "fingerprint": 4221044250, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 464417267, - "type": 0, + "fingerprint": 3365466299, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3333498611, + "packageFingerprint": 1273543444, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "1.16.4" ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2037562, + "projectId": 241160, + "packageFingerprintId": 545530031, + "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", + "gameVersionMappingId": 2505367, + "gameVersionId": 8056, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "JustEnoughCalculation-1.16.5-3.8.5.jar" + "FileNameOnDisk": "NetherPortalFix_1.16.3-7.2.1.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2533403Z", - "dateUpdated": "2021-08-17T17:35:46.0312783Z", - "dateLastUpdateAttempted": "2021-08-17T17:35:46.0312783Z", + "dateInstalled": "2021-07-05T20:21:15.1420317Z", + "dateUpdated": "2021-07-05T20:21:15.1420317Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28055,85 +28090,85 @@ "installedTargets": null }, { - "addonID": 401955, + "addonID": 404465, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3468666, - "displayName": "ars_nouveau-1.16.5-1.23.11.jar", - "fileName": "ars_nouveau-1.16.5-1.23.11.jar", - "fileDate": "2021-09-22T19:02:42.603Z", - "fileLength": 4408420, + "id": 3476854, + "displayName": "ftb-library-forge-1605.3.3-build.74.jar", + "fileName": "ftb-library-forge-1605.3.3-build.74.jar", + "fileDate": "2021-09-30T01:34:26.51Z", + "fileLength": 566958, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3468/666/ars_nouveau-1.16.5-1.23.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/854/ftb-library-forge-1605.3.3-build.74.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 388172, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 309927, + "addonId": 419699, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 306770, - "type": 3, + "addonId": 238222, + "type": 2, "fileId": 0 } ], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 1614055338, + "foldername": "ftblibrary-common.mixins.json", + "fingerprint": 2229262088, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2693371356, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 1091646804, "type": 0, "invalidFingerprint": false }, { - "foldername": "ars_nouveau.mixins.json", - "fingerprint": 2187798320, + "foldername": "assets", + "fingerprint": 3890636078, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 249292124, + "foldername": "ftb-library-common-refmap.json", + "fingerprint": 2537558737, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2574989674, + "foldername": "pack.mcmeta", + "fingerprint": 239616976, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4056328335, + "foldername": "META-INF", + "fingerprint": 2855012279, "type": 0, "invalidFingerprint": false }, { - "foldername": "ars_nouveau.refmap.json", - "fingerprint": 889156519, + "foldername": "dev", + "fingerprint": 763052178, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_FTBLibrary1165_common_3f58a24f26744500b868ea19b45ec4d6", + "fingerprint": 1367479450, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3486668826, + "packageFingerprint": 15769651, "gameVersion": [ "1.16.5", "Forge" @@ -28144,15 +28179,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ars_nouveau-1.16.5-1.23.11.jar" + "FileNameOnDisk": "ftb-library-forge-1605.3.3-build.74.jar" }, - "dateInstalled": "2021-07-27T06:39:11.3494624Z", - "dateUpdated": "2021-09-24T18:44:44.4462354Z", - "dateLastUpdateAttempted": "2021-09-24T18:44:44.4462354Z", - "status": 5, + "dateInstalled": "2021-08-18T18:00:56.9919032Z", + "dateUpdated": "2021-10-02T18:13:53.065276Z", + "dateLastUpdateAttempted": "2021-10-02T18:13:53.065276Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -28164,23 +28199,23 @@ "installedTargets": null }, { - "addonID": 353928, + "addonID": 404468, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3445428, - "displayName": "BotanyPots-1.16.5-7.1.24.jar", - "fileName": "BotanyPots-1.16.5-7.1.24.jar", - "fileDate": "2021-09-01T00:15:34.243Z", - "fileLength": 540001, - "releaseType": 3, + "id": 3460043, + "displayName": "ftb-teams-forge-1605.2.2-build.32.jar", + "fileName": "ftb-teams-forge-1605.2.2-build.32.jar", + "fileDate": "2021-09-15T03:08:57.78Z", + "fileLength": 171516, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3445/428/BotanyPots-1.16.5-7.1.24.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3460/43/ftb-teams-forge-1605.2.2-build.32.jar", "isAlternate": false, - "alternateFileId": 3445429, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 228525, + "addonId": 419699, "type": 3, "fileId": 0 } @@ -28188,37 +28223,43 @@ "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 2170194919, + "foldername": "assets", + "fingerprint": 3374566488, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3138714273, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 4244743998, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1853787231, + "foldername": "pack.mcmeta", + "fingerprint": 239616976, "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 4018359412, + "foldername": "META-INF", + "fingerprint": 3241620702, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 898648694, + "foldername": "dev", + "fingerprint": 1585822448, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "architectury_inject_FTBTeams1165_common_f15106fd8b8b47e9a64feab37898da9e", + "fingerprint": 2499899307, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4104500106, + "packageFingerprint": 1730578673, "gameVersion": [ "1.16.5", "Forge" @@ -28232,11 +28273,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "BotanyPots-1.16.5-7.1.24.jar" + "FileNameOnDisk": "ftb-teams-forge-1605.2.2-build.32.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-09-02T11:59:50.0984646Z", - "dateLastUpdateAttempted": "2021-09-02T11:59:50.0984646Z", + "dateInstalled": "2021-07-05T20:21:15.1320328Z", + "dateUpdated": "2021-09-16T05:27:38.5984387Z", + "dateLastUpdateAttempted": "2021-09-16T05:27:38.5984387Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28249,82 +28290,70 @@ "installedTargets": null }, { - "addonID": 371813, + "addonID": 529754, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3400648, - "displayName": "crashutilities-3.12.jar", - "fileName": "crashutilities-3.12.jar", - "fileDate": "2021-07-25T15:57:59.5Z", - "fileLength": 2086298, + "id": 3466312, + "displayName": "RoadRunner-mc1.16.5-1.1.1.jar", + "fileName": "RoadRunner-mc1.16.5-1.1.1.jar", + "fileDate": "2021-09-19T21:44:18.067Z", + "fileLength": 387474, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3400/648/crashutilities-3.12.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3466/312/RoadRunner-mc1.16.5-1.1.1.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 361579, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 309927, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 1860537174, + "foldername": "LICENSE.txt", + "fingerprint": 1136524626, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3544893945, + "foldername": "pack.mcmeta", + "fingerprint": 1265881845, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2286757105, + "foldername": "roadrunner.mixins.json", + "fingerprint": 1649045226, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3380797652, + "foldername": "roadrunner.overrides.properties", + "fingerprint": 3942409938, "type": 0, "invalidFingerprint": false }, { - "foldername": "fr", - "fingerprint": 4212346115, + "foldername": "META-INF", + "fingerprint": 2738395886, "type": 0, "invalidFingerprint": false }, { - "foldername": "dark", - "fingerprint": 2280698898, + "foldername": "me", + "fingerprint": 3847400500, "type": 0, "invalidFingerprint": false }, { - "foldername": "mozilla", - "fingerprint": 1005056399, + "foldername": "RoadRunner-mc1.16.5-refmap.json", + "fingerprint": 3955167373, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2039618924, + "packageFingerprint": 3554115702, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -28332,14 +28361,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "crashutilities-3.12.jar" + "FileNameOnDisk": "RoadRunner-mc1.16.5-1.1.1.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-07-25T20:32:13.1147707Z", - "dateLastUpdateAttempted": "2021-07-25T20:32:13.1147707Z", + "dateInstalled": "2021-09-22T17:33:29.0701517Z", + "dateUpdated": "2021-09-22T17:33:29.0731504Z", + "dateLastUpdateAttempted": "2021-09-22T17:33:29.0731504Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28352,91 +28381,139 @@ "installedTargets": null }, { - "addonID": 300331, + "addonID": 402256, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3436985, - "displayName": "simplylight-1.16.4-1.2.0-build.11.jar", - "fileName": "simplylight-1.16.4-1.2.0-build.11.jar", - "fileDate": "2021-08-23T21:57:24.93Z", - "fileLength": 409123, + "id": 3147020, + "displayName": "cobblegenrandomizer-1.16-5.1.2.jar", + "fileName": "cobblegenrandomizer-1.16-5.1.2.jar", + "fileDate": "2020-12-23T10:21:11.013Z", + "fileLength": 30421, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3436/985/simplylight-1.16.4-1.2.0-build.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3147/20/cobblegenrandomizer-1.16-5.1.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 0, - "addonId": 267602, + "id": 54497083, + "addonId": 238222, "type": 2, - "fileId": 0 + "fileId": 3147020 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 524620507, - "type": 0, + "fingerprint": 1816572688, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2569672848, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3409325231, - "type": 0, + "fingerprint": 1897917322, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2097982577, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 876252868, - "type": 0, + "fingerprint": 686673141, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 266861780, - "type": 0, + "foldername": "data", + "fingerprint": 364772005, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2248317459, - "type": 0, + "foldername": "pack.mcmeta", + "fingerprint": 594959543, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2364447066, + "packageFingerprint": 3842960783, "gameVersion": [ + "1.16-Snapshot", + "1.16.3", + "1.16.1", + "1.16", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016", + "gameVersion": "1.16", + "gameVersionReleaseDate": "2020-02-06T00:00:00Z", + "gameVersionName": "1.16-Snapshot" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000001", + "gameVersion": "1.16.1", + "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", + "gameVersionName": "1.16.1" + }, + { + "gameVersionPadded": "0000000001.0000000016", + "gameVersion": "1.16", + "gameVersionReleaseDate": "2020-06-23T13:41:08.75Z", + "gameVersionName": "1.16" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2099139, + "projectId": 402256, + "packageFingerprintId": 572908452, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "gameVersionMappingId": 2602970, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "simplylight-1.16.4-1.2.0-build.11.jar" + "FileNameOnDisk": "cobblegenrandomizer-1.16-5.1.2.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-08-25T05:57:11.8855031Z", - "dateLastUpdateAttempted": "2021-08-25T05:57:11.8855031Z", + "dateInstalled": "2021-07-05T20:21:15.1320328Z", + "dateUpdated": "2021-07-05T20:21:15.1320328Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28449,66 +28526,148 @@ "installedTargets": null }, { - "addonID": 426558, + "addonID": 377652, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3467280, - "displayName": "alexsmobs-1.12.1", - "fileName": "alexsmobs-1.12.1.jar", - "fileDate": "2021-09-21T00:32:41.873Z", - "fileLength": 18135643, - "releaseType": 1, + "id": 3439969, + "displayName": "materialis-1.16.5-2.1.1.jar", + "fileName": "materialis-1.16.5-2.1.1.jar", + "fileDate": "2021-08-26T17:44:24.56Z", + "fileLength": 1136151, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3467/280/alexsmobs-1.12.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3439/969/materialis-1.16.5-2.1.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 331936, + "addonId": 222880, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 379849, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 282940, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 429625, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 60028, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 74072, "type": 3, "fileId": 0 + }, + { + "id": 0, + "addonId": 268560, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 266515, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 241721, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 361026, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 328085, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 241665, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 243121, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3721473459, + "fingerprint": 2161376395, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3160208743, + "fingerprint": 2029670386, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 982179895, + "foldername": "data", + "fingerprint": 2922082902, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 480513532, + "foldername": "pack.mcmeta", + "fingerprint": 596330657, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, + "foldername": "materialis_logo.png", + "fingerprint": 1271439210, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 3120771506, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1431418334, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2288821940, + "packageFingerprint": 692814289, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -28519,11 +28678,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "alexsmobs-1.12.1.jar" + "FileNameOnDisk": "materialis-1.16.5-2.1.1.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-09-21T13:03:53.8405492Z", - "dateLastUpdateAttempted": "2021-09-21T13:03:53.8405492Z", + "dateInstalled": "2021-07-31T19:26:04.3873174Z", + "dateUpdated": "2021-08-26T19:09:33.0894889Z", + "dateLastUpdateAttempted": "2021-08-26T19:09:33.0894889Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28536,64 +28695,51 @@ "installedTargets": null }, { - "addonID": 351725, + "addonID": 272515, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3378577, - "displayName": "[1.0.6 / 1.16.5] Macaw's Bridges", - "fileName": "mcw-bridges-1.0.6-mc1.16.5.jar", - "fileDate": "2021-07-06T13:23:30.797Z", - "fileLength": 496828, - "releaseType": 1, + "id": 3404330, + "displayName": "BetterAdvancements-1.16.5-0.1.1.115", + "fileName": "BetterAdvancements-1.16.5-0.1.1.115.jar", + "fileDate": "2021-07-28T18:38:51.697Z", + "fileLength": 63647, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3378/577/mcw-bridges-1.0.6-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3404/330/BetterAdvancements-1.16.5-0.1.1.115.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3404331, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1048185190, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 4058674060, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2545550615, + "fingerprint": 1865052446, "type": 0, "invalidFingerprint": false }, { - "foldername": "bridgeslogo.png", - "fingerprint": 2935733303, + "foldername": "betteradvancements", + "fingerprint": 271621060, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 690979446, + "foldername": "pack.mcmeta", + "fingerprint": 509271065, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4021381032, + "foldername": "assets", + "fingerprint": 2900330132, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1318984277, + "packageFingerprint": 3041603780, "gameVersion": [ "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -28601,14 +28747,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcw-bridges-1.0.6-mc1.16.5.jar" + "FileNameOnDisk": "BetterAdvancements-1.16.5-0.1.1.115.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-07-06T18:24:29.7039829Z", - "dateLastUpdateAttempted": "2021-07-06T18:24:29.7039829Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-07-29T17:38:11.9712494Z", + "dateLastUpdateAttempted": "2021-07-29T17:38:11.9712494Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28621,17 +28767,17 @@ "installedTargets": null }, { - "addonID": 261251, + "addonID": 357540, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3430455, - "displayName": "bwncr-1.16.5-3.10.16.jar", - "fileName": "bwncr-1.16.5-3.10.16.jar", - "fileDate": "2021-08-18T16:03:25.727Z", - "fileLength": 10554, + "id": 3432418, + "displayName": "[Forge.1.16.2-1.16.5] InventoryHUD+ (v3.4.0)", + "fileName": "InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar", + "fileDate": "2021-08-20T14:17:37.54Z", + "fileLength": 196910, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3430/455/bwncr-1.16.5-3.10.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3432/418/InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -28639,33 +28785,42 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 735629132, + "fingerprint": 4200453640, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2506208207, + "foldername": "dlovin", + "fingerprint": 637678159, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2363923422, + "fingerprint": 1366209809, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2496424231, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3145140511, + "fingerprint": 1438559181, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2005131254, + "packageFingerprint": 1510091854, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -28676,11 +28831,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "bwncr-1.16.5-3.10.16.jar" + "FileNameOnDisk": "InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-08-18T17:20:08.7392323Z", - "dateLastUpdateAttempted": "2021-08-18T17:20:08.7392323Z", + "dateInstalled": "2021-07-05T20:21:15.1520307Z", + "dateUpdated": "2021-08-22T11:00:53.2590986Z", + "dateLastUpdateAttempted": "2021-08-22T11:00:53.2590986Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28693,72 +28848,57 @@ "installedTargets": null }, { - "addonID": 231095, + "addonID": 438074, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3473110, - "displayName": "Rebuild: 1.0.7", - "fileName": "chiselsandbits-1.0.7-BETA-universal.jar", - "fileDate": "2021-09-26T17:25:56.8Z", - "fileLength": 912434, - "releaseType": 2, + "id": 3446595, + "displayName": " BiomeIdFixer 1.16.5-1.0.1.s5 (Forge)", + "fileName": "biomeidfixer-1.16.5-1.0.1.s5.jar", + "fileDate": "2021-09-01T23:36:58.53Z", + "fileLength": 18942, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3473/110/chiselsandbits-1.0.7-BETA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3446/595/biomeidfixer-1.16.5-1.0.1.s5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2916636839, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "mod", - "fingerprint": 1862326792, + "fingerprint": 1728104185, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2034860810, + "foldername": "com", + "fingerprint": 2694043422, "type": 0, "invalidFingerprint": false }, { - "foldername": "chiselsandbits_at.cfg", - "fingerprint": 1984535209, + "foldername": "biomeidfixer.mixins.json", + "fingerprint": 2848604373, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1624566557, + "foldername": "pack.mcmeta", + "fingerprint": 1428942265, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2325622583, + "foldername": "biomeidfixer.refmap.json", + "fingerprint": 237025010, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3738740391, + "packageFingerprint": 3053206025, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -28769,11 +28909,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "chiselsandbits-1.0.7-BETA-universal.jar" + "FileNameOnDisk": "biomeidfixer-1.16.5-1.0.1.s5.jar" }, - "dateInstalled": "2021-09-24T18:21:26.2309502Z", - "dateUpdated": "2021-09-26T18:55:23.0527018Z", - "dateLastUpdateAttempted": "2021-09-26T18:55:23.0527018Z", + "dateInstalled": "2021-07-05T20:21:15.1520307Z", + "dateUpdated": "2021-09-02T11:59:50.8204694Z", + "dateLastUpdateAttempted": "2021-09-02T11:59:50.8204694Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28786,109 +28926,72 @@ "installedTargets": null }, { - "addonID": 326041, + "addonID": 60028, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3380271, - "displayName": "RFToolsBase - 1.16-2.0.11", - "fileName": "rftoolsbase-1.16-2.0.11.jar", - "fileDate": "2021-07-07T16:45:36.187Z", - "fileLength": 414291, + "id": 3454318, + "displayName": "Aquaculture-1.16.5-2.1.21.jar", + "fileName": "Aquaculture-1.16.5-2.1.21.jar", + "fileDate": "2021-09-08T22:16:15.143Z", + "fileLength": 551025, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3380/271/rftoolsbase-1.16-2.0.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3454/318/Aquaculture-1.16.5-2.1.21.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 68281048, - "addonId": 270789, - "type": 2, - "fileId": 3380271 - }, - { - "id": 68281049, - "addonId": 233105, - "type": 3, - "fileId": 3380271 - }, - { - "id": 68281047, - "addonId": 245211, - "type": 2, - "fileId": 3380271 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1362579129, - "type": 3, + "fingerprint": 2795671848, + "type": 0, "invalidFingerprint": false }, { - "foldername": "mcjty", - "fingerprint": 2177491659, - "type": 3, + "foldername": "com", + "fingerprint": 4053942748, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 423264590, - "type": 3, + "fingerprint": 2994241971, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3663424948, - "type": 3, + "foldername": "data", + "fingerprint": 2508343055, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 312641568, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 4140618555, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 126991286, + "packageFingerprint": 335846721, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2398183, - "projectId": 326041, - "packageFingerprintId": 700563973, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3111805, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsbase-1.16-2.0.11.jar" + "FileNameOnDisk": "Aquaculture-1.16.5-2.1.21.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2663387Z", - "dateUpdated": "2021-07-10T17:55:07.2663387Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:15.1120321Z", + "dateUpdated": "2021-09-10T17:30:31.9542342Z", + "dateLastUpdateAttempted": "2021-09-10T17:30:31.9542342Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -28901,24 +29004,30 @@ "installedTargets": null }, { - "addonID": 32274, + "addonID": 400058, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3397059, - "displayName": "journeymap-1.16.5-5.7.3", - "fileName": "journeymap-1.16.5-5.7.3.jar", - "fileDate": "2021-07-22T13:43:44.23Z", - "fileLength": 6868069, + "id": 3469627, + "displayName": "MythicBotany-1.16.5-1.4.13.jar", + "fileName": "MythicBotany-1.16.5-1.4.13.jar", + "fileDate": "2021-09-23T19:18:19.013Z", + "fileLength": 2118058, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3397/59/journeymap-1.16.5-5.7.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3469/627/MythicBotany-1.16.5-1.4.13.jar", "isAlternate": false, - "alternateFileId": 3397060, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 226005, - "type": 4, + "addonId": 412525, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 225643, + "type": 3, "fileId": 0 } ], @@ -28926,102 +29035,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3352046944, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "journeymap", - "fingerprint": 2912876585, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "modinfo", - "fingerprint": 2573368323, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "net", - "fingerprint": 3964265600, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 3629551885, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "journeymap.mixins.json", - "fingerprint": 3259271730, + "fingerprint": 1759770870, "type": 0, "invalidFingerprint": false }, { - "foldername": "journeymap.png", - "fingerprint": 3357985534, + "foldername": "mythicbotany", + "fingerprint": 3765835484, "type": 0, "invalidFingerprint": false }, { - "foldername": "license.txt", - "fingerprint": 3206912840, + "foldername": "data", + "fingerprint": 1133371363, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2930129283, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "potion-effects-shift.js", - "fingerprint": 4254871621, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "render-event-transformer.js", - "fingerprint": 2784044465, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "info", - "fingerprint": 614130607, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "NOTICE.txt", - "fingerprint": 3411389661, + "fingerprint": 601875795, "type": 0, "invalidFingerprint": false }, { - "foldername": "about.html", - "fingerprint": 1421502970, + "foldername": "assets", + "fingerprint": 2958404766, "type": 0, "invalidFingerprint": false }, { - "foldername": "org", - "fingerprint": 1462564042, + "foldername": "mythicbotany.mixins.json", + "fingerprint": 3133675714, "type": 0, "invalidFingerprint": false }, { - "foldername": "jetty-dir.css", - "fingerprint": 4183154058, + "foldername": "mythicbotany.refmap.json", + "fingerprint": 253419674, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2703253920, + "packageFingerprint": 914888075, "gameVersion": [ "1.16.5", "Forge" @@ -29035,11 +29090,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "journeymap-1.16.5-5.7.3.jar" + "FileNameOnDisk": "MythicBotany-1.16.5-1.4.13.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3351195Z", - "dateUpdated": "2021-07-25T20:32:52.6740534Z", - "dateLastUpdateAttempted": "2021-07-25T20:32:52.6740534Z", + "dateInstalled": "2021-07-10T17:55:07.2703386Z", + "dateUpdated": "2021-09-24T18:44:37.9352534Z", + "dateLastUpdateAttempted": "2021-09-24T18:44:37.9352534Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29052,91 +29107,97 @@ "installedTargets": null }, { - "addonID": 417645, + "addonID": 292692, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3198370, - "displayName": "JustEnoughProfessions-1.16.5-1.2.1.jar", - "fileName": "JustEnoughProfessions-1.16.5-1.2.1.jar", - "fileDate": "2021-02-09T19:41:44.947Z", - "fileLength": 19174, + "id": 3386772, + "displayName": "Transport-1.16.5-3.7.0.jar", + "fileName": "Transport-1.16.5-3.7.0.jar", + "fileDate": "2021-07-13T00:05:40.987Z", + "fileLength": 1136441, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3198/370/JustEnoughProfessions-1.16.5-1.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3386/772/Transport-1.16.5-3.7.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 56449903, - "addonId": 238222, + "id": 0, + "addonId": 306770, "type": 3, - "fileId": 3198370 + "fileId": 0 + }, + { + "id": 0, + "addonId": 287342, + "type": 3, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1625072302, - "type": 3, + "fingerprint": 985073261, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2291845829, - "type": 3, + "foldername": "xyz", + "fingerprint": 2448188843, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1908631492, - "type": 3, + "foldername": "transport-logo.png", + "fingerprint": 501335981, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1570185774, - "type": 3, + "fingerprint": 3820886069, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 932333062, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "mcmod.info", + "fingerprint": 1057682030, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 900612013, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1479756558, + "packageFingerprint": 893745118, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2164897, - "projectId": 417645, - "packageFingerprintId": 602636793, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2710894, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "JustEnoughProfessions-1.16.5-1.2.1.jar" + "FileNameOnDisk": "Transport-1.16.5-3.7.0.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4554703Z", - "dateUpdated": "2021-07-05T20:21:08.4554703Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:15.1520307Z", + "dateUpdated": "2021-07-13T20:15:16.5960022Z", + "dateLastUpdateAttempted": "2021-07-13T20:15:16.5960022Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29149,17 +29210,17 @@ "installedTargets": null }, { - "addonID": 241160, + "addonID": 245755, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3098229, - "displayName": "NetherPortalFix_1.16.3-7.2.1.jar", - "fileName": "NetherPortalFix_1.16.3-7.2.1.jar", - "fileDate": "2020-10-31T19:12:03.537Z", - "fileLength": 110010, + "id": 3440017, + "displayName": "Waystones_1.16.5-7.6.3.jar", + "fileName": "Waystones_1.16.5-7.6.3.jar", + "fileDate": "2021-08-26T18:27:19.3Z", + "fileLength": 375674, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3098/229/NetherPortalFix_1.16.3-7.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3440/17/Waystones_1.16.5-7.6.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -29167,73 +29228,66 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 765763275, - "type": 3, + "fingerprint": 3748686736, + "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 3945883739, - "type": 3, + "fingerprint": 3555035852, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4221044250, - "type": 3, + "fingerprint": 2100158215, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3365466299, - "type": 3, + "foldername": "data", + "fingerprint": 1316247697, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 1273543444, - "gameVersion": [ - "1.16.3", - "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ + }, { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" + "foldername": "mixins.waystones.json", + "fingerprint": 710617204, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "foldername": "pack.mcmeta", + "fingerprint": 1362067209, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "foldername": "refmap.waystones.json", + "fingerprint": 1680274215, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 1408552364, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2037562, - "projectId": 241160, - "packageFingerprintId": 545530031, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2505367, - "gameVersionId": 8056, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "NetherPortalFix_1.16.3-7.2.1.jar" + "FileNameOnDisk": "Waystones_1.16.5-7.6.3.jar" }, "dateInstalled": "2021-07-05T20:21:15.1420317Z", - "dateUpdated": "2021-07-05T20:21:15.1420317Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateUpdated": "2021-08-26T19:10:14.6242545Z", + "dateLastUpdateAttempted": "2021-08-26T19:10:14.6242545Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29246,17 +29300,17 @@ "installedTargets": null }, { - "addonID": 462326, + "addonID": 382216, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3397600, - "displayName": "TacticalFishing-1.16.5-v1.0.2.jar", - "fileName": "TacticalFishing-1.16.5-v1.0.2.jar", - "fileDate": "2021-07-22T21:34:05.85Z", - "fileLength": 86237, + "id": 3457851, + "displayName": "Abnormals Core 1.16.5 - 3.3.0", + "fileName": "abnormals_core-1.16.5-3.3.0.jar", + "fileDate": "2021-09-12T19:28:48.37Z", + "fileLength": 975289, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3397/600/TacticalFishing-1.16.5-v1.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3457/851/abnormals_core-1.16.5-3.3.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -29264,44 +29318,57 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2501104334, + "fingerprint": 285473212, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3595980658, + "fingerprint": 2077283657, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "abnormals_core.mixins.json", + "fingerprint": 2787703284, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4057594709, + "fingerprint": 3690084375, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3059738483, + "fingerprint": 1510015062, "type": 0, "invalidFingerprint": false }, { - "foldername": "modicon.png", - "fingerprint": 724728568, + "foldername": "logo.png", + "fingerprint": 2401233286, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1398498657, + "fingerprint": 2015704770, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "abnormals_core.refmap.json", + "fingerprint": 3072693835, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1401371920, + "packageFingerprint": 3561428952, "gameVersion": [ - "1.16.5" + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -29309,14 +29376,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "TacticalFishing-1.16.5-v1.0.2.jar" + "FileNameOnDisk": "abnormals_core-1.16.5-3.3.0.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4224716Z", - "dateUpdated": "2021-07-25T20:33:44.2619571Z", - "dateLastUpdateAttempted": "2021-07-25T20:33:44.2619571Z", + "dateInstalled": "2021-07-13T04:37:08.9288569Z", + "dateUpdated": "2021-09-15T16:53:12.6114247Z", + "dateLastUpdateAttempted": "2021-09-15T16:53:12.6114247Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29329,52 +29396,54 @@ "installedTargets": null }, { - "addonID": 235577, + "addonID": 60089, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3098221, - "displayName": "TrashSlot_1.16.3-12.2.1.jar", - "fileName": "TrashSlot_1.16.3-12.2.1.jar", - "fileDate": "2020-10-31T19:02:45.53Z", - "fileLength": 61032, + "id": 3202662, + "displayName": "[1.16.2+] Mouse Tweaks 2.14", + "fileName": "MouseTweaks-2.14-mc1.16.2.jar", + "fileDate": "2021-02-13T16:42:27.547Z", + "fileLength": 58249, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3098/221/TrashSlot_1.16.3-12.2.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3202/662/MouseTweaks-2.14-mc1.16.2.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3202664, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3874152321, + "fingerprint": 688257269, "type": 3, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 2139956863, + "foldername": "yalter", + "fingerprint": 661815675, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2085904798, + "foldername": "mousetweaks_logo.png", + "fingerprint": 523611981, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3514838989, + "fingerprint": 354461813, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 85186671, + "packageFingerprint": 2888735780, "gameVersion": [ "1.16.3", "1.16.5", - "1.16.4" + "Forge", + "1.16.4", + "1.16.2" ], "sortableGameVersion": [ { @@ -29389,11 +29458,23 @@ "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", "gameVersionName": "1.16.4" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000002", + "gameVersion": "1.16.2", + "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", + "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -29401,18 +29482,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2037552, - "projectId": 235577, - "packageFingerprintId": 545528458, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2505359, - "gameVersionId": 8056, + "renderCacheId": 2170573, + "projectId": 60089, + "packageFingerprintId": 604800181, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2719540, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "TrashSlot_1.16.3-12.2.1.jar" + "FileNameOnDisk": "MouseTweaks-2.14-mc1.16.2.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5205829Z", - "dateUpdated": "2021-07-05T20:20:57.5205829Z", + "dateInstalled": "2021-07-05T20:21:15.1320328Z", + "dateUpdated": "2021-07-05T20:21:15.1320328Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -29426,102 +29507,109 @@ "installedTargets": null }, { - "addonID": 351748, + "addonID": 225643, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3279909, - "displayName": "mininggadgets-1.7.5.jar", - "fileName": "mininggadgets-1.7.5.jar", - "fileDate": "2021-04-17T15:29:24.37Z", - "fileLength": 608605, + "id": 3386883, + "displayName": "Botania-1.16.5-419.jar", + "fileName": "Botania-1.16.5-419.jar", + "fileDate": "2021-07-13T02:39:05.99Z", + "fileLength": 15009384, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3279/909/mininggadgets-1.7.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3386/883/Botania-1.16.5-419.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 61513090, - "addonId": 399757, + "id": 0, + "addonId": 306770, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 238222, "type": 2, - "fileId": 3279909 + "fileId": 0 + }, + { + "id": 0, + "addonId": 243121, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3815968954, - "type": 3, + "fingerprint": 2014877404, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 1291333770, - "type": 3, + "foldername": "vazkii", + "fingerprint": 3011803571, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1711581317, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 2873431095, + "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 1884048881, - "type": 3, + "foldername": "assets", + "fingerprint": 3218446893, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1322493376, - "type": 3, + "foldername": "data", + "fingerprint": 1560565920, + "type": 0, "invalidFingerprint": false }, { - "foldername": "mininggadgets-logo.png", - "fingerprint": 1108870309, - "type": 3, + "foldername": "logo.png", + "fingerprint": 4168026028, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 3, + "foldername": "botania.refmap.json", + "fingerprint": 2585669513, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 395309315, + "packageFingerprint": 165990656, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2270390, - "projectId": 351748, - "packageFingerprintId": 645475996, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2872904, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mininggadgets-1.7.5.jar" + "FileNameOnDisk": "Botania-1.16.5-419.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-07-05T20:20:54.9428204Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:25:28.41462Z", + "dateUpdated": "2021-07-13T20:15:28.026869Z", + "dateLastUpdateAttempted": "2021-07-13T20:15:28.026869Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29534,102 +29622,116 @@ "installedTargets": null }, { - "addonID": 295910, + "addonID": 248020, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3324568, - "displayName": "IntegratedTerminals-1.16.5-1.2.4.jar", - "fileName": "IntegratedTerminals-1.16.5-1.2.4.jar", - "fileDate": "2021-05-25T17:29:08.493Z", - "fileLength": 473207, + "id": 3285556, + "displayName": "Flux-Networks-1.16.5-6.1.7", + "fileName": "FluxNetworks-1.16.5-6.1.7.12.jar", + "fileDate": "2021-04-22T15:24:00.86Z", + "fileLength": 472287, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3324/568/IntegratedTerminals-1.16.5-1.2.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3285/556/FluxNetworks-1.16.5-6.1.7.12.jar", "isAlternate": false, - "alternateFileId": 3324569, + "alternateFileId": 0, "dependencies": [ { - "id": 64675953, - "addonId": 236307, - "type": 3, - "fileId": 3324568 + "id": 61904555, + "addonId": 223794, + "type": 2, + "fileId": 3285556 }, { - "id": 64675954, - "addonId": 287357, + "id": 61904557, + "addonId": 268560, "type": 2, - "fileId": 3324568 + "fileId": 3285556 }, { - "id": 64675956, - "addonId": 232758, - "type": 3, - "fileId": 3324568 + "id": 61904553, + "addonId": 309927, + "type": 2, + "fileId": 3285556 }, { - "id": 64675955, - "addonId": 251389, - "type": 3, - "fileId": 3324568 + "id": 61904559, + "addonId": 245211, + "type": 2, + "fileId": 3285556 + }, + { + "id": 61904558, + "addonId": 352656, + "type": 2, + "fileId": 3285556 + }, + { + "id": 61904554, + "addonId": 352491, + "type": 2, + "fileId": 3285556 + }, + { + "id": 61904556, + "addonId": 238222, + "type": 2, + "fileId": 3285556 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4289777779, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "org", - "fingerprint": 578875858, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 2877892280, + "fingerprint": 2567910091, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1782312737, + "foldername": "mcjty", + "fingerprint": 3010262717, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2441444065, + "foldername": "sonar", + "fingerprint": 3283383722, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 191223691, + "fingerprint": 2753995291, "type": 3, "invalidFingerprint": false }, { - "foldername": "logo_small.png", - "fingerprint": 18908756, + "foldername": "data", + "fingerprint": 145048759, "type": 3, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 36295578, + "foldername": "pack.mcmeta", + "fingerprint": 1210696107, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3681172154, + "packageFingerprint": 1182115578, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000003", + "gameVersion": "1.16.3", + "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", + "gameVersionName": "1.16.3" + }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -29641,6 +29743,12 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" } ], "hasInstallScript": false, @@ -29648,18 +29756,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2328217, - "projectId": 295910, - "packageFingerprintId": 669539026, + "renderCacheId": 2277688, + "projectId": 248020, + "packageFingerprintId": 648529030, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2974898, + "gameVersionMappingId": 2883517, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "IntegratedTerminals-1.16.5-1.2.4.jar" + "FileNameOnDisk": "FluxNetworks-1.16.5-6.1.7.12.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-07-05T20:20:54.9328256Z", + "dateInstalled": "2021-07-05T20:21:15.1420317Z", + "dateUpdated": "2021-07-05T20:21:15.1420317Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -29673,85 +29781,97 @@ "installedTargets": null }, { - "addonID": 69162, + "addonID": 409087, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3407019, - "displayName": "cofh_core-1.16.5-1.3.1.jar", - "fileName": "cofh_core-1.16.5-1.3.1.jar", - "fileDate": "2021-07-31T01:04:44.44Z", - "fileLength": 1074217, + "id": 3328602, + "displayName": "EntityCulling-1.16.5-2.1.6.jar", + "fileName": "EntityCulling-1.16.5-2.1.6.jar", + "fileDate": "2021-05-28T19:47:47.763Z", + "fileLength": 60714, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3407/19/cofh_core-1.16.5-1.3.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3328/602/EntityCulling-1.16.5-2.1.6.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 220333, - "type": 1, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 824148502, - "type": 0, + "fingerprint": 3846446967, + "type": 3, "invalidFingerprint": false }, { - "foldername": "cofh", - "fingerprint": 2585166152, - "type": 0, + "foldername": "meldexun", + "fingerprint": 2576455172, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2085806998, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 4000834770, - "type": 0, + "fingerprint": 3598369554, + "type": 3, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1223221991, - "type": 0, + "foldername": "entity_culling", + "fingerprint": 3340427751, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1564830655, - "type": 0, + "fingerprint": 418499438, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 252800266, + "packageFingerprint": 1881670325, "gameVersion": [ "1.16.5", - "Forge" + "Forge", + "1.16.4" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2333362, + "projectId": 409087, + "packageFingerprintId": 671622643, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 2985094, + "gameVersionId": 7498, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "cofh_core-1.16.5-1.3.1.jar" + "FileNameOnDisk": "EntityCulling-1.16.5-2.1.6.jar" }, - "dateInstalled": "2021-07-05T20:21:18.9790626Z", - "dateUpdated": "2021-08-02T19:54:09.8005093Z", - "dateLastUpdateAttempted": "2021-08-02T19:54:09.8005093Z", + "dateInstalled": "2021-07-05T20:21:15.1120321Z", + "dateUpdated": "2021-07-05T20:21:15.1120321Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29764,129 +29884,71 @@ "installedTargets": null }, { - "addonID": 412082, + "addonID": 368825, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3466032, - "displayName": "supplementaries-1.16.5-0.17.1.jar", - "fileName": "supplementaries-1.16.5-0.17.1.jar", - "fileDate": "2021-09-19T17:27:30.72Z", - "fileLength": 13058824, + "id": 3332381, + "displayName": "InventoryEssentials_1.16.5-2.3.2.jar", + "fileName": "InventoryEssentials_1.16.5-2.3.2.jar", + "fileDate": "2021-06-01T09:20:16.09Z", + "fileLength": 23301, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3466/32/supplementaries-1.16.5-0.17.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3332/381/InventoryEssentials_1.16.5-2.3.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 457570, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 243121, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 486392, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 499980, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 284007, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 817441019, - "type": 0, + "fingerprint": 62795260, + "type": 3, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 1372173849, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "vazkii", - "fingerprint": 470883804, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 653114161, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1314938047, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 1023386444, - "type": 0, + "fingerprint": 2473967507, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1728776908, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "supplementaries.mixins.json", - "fingerprint": 2628916953, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "supplementaries.refmap.json", - "fingerprint": 4281158774, - "type": 0, + "fingerprint": 854993508, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2321203373, + "packageFingerprint": 4171514000, "gameVersion": [ - "1.16.3", - "1.16.5", - "Forge", - "1.16.4" + "1.16.5" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2338269, + "projectId": 368825, + "packageFingerprintId": 673948011, + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionMappingId": 2994895, + "gameVersionId": 8203, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "supplementaries-1.16.5-0.17.1.jar" + "FileNameOnDisk": "InventoryEssentials_1.16.5-2.3.2.jar" }, - "dateInstalled": "2021-08-11T21:22:43.3270429Z", - "dateUpdated": "2021-09-21T13:07:06.0706039Z", - "dateLastUpdateAttempted": "2021-09-21T13:07:06.0706039Z", + "dateInstalled": "2021-07-05T20:21:15.1320328Z", + "dateUpdated": "2021-07-05T20:21:15.1320328Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29899,73 +29961,102 @@ "installedTargets": null }, { - "addonID": 69163, + "addonID": 429235, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3404884, - "displayName": "thermal_expansion-1.16.5-1.3.0.jar", - "fileName": "thermal_expansion-1.16.5-1.3.0.jar", - "fileDate": "2021-07-29T04:33:10.1Z", - "fileLength": 561919, + "id": 3435176, + "displayName": "ferritecore-2.0.7-forge.jar", + "fileName": "ferritecore-2.0.7-forge.jar", + "fileDate": "2021-08-23T06:16:38.207Z", + "fileLength": 101813, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3404/884/thermal_expansion-1.16.5-1.3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3435/176/ferritecore-2.0.7-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 222880, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1851648969, + "fingerprint": 10563238, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 166308268, + "foldername": "googleaccess", + "fingerprint": 3491285138, "type": 0, "invalidFingerprint": false }, { - "foldername": "cofh", - "fingerprint": 3047381145, + "foldername": "ferritecore.mrl.mixin.json", + "fingerprint": 1186793239, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3098799742, + "foldername": "ferritecore.dedupbakedquad.mixin.json", + "fingerprint": 1286500205, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ferritecore.blockstatecache.mixin.json", + "fingerprint": 352172374, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ferritecore.fastmap.mixin.json", + "fingerprint": 1274405922, "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 2686940821, + "fingerprint": 3369927219, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ferritecore.dedupmultipart.mixin.json", + "fingerprint": 4096495031, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ferritecore.predicates.mixin.json", + "fingerprint": 1322969185, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ferritecore-common-refmap.json", + "fingerprint": 2901900899, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 2809587253, "type": 0, "invalidFingerprint": false }, { - "foldername": "thermal_expansion.png", - "fingerprint": 2953699482, + "foldername": "assets", + "fingerprint": 3448462194, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "malte0811", + "fingerprint": 4102796611, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2894410688, + "packageFingerprint": 2655477553, "gameVersion": [ "1.16.5", "Forge" @@ -29976,14 +30067,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_expansion-1.16.5-1.3.0.jar" + "FileNameOnDisk": "ferritecore-2.0.7-forge.jar" }, - "dateInstalled": "2021-07-05T20:21:18.992063Z", - "dateUpdated": "2021-07-30T07:15:32.8213561Z", - "dateLastUpdateAttempted": "2021-07-30T07:15:32.8213561Z", + "dateInstalled": "2021-07-05T20:21:15.1220335Z", + "dateUpdated": "2021-08-25T05:56:50.9635024Z", + "dateLastUpdateAttempted": "2021-08-25T05:56:50.9635024Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -29996,74 +30087,84 @@ "installedTargets": null }, { - "addonID": 314904, + "addonID": 377794, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3038811, - "displayName": "ftb-backups-2.1.1.6.jar", - "fileName": "ftb-backups-2.1.1.6.jar", - "fileDate": "2020-08-21T19:55:35.923Z", - "fileLength": 44329, + "id": 3318948, + "displayName": "Dungeons Plus 1.16.5-v1.1.5", + "fileName": "dungeons_plus-1.16.5-1.1.5.jar", + "fileDate": "2021-05-22T06:08:15.02Z", + "fileLength": 389176, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3038/811/ftb-backups-2.1.1.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3318/948/dungeons_plus-1.16.5-1.1.5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 65866176, + "addonId": 378802, + "type": 3, + "fileId": 3318948 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 877028652, + "fingerprint": 3411988010, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3270655232, + "fingerprint": 1615477, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2230058698, + "fingerprint": 1515015936, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2532301426, + "foldername": "data", + "fingerprint": 1463906480, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "dungeons_plus.mixins.json", + "fingerprint": 560403939, "type": 3, "invalidFingerprint": false }, { "foldername": "logo.png", - "fingerprint": 2955125231, + "fingerprint": 1682880065, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2313474560, + "type": 3, + "invalidFingerprint": false + }, + { + "foldername": "dungeons_plus.refmap.json", + "fingerprint": 1493072104, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 64481104, + "packageFingerprint": 1233267792, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "1.16.4", - "1.16.2" + "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -30071,16 +30172,10 @@ "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" } ], "hasInstallScript": false, @@ -30088,18 +30183,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1965116, - "projectId": 314904, - "packageFingerprintId": 509372794, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2390529, - "gameVersionId": 4458, + "renderCacheId": 2321336, + "projectId": 377794, + "packageFingerprintId": 667007440, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionMappingId": 3022572, + "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "ftb-backups-2.1.1.6.jar" + "FileNameOnDisk": "dungeons_plus-1.16.5-1.1.5.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", + "dateInstalled": "2021-07-05T20:21:18.9670623Z", + "dateUpdated": "2021-07-05T20:21:18.9670623Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -30113,137 +30208,91 @@ "installedTargets": null }, { - "addonID": 284745, + "addonID": 384508, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3224434, - "displayName": "1.16.2 - 1.16.5 (3.2.0)", - "fileName": "magicfeather-1.16.2-3.2.0.jar", - "fileDate": "2021-03-02T21:27:21.693Z", - "fileLength": 20475, + "id": 3478990, + "displayName": "Resourceful Bees 1.16.5-0.9.9.7", + "fileName": "ResourcefulBees-1.16.5-0.9.9.7.jar", + "fileDate": "2021-10-02T13:18:08.65Z", + "fileLength": 4132479, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3224/434/magicfeather-1.16.2-3.2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3478/990/ResourcefulBees-1.16.5-0.9.9.7.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 58105532, - "addonId": 222908, - "type": 3, - "fileId": 3224434 - }, - { - "id": 58105531, - "addonId": 309927, - "type": 2, - "fileId": 3224434 - }, - { - "id": 58105530, - "addonId": 394120, - "type": 2, - "fileId": 3224434 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2513476217, - "type": 3, + "fingerprint": 2437158903, + "type": 0, "invalidFingerprint": false }, { - "foldername": "be", - "fingerprint": 1603875912, - "type": 3, + "foldername": "com", + "fingerprint": 268925944, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, + "foldername": "resourcefulbees.mixins.json", + "fingerprint": 645418765, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2351638477, - "type": 3, + "foldername": "assets", + "fingerprint": 2816218501, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3124142650, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 684766769, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1156313706, - "type": 3, + "fingerprint": 2602403227, + "type": 0, "invalidFingerprint": false - } - ], - "packageFingerprint": 2420223326, - "gameVersion": [ - "1.16.3", - "1.16.5", - "Forge", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "foldername": "logo.png", + "fingerprint": 1074719077, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" + "foldername": "resourcefulbees.refmap.json", + "fingerprint": 4087400258, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 1528225177, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2198561, - "projectId": 284745, - "packageFingerprintId": 616386000, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2764261, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "magicfeather-1.16.2-3.2.0.jar" + "FileNameOnDisk": "ResourcefulBees-1.16.5-0.9.9.7.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-07-05T20:20:54.9328256Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-07-05T20:21:18.9930639Z", + "dateUpdated": "2021-10-02T18:17:04.8082452Z", + "dateLastUpdateAttempted": "2021-10-02T18:17:04.8082452Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30255,73 +30304,61 @@ "installedTargets": null }, { - "addonID": 314905, + "addonID": 250294, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3458491, - "displayName": "ftb-ranks-1605.1.4-build.12-forge.jar", - "fileName": "ftb-ranks-1605.1.4-build.12-forge.jar", - "fileDate": "2021-09-13T14:53:12.467Z", - "fileLength": 67505, + "id": 3426089, + "displayName": "modular-routers-1.16.5-7.5.1-69.jar", + "fileName": "modular-routers-1.16.5-7.5.1-69.jar", + "fileDate": "2021-08-15T11:52:20.747Z", + "fileLength": 1072759, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3458/491/ftb-ranks-1605.1.4-build.12-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3426/89/modular-routers-1.16.5-7.5.1-69.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 419699, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 404465, - "type": 3, + "addonId": 306770, + "type": 2, "fileId": 0 } ], "isAvailable": true, "modules": [ { - "foldername": "ftbranks-common.mixins.json", - "fingerprint": 3158185349, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "ftb-ranks-common-refmap.json", - "fingerprint": 1493072104, + "foldername": "META-INF", + "fingerprint": 1861986390, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 2229603719, + "foldername": "me", + "fingerprint": 1078228455, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 4170120938, + "foldername": "data", + "fingerprint": 1348804809, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBRanks1165_common_1a8602e351ba4f0d94ecbab8490feac0", - "fingerprint": 1449078950, + "foldername": "pack.mcmeta", + "fingerprint": 2981291698, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 3914633908, + "foldername": "assets", + "fingerprint": 4294280016, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2054546340, + "packageFingerprint": 2603156377, "gameVersion": [ "1.16.5", "Forge" @@ -30332,14 +30369,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-ranks-1605.1.4-build.12-forge.jar" + "FileNameOnDisk": "modular-routers-1.16.5-7.5.1-69.jar" }, - "dateInstalled": "2021-07-10T17:55:07.2523422Z", - "dateUpdated": "2021-09-15T16:52:48.1105205Z", - "dateLastUpdateAttempted": "2021-09-15T16:52:48.1105205Z", + "dateInstalled": "2021-07-05T20:21:18.996063Z", + "dateUpdated": "2021-08-15T17:21:46.2886883Z", + "dateLastUpdateAttempted": "2021-08-15T17:21:46.2886883Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -30352,35 +30389,35 @@ "installedTargets": null }, { - "addonID": 502561, + "addonID": 525447, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3458861, - "displayName": "EquipmentCompare-1.16.5-1.2.2.jar", - "fileName": "EquipmentCompare-1.16.5-1.2.2.jar", - "fileDate": "2021-09-13T23:09:54.727Z", - "fileLength": 19636, - "releaseType": 1, + "id": 3476230, + "displayName": "jmi-1.16.5-0.4-21.jar", + "fileName": "jmi-1.16.5-0.4-21.jar", + "fileDate": "2021-09-29T09:21:21.887Z", + "fileLength": 36607, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3458/861/EquipmentCompare-1.16.5-1.2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3476/230/jmi-1.16.5-0.4-21.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 366844, + "addonId": 314906, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 309927, + "addonId": 245755, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 520110, + "addonId": 32274, "type": 3, "fileId": 0 } @@ -30389,42 +30426,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2911648974, + "fingerprint": 3332240568, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 446226413, + "foldername": "frankv", + "fingerprint": 3311637509, "type": 0, "invalidFingerprint": false }, { - "foldername": "equipmentcompare.mixins.json", - "fingerprint": 3499906537, + "foldername": "assets", + "fingerprint": 629585932, "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 2496969351, + "foldername": "pack.mcmeta", + "fingerprint": 3000352658, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1363303791, + "foldername": "jmi.mixins.json", + "fingerprint": 538215329, "type": 0, "invalidFingerprint": false }, { - "foldername": "equipmentcompare.refmap.json", - "fingerprint": 2966418634, + "foldername": "logo.png", + "fingerprint": 3217472394, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "jmi.refmap.json", + "fingerprint": 1493072104, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2154182306, + "packageFingerprint": 1331222922, "gameVersion": [ "1.16.5", "Forge" @@ -30438,12 +30481,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "EquipmentCompare-1.16.5-1.2.2.jar" + "FileNameOnDisk": "jmi-1.16.5-0.4-21.jar" }, - "dateInstalled": "2021-09-17T18:18:50.6213974Z", - "dateUpdated": "2021-09-17T18:18:50.7093975Z", - "dateLastUpdateAttempted": "2021-09-17T18:18:50.7093975Z", - "status": 5, + "dateInstalled": "2021-09-09T17:38:34.3676105Z", + "dateUpdated": "2021-10-02T18:14:15.9182373Z", + "dateLastUpdateAttempted": "2021-10-02T18:14:15.9182373Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30455,109 +30498,79 @@ "installedTargets": null }, { - "addonID": 314906, + "addonID": 388992, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3466965, - "displayName": "ftb-chunks-forge-1605.3.2-build.57.jar", - "fileName": "ftb-chunks-forge-1605.3.2-build.57.jar", - "fileDate": "2021-09-20T17:16:03.327Z", - "fileLength": 712556, + "id": 3416597, + "displayName": "Environmental 1.16.5 - 1.1.0", + "fileName": "environmental-1.16.5-1.1.0.jar", + "fileDate": "2021-08-06T20:38:00.043Z", + "fileLength": 6988017, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3466/965/ftb-chunks-forge-1605.3.2-build.57.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3416/597/environmental-1.16.5-1.1.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 404465, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 404468, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 419699, + "addonId": 382216, "type": 3, "fileId": 0 - }, - { - "id": 0, - "addonId": 314905, - "type": 2, - "fileId": 0 } ], "isAvailable": true, "modules": [ { - "foldername": "ftbchunks-common.mixins.json", - "fingerprint": 691596479, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "kubejs.classfilter.txt", - "fingerprint": 666273691, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1796985034, + "foldername": "META-INF", + "fingerprint": 4121681131, "type": 0, "invalidFingerprint": false }, { - "foldername": "kubejs.plugins.txt", - "fingerprint": 1949217215, + "foldername": "com", + "fingerprint": 3085826113, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1623746368, + "fingerprint": 1868008798, "type": 0, "invalidFingerprint": false }, { - "foldername": "ftb-chunks-common-refmap.json", - "fingerprint": 1767887801, + "foldername": "data", + "fingerprint": 378103771, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 812797178, + "foldername": "environmental.mixins.json", + "fingerprint": 1700598418, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 493506663, + "foldername": "logo.png", + "fingerprint": 425313166, "type": 0, "invalidFingerprint": false }, { - "foldername": "dev", - "fingerprint": 1612836477, + "foldername": "pack.mcmeta", + "fingerprint": 1166807250, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBChunks1165_common_02791dbdb0a347e69f58669087588986", - "fingerprint": 971609713, + "foldername": "environmental.refmap.json", + "fingerprint": 3304719838, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1015439143, + "packageFingerprint": 3627389999, "gameVersion": [ "1.16.5", "Forge" @@ -30571,11 +30584,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-chunks-forge-1605.3.2-build.57.jar" + "FileNameOnDisk": "environmental-1.16.5-1.1.0.jar" }, - "dateInstalled": "2021-09-10T17:14:11.272099Z", - "dateUpdated": "2021-09-21T13:03:59.7670597Z", - "dateLastUpdateAttempted": "2021-09-21T13:03:59.7670597Z", + "dateInstalled": "2021-08-07T20:08:19.6220258Z", + "dateUpdated": "2021-08-08T17:42:48.802143Z", + "dateLastUpdateAttempted": "2021-08-08T17:42:48.802143Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -30588,158 +30601,72 @@ "installedTargets": null }, { - "addonID": 486928, + "addonID": 465066, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3346602, - "displayName": "More Furniture Mod 1.3.1", - "fileName": "morecfm-1.3.1-1.16.3.jar", - "fileDate": "2021-06-10T16:04:18.627Z", - "fileLength": 6132491, + "id": 3277762, + "displayName": "[Forge 1.16.4-1.16.5] v2.0.1", + "fileName": "expandability-2.0.1-forge.jar", + "fileDate": "2021-04-15T10:53:58.273Z", + "fileLength": 43358, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3346/602/morecfm-1.3.1-1.16.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3277/762/expandability-2.0.1-forge.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 66019820, - "addonId": 459701, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019815, - "addonId": 452344, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019816, - "addonId": 291509, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019821, - "addonId": 457570, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019824, - "addonId": 247560, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019819, - "addonId": 220318, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019814, - "addonId": 452345, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019817, - "addonId": 362393, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019823, - "addonId": 55438, - "type": 3, - "fileId": 3346602 - }, - { - "id": 66019818, - "addonId": 365045, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019813, - "addonId": 326895, - "type": 2, - "fileId": 3346602 - }, - { - "id": 66019822, - "addonId": 388992, - "type": 2, - "fileId": 3346602 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "META-INF", - "fingerprint": 3063515872, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 3218102758, + "foldername": "expandability.mixins.json", + "fingerprint": 2504465341, "type": 3, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 4228227605, + "foldername": "icon.png", + "fingerprint": 437909498, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3435469703, + "foldername": "expandability-common-refmap.json", + "fingerprint": 2115119192, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2210200796, + "foldername": "pack.mcmeta", + "fingerprint": 2432372732, "type": 3, "invalidFingerprint": false }, { - "foldername": "morecfm.mixins.json", - "fingerprint": 2909494522, + "foldername": "META-INF", + "fingerprint": 3794404027, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 257550339, + "foldername": "be", + "fingerprint": 2125577898, "type": 3, "invalidFingerprint": false }, { - "foldername": "morecfm.refmap.json", - "fingerprint": 3062085781, + "foldername": "architectury_inject_expandability_common_8bce1ab34a2a43a9b5ffa443293d038d", + "fingerprint": 1036221710, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3325796312, + "packageFingerprint": 4080179122, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -30764,18 +30691,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2355784, - "projectId": 486928, - "packageFingerprintId": 680691212, + "renderCacheId": 2267508, + "projectId": 465066, + "packageFingerprintId": 644467532, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3029203, + "gameVersionMappingId": 2868175, "gameVersionId": 7498, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "morecfm-1.3.1-1.16.3.jar" + "FileNameOnDisk": "expandability-2.0.1-forge.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4694719Z", - "dateUpdated": "2021-07-05T20:21:08.4694719Z", + "dateInstalled": "2021-07-05T20:21:18.9880623Z", + "dateUpdated": "2021-07-05T20:21:18.9880623Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -30789,136 +30716,92 @@ "installedTargets": null }, { - "addonID": 376351, + "addonID": 377835, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3146365, - "displayName": "framedcompactdrawers-1.16-2.2.0.jar", - "fileName": "framedcompactdrawers-1.16-2.2.0.jar", - "fileDate": "2020-12-22T19:00:01.787Z", - "fileLength": 116626, + "id": 3388486, + "displayName": "createplus-1.16.4_v0.3.2.1.jar", + "fileName": "createplus-1.16.4_v0.3.2.1.jar", + "fileDate": "2021-07-14T13:02:19.57Z", + "fileLength": 64683, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3146/365/framedcompactdrawers-1.16-2.2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3388/486/createplus-1.16.4_v0.3.2.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 59410508, - "addonId": 223852, + "id": 0, + "addonId": 309927, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 328085, "type": 3, - "fileId": 3146365 + "fileId": 0 + }, + { + "id": 0, + "addonId": 268560, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2285096581, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "eutros", - "fingerprint": 2272543578, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 706551264, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 1881664966, - "type": 3, + "fingerprint": 3137750284, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1762540746, - "type": 3, + "foldername": "com", + "fingerprint": 2419413848, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4127160251, - "type": 3, + "fingerprint": 83330288, + "type": 0, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 3412890546, - "type": 3, + "foldername": "data", + "fingerprint": 1555226563, + "type": 0, "invalidFingerprint": false }, { - "foldername": "framedcompactdrawers.refmap.json", - "fingerprint": 3140626583, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1144186776, + "packageFingerprint": 3408096121, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2098288, - "projectId": 376351, - "packageFingerprintId": 572452317, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2601888, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "framedcompactdrawers-1.16-2.2.0.jar" + "FileNameOnDisk": "createplus-1.16.4_v0.3.2.1.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-07-05T20:20:54.9428204Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-14T17:10:41.8904496Z", + "dateUpdated": "2021-07-14T17:10:41.9044492Z", + "dateLastUpdateAttempted": "2021-07-14T17:10:41.9044492Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -30931,69 +30814,86 @@ "installedTargets": null }, { - "addonID": 324973, + "addonID": 299540, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3160501, - "displayName": "DungeonCrawl-1.16.3-2.2.4", - "fileName": "DungeonCrawl-1.16.3-2.2.4.jar", - "fileDate": "2021-01-06T18:07:58.33Z", - "fileLength": 479190, + "id": 3172796, + "displayName": "FastFurnace-1.16.4-4.4.0.jar", + "fileName": "FastFurnace-1.16.4-4.4.0.jar", + "fileDate": "2021-01-18T18:21:32.303Z", + "fileLength": 14614, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3160/501/DungeonCrawl-1.16.3-2.2.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3172/796/FastFurnace-1.16.4-4.4.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 54704741, + "addonId": 283644, + "type": 3, + "fileId": 3172796 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2004125023, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "xiroc", - "fingerprint": 1946312858, - "type": 0, + "fingerprint": 1787013860, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2918400460, - "type": 0, + "foldername": "shadows", + "fingerprint": 3254850185, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 431501935, - "type": 0, + "fingerprint": 135111852, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3292161954, + "packageFingerprint": 3123588329, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", "1.16.4" ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0000000001.0000000016.0000000004", + "gameVersion": "1.16.4", + "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", + "gameVersionName": "1.16.4" + } + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2131821, + "projectId": 299540, + "packageFingerprintId": 588539612, + "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", + "gameVersionMappingId": 2654347, + "gameVersionId": 8134, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "DungeonCrawl-1.16.3-2.2.4.jar" + "FileNameOnDisk": "FastFurnace-1.16.4-4.4.0.jar" }, - "dateInstalled": "2021-07-30T07:30:10.5369295Z", - "dateUpdated": "2021-07-30T07:30:10.5529262Z", - "dateLastUpdateAttempted": "2021-07-30T07:30:10.5529262Z", - "status": 3, + "dateInstalled": "2021-07-05T20:21:18.9770646Z", + "dateUpdated": "2021-07-05T20:21:18.9770646Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -31005,57 +30905,69 @@ "installedTargets": null }, { - "addonID": 283644, + "addonID": 438240, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3437009, - "displayName": "Placebo-1.16.5-4.6.0.jar", - "fileName": "Placebo-1.16.5-4.6.0.jar", - "fileDate": "2021-08-23T22:13:04.22Z", - "fileLength": 140163, + "id": 3445579, + "displayName": "tomeofblood-1.16.5-1.2.jar", + "fileName": "tomeofblood-1.16.5-1.2.jar", + "fileDate": "2021-09-01T04:18:12.803Z", + "fileLength": 74721, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3437/9/Placebo-1.16.5-4.6.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3445/579/tomeofblood-1.16.5-1.2.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 401955, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 224791, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2343812143, + "fingerprint": 3015745454, "type": 0, "invalidFingerprint": false }, { - "foldername": "shadows", - "fingerprint": 3944675926, + "foldername": "com", + "fingerprint": 1817031075, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2111668988, + "fingerprint": 286154215, "type": 0, "invalidFingerprint": false }, { - "foldername": "coremods", - "fingerprint": 2382392537, + "foldername": "data", + "fingerprint": 3390349326, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3099375411, + "fingerprint": 3630444543, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1133882761, + "packageFingerprint": 1585369781, "gameVersion": [ - "1.16.5", - "Forge" + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -31063,14 +30975,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Placebo-1.16.5-4.6.0.jar" + "FileNameOnDisk": "tomeofblood-1.16.5-1.2.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1420317Z", - "dateUpdated": "2021-08-25T05:57:03.2835048Z", - "dateLastUpdateAttempted": "2021-08-25T05:57:03.2835048Z", + "dateInstalled": "2021-07-05T20:21:18.981063Z", + "dateUpdated": "2021-09-02T12:00:15.287463Z", + "dateLastUpdateAttempted": "2021-09-02T12:00:15.287463Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31083,29 +30995,29 @@ "installedTargets": null }, { - "addonID": 294815, + "addonID": 442719, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3431677, - "displayName": "aiotbotania-1.16.5-1.8.1.jar", - "fileName": "aiotbotania-1.16.5-1.8.1.jar", - "fileDate": "2021-08-19T19:11:22.037Z", - "fileLength": 220723, + "id": 3442748, + "displayName": "Abnormals Delight 1.16.5 - 1.2.0", + "fileName": "abnormals_delight-1.16.5-1.2.0.jar", + "fileDate": "2021-08-29T13:17:52.027Z", + "fileLength": 549400, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3431/677/aiotbotania-1.16.5-1.8.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3442/748/abnormals_delight-1.16.5-1.2.0.jar", "isAlternate": false, - "alternateFileId": 3431678, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 400058, - "type": 2, + "addonId": 382216, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 225643, + "addonId": 398521, "type": 3, "fileId": 0 } @@ -31114,42 +31026,60 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1194287551, + "fingerprint": 1781748100, "type": 0, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 724339096, + "foldername": "com", + "fingerprint": 2964619881, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 32715445, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "abnormals_delight.mixins.json", + "fingerprint": 2645650821, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 2260567590, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1955109219, + "foldername": "data", + "fingerprint": 1139311992, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 222068915, + "foldername": "logo.png", + "fingerprint": 1187594774, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1692540400, + "foldername": "pack.mcmeta", + "fingerprint": 532340890, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2459156036, + "foldername": "abnormals_delight.refmap.json", + "fingerprint": 4004558447, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 256948889, + "packageFingerprint": 2225048643, "gameVersion": [ "1.16.5", "Forge" @@ -31163,11 +31093,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "aiotbotania-1.16.5-1.8.1.jar" + "FileNameOnDisk": "abnormals_delight-1.16.5-1.2.0.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-08-22T11:00:36.7650096Z", - "dateLastUpdateAttempted": "2021-08-22T11:00:36.7650096Z", + "dateInstalled": "2021-07-05T20:21:19.0020631Z", + "dateUpdated": "2021-08-31T18:21:59.4171997Z", + "dateLastUpdateAttempted": "2021-08-31T18:21:59.4171997Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31180,17 +31110,17 @@ "installedTargets": null }, { - "addonID": 280294, + "addonID": 225738, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3419933, - "displayName": "FpsReducer-forge-1.23-mc1.16.5.jar", - "fileName": "FpsReducer-forge-1.23-mc1.16.5.jar", - "fileDate": "2021-08-09T07:30:22.947Z", - "fileLength": 94947, + "id": 3473005, + "displayName": "MmmMmmMmmMmm-1.16.5-1.3.1.jar", + "fileName": "MmmMmmMmmMmm-1.16.5-1.3.1.jar", + "fileDate": "2021-09-26T15:22:52.197Z", + "fileLength": 156393, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3419/933/FpsReducer-forge-1.23-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3473/5/MmmMmmMmmMmm-1.16.5-1.3.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -31198,51 +31128,71 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3083225176, + "fingerprint": 3444351968, "type": 0, "invalidFingerprint": false }, { - "foldername": "bre2el", - "fingerprint": 305118122, + "foldername": "net", + "fingerprint": 2972405099, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2163027845, + "fingerprint": 1443824609, "type": 0, "invalidFingerprint": false }, { - "foldername": "fpsreducer.mixins.json", - "fingerprint": 1828560234, + "foldername": "data", + "fingerprint": 1128644385, "type": 0, "invalidFingerprint": false }, { - "foldername": "fpsreducer_logo.png", - "fingerprint": 2600135182, + "foldername": "dummmmmmy.mixins.json", + "fingerprint": 2608028944, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 3497494600, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo1.png", + "fingerprint": 1007478654, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo2.png", + "fingerprint": 3497494600, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 419585142, + "fingerprint": 516985262, "type": 0, "invalidFingerprint": false }, { - "foldername": "fpsreducer.refmap.json", - "fingerprint": 4067606497, + "foldername": "dummmmmmy.refmap.json", + "fingerprint": 582775868, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2329459138, + "packageFingerprint": 3534794908, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -31253,11 +31203,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "FpsReducer-forge-1.23-mc1.16.5.jar" + "FileNameOnDisk": "MmmMmmMmmMmm-1.16.5-1.3.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5105817Z", - "dateUpdated": "2021-08-10T16:56:56.9930877Z", - "dateLastUpdateAttempted": "2021-08-10T16:56:56.9930877Z", + "dateInstalled": "2021-09-25T20:00:48.4929878Z", + "dateUpdated": "2021-09-26T18:55:20.3454249Z", + "dateLastUpdateAttempted": "2021-09-26T18:55:20.3454249Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31270,103 +31220,90 @@ "installedTargets": null }, { - "addonID": 400933, + "addonID": 268250, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3273512, - "displayName": "[1.0.2 / 1.16.5/4] Macaw's Trapdoors", - "fileName": "mcw-trapdoors-1.0.2-mc1.16.5.jar", - "fileDate": "2021-04-12T11:58:02.373Z", - "fileLength": 369488, + "id": 3454143, + "displayName": "ImmersivePetroleum-1.16.5-3.3.0-6.jar", + "fileName": "ImmersivePetroleum-1.16.5-3.3.0-6.jar", + "fileDate": "2021-09-08T17:11:32.61Z", + "fileLength": 1483877, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3273/512/mcw-trapdoors-1.0.2-mc1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3454/143/ImmersivePetroleum-1.16.5-3.3.0-6.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 231951, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 776917826, - "type": 3, + "fingerprint": 252143898, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 106799335, - "type": 3, + "foldername": "flaxbeard", + "fingerprint": 2792502727, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 4121718859, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1655881798, - "type": 3, + "fingerprint": 816766689, + "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 1564359323, - "type": 3, + "fingerprint": 1865897212, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 509507240, - "type": 3, + "foldername": "logo.png", + "fingerprint": 3738625196, + "type": 0, "invalidFingerprint": false }, { - "foldername": "trapdoorslogo.png", - "fingerprint": 3641727091, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 3200837954, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 293957677, + "packageFingerprint": 3348380834, "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2262277, - "projectId": 400933, - "packageFingerprintId": 642757979, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2860327, - "gameVersionId": 7498, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcw-trapdoors-1.0.2-mc1.16.5.jar" + "FileNameOnDisk": "ImmersivePetroleum-1.16.5-3.3.0-6.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9128241Z", - "dateUpdated": "2021-07-05T20:20:54.9128241Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:19.0000632Z", + "dateUpdated": "2021-09-08T17:52:59.5058319Z", + "dateLastUpdateAttempted": "2021-09-08T17:52:59.5058319Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31379,180 +31316,121 @@ "installedTargets": null }, { - "addonID": 386415, + "addonID": 453925, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3103750, - "displayName": "towers_of_the_wild-1.16.4-2.0.1.jar", - "fileName": "towers_of_the_wild-1.16.4-2.0.1.jar", - "fileDate": "2020-11-06T14:59:21.373Z", - "fileLength": 157181, + "id": 3472412, + "displayName": "[ 1.0.1 / 1.16.5] Macaw's Fences and Walls", + "fileName": "mcw-fences-1.0.1-mc1.16.5.jar", + "fileDate": "2021-09-25T21:43:11.763Z", + "fileLength": 224442, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3103/750/towers_of_the_wild-1.16.4-2.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3472/412/mcw-fences-1.0.1-mc1.16.5.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ + "dependencies": [ { - "foldername": "META-INF", - "fingerprint": 4122247997, - "type": 3, - "invalidFingerprint": false + "id": 0, + "addonId": 359540, + "type": 2, + "fileId": 0 }, { - "foldername": "com", - "fingerprint": 70519731, - "type": 3, - "invalidFingerprint": false + "id": 0, + "addonId": 438116, + "type": 2, + "fileId": 0 }, { - "foldername": "data", - "fingerprint": 1151932235, - "type": 3, - "invalidFingerprint": false + "id": 0, + "addonId": 352039, + "type": 2, + "fileId": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 2289824670, - "gameVersion": [ - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ + "id": 0, + "addonId": 363569, + "type": 2, + "fileId": 0 + }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "id": 0, + "addonId": 400933, + "type": 2, + "fileId": 0 }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "id": 0, + "addonId": 378646, + "type": 2, + "fileId": 0 + }, + { + "id": 0, + "addonId": 351725, + "type": 2, + "fileId": 0 } ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2044270, - "projectId": 386415, - "packageFingerprintId": 549197885, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2517612, - "gameVersionId": 7498, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "towers_of_the_wild-1.16.4-2.0.1.jar" - }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 370777, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3211052, - "displayName": "scaffoldingpower-1.16.5-1.3.0.jar", - "fileName": "scaffoldingpower-1.16.5-1.3.0.jar", - "fileDate": "2021-02-20T23:04:20.583Z", - "fileLength": 20309, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3211/52/scaffoldingpower-1.16.5-1.3.0.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3566018682, - "type": 3, + "fingerprint": 1745398176, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 741900088, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 118629613, - "type": 3, + "fingerprint": 57442850, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 2516784375, - "type": 3, + "foldername": "data", + "fingerprint": 2064858653, + "type": 0, "invalidFingerprint": false }, { - "foldername": "logoFile.png", - "fingerprint": 3874936702, - "type": 3, + "foldername": "fenceslogo.png", + "fingerprint": 3490178184, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 3, + "fingerprint": 2508710582, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 883299237, + "packageFingerprint": 578473414, "gameVersion": [ "1.16.5", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2181524, - "projectId": 370777, - "packageFingerprintId": 609620666, - "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", - "gameVersionMappingId": 2738376, - "gameVersionId": 8134, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "scaffoldingpower-1.16.5-1.3.0.jar" + "FileNameOnDisk": "mcw-fences-1.0.1-mc1.16.5.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1520307Z", - "dateUpdated": "2021-07-05T20:21:15.1520307Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:18.9750637Z", + "dateUpdated": "2021-09-26T11:25:08.1429425Z", + "dateLastUpdateAttempted": "2021-09-26T11:25:08.1429425Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31565,72 +31443,67 @@ "installedTargets": null }, { - "addonID": 276951, + "addonID": 69162, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3438373, - "displayName": "comforts-forge-1.16.5-4.0.1.3.jar", - "fileName": "comforts-forge-1.16.5-4.0.1.3.jar", - "fileDate": "2021-08-25T02:58:07.927Z", - "fileLength": 225523, + "id": 3407019, + "displayName": "cofh_core-1.16.5-1.3.1.jar", + "fileName": "cofh_core-1.16.5-1.3.1.jar", + "fileDate": "2021-07-31T01:04:44.44Z", + "fileLength": 1074217, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3438/373/comforts-forge-1.16.5-4.0.1.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3407/19/cofh_core-1.16.5-1.3.1.jar", "isAlternate": false, - "alternateFileId": 3438374, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 220333, + "type": 1, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3046065515, + "fingerprint": 824148502, "type": 0, "invalidFingerprint": false }, { - "foldername": "top", - "fingerprint": 572552235, + "foldername": "cofh", + "fingerprint": 2585166152, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2884772189, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "comforts_icon.png", - "fingerprint": 3331194093, + "fingerprint": 2085806998, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2788335590, + "fingerprint": 4000834770, "type": 0, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 2780256419, + "foldername": "logo.png", + "fingerprint": 1223221991, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2041281239, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "README.md", - "fingerprint": 3297141745, + "fingerprint": 1564830655, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3882810151, + "packageFingerprint": 252800266, "gameVersion": [ "1.16.5", "Forge" @@ -31644,11 +31517,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "comforts-forge-1.16.5-4.0.1.3.jar" + "FileNameOnDisk": "cofh_core-1.16.5-1.3.1.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1520307Z", - "dateUpdated": "2021-08-25T05:56:38.409504Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:38.409504Z", + "dateInstalled": "2021-07-05T20:21:18.9790626Z", + "dateUpdated": "2021-08-02T19:54:09.8005093Z", + "dateLastUpdateAttempted": "2021-08-02T19:54:09.8005093Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31661,60 +31534,76 @@ "installedTargets": null }, { - "addonID": 470193, + "addonID": 69163, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3434629, - "displayName": "connectivity-2.3-1.16.5.jar", - "fileName": "connectivity-2.3-1.16.5.jar", - "fileDate": "2021-08-22T16:28:01.37Z", - "fileLength": 52995, + "id": 3404884, + "displayName": "thermal_expansion-1.16.5-1.3.0.jar", + "fileName": "thermal_expansion-1.16.5-1.3.0.jar", + "fileDate": "2021-07-29T04:33:10.1Z", + "fileLength": 561919, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3434/629/connectivity-2.3-1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3404/884/thermal_expansion-1.16.5-1.3.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 222880, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2523172629, + "fingerprint": 1851648969, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3844341493, + "foldername": "assets", + "fingerprint": 166308268, "type": 0, "invalidFingerprint": false }, { - "foldername": "connectivity.mixins.json", - "fingerprint": 2519663344, + "foldername": "cofh", + "fingerprint": 3047381145, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 3098799742, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 2686940821, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2098059805, + "fingerprint": 4253522632, "type": 0, "invalidFingerprint": false }, { - "foldername": "connectivity.refmap.json", - "fingerprint": 2808845358, + "foldername": "thermal_expansion.png", + "fingerprint": 2953699482, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2769176009, + "packageFingerprint": 2894410688, "gameVersion": [ - "1.16.3", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -31722,14 +31611,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "connectivity-2.3-1.16.5.jar" + "FileNameOnDisk": "thermal_expansion-1.16.5-1.3.0.jar" }, - "dateInstalled": "2021-08-05T20:27:46.9347015Z", - "dateUpdated": "2021-08-25T05:56:37.7755052Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:37.7755052Z", + "dateInstalled": "2021-07-05T20:21:18.992063Z", + "dateUpdated": "2021-07-30T07:15:32.8213561Z", + "dateLastUpdateAttempted": "2021-07-30T07:15:32.8213561Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31742,17 +31631,17 @@ "installedTargets": null }, { - "addonID": 383070, + "addonID": 250363, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3102237, - "displayName": "invtweaks-1.16.4-1.0.1.jar", - "fileName": "invtweaks-1.16.4-1.0.1.jar", - "fileDate": "2020-11-04T18:20:25.5Z", - "fileLength": 69906, - "releaseType": 2, + "id": 3326041, + "displayName": "AutoRegLib-1.6-49.jar", + "fileName": "AutoRegLib-1.6-49.jar", + "fileDate": "2021-05-26T20:33:37.05Z", + "fileLength": 57279, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3102/237/invtweaks-1.16.4-1.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3326/41/AutoRegLib-1.6-49.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -31760,39 +31649,33 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2842241509, + "fingerprint": 814952073, "type": 3, "invalidFingerprint": false }, { - "foldername": "invtweaks", - "fingerprint": 3956050844, + "foldername": "vazkii", + "fingerprint": 3159161697, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 506126713, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "logo.png", - "fingerprint": 3208778516, + "fingerprint": 168030657, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 3875124119, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 4010039030, + "packageFingerprint": 3552494639, "gameVersion": [ "1.16.5", - "1.16.4" + "Forge" ], "sortableGameVersion": [ { @@ -31802,10 +31685,10 @@ "gameVersionName": "1.16.5" }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" } ], "hasInstallScript": false, @@ -31813,18 +31696,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2042397, - "projectId": 383070, - "packageFingerprintId": 548215030, + "renderCacheId": 2330097, + "projectId": 250363, + "packageFingerprintId": 670304452, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2514189, + "gameVersionMappingId": 2978645, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "invtweaks-1.16.4-1.0.1.jar" + "FileNameOnDisk": "AutoRegLib-1.6-49.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateInstalled": "2021-07-05T20:21:18.9970647Z", + "dateUpdated": "2021-07-05T20:21:18.9970647Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -31838,85 +31721,164 @@ "installedTargets": null }, { - "addonID": 313816, + "addonID": 406959, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3145252, - "displayName": "toughnessbar-6.1.jar", - "fileName": "toughnessbar-6.1.jar", - "fileDate": "2020-12-21T17:23:34.54Z", - "fileLength": 13152, + "id": 3404887, + "displayName": "thermal_locomotion-1.16.5-1.3.0.jar", + "fileName": "thermal_locomotion-1.16.5-1.3.0.jar", + "fileDate": "2021-07-29T04:33:39.843Z", + "fileLength": 181544, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3145/252/toughnessbar-6.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3404/887/thermal_locomotion-1.16.5-1.3.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 222880, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 806468415, - "type": 3, + "fingerprint": 2440933122, + "type": 0, "invalidFingerprint": false }, { - "foldername": "tfar", - "fingerprint": 2283080380, - "type": 3, + "foldername": "assets", + "fingerprint": 1605533243, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1083783141, - "type": 3, + "foldername": "cofh", + "fingerprint": 4066193105, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 110606794, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 3543445047, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 4253522632, - "type": 3, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "thermal_locomotion.png", + "fingerprint": 1917025006, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3937597624, + "packageFingerprint": 2952720374, "gameVersion": [ "1.16.5", - "1.16.4" + "Forge" ], - "sortableGameVersion": [ + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "thermal_locomotion-1.16.5-1.3.0.jar" + }, + "dateInstalled": "2021-07-05T20:21:18.9830634Z", + "dateUpdated": "2021-07-30T07:15:31.2003569Z", + "dateLastUpdateAttempted": "2021-07-30T07:15:31.2003569Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 250398, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3478849, + "displayName": "Controlling-7.0.0.25.jar", + "fileName": "Controlling-7.0.0.25.jar", + "fileDate": "2021-10-02T09:48:41.363Z", + "fileLength": 54326, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3478/849/Controlling-7.0.0.25.jar", + "isAlternate": false, + "alternateFileId": 3478850, + "dependencies": [], + "isAvailable": true, + "modules": [ { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "foldername": "META-INF", + "fingerprint": 3932428994, + "type": 0, + "invalidFingerprint": false }, { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" + "foldername": "com", + "fingerprint": 2902717494, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 98047162, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1319105506, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 3769575691, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2096893, - "projectId": 313816, - "packageFingerprintId": 571704490, - "gameVersionDateReleased": "2020-11-02T18:40:51.49Z", - "gameVersionMappingId": 2599925, - "gameVersionId": 8134, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "toughnessbar-6.1.jar" + "FileNameOnDisk": "Controlling-7.0.0.25.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5455819Z", - "dateUpdated": "2021-07-05T20:20:57.5455819Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-07-05T20:21:18.9860639Z", + "dateUpdated": "2021-10-02T18:13:56.0339674Z", + "dateLastUpdateAttempted": "2021-10-02T18:13:56.0339674Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -31928,74 +31890,60 @@ "installedTargets": null }, { - "addonID": 413234, + "addonID": 445025, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3265112, - "displayName": "TravelAnchors-2.4.jar", - "fileName": "TravelAnchors-2.4.jar", - "fileDate": "2021-04-06T10:38:38.707Z", - "fileLength": 66496, + "id": 3255801, + "displayName": "time-in-a-bottle-1.1.0.jar", + "fileName": "time-in-a-bottle-1.1.0.jar", + "fileDate": "2021-03-30T16:33:15.897Z", + "fileLength": 37088, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3265/112/TravelAnchors-2.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3255/801/time-in-a-bottle-1.1.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 60678361, - "addonId": 412525, - "type": 3, - "fileId": 3265112 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4022918486, + "fingerprint": 178001372, "type": 3, "invalidFingerprint": false }, { - "foldername": "de", - "fingerprint": 3616831204, + "foldername": "com", + "fingerprint": 2663929952, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3659963375, + "foldername": "assets", + "fingerprint": 1378863282, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 650085956, + "foldername": "data", + "fingerprint": 3601938090, "type": 3, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3476242192, + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 2377763499, + "packageFingerprint": 2016503207, "gameVersion": [ - "1.16.3", "1.16.5", "Forge", "1.16.4" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -32020,18 +31968,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2251827, - "projectId": 413234, - "packageFingerprintId": 639018448, + "renderCacheId": 2240380, + "projectId": 445025, + "packageFingerprintId": 634692760, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2845317, + "gameVersionMappingId": 2828275, "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "TravelAnchors-2.4.jar" + "FileNameOnDisk": "time-in-a-bottle-1.1.0.jar" }, - "dateInstalled": "2021-07-05T20:21:08.4564709Z", - "dateUpdated": "2021-07-05T20:21:08.4564709Z", + "dateInstalled": "2021-07-05T20:21:18.9690637Z", + "dateUpdated": "2021-07-05T20:21:18.9690637Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -32045,49 +31993,70 @@ "installedTargets": null }, { - "addonID": 390898, + "addonID": 429371, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3248894, - "displayName": "ERP-V1.8", - "fileName": "ERP-V1.8.zip", - "fileDate": "2021-03-23T15:56:05.357Z", - "fileLength": 1284222, + "id": 3407451, + "displayName": "kubejs-create-1605.1.2-build.7.jar", + "fileName": "kubejs-create-1605.1.2-build.7.jar", + "fileDate": "2021-07-31T13:47:40.073Z", + "fileLength": 10141, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3248/894/ERP-V1.8.zip", + "downloadUrl": "https://edge.forgecdn.net/files/3407/451/kubejs-create-1605.1.2-build.7.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 238086, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 328085, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { - "foldername": "assets", - "fingerprint": 874958223, + "foldername": "kubejs.plugins.txt", + "fingerprint": 64417371, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2937881892, + "fingerprint": 4041992327, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.png", - "fingerprint": 4104230281, + "foldername": "kubejs.classfilter.txt", + "fingerprint": 258914244, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "META-INF", + "fingerprint": 3892145808, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "dev", + "fingerprint": 970984042, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 279866541, + "packageFingerprint": 63099391, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16", "1.16.5", - "1.16.4", - "1.16.2" + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -32095,14 +32064,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-06-23T13:41:08.75Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ERP-V1.8.zip" + "FileNameOnDisk": "kubejs-create-1605.1.2-build.7.jar" }, - "dateInstalled": "2021-07-15T04:42:23.8973319Z", - "dateUpdated": "2021-07-15T04:42:23.9253291Z", - "dateLastUpdateAttempted": "2021-07-15T04:42:23.9253291Z", + "dateInstalled": "2021-07-05T20:21:18.991063Z", + "dateUpdated": "2021-08-02T19:51:16.370784Z", + "dateLastUpdateAttempted": "2021-08-02T19:51:16.370784Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -32115,121 +32084,100 @@ "installedTargets": null }, { - "addonID": 308240, + "addonID": 532286, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3372376, - "displayName": "cherishedworlds-forge-1.16.5-5.1.1.0.jar", - "fileName": "cherishedworlds-forge-1.16.5-5.1.1.0.jar", - "fileDate": "2021-07-01T09:18:00.4Z", - "fileLength": 47481, + "id": 3477842, + "displayName": "jeed-1.16.5-1.1.jar", + "fileName": "jeed-1.16.5-1.1.jar", + "fileDate": "2021-10-01T05:48:46.113Z", + "fileLength": 64106, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3372/376/cherishedworlds-forge-1.16.5-5.1.1.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3477/842/jeed-1.16.5-1.1.jar", "isAlternate": false, - "alternateFileId": 3372377, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 821586536, - "type": 3, + "fingerprint": 104761367, + "type": 0, "invalidFingerprint": false }, { - "foldername": "top", - "fingerprint": 1157513753, - "type": 3, + "foldername": "net", + "fingerprint": 1353912721, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 970820416, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "CHANGELOG.md", - "fingerprint": 1513104980, - "type": 3, + "fingerprint": 3411316591, + "type": 0, "invalidFingerprint": false }, { - "foldername": "cherishedworlds.mixins.json", - "fingerprint": 3339576873, - "type": 3, + "foldername": "data", + "fingerprint": 3032494029, + "type": 0, "invalidFingerprint": false }, { - "foldername": "cherishedworlds_icon.png", - "fingerprint": 1157943607, - "type": 3, + "foldername": "icon.png", + "fingerprint": 952754866, + "type": 0, "invalidFingerprint": false }, { - "foldername": "licenses", - "fingerprint": 641710301, - "type": 3, + "foldername": "jeed.mixins.json", + "fingerprint": 1564422864, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3379439251, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "README.md", - "fingerprint": 472199473, - "type": 3, + "fingerprint": 1438559181, + "type": 0, "invalidFingerprint": false }, { - "foldername": "cherishedworlds.refmap.json", - "fingerprint": 303262438, - "type": 3, + "foldername": "jeed.refmap.json", + "fingerprint": 222334296, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 96485251, + "packageFingerprint": 514004555, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2388354, - "projectId": 308240, - "packageFingerprintId": 696071893, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3092707, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cherishedworlds-forge-1.16.5-5.1.1.0.jar" + "FileNameOnDisk": "jeed-1.16.5-1.1.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateInstalled": "2021-10-01T04:22:30.4801221Z", + "dateUpdated": "2021-10-02T18:14:14.7229108Z", + "dateLastUpdateAttempted": "2021-10-02T18:14:14.7229108Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -32241,96 +32189,71 @@ "installedTargets": null }, { - "addonID": 298187, + "addonID": 438332, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3205295, - "displayName": "buildinggadgets-1.16.5-3.8.0.jar", - "fileName": "buildinggadgets-1.16.5-3.8.0.jar", - "fileDate": "2021-02-15T19:42:19.863Z", - "fileLength": 909445, + "id": 3413938, + "displayName": "supermartijn642configlib-1.0.9-mc1.16", + "fileName": "supermartijn642configlib-1.0.9-mc1.16.jar", + "fileDate": "2021-08-05T12:22:20.98Z", + "fileLength": 153654, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3205/295/buildinggadgets-1.16.5-3.8.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3413/938/supermartijn642configlib-1.0.9-mc1.16.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 56916937, - "addonId": 399757, - "type": 2, - "fileId": 3205295 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 267054609, - "type": 3, + "fingerprint": 3418836823, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 962286206, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 597267807, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "buildinggadgets_logo.png", - "fingerprint": 2374162731, - "type": 3, + "fingerprint": 2309091922, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3840510572, - "type": 3, + "foldername": "pack.mcmeta", + "fingerprint": 3700933549, + "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3547210442, - "type": 3, + "foldername": "supermartijn642configlib.png", + "fingerprint": 4041043145, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3456565023, + "packageFingerprint": 928048254, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.3", + "1.16.1", + "1.16", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2173986, - "projectId": 298187, - "packageFingerprintId": 606375272, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2725255, - "gameVersionId": 4458, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "buildinggadgets-1.16.5-3.8.0.jar" + "FileNameOnDisk": "supermartijn642configlib-1.0.9-mc1.16.jar" }, - "dateInstalled": "2021-07-05T20:20:57.5145815Z", - "dateUpdated": "2021-07-05T20:20:57.5145815Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:18.9760635Z", + "dateUpdated": "2021-08-05T20:52:48.2261373Z", + "dateLastUpdateAttempted": "2021-08-05T20:52:48.2261373Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -32343,17 +32266,17 @@ "installedTargets": null }, { - "addonID": 428877, + "addonID": 433862, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3467948, - "displayName": "betterendforge-1.16.5-1.6.3.jar", - "fileName": "betterendforge-1.16.5-1.6.3.jar", - "fileDate": "2021-09-21T21:18:32.87Z", - "fileLength": 81199992, + "id": 3414676, + "displayName": "Architects-Palette-1.16.4-1.1.4.jar", + "fileName": "Architects-Palette-1.16.4-1.1.4.jar", + "fileDate": "2021-08-05T23:18:05.077Z", + "fileLength": 952330, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3467/948/betterendforge-1.16.5-1.6.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3414/676/Architects-Palette-1.16.4-1.1.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -32361,63 +32284,59 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1699242318, + "fingerprint": 1921484492, "type": 0, "invalidFingerprint": false }, { - "foldername": "mod", - "fingerprint": 4097893790, + "foldername": "architectspalette", + "fingerprint": 4095034718, "type": 0, "invalidFingerprint": false }, { "foldername": ".cache", - "fingerprint": 1669343746, + "fingerprint": 3131250241, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 1297909031, + "foldername": "architects_palette.mixins.json", + "fingerprint": 4129071417, "type": 0, "invalidFingerprint": false }, { - "foldername": "betterendforge.mixins.json", - "fingerprint": 1650242948, + "foldername": "assets", + "fingerprint": 3511204508, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2956310274, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "icon.png", - "fingerprint": 2838482931, + "fingerprint": 1057543536, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 2232138773, + "fingerprint": 2119478912, "type": 0, "invalidFingerprint": false }, { - "foldername": "betterendforge.refmap.json", - "fingerprint": 971288029, + "foldername": "architects_palette.refmap.json", + "fingerprint": 3209901540, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1766414999, + "packageFingerprint": 2909365477, "gameVersion": [ + "1.16.3", "1.16.5", - "Forge" + "Forge", + "1.16.4" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -32425,14 +32344,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "betterendforge-1.16.5-1.6.3.jar" + "FileNameOnDisk": "Architects-Palette-1.16.4-1.1.4.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-09-22T17:51:45.9249458Z", - "dateLastUpdateAttempted": "2021-09-22T17:51:45.9249458Z", + "dateInstalled": "2021-07-05T20:21:19.0040623Z", + "dateUpdated": "2021-08-07T17:47:39.0912341Z", + "dateLastUpdateAttempted": "2021-08-07T17:47:39.0912341Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -32445,90 +32364,60 @@ "installedTargets": null }, { - "addonID": 479142, + "addonID": 514397, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3368538, - "displayName": "PrettyPipesFluids-0.4.1.jar", - "fileName": "PrettyPipesFluids-0.4.1.jar", - "fileDate": "2021-06-29T06:57:01.207Z", - "fileLength": 82918, - "releaseType": 2, + "id": 3425361, + "displayName": "NBT-Ingredient-Predicate-1.3.jar", + "fileName": "NBT-Ingredient-Predicate-1.3.jar", + "fileDate": "2021-08-14T18:37:11.713Z", + "fileLength": 5471, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3368/538/PrettyPipesFluids-0.4.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3425/361/NBT-Ingredient-Predicate-1.3.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 67567994, - "addonId": 376737, - "type": 3, - "fileId": 3368538 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 480572702, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "dev", - "fingerprint": 961421603, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2089877027, - "type": 3, + "fingerprint": 546140912, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 1771029295, - "type": 3, + "foldername": "us", + "fingerprint": 3587427883, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3380797652, - "type": 3, + "fingerprint": 3725528100, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3884147275, + "packageFingerprint": 2870425848, "gameVersion": [ - "1.16.5" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - } + "1.16.5", + "Forge" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2383865, - "projectId": 479142, - "packageFingerprintId": 694154310, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", - "gameVersionMappingId": 3085190, - "gameVersionId": 8203, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "PrettyPipesFluids-0.4.1.jar" + "FileNameOnDisk": "NBT-Ingredient-Predicate-1.3.jar" }, - "dateInstalled": "2021-07-05T20:20:52.5233912Z", - "dateUpdated": "2021-07-05T20:20:52.5233912Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-08-13T17:53:21.4418285Z", + "dateUpdated": "2021-08-14T19:13:03.8312335Z", + "dateLastUpdateAttempted": "2021-08-14T19:13:03.8312335Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -32541,76 +32430,77 @@ "installedTargets": null }, { - "addonID": 291493, + "addonID": 415974, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3302511, - "displayName": "portality-1.16.4-3.2.2.jar", - "fileName": "portality-1.16.4-3.2.2.jar", - "fileDate": "2021-05-08T10:31:10.99Z", - "fileLength": 412001, + "id": 3227802, + "displayName": "Personality 1.16.5 - 1.0.2", + "fileName": "personality-1.16.5-1.0.2.jar", + "fileDate": "2021-03-05T23:34:16.35Z", + "fileLength": 288116, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3302/511/portality-1.16.4-3.2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3227/802/personality-1.16.5-1.0.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 63201046, - "addonId": 287342, + "id": 58357150, + "addonId": 382216, "type": 3, - "fileId": 3302511 + "fileId": 3227802 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 204924124, + "fingerprint": 3661890182, "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 390890601, + "fingerprint": 803622411, "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2843166621, + "fingerprint": 28649168, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3740062177, + "foldername": "logo.png", + "fingerprint": 3642463421, "type": 3, "invalidFingerprint": false }, { - "foldername": "mcmod.info", - "fingerprint": 426932998, + "foldername": "pack.mcmeta", + "fingerprint": 2078024720, "type": 3, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3273911401, + "foldername": "personality.mixins.json", + "fingerprint": 2797283708, "type": 3, "invalidFingerprint": false }, { - "foldername": "Portality_at.cfg", - "fingerprint": 791729182, + "foldername": "personality.refmap.json", + "fingerprint": 2478861883, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3259228697, + "packageFingerprint": 216447918, "gameVersion": [ "1.16.3", "1.16.5", + "Forge", "1.16.4" ], "sortableGameVersion": [ @@ -32626,6 +32516,12 @@ "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", "gameVersionName": "1.16.5" }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + }, { "gameVersionPadded": "0000000001.0000000016.0000000004", "gameVersion": "1.16.4", @@ -32638,18 +32534,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 2299972, - "projectId": 291493, - "packageFingerprintId": 658814368, - "gameVersionDateReleased": "2020-09-10T14:44:20.443Z", - "gameVersionMappingId": 2920067, - "gameVersionId": 8056, + "renderCacheId": 2203001, + "projectId": 415974, + "packageFingerprintId": 618471746, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2771489, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "portality-1.16.4-3.2.2.jar" + "FileNameOnDisk": "personality-1.16.5-1.0.2.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-07-05T20:20:54.9228218Z", + "dateInstalled": "2021-07-05T20:21:18.9850631Z", + "dateUpdated": "2021-07-05T20:21:18.9850631Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -32663,84 +32559,276 @@ "installedTargets": null }, { - "addonID": 393149, + "addonID": 391382, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348676, - "displayName": "Runelic-1.16.5-7.0.2.jar", - "fileName": "Runelic-1.16.5-7.0.2.jar", - "fileDate": "2021-06-12T02:52:46.517Z", - "fileLength": 11267, - "releaseType": 3, + "id": 3395133, + "displayName": "[1.16.5] MoreOverlays 1.18.15", + "fileName": "moreoverlays-1.18.15-mc1.16.5.jar", + "fileDate": "2021-07-20T16:09:31.017Z", + "fileLength": 82557, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/676/Runelic-1.16.5-7.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3395/133/moreoverlays-1.18.15-mc1.16.5.jar", "isAlternate": false, - "alternateFileId": 3348677, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1265235046, - "type": 3, + "fingerprint": 3118902320, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "at", + "fingerprint": 2131957051, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1372029690, - "type": 3, + "fingerprint": 2084075221, + "type": 0, "invalidFingerprint": false }, { - "foldername": "net", - "fingerprint": 3118337032, - "type": 3, + "foldername": "moreoverlays.png", + "fingerprint": 2277803217, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3859778001, + "fingerprint": 21643154, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 396610009, + "gameVersion": [ + "1.16.3", + "1.16.5", + "Forge", + "1.16.4", + "1.16.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "moreoverlays-1.18.15-mc1.16.5.jar" + }, + "dateInstalled": "2021-07-15T19:20:48.0217084Z", + "dateUpdated": "2021-07-24T19:09:59.4186608Z", + "dateLastUpdateAttempted": "2021-07-24T19:09:59.4186608Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 353399, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3407020, + "displayName": "archers_paradox-1.16.5-1.3.1.jar", + "fileName": "archers_paradox-1.16.5-1.3.1.jar", + "fileDate": "2021-07-31T01:04:55.43Z", + "fileLength": 207184, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3407/20/archers_paradox-1.16.5-1.3.1.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 69162, "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1119489821, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 938137764, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "cofh", + "fingerprint": 1146224861, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 448199995, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "logo.png", + "fingerprint": 1194177890, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1449181977, + "packageFingerprint": 1151695862, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "archers_paradox-1.16.5-1.3.1.jar" + }, + "dateInstalled": "2021-07-05T20:21:18.9720633Z", + "dateUpdated": "2021-08-02T19:54:19.0505098Z", + "dateLastUpdateAttempted": "2021-08-02T19:54:19.0505098Z", + "status": 5, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 431725, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3451857, + "displayName": "Advanced Peripherals 1.16.5 0.7.2r", + "fileName": "advancedperipherals-1.16.5-0.7.2r.jar", + "fileDate": "2021-09-06T05:21:25.133Z", + "fileLength": 638804, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3451/857/advancedperipherals-1.16.5-0.7.2r.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" + "id": 0, + "addonId": 306770, + "type": 2, + "fileId": 0 }, { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" + "id": 0, + "addonId": 282001, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 2191278770, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "de", + "fingerprint": 2866957555, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": ".cache", + "fingerprint": 25144669, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 1909641687, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1329933406, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.png", + "fingerprint": 2562449174, + "type": 0, + "invalidFingerprint": false } ], + "packageFingerprint": 1515981420, + "gameVersion": [ + "1.16.5", + "Forge" + ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2358337, - "projectId": 393149, - "packageFingerprintId": 682002312, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3035040, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Runelic-1.16.5-7.0.2.jar" + "FileNameOnDisk": "advancedperipherals-1.16.5-0.7.2r.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1520307Z", - "dateUpdated": "2021-07-05T20:21:15.1520307Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-07-05T20:21:19.0010623Z", + "dateUpdated": "2021-09-08T17:52:10.0938359Z", + "dateLastUpdateAttempted": "2021-09-08T17:52:10.0938359Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -32753,48 +32841,61 @@ "installedTargets": null }, { - "addonID": 272515, + "addonID": 281849, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3404330, - "displayName": "BetterAdvancements-1.16.5-0.1.1.115", - "fileName": "BetterAdvancements-1.16.5-0.1.1.115.jar", - "fileDate": "2021-07-28T18:38:51.697Z", - "fileLength": 63647, - "releaseType": 3, + "id": 3470048, + "displayName": "pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar", + "fileName": "pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar", + "fileDate": "2021-09-24T07:58:22.45Z", + "fileLength": 7340711, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3404/330/BetterAdvancements-1.16.5-0.1.1.115.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3470/48/pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar", "isAlternate": false, - "alternateFileId": 3404331, - "dependencies": [], + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 306770, + "type": 2, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1865052446, + "fingerprint": 851674951, "type": 0, "invalidFingerprint": false }, { - "foldername": "betteradvancements", - "fingerprint": 271621060, + "foldername": "me", + "fingerprint": 2120018686, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2644770182, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 509271065, + "fingerprint": 3235667806, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2900330132, + "fingerprint": 369209450, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3041603780, + "packageFingerprint": 3430708954, "gameVersion": [ "1.16.5", "Forge" @@ -32805,14 +32906,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "BetterAdvancements-1.16.5-0.1.1.115.jar" + "FileNameOnDisk": "pneumaticcraft-repressurized-1.16.5-2.14.4-258.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-29T17:38:11.9712494Z", - "dateLastUpdateAttempted": "2021-07-29T17:38:11.9712494Z", + "dateInstalled": "2021-07-05T20:31:05.1764869Z", + "dateUpdated": "2021-09-24T18:45:35.7958989Z", + "dateLastUpdateAttempted": "2021-09-24T18:45:35.7958989Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -32825,75 +32926,47 @@ "installedTargets": null }, { - "addonID": 310494, + "addonID": 353434, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3055694, - "displayName": "Masonry 0.3.6 (1.16.x) ", - "fileName": "masonry-1.16.3-0.3.6.jar", - "fileDate": "2020-09-12T20:03:19.58Z", - "fileLength": 890932, - "releaseType": 2, + "id": 3348573, + "displayName": "BetterBurning-1.16.5-6.0.7.jar", + "fileName": "BetterBurning-1.16.5-6.0.7.jar", + "fileDate": "2021-06-12T02:34:58.16Z", + "fileLength": 11273, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3055/694/masonry-1.16.3-0.3.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3348/573/BetterBurning-1.16.5-6.0.7.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3348574, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1212386774, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1177698321, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 4027272616, + "fingerprint": 3349186275, "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 222606676, + "foldername": "net", + "fingerprint": 4266099226, "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 4049990944, + "fingerprint": 2334717132, "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 1710555351, + "packageFingerprint": 1587881114, "gameVersion": [ - "1.16.3", - "1.16.1", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" ], "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, { "gameVersionPadded": "0000000001.0000000016.0000000005", "gameVersion": "1.16.5", @@ -32905,18 +32978,6 @@ "gameVersion": "", "gameVersionReleaseDate": "2019-08-01T00:00:00Z", "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" } ], "hasInstallScript": false, @@ -32924,18 +32985,18 @@ "categorySectionPackageType": 6, "restrictProjectFileAccess": 1, "projectStatus": 4, - "renderCacheId": 1986107, - "projectId": 310494, - "packageFingerprintId": 520326631, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2425388, - "gameVersionId": 7498, + "renderCacheId": 2358233, + "projectId": 353434, + "packageFingerprintId": 681989367, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 3034741, + "gameVersionId": 4458, "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "masonry-1.16.3-0.3.6.jar" + "FileNameOnDisk": "BetterBurning-1.16.5-6.0.7.jar" }, - "dateInstalled": "2021-07-05T20:21:15.1420317Z", - "dateUpdated": "2021-07-05T20:21:15.1420317Z", + "dateInstalled": "2021-07-05T20:21:18.9990636Z", + "dateUpdated": "2021-07-05T20:21:18.9990636Z", "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, @@ -32949,17 +33010,17 @@ "installedTargets": null }, { - "addonID": 392039, + "addonID": 460819, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3399989, - "displayName": "Pedestals - 1.16.5_0.8s_hotfix_5", - "fileName": "pedestals-0.8s_hotfix_5.jar", - "fileDate": "2021-07-25T00:58:11.67Z", - "fileLength": 1854516, + "id": 3249059, + "displayName": " LazyDFU 0.1.3", + "fileName": "lazydfu-0.1.3.jar", + "fileDate": "2021-03-23T18:42:06.78Z", + "fileLength": 15258, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3399/989/pedestals-0.8s_hotfix_5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3249/59/lazydfu-0.1.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -32967,39 +33028,48 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3155662775, + "fingerprint": 2347795336, "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3087123257, + "foldername": "me", + "fingerprint": 43392969, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 312081551, + "foldername": "icon.png", + "fingerprint": 1040627429, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3529712948, + "foldername": "lazydfu.mixins.json", + "fingerprint": 672362357, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1413471134, + "fingerprint": 808515154, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "lazydfu.refmap.json", + "fingerprint": 3595148347, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 38470276, + "packageFingerprint": 1326498838, "gameVersion": [ + "1.16.3", + "1.16.1", "1.16.5", - "Forge" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -33007,123 +33077,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-06-24T12:41:11.823Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "pedestals-0.8s_hotfix_5.jar" - }, - "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-07-25T20:33:13.9408292Z", - "dateLastUpdateAttempted": "2021-07-25T20:33:13.9408292Z", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 378646, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3340793, - "displayName": "[1.0.3 / 1.16.5] Macaw's Doors", - "fileName": "mcw-doors-1.0.3-mc1.16.5.jar", - "fileDate": "2021-06-06T12:58:32.467Z", - "fileLength": 877165, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3340/793/mcw-doors-1.0.3-mc1.16.5.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 186922136, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 1608686922, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "assets", - "fingerprint": 2320322415, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 828902329, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "doorslogo.png", - "fingerprint": 1405222442, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 1229760318, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 1164945400, - "gameVersion": [ - "1.16.5", - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2348508, - "projectId": 378646, - "packageFingerprintId": 677220791, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 3013747, - "gameVersionId": 7498, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "mcw-doors-1.0.3-mc1.16.5.jar" + "FileNameOnDisk": "lazydfu-0.1.3.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-07-05T20:20:54.9328256Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateInstalled": "2021-09-27T20:15:33.5393303Z", + "dateUpdated": "2021-09-27T20:15:33.6088625Z", + "dateLastUpdateAttempted": "2021-09-27T20:15:33.6088625Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -33136,30 +33097,30 @@ "installedTargets": null }, { - "addonID": 313866, + "addonID": 525693, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3390489, - "displayName": "engineersdecor-1.16.4-1.1.14.jar", - "fileName": "engineersdecor-1.16.4-1.1.14.jar", - "fileDate": "2021-07-16T07:41:06.403Z", - "fileLength": 1811963, - "releaseType": 1, + "id": 3453953, + "displayName": "occultism_kubejs-0.0.1", + "fileName": "occultism_kubejs-1.16.5-0.0.1.jar", + "fileDate": "2021-09-08T11:41:06.047Z", + "fileLength": 406286, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3390/489/engineersdecor-1.16.4-1.1.14.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3453/953/occultism_kubejs-1.16.5-0.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 231951, - "type": 2, + "addonId": 361026, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 306770, - "type": 2, + "addonId": 238086, + "type": 3, "fileId": 0 } ], @@ -33167,52 +33128,44 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3282382331, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".gitversion-engineersdecor", - "fingerprint": 2009454775, + "fingerprint": 3465815652, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3712478138, + "foldername": "com", + "fingerprint": 1572905025, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 691527108, + "foldername": "kubejs.plugins.txt", + "fingerprint": 2276234037, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2121622161, + "foldername": "occultism-kubejs.png", + "fingerprint": 3138228409, "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1749888074, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "wile", - "fingerprint": 3610663587, + "fingerprint": 57918967, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4017544072, + "packageFingerprint": 2665602663, "gameVersion": [ + "1.16.3", + "1.16.1", + "1.16", "1.16.5", "Forge", - "1.16.4" + "1.16.4", + "1.16.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -33220,14 +33173,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "engineersdecor-1.16.4-1.1.14.jar" + "FileNameOnDisk": "occultism_kubejs-1.16.5-0.0.1.jar" }, - "dateInstalled": "2021-07-05T20:20:57.518581Z", - "dateUpdated": "2021-07-24T18:19:12.2036312Z", - "dateLastUpdateAttempted": "2021-07-24T18:19:12.2036312Z", + "dateInstalled": "2021-09-09T16:09:26.8563286Z", + "dateUpdated": "2021-09-09T16:09:26.8673298Z", + "dateLastUpdateAttempted": "2021-09-09T16:09:26.8673298Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -33240,89 +33193,103 @@ "installedTargets": null }, { - "addonID": 383129, + "addonID": 362393, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3432838, - "displayName": "connectedglass-1.1.0-mc1.16", - "fileName": "connectedglass-1.1.0-mc1.16.jar", - "fileDate": "2021-08-20T22:53:36.877Z", - "fileLength": 607622, + "id": 3249309, + "displayName": "Atmospheric 1.16.5 - 3.1.0", + "fileName": "atmospheric-1.16.5-3.1.0.jar", + "fileDate": "2021-03-23T23:17:33.693Z", + "fileLength": 1527658, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3432/838/connectedglass-1.1.0-mc1.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3249/309/atmospheric-1.16.5-3.1.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 59801256, + "addonId": 382216, + "type": 3, + "fileId": 3249309 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 906126259, - "type": 0, + "fingerprint": 3564679160, + "type": 3, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3477284332, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": ".cache", - "fingerprint": 1907793674, - "type": 0, + "fingerprint": 3503516366, + "type": 3, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2580142375, - "type": 0, + "fingerprint": 1135583533, + "type": 3, "invalidFingerprint": false }, { - "foldername": "connectedglass.png", - "fingerprint": 6788735, - "type": 0, + "foldername": "data", + "fingerprint": 2657682908, + "type": 3, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2061543446, - "type": 0, + "foldername": "logo.png", + "fingerprint": 2550136508, + "type": 3, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 3464378314, - "type": 0, + "fingerprint": 1611599056, + "type": 3, "invalidFingerprint": false } ], - "packageFingerprint": 3160072489, + "packageFingerprint": 3579867340, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16", "1.16.5", - "Forge", - "1.16.4", - "1.16.2" + "Forge" + ], + "sortableGameVersion": [ + { + "gameVersionPadded": "0000000001.0000000016.0000000005", + "gameVersion": "1.16.5", + "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", + "gameVersionName": "1.16.5" + }, + { + "gameVersionPadded": "0", + "gameVersion": "", + "gameVersionReleaseDate": "2019-08-01T00:00:00Z", + "gameVersionName": "Forge" + } ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, + "categorySectionPackageType": 6, + "restrictProjectFileAccess": 1, + "projectStatus": 4, + "renderCacheId": 2231843, + "projectId": 362393, + "packageFingerprintId": 630899680, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionMappingId": 2814140, + "gameVersionId": 4458, + "gameId": 432, "isServerPack": false, - "FileNameOnDisk": "connectedglass-1.1.0-mc1.16.jar" + "FileNameOnDisk": "atmospheric-1.16.5-3.1.0.jar" }, - "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-08-22T11:01:05.5188927Z", - "dateLastUpdateAttempted": "2021-08-22T11:01:05.5188927Z", + "dateInstalled": "2021-07-05T20:31:05.1753943Z", + "dateUpdated": "2021-07-05T20:31:05.1753943Z", + "dateLastUpdateAttempted": "0001-01-01T00:00:00", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, From 87ce3ea3cabc5c11d6d652b353e1d23d8e218eef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 2 Oct 2021 21:03:51 +0200 Subject: [PATCH 061/124] fixed gunpowder to sulfur recipe I think --- .../enigmatica/kubejs/base/recipetypes/mekanism/injecting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js index 2a6d686e3c..96400a7080 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js @@ -14,7 +14,7 @@ onEvent('recipes', (event) => { { output: 'emendatusenigmatica:sulfur_dust', input: '#forge:gunpowder', - gas: { tag: 'mekanism:hydrogen_chloride', amount: 1 }, + gas: { gas: 'mekanism:hydrogen_chloride', amount: 1 }, id: 'mekanism:injecting/gunpowder_to_sulfur' } ]; From bfe1f34d46f8632a6d83ef9cea69b5d1d5aa7a84 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sat, 2 Oct 2021 21:00:52 -0400 Subject: [PATCH 062/124] update to rid's quests update to rid's quests --- .../ftbquests/quests/chapters/building.snbt | 362 ++++++++++++++---- 1 file changed, 281 insertions(+), 81 deletions(-) diff --git a/config/ftbquests/quests/chapters/building.snbt b/config/ftbquests/quests/chapters/building.snbt index 24ec76fb81..be78424e4a 100644 --- a/config/ftbquests/quests/chapters/building.snbt +++ b/config/ftbquests/quests/chapters/building.snbt @@ -29,13 +29,20 @@ type: "checkmark" title: "Builder" }] - rewards: [{ - id: "6BCFA4922355B43F" - type: "item" - item: "create:builders_tea" - count: 4 - random_bonus: 4 - }] + rewards: [ + { + id: "6BCFA4922355B43F" + type: "item" + item: "create:builders_tea" + count: 4 + random_bonus: 4 + } + { + id: "3C390EFCC5489351" + type: "item" + item: "minecraft:stonecutter" + } + ] } { title: "Macaw's Mods" @@ -64,16 +71,24 @@ }] } { - title: "Windows, and Blinds" + title: "Windows and Blinds" icon: "mcwwindows:oak_window2" x: 1.5d y: -3.5d + description: ["A selection of windows to spruce up both interiors and exteriors."] dependencies: ["3834BBF4818E4ABE"] id: "69264C279D819443" tasks: [{ - id: "6D2B932E57592B13" - type: "checkmark" - title: "Windows + Additions" + id: "420B50F1422D8783" + type: "item" + title: "Macaw's Windows" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "mcwwindows" + } + } }] rewards: [{ id: "22CC2896509891A2" @@ -86,12 +101,20 @@ icon: "mcwroofs:oak_roof" x: 0.5d y: -4.0d + description: ["A selection of blocks for building complex roof shapes."] dependencies: ["3834BBF4818E4ABE"] id: "294FF399D036000C" tasks: [{ - id: "63DF62E447E2B737" - type: "checkmark" - title: "Roofs + Tiles and Gutters" + id: "23D124F0ABC86469" + type: "item" + title: "Macaw's Roofs" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "mcwroofs" + } + } }] rewards: [{ id: "4EBBC5E559BB1D57" @@ -104,12 +127,20 @@ icon: "mcwtrpdoors:oak_cottage_trapdoor" x: -0.5d y: -4.0d + description: ["A selection of fancy trapdoors to suit any occasion."] dependencies: ["3834BBF4818E4ABE"] id: "2BFA6B1DF968DB60" tasks: [{ - id: "57A218C479845117" - type: "checkmark" - title: "Trapdoors" + id: "65B891EE0CA7DE2D" + type: "item" + title: "Macaw's Trapdoors" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "mcwtrpdoors" + } + } }] rewards: [{ id: "760F5F32E39E413F" @@ -122,12 +153,20 @@ icon: "mcwdoors:oak_cottage_door" x: -1.5d y: -3.5d + description: ["A selection of fancy doors to suit any occasion."] dependencies: ["3834BBF4818E4ABE"] id: "6AAB0C70527EB1C8" tasks: [{ - id: "1D231CC06FA1DCEF" - type: "checkmark" - title: "Doors" + id: "08066709F5454C29" + type: "item" + title: "Macaw's Doors" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "mcwdoors" + } + } }] rewards: [{ id: "190BC73D15872F2A" @@ -136,16 +175,24 @@ }] } { - title: "Fences, and Walls" + title: "Fences and Walls" icon: "mcwfences:oak_picket_fence" x: 2.0d y: -2.5d + description: ["A selection of fancy fences and walls to suit any decorative needs."] dependencies: ["3834BBF4818E4ABE"] id: "1A8ADC65B09E9539" tasks: [{ - id: "227EE4A805EDDECE" - type: "checkmark" - title: "Fences" + id: "02D341840CE54A92" + type: "item" + title: "Macaw's Fences and Walls" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "mcwfences" + } + } }] rewards: [{ id: "6DA561C702F1DEA5" @@ -158,12 +205,20 @@ icon: "mcwbridges:oak_log_bridge_middle" x: -2.0d y: -2.5d + description: ["A selection of blocks for making small foot bridges and rail bridges."] dependencies: ["3834BBF4818E4ABE"] id: "5CC123276DD545C8" tasks: [{ - id: "79A1B718CC1EE549" - type: "checkmark" - title: "Bridges" + id: "4F7B105264339E9A" + type: "item" + title: "Macaw's Bridges" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "mcwbridges" + } + } }] rewards: [{ id: "0DA8D314B0CFE8BA" @@ -185,14 +240,21 @@ dependencies: ["058D3BEB64C74E27"] id: "63FE93055CE4162C" tasks: [{ - id: "44BE21A46B853C66" - type: "checkmark" - title: "Masonary" + id: "4EA5682D198BA2E6" + type: "item" + title: "Masonry" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "masonry" + } + } }] rewards: [{ - id: "167EDB46E088AA19" - type: "item" - item: "minecraft:stonecutter" + id: "4C3D1850DE4CBA18" + type: "xp" + xp: 100 }] } { @@ -209,9 +271,31 @@ dependencies: ["058D3BEB64C74E27"] id: "32824050418C71EB" tasks: [{ - id: "57B8F3B3CE1B0382" - type: "checkmark" - title: "MrCrayFish" + id: "39FE46B7D0588AC6" + type: "item" + title: "Any MrCrayfish Item" + item: { + id: "itemfilters:or" + Count: 1b + tag: { + items: [ + { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "cfm" + } + } + { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "morecfm" + } + } + ] + } + } }] rewards: [{ id: "3006D73518186276" @@ -232,9 +316,16 @@ dependencies: ["058D3BEB64C74E27"] id: "66099AFAA1A6043F" tasks: [{ - id: "5E22777A93E1A57F" - type: "checkmark" + id: "7E626988261D7522" + type: "item" title: "Connected Glass" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "connectedglass" + } + } }] rewards: [{ id: "73CEB3BC6963B644" @@ -259,9 +350,10 @@ dependencies: ["058D3BEB64C74E27"] id: "42FB32CC99E66E3F" tasks: [{ - id: "50131A2AFEF8805D" - type: "checkmark" - title: "Simply Lights" + id: "1EFA47BC6E4EC782" + type: "item" + item: "simplylight:illuminant_block_on" + count: 16L }] rewards: [{ id: "7E2D7FEE20672C9D" @@ -286,9 +378,10 @@ dependencies: ["058D3BEB64C74E27"] id: "0798D5139479A837" tasks: [{ - id: "62781D9D0AB3CB08" - type: "checkmark" - title: "Framed Blocks" + id: "6D98E195282468AF" + type: "item" + item: "framedblocks:framed_cube" + count: 4L }] rewards: [ { @@ -314,14 +407,21 @@ "" "Framed Drawers gives you a blank template which you can combine in a crafting table with different blocks to use their texture instead, whether it's the front, the sides, or the trim, these Framed Drawers are highly customizable visually." "" - "Needless to say, this mod offers more than just a signel drawer style templates, it actually has a template for each type of drawers, whether it is a 2x2, a Compacting Drawer, or even a Drawer Controller." + "Needless to say, this mod offers more than just a single drawer style templates, it actually has a template for each type of drawers, whether it is a 2x2, a Compacting Drawer, or even a Drawer Controller." ] dependencies: ["058D3BEB64C74E27"] id: "473BE440ECB1CEDF" tasks: [{ - id: "1C2A1C581C97D480" - type: "checkmark" - title: "Framed Drawers" + id: "130291F7FD5C22C4" + type: "item" + title: "Any Framed Drawer" + item: { + id: "itemfilters:tag" + Count: 1b + tag: { + value: "framedcompactdrawers:frame_triple" + } + } }] rewards: [ { @@ -350,9 +450,45 @@ dependencies: ["058D3BEB64C74E27"] id: "1EAFB4FB2CF09F26" tasks: [{ - id: "761ADF517D67FC5A" - type: "checkmark" - title: "Chipped" + id: "5B597B1689F6662F" + type: "item" + title: "Any Chipped Workbench" + item: { + id: "itemfilters:or" + Count: 1b + tag: { + items: [ + { + id: "chipped:mason_table" + Count: 1b + } + { + id: "chipped:loom_table" + Count: 1b + } + { + id: "chipped:carpenters_table" + Count: 1b + } + { + id: "chipped:glassblower" + Count: 1b + } + { + id: "chipped:botanist_workbench" + Count: 1b + } + { + id: "chipped:mechanist_workbench" + Count: 1b + } + { + id: "chipped:alchemy_bench" + Count: 1b + } + ] + } + } }] rewards: [{ id: "0365D0D7A7E40B1D" @@ -377,9 +513,10 @@ dependencies: ["058D3BEB64C74E27"] id: "68E143E444AF44C2" tasks: [{ - id: "62B41166B5BAC9CF" - type: "checkmark" - title: "Engineer's Decor" + id: "3962CC2A503F48BE" + type: "item" + item: "engineersdecor:metal_bar" + count: 12L }] rewards: [{ id: "3C8E7414A7A4C3C0" @@ -402,11 +539,20 @@ ] dependencies: ["058D3BEB64C74E27"] id: "201E7950E17180BD" - tasks: [{ - id: "76C3B1B9033FFC8C" - type: "checkmark" - title: "'Dustrial Decor" - }] + tasks: [ + { + id: "7B4010001841119D" + type: "item" + item: "dustrial_decor:sheet_metal" + count: 3L + } + { + id: "233869B1D7E3ACFB" + type: "item" + item: "dustrial_decor:cardboard" + count: 8L + } + ] rewards: [ { id: "6C4A232FCA2807FA" @@ -433,7 +579,7 @@ icon: "decorative_blocks:oak_support" x: 1.0d y: -1.5d - subtitle: "Grab a chair, and sit by the hearth" + subtitle: "Stay a while and listen..." description: [ "If you are into your medieval or rustic builds, whether it is a castle on a cliff, a cabin in the woods, or a hearty tavern for a weary traveler, Decorative Blocks will have some blocks that fits your style." "" @@ -442,9 +588,16 @@ dependencies: ["058D3BEB64C74E27"] id: "03D0B336BB7CEFE1" tasks: [{ - id: "07C722038EBA8BA5" - type: "checkmark" + id: "36159E7E842C9962" + type: "item" title: "Decorative Blocks" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "decorative_blocks" + } + } }] rewards: [ { @@ -508,9 +661,16 @@ dependencies: ["058D3BEB64C74E27"] id: "1DEA7DBF6D1A1C6A" tasks: [{ - id: "3D34CEA63C477805" - type: "checkmark" - title: "Valhelsia Strucutres" + id: "5588202A7A626718" + type: "item" + title: "Valhelsia Structures" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "valhelsia_structures" + } + } }] rewards: [{ id: "548107ED51B7B447" @@ -554,7 +714,7 @@ icon: "portable_stonecutter:portable_stonecutter" x: 5.0d y: 2.0d - subtitle: "It's like the Chisel, but it's not" + subtitle: "It's like the Chisel, but fatter" description: [ "It cuts, it grinds, it chisels, polishes and and even cooks and cleans!" "" @@ -591,7 +751,7 @@ } x: 6.0d y: 1.5d - subtitle: "It's like the Portable Stonecutter, but it's not" + subtitle: "It's like the Portable Stonecutter, but skinnier" description: ["CHISEL_DESC"] dependencies: ["5411C8D2344CC2F1"] id: "165DFE2F0AF151E7" @@ -686,7 +846,11 @@ x: 5.0d y: 4.0d subtitle: "It builds stuff" - description: ["BG_DESC"] + description: [ + "An advanced building device with several modes allowing for the quick construction of walls, stairs, and platforms. " + "" + "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + ] dependencies: ["5411C8D2344CC2F1"] id: "0F06CA2A45323C4C" tasks: [{ @@ -730,7 +894,11 @@ x: 6.0d y: 4.5d subtitle: "It exchanges stuff" - description: ["EG_DESC"] + description: [ + "Quickly swap blocks in an area without having to break and manually place each one. Enchant with Silk Touch to work with delicate blocks such as glass." + "" + "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + ] dependencies: ["5411C8D2344CC2F1"] id: "25E1DB1C3F184D4C" tasks: [{ @@ -774,7 +942,13 @@ x: 7.0d y: 4.0d subtitle: "It copies and pastes stuff" - description: ["CPG_DESC"] + description: [ + "A powerful tool that allows copying large areas and rebuilding them instantly elsewhere, making short work of repeating large sections of a build, such as a repeating wall pattern, or sprucing up an area with a few different prefab homes." + "" + "It’s possible to import and export patterns for the Copy/Paste gadget as well, and Enigmatica 6 comes with a variety of patterns that include many multiblocks from mods like Immersive Engineering and Astral Sorcery, to make working with those mods easier. Full instructions and templates can be located in your instance folder under “building_gadgets_patterns”." + "" + "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + ] dependencies: ["5411C8D2344CC2F1"] id: "2E5F1C7B4B293531" tasks: [{ @@ -813,7 +987,13 @@ x: 7.5d y: 3.0d subtitle: "Guess what it does .." - description: ["DESG_DESC"] + description: [ + "For those times when you simply want to clear a hole to build in, and don’t really care what happens to the blocks that were there." + "" + "Be warned, this tool destroys all blocks it removes!" + "" + "Sneak Right Click in the air to configure the area to void. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + ] dependencies: ["5411C8D2344CC2F1"] id: "095108AB50598C04" tasks: [{ @@ -847,7 +1027,13 @@ x: 4.5d y: 3.0d subtitle: "Accio" - description: ["CWAND_DESC"] + description: [ + "A modded classic, the Construction Wand simply extends the blocks that are already placed in the world. This can make it easy to build a wall by first laying the foundation, then building up with the wand. " + "" + "This version comes with a few added features as well, such as the ability to destroy blocks, place in mid air, or even place random blocks from those in your hot bar. " + "" + "Ctrl Shift the wand in the air to access a menu with advanced options, or Ctrl Scroll Wheel to quickly toggle between building modes. " + ] dependencies: ["5411C8D2344CC2F1"] id: "26B88D08862EA1AE" tasks: [{ @@ -892,9 +1078,9 @@ ] id: "3F1801BBAF8A29FD" tasks: [{ - id: "0A6C5E41EEDC3E80" - type: "checkmark" - title: "Botania Building Tools" + id: "363364A832F21FEC" + type: "item" + item: "botania:livingwood" }] rewards: [{ id: "67E31EF8EF9242E8" @@ -913,8 +1099,9 @@ } x: 7.0d y: -4.0d + subtitle: "Built upon solid foundations" description: [ - "This rods allows you to swap any block in the world with the select block at the cost of Mana." + "This rods allows you to swap any block in the world with the selected block at the cost of Mana." "" "To start, Shift+Right Click a block to select it, and then right click other blocks to start the exchange." ] @@ -943,6 +1130,7 @@ icon: "botania:cobble_rod" x: 5.0d y: -4.0d + subtitle: "Off to a rocky start" description: ["Places Cobblestone Blocks at the cost of some Mana"] dependencies: ["3F1801BBAF8A29FD"] id: "261056A552909227" @@ -965,6 +1153,7 @@ icon: "botania:dirt_rod" x: 7.5d y: -3.0d + subtitle: "Quit mucking about" description: ["Places Dirt Blocks at the cost of some Mana"] dependencies: ["3F1801BBAF8A29FD"] id: "75361161CEA1E406" @@ -987,7 +1176,8 @@ icon: "botania:terraform_rod" x: 7.0d y: -2.0d - description: ["TERRAFIRMA_DESC"] + subtitle: "We can move mountains" + description: ["With a bit of practice, the Rod of the Terra Firma can help to quickly transform a landscape. When activated, dirt is formed below you to raise the ground up to your feet, while land above you is lowered to your level, making mountains or levelling an area in moments. "] dependencies: ["3F1801BBAF8A29FD"] id: "1E22D45F4ACB8FE2" tasks: [{ @@ -1228,6 +1418,7 @@ icon: "botania:skydirt_rod" x: 4.5d y: -3.0d + subtitle: "Nerdpole not included" description: ["Places blocks of Dirt in the air, which makes it the perfect tool for floating builds without needing to pillar up from the ground."] dependencies: ["3F1801BBAF8A29FD"] id: "624AAFDABA481B08" @@ -1254,7 +1445,12 @@ } x: 5.0d y: -2.0d - description: ["BLASTER_DESC"] + subtitle: "So anyway, I started blasting" + description: [ + "A versatile tool in its own right, when paired with an Entropic Lens the Mana Blaster becomes something akin to a long-range sculpting tool, blasting away blocks to help form natural looking shapes. " + "" + "Blast away underground to form nice caves for a base or carve away the landscape to beautify the area!" + ] dependencies: ["3F1801BBAF8A29FD"] id: "5CCA8708260D389C" tasks: [ @@ -1287,11 +1483,11 @@ }] } { - title: "Sextent" icon: "botania:sextant" x: 6.0d y: -1.5d - description: ["SEXTENT_DESC"] + subtitle: "What did you call me?!" + description: ["Renders a ghostly circle of whatever radius is desired, making it an excellent tool to plot out rounded builds. "] dependencies: ["3F1801BBAF8A29FD"] id: "179FB20DE78B8851" tasks: [{ @@ -1317,7 +1513,11 @@ } x: 6.0d y: -4.5d - description: ["ASTROLABE_DESC"] + description: [ + "Excellent for rapid building, the Worldshaper’s Astrolabe can be used to place blocks in a 3x3 up to an 11x11 square, either vertically or horizontally. " + "" + "Sneak right click a block to select it for placement and sneak right click in the air to change the size." + ] dependencies: ["3F1801BBAF8A29FD"] id: "37F31E4C7664EF8C" tasks: [{ From 95d6a52c283c9a1242e5afe3204aa78772d0c92a Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sat, 2 Oct 2021 21:48:02 -0400 Subject: [PATCH 063/124] typos, woops! typos, woops! --- .../recipetypes/astralsorcery/altar/altar_2_celestial.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js index 9bb6687e4a..4fee6896f3 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_2_celestial.js @@ -166,7 +166,6 @@ onEvent('recipes', (event) => { altar_type: 2, duration: 400, starlight: 3800, - recipe_class: 'astralsorcery:trait_upgrade', effects: [ 'astralsorcery:built_in_effect_constellation_finish', 'astralsorcery:pillar_sparkle', @@ -355,7 +354,7 @@ onEvent('recipes', (event) => { 'astralsorcery:built_in_effect_constellation_lines', 'astralsorcery:built_in_effect_attunement_sparkle' ], - id: `${id_prefix}mana_infuser` + id: `${id_prefix}elven_spreader` } ]; From 6b25792dd2f1853024d1b20541b77eaabc0fce12 Mon Sep 17 00:00:00 2001 From: Ridanis Date: Sun, 3 Oct 2021 05:16:12 +0200 Subject: [PATCH 064/124] Update building.snbt --- .../ftbquests/quests/chapters/building.snbt | 336 ++++++++++++++---- 1 file changed, 275 insertions(+), 61 deletions(-) diff --git a/config/ftbquests/quests/chapters/building.snbt b/config/ftbquests/quests/chapters/building.snbt index be78424e4a..4e098140bf 100644 --- a/config/ftbquests/quests/chapters/building.snbt +++ b/config/ftbquests/quests/chapters/building.snbt @@ -21,7 +21,7 @@ "" "This section contains a list of building/decoration based mods, and a handful of tools to help you get the job done, and set you on your way to become a seasoned builder." "" - "~Ridanisaurus Rid" + "~Ridanisaurus Rid \\& MuteTiefling" ] id: "058D3BEB64C74E27" tasks: [{ @@ -352,7 +352,14 @@ tasks: [{ id: "1EFA47BC6E4EC782" type: "item" - item: "simplylight:illuminant_block_on" + title: "Any 16x Simply Lights" + item: { + id: "itemfilters:mod" + Count: 1b + tag: { + value: "simplylight" + } + } count: 16L }] rewards: [{ @@ -691,7 +698,7 @@ } } x: 6.0d - y: 3.0d + y: 2.5d shape: "gear" subtitle: "The right tools for the job" description: ["GENERAL_INTRO_DESC"] @@ -713,7 +720,7 @@ title: "Portable Stonecutter" icon: "portable_stonecutter:portable_stonecutter" x: 5.0d - y: 2.0d + y: 1.5d subtitle: "It's like the Chisel, but fatter" description: [ "It cuts, it grinds, it chisels, polishes and and even cooks and cleans!" @@ -750,19 +757,52 @@ } } x: 6.0d - y: 1.5d + y: 1.0d subtitle: "It's like the Portable Stonecutter, but skinnier" - description: ["CHISEL_DESC"] + description: [ + "A classic tool for any new, and seasoned builder. " + "" + "Right clicking the Chisel opens its GUI, where you can place a block, and chisel it into a different, more decorative version of it." + "" + "You can also keep a specific chiseled block in the GUI to be able to chisel blocks in the world by left clicking them." + "" + "Higher tiers of the Chisel adds extra functionalities such as 3x3 in-world chiseling, or even a pattern preview." + ] dependencies: ["5411C8D2344CC2F1"] id: "165DFE2F0AF151E7" tasks: [{ id: "2A04BA9132C1CB19" type: "item" + title: "Any Chisel (from Chisel mod)" item: { - id: "chisel:iron_chisel" + id: "itemfilters:or" Count: 1b tag: { - Damage: 0 + items: [ + { + id: "chisel:iron_chisel" + Count: 1b + tag: { + Damage: 0 + } + } + { + id: "chisel:diamond_chisel" + Count: 1b + tag: { + Damage: 0 + chiseldata: { } + } + } + { + id: "chisel:hitech_chisel" + Count: 1b + tag: { + Damage: 0 + chiseldata: { } + } + } + ] } } }] @@ -784,19 +824,60 @@ } } x: 7.0d - y: 2.0d + y: 1.5d subtitle: "It's nothing like the Chisel or the Portable Stonecutter" - description: ["CaB_DESC"] + description: [ + "Chisels from this mod allows you to chip away pieces of the block, down to a single pixel at a time." + "" + "This mod gives you almost complete control on the shapes you can build and combine, including fluids." + ] dependencies: ["5411C8D2344CC2F1"] id: "468BEE8C31DA8DF9" tasks: [{ id: "45C52AC34FB4858B" type: "item" + title: "Any Chisel (from Chisel \\& Bits mod)" item: { - id: "chiselsandbits:chisel_stone" + id: "itemfilters:or" Count: 1b tag: { - Damage: 0 + items: [ + { + id: "chiselsandbits:chisel_stone" + Count: 1b + tag: { + Damage: 0 + } + } + { + id: "chiselsandbits:chisel_iron" + Count: 1b + tag: { + Damage: 0 + } + } + { + id: "chiselsandbits:chisel_gold" + Count: 1b + tag: { + Damage: 0 + } + } + { + id: "chiselsandbits:chisel_diamond" + Count: 1b + tag: { + Damage: 0 + } + } + { + id: "chiselsandbits:chisel_netherite" + Count: 1b + tag: { + Damage: 0 + } + } + ] } } }] @@ -844,12 +925,12 @@ } } x: 5.0d - y: 4.0d + y: 3.5d subtitle: "It builds stuff" description: [ "An advanced building device with several modes allowing for the quick construction of walls, stairs, and platforms. " "" - "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [default: g] to access advanced features. " ] dependencies: ["5411C8D2344CC2F1"] id: "0F06CA2A45323C4C" @@ -892,12 +973,12 @@ } } x: 6.0d - y: 4.5d + y: 4.0d subtitle: "It exchanges stuff" description: [ "Quickly swap blocks in an area without having to break and manually place each one. Enchant with Silk Touch to work with delicate blocks such as glass." "" - "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [default: g] to access advanced features. " ] dependencies: ["5411C8D2344CC2F1"] id: "25E1DB1C3F184D4C" @@ -940,14 +1021,14 @@ } } x: 7.0d - y: 4.0d + y: 3.5d subtitle: "It copies and pastes stuff" description: [ "A powerful tool that allows copying large areas and rebuilding them instantly elsewhere, making short work of repeating large sections of a build, such as a repeating wall pattern, or sprucing up an area with a few different prefab homes." "" "It’s possible to import and export patterns for the Copy/Paste gadget as well, and Enigmatica 6 comes with a variety of patterns that include many multiblocks from mods like Immersive Engineering and Astral Sorcery, to make working with those mods easier. Full instructions and templates can be located in your instance folder under “building_gadgets_patterns”." "" - "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + "Sneak Right Click on a block to set the block it’ll build with. Use the Building Gadgets Settings Menu key [default: g] to access advanced features. " ] dependencies: ["5411C8D2344CC2F1"] id: "2E5F1C7B4B293531" @@ -985,14 +1066,14 @@ } } x: 7.5d - y: 3.0d + y: 2.5d subtitle: "Guess what it does .." description: [ "For those times when you simply want to clear a hole to build in, and don’t really care what happens to the blocks that were there." "" "Be warned, this tool destroys all blocks it removes!" "" - "Sneak Right Click in the air to configure the area to void. Use the Building Gadgets Settings Menu key [g] to access advanced features. " + "Sneak Right Click in the air to configure the area to void. Use the Building Gadgets Settings Menu key [default: g] to access advanced features. " ] dependencies: ["5411C8D2344CC2F1"] id: "095108AB50598C04" @@ -1025,7 +1106,7 @@ } } x: 4.5d - y: 3.0d + y: 2.5d subtitle: "Accio" description: [ "A modded classic, the Construction Wand simply extends the blocks that are already placed in the world. This can make it easy to build a wall by first laying the foundation, then building up with the wand. " @@ -1037,14 +1118,46 @@ dependencies: ["5411C8D2344CC2F1"] id: "26B88D08862EA1AE" tasks: [{ - id: "1DFE69E8333E7764" + id: "131EB02FBDE8DC98" type: "item" + title: "Any Construction Wand" item: { - id: "constructionwand:stone_wand" + id: "itemfilters:or" Count: 1b tag: { - wand_options: { } - Damage: 0 + items: [ + { + id: "constructionwand:stone_wand" + Count: 1b + tag: { + wand_options: { } + Damage: 0 + } + } + { + id: "constructionwand:iron_wand" + Count: 1b + tag: { + wand_options: { } + Damage: 0 + } + } + { + id: "constructionwand:diamond_wand" + Count: 1b + tag: { + wand_options: { } + Damage: 0 + } + } + { + id: "constructionwand:infinity_wand" + Count: 1b + tag: { + wand_options: { } + } + } + ] } } }] @@ -1066,7 +1179,7 @@ } } x: 6.0d - y: -3.0d + y: -2.5d shape: "gear" subtitle: "Magical building technologies " description: [ @@ -1098,7 +1211,7 @@ tag: { } } x: 7.0d - y: -4.0d + y: -3.5d subtitle: "Built upon solid foundations" description: [ "This rods allows you to swap any block in the world with the selected block at the cost of Mana." @@ -1129,7 +1242,7 @@ title: "Rod of the Depths" icon: "botania:cobble_rod" x: 5.0d - y: -4.0d + y: -3.5d subtitle: "Off to a rocky start" description: ["Places Cobblestone Blocks at the cost of some Mana"] dependencies: ["3F1801BBAF8A29FD"] @@ -1152,7 +1265,7 @@ title: "Rod of the Lands" icon: "botania:dirt_rod" x: 7.5d - y: -3.0d + y: -2.5d subtitle: "Quit mucking about" description: ["Places Dirt Blocks at the cost of some Mana"] dependencies: ["3F1801BBAF8A29FD"] @@ -1175,7 +1288,7 @@ title: "Rod of the Terra Firma" icon: "botania:terraform_rod" x: 7.0d - y: -2.0d + y: -1.5d subtitle: "We can move mountains" description: ["With a bit of practice, the Rod of the Terra Firma can help to quickly transform a landscape. When activated, dirt is formed below you to raise the ground up to your feet, while land above you is lowered to your level, making mountains or levelling an area in moments. "] dependencies: ["3F1801BBAF8A29FD"] @@ -1201,28 +1314,20 @@ y: 0.0d shape: "gear" subtitle: "No construction work after hours" - description: ["ASTRAL_INTRO_DESC"] + description: ["Once you unlock access to the Starmetal Ore, you should be able to craft these 2 wonderful wands to help you shape the world to your liking, using the power of the stars."] id: "020ECCFFA45CE43D" tasks: [{ - id: "6D5A746B4A711C58" - type: "checkmark" - title: "Astral Sorcery Building Tools" + id: "37EDC6B3AC445773" + type: "item" + item: "astralsorcery:starmetal_ore" + }] + rewards: [{ + id: "691CF672BABA1FA8" + type: "item" + item: "astralsorcery:stardust" + count: 2 + random_bonus: 2 }] - rewards: [ - { - id: "691CF672BABA1FA8" - type: "item" - item: "astralsorcery:stardust" - random_bonus: 1 - } - { - id: "36968A85FAA99915" - type: "item" - item: "astralsorcery:marble_raw" - count: 4 - random_bonus: 4 - } - ] } { title: "Formation Wand" @@ -1235,7 +1340,12 @@ } x: -4.5d y: 0.0d - description: ["FORMATIONWAND_DESC"] + subtitle: "Astral Projection is nothing short of sorcery" + description: [ + "The Formation Wand acts like a build tool, where you can select a Block by Shift+Right Clicking it. Once a source block is selected, you can Shift+Right Click in the air to change the formation shape." + "" + "Note: Sizes are fixed, and can't be changed." + ] dependencies: ["020ECCFFA45CE43D"] id: "4A2306BD24A5D6D2" tasks: [{ @@ -1269,7 +1379,12 @@ } x: -7.5d y: 0.0d - description: ["CONVERSIONWAND_DESC"] + subtitle: "Starlight Metamorphosis" + description: [ + "The Conversion Wand allows you to swap blocks in the world to blocks in your inventory." + "" + "You start by Shift+Right Clicking a block in the world to select it as an exchange option. However, you are not limited to just a single block, you can select multiple blocks to convert to, which randomizes the pattern of the conversion for a more seamless and natural transition between blocks from your palette." + ] dependencies: ["020ECCFFA45CE43D"] id: "2334B38255294FAE" tasks: [{ @@ -1299,12 +1414,16 @@ y: 1.5d shape: "gear" subtitle: "Let's get mechanical, mechanical" - description: ["CREATE_INTRO_DESC"] + description: [ + "Create offers 2 ultility based building tools, the Extendo Grip and the Wand of Symmatry. " + "" + "While these 2 tools are somewhat costly, they are worth the effort as they offer some unique functionalities." + ] id: "1E318BCAC2C6FA09" tasks: [{ - id: "2FC308627BCE10F4" - type: "checkmark" - title: "Create Building Tools" + id: "14B0FAF2081449BD" + type: "item" + item: "emendatusenigmatica:brass_ingot" }] rewards: [{ id: "618B214EB41EEE48" @@ -1325,7 +1444,14 @@ } x: -4.5d y: 1.5d - description: ["EXTENDO_DESC"] + subtitle: "BOING! BOING!" + description: [ + "The Extendo Grip increases your reach distance, thus allowing you to place and break blocks at a larger distance." + "" + "To use the Extendo Grip, put it in your Off-Hand, and then use blocks or tools in your Main-Hand to use it." + "" + "While wearing a Copper Tank, the Extendo Grip loses no Durability, instead you lose some of the air pressure you have stored in your tank." + ] dependencies: ["1E318BCAC2C6FA09"] id: "34F00196E2D0B4B0" tasks: [{ @@ -1353,7 +1479,14 @@ icon: "create:wand_of_symmetry" x: -7.5d y: 1.5d - description: ["WANDSYM_DESC"] + subtitle: "Lay your weary OCD to rest" + description: [ + "With a hefty crafting recipe, the Wand of Symmetry does not disappoint those that loves a little symmetry in their life." + "" + "This tool allows you to place a symmetry plane which perfectly mirrors your block placement." + "" + "To start, Right Click a block on the ground to place your place. Once placed, you can Shift+Right Click to open the configuration GUI where you can select the plane type, and the mirroring axis." + ] dependencies: ["1E318BCAC2C6FA09"] id: "147B701C5BCF2424" tasks: [{ @@ -1417,7 +1550,7 @@ title: "Rod of the Highlands" icon: "botania:skydirt_rod" x: 4.5d - y: -3.0d + y: -2.5d subtitle: "Nerdpole not included" description: ["Places blocks of Dirt in the air, which makes it the perfect tool for floating builds without needing to pillar up from the ground."] dependencies: ["3F1801BBAF8A29FD"] @@ -1444,7 +1577,7 @@ tag: { } } x: 5.0d - y: -2.0d + y: -1.5d subtitle: "So anyway, I started blasting" description: [ "A versatile tool in its own right, when paired with an Entropic Lens the Mana Blaster becomes something akin to a long-range sculpting tool, blasting away blocks to help form natural looking shapes. " @@ -1485,7 +1618,7 @@ { icon: "botania:sextant" x: 6.0d - y: -1.5d + y: -1.0d subtitle: "What did you call me?!" description: ["Renders a ghostly circle of whatever radius is desired, making it an excellent tool to plot out rounded builds. "] dependencies: ["3F1801BBAF8A29FD"] @@ -1512,7 +1645,8 @@ tag: { } } x: 6.0d - y: -4.5d + y: -4.0d + subtitle: "Be there, or be Square" description: [ "Excellent for rapid building, the Worldshaper’s Astrolabe can be used to place blocks in a 3x3 up to an 11x11 square, either vertically or horizontally. " "" @@ -1538,5 +1672,85 @@ player_command: false }] } + { + title: "Cosmetic Armor Stand" + icon: "minecraft:armor_stand" + x: -7.5d + y: -1.5d + shape: "square" + subtitle: "Cosmetic Wonder" + description: [ + "Did you know that you can use Armor Stands to display your curios and baubles? " + "" + "I didn't either, but you can in fact use Vanilla Armor Stands to display a set of your curios and artifacts that you found around the world in your travels to bring a little flare to your living space, or build in general, whether it is for storage purposes, or purely decorative." + ] + id: "48D7E182886BF82F" + tasks: [{ + id: "2FBD22F2EC040B18" + type: "checkmark" + title: "Cosmetic Armor Stands?" + }] + rewards: [{ + id: "41939B3A4FB225D7" + type: "item" + item: { + id: "botania:cosmetic_googly_eyes" + Count: 1b + tag: { } + } + }] + } + { + title: "Quark" + icon: { + id: "quark:trowel" + Count: 1b + tag: { + Damage: 0 + } + } + x: -4.5d + y: -1.5d + shape: "square" + subtitle: "Jack of all Trades" + description: [ + "Quark is such a massive mod, and while it could have had it's own section, or even be part of the main Building section, we felt like having it as a stand-alone info quest fits better. While it would be near impossible to write down everything Quark has to offer, the below are some of the highlights for builders to make their life a little easier." + "" + "- Decorative Blocks: Quark offers a plethora of blocks, both crafted like the different themed Chests, or gathered from around the world like the Corundum Crystal Blocks." + "" + "- Trowel: This tool allows the randomization of block placement. It selects block(s) for your hotbar when used." + "" + "- Burning Vines: You can burn the end of a Vine with Flint \\& Steel to stop it from growing further down. No more strings Vanilla hacks!!" + "" + "- Pickarang: Breaks blocks at an extreme range, and brings them back to you." + "" + "For more information on what else does Quark has to offer you as a builder, visit their official website." + "Link: https://quarkmod.net/#features" + ] + id: "73696B8EC7BB92C7" + tasks: [{ + id: "5B29C3C71D617D0A" + type: "checkmark" + title: "Quark" + }] + rewards: [ + { + id: "1EA35555757745CC" + type: "item" + item: { + id: "quark:trowel" + Count: 1b + tag: { + Damage: 0 + } + } + } + { + id: "5C1C38E52322F619" + type: "item" + item: "quark:rainbow_rune" + } + ] + } ] } From bc5af27186e74059d686342ef5512e19d49ac3f6 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 00:20:55 -0400 Subject: [PATCH 065/124] Update to magical ore processing Reduced mana cost of first step Removed Rune from Lightning step of magical 5x ore processing. Now you just zap it. Moved creational Catalyst to terra plate instead of only the mythic botany infuser ![image](https://user-images.githubusercontent.com/9543430/135738125-459061ae-21fe-4dc3-9897-5d4efe2e4386.png) Guaranteed return of Winter rune from crystallization step. Reduced consumption rate of liquid starlight Final step now uses mana powder of ender calx. --- .../item_modifiers/jei_descriptions.js | 12 ++++++-- .../expert/recipetypes/botania/terra_plate.js | 28 +++++++++++++++++-- .../recipetypes/mythicbotany/infusion.js | 22 +++++++++++---- .../expert/unification/unify_materials.js | 23 +++++++-------- 4 files changed, 62 insertions(+), 23 deletions(-) diff --git a/kubejs/client_scripts/item_modifiers/jei_descriptions.js b/kubejs/client_scripts/item_modifiers/jei_descriptions.js index 820542d5a5..f9caf0a02e 100644 --- a/kubejs/client_scripts/item_modifiers/jei_descriptions.js +++ b/kubejs/client_scripts/item_modifiers/jei_descriptions.js @@ -203,19 +203,25 @@ onEvent('jei.information', (event) => { { items: [Item.of('naturesaura:aura_bottle', { stored_type: 'naturesaura:overworld' })], description: [ - 'Obtained by Right-Clicking a Bottle and Cork in the air in the Overworld or Atum. This action removes Aura from the area.' + 'Obtained by Right-Clicking a Bottle and Cork in the air in the Overworld or Atum. This action removes Aura from the area.', + ' ', + `Can be automated using a Dispenser.` ] }, { items: [Item.of('naturesaura:aura_bottle', { stored_type: 'naturesaura:end' })], description: [ - 'Obtained by Right-Clicking a Bottle and Cork in the air in the End or The Undergarden. This action removes Aura from the area.' + 'Obtained by Right-Clicking a Bottle and Cork in the air in the End or The Undergarden. This action removes Aura from the area.', + ' ', + `Can be automated using a Dispenser.` ] }, { items: [Item.of('naturesaura:aura_bottle', { stored_type: 'naturesaura:nether' })], description: [ - 'Obtained by Right-Clicking a Bottle and Cork in the air in the Nether. This action removes Aura from the area.' + 'Obtained by Right-Clicking a Bottle and Cork in the air in the Nether. This action removes Aura from the area.', + ' ', + `Can be automated using a Dispenser.` ] }, { diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/terra_plate.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/terra_plate.js index 5fa68e6701..051ce6658f 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/terra_plate.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/terra_plate.js @@ -2,15 +2,26 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } + const id_prefix = 'enigmatica:expert/botania/terra_plate/'; const recipes = [ { inputs: [ - Item.of('resourcefulbees:bee_jar', {Entity: "resourcefulbees:mana_bee", BeeType: "mana", Color: "#4c97ff"}).weakNBT().toJson(), + Item.of('resourcefulbees:bee_jar', { + Entity: 'resourcefulbees:mana_bee', + BeeType: 'mana', + Color: '#4c97ff' + }) + .weakNBT() + .toJson(), { item: 'botania:mana_pearl' }, { item: 'botania:mana_diamond' }, { item: 'botania:quartz_mana' } ], - output: Item.of('resourcefulbees:bee_jar', {Entity: "resourcefulbees:terrestrial_bee", BeeType: "terrestrial", Color: "#5bf23d"}).toJson(), + output: Item.of('resourcefulbees:bee_jar', { + Entity: 'resourcefulbees:terrestrial_bee', + BeeType: 'terrestrial', + Color: '#5bf23d' + }).toJson(), mana: 2000000, id: 'botania:terra_plate/terrestrial_bee_plate' }, @@ -39,6 +50,19 @@ onEvent('recipes', (event) => { output: { item: 'botania:terrasteel_ingot' }, mana: 500000, id: 'botania:terra_plate/terrasteel_ingot' + }, + { + inputs: [ + { item: 'botania:forest_eye' }, + { item: 'naturesaura:token_euphoria' }, + { item: 'naturesaura:token_rage' }, + { item: 'atum:ptah_godshard' }, + { item: 'naturesaura:token_grief' }, + { item: 'naturesaura:token_terror' } + ], + output: { item: 'naturesaura:generator_limit_remover' }, + mana: 2000000, + id: `${id_prefix}generator_limit_remover` } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mythicbotany/infusion.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mythicbotany/infusion.js index d18b461acc..fb21524ab2 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mythicbotany/infusion.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/mythicbotany/infusion.js @@ -2,15 +2,26 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } + const id_prefix = 'enigmatica:expert/mythicbotany/infusion/'; const recipes = [ { inputs: [ - Item.of('resourcefulbees:bee_jar', {Entity: "resourcefulbees:mana_bee", BeeType: "mana", Color: "#4c97ff"}).weakNBT().toJson(), + Item.of('resourcefulbees:bee_jar', { + Entity: 'resourcefulbees:mana_bee', + BeeType: 'mana', + Color: '#4c97ff' + }) + .weakNBT() + .toJson(), { item: 'botania:mana_pearl' }, { item: 'botania:mana_diamond' }, { item: 'botania:quartz_mana' } ], - output: Item.of('resourcefulbees:bee_jar', {Entity: "resourcefulbees:terrestrial_bee", BeeType: "terrestrial", Color: "#5bf23d"}).toJson(), + output: Item.of('resourcefulbees:bee_jar', { + Entity: 'resourcefulbees:terrestrial_bee', + BeeType: 'terrestrial', + Color: '#5bf23d' + }).toJson(), mana: 2000000, fromColor: parseInt('0xFFFFFF'), toColor: parseInt('0x00FF00'), @@ -77,17 +88,18 @@ onEvent('recipes', (event) => { }, { inputs: [ - { item: 'naturesaura:infused_stone' }, + { item: 'botania:forest_eye' }, { item: 'naturesaura:token_euphoria' }, { item: 'naturesaura:token_rage' }, - { tag: 'forge:ingots/infused_iron' }, + { item: 'atum:ptah_godshard' }, { item: 'naturesaura:token_grief' }, { item: 'naturesaura:token_terror' } ], output: { item: 'naturesaura:generator_limit_remover' }, mana: 2000000, fromColor: parseInt('0xFF9900'), - toColor: parseInt('0x00FF1A') + toColor: parseInt('0x00FF1A'), + id: `${id_prefix}generator_limit_remover` } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js b/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js index 70fda3d9e8..18e2dca476 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/unification/unify_materials.js @@ -167,7 +167,7 @@ onEvent('recipes', (event) => { event.shapeless(Item.of(output, 2), [plate, plate, wireCutters]).id(`kubejs:shaped_crafting_${material}_wire`); } - //Mock-up. Real process would use new assets to avoid mix ups with Mek processing. + function magical_ore_processing( event, material, @@ -212,23 +212,20 @@ onEvent('recipes', (event) => { input: Ingredient.of(infusing_input).toJson(), output: { item: mana_cluster, count: 1 }, catalyst: { type: 'block', block: 'naturesaura:generator_limit_remover' }, - mana: 25000 + mana: 10000 }); // Step Two: Zap! event.custom({ type: 'interactio:item_lightning', - inputs: [ - Ingredient.of(zapping_input).toJson(), - { tag: 'botania:runes/asgard', count: 1, return_chance: 0.5 } - ], + inputs: [Ingredient.of(zapping_input).toJson()], output: { entries: [ { result: { item: fulminated_cluster, count: 1 }, weight: 10 }, { result: { item: secondary_fulminated_cluster, count: 1 }, weight: 5 }, - { result: { item: 'thermal:slag', count: 1 }, weight: 85 } // would prefer something like tiny slag here + { result: { item: 'thermal:slag', count: 1 }, weight: 35 } ], - empty_weight: 0, + empty_weight: 50, rolls: 20 } }); @@ -249,18 +246,18 @@ onEvent('recipes', (event) => { type: 'interactio:item_fluid_transform', inputs: [ Ingredient.of(freezing_input).toJson(), - { tag: 'botania:runes/winter', count: 1, return_chance: 0.95 } + { tag: 'botania:runes/winter', count: 1, return_chance: 1.0 } ], output: { entries: [ { result: Ingredient.of(crystalline_sliver).toJson(), weight: 75 }, - { result: Ingredient.of('bloodmagic:corrupted_tinydust').toJson(), weight: 25 } //placeholder item. Could be a handy place to put a byproduct required for high tier crafts + { result: Ingredient.of('bloodmagic:corrupted_tinydust').toJson(), weight: 25 } ], empty_weight: 0, rolls: 20 }, fluid: { fluid: 'astralsorcery:liquid_starlight' }, - consume_fluid: 0.75 + consume_fluid: 0.15 }); // Step Five: Fuse! @@ -278,8 +275,8 @@ onEvent('recipes', (event) => { Ingredient.of(fusing_input).toJson(), Ingredient.of(fusing_input).toJson(), Ingredient.of(fusing_input).toJson(), - Ingredient.of('eidolon:ender_calx').toJson(), - Ingredient.of(`#botania:runes/muspelheim`).toJson() + Ingredient.of('#forge:dusts/mana').toJson(), + Ingredient.of(`#botania:runes/nidavellir`).toJson() ] }); } From 4c34ab1cafac277243c674f319f3f9806e199f60 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 00:45:57 -0400 Subject: [PATCH 066/124] Proof-reading touch up Looking good. Just a couple minor changes for clarity. --- .../ftbquests/quests/chapters/building.snbt | 66 ++++++++++--------- 1 file changed, 34 insertions(+), 32 deletions(-) diff --git a/config/ftbquests/quests/chapters/building.snbt b/config/ftbquests/quests/chapters/building.snbt index 4e098140bf..f380e75b22 100644 --- a/config/ftbquests/quests/chapters/building.snbt +++ b/config/ftbquests/quests/chapters/building.snbt @@ -19,7 +19,7 @@ description: [ "Welcome to the Building Chapter" "" - "This section contains a list of building/decoration based mods, and a handful of tools to help you get the job done, and set you on your way to become a seasoned builder." + "This section contains a list of building/decoration based mods, and a handful of tools to help you get the job done, and set you on your way to becoming a seasoned builder." "" "~Ridanisaurus Rid \\& MuteTiefling" ] @@ -264,7 +264,7 @@ y: -1.5d subtitle: "It's like IKEA, but without the Meatballs" description: [ - "Are you building a kitchen, and you wish there were sinks and counters with different (both Vanilla and Modded) wood and stone options that matches your build? What about a small backyard or garden with a Grill to BBQ your meats?" + "Are you building a kitchen and you wish there were sinks and counters with different (both Vanilla and Modded) wood and stone options that matches your build? What about a small backyard or garden with a Grill to BBQ your meats?" "" "MrCrayfish's Furniture More offers a massive collection of decorative and functional blocks for you to select from, and spice up your living space." ] @@ -343,9 +343,9 @@ y: 2.0d subtitle: "Let there be light" description: [ - "The mod name really says it all. It's simply just that, a lights mod." + "The mod name really says it all. It's simply that, a lights mod." "" - "But, don't let the name fool you. Simply Light offers a wide range of Lights to keep your base lit, with style." + "But don't let the name fool you. Simply Light offers a wide range of lights to keep your base lit with style." ] dependencies: ["058D3BEB64C74E27"] id: "42FB32CC99E66E3F" @@ -381,6 +381,8 @@ "Are you looking for Glass Stairs? or maybe a Netherite door? How about an Endstone Sign? Well, look no further." "" "Framed Blocks introduces a blank template of various shapes and blocks which mimics the texture of the block clicked on them." + "" + "They can even be made to glow by right clicking them with glowstone!" ] dependencies: ["058D3BEB64C74E27"] id: "0798D5139479A837" @@ -410,11 +412,11 @@ y: 0.0d subtitle: "Build-a-Bear, but with Drawers" description: [ - "If you are fed up with having an Oak Drawer that is sticking like a sore thumb in the middle of your build, completely mismatching your building palette?" + "Are you fed up with that Oak Drawer that is sticking out like a sore thumb in the middle of your build, completely mismatching your building palette?" "" "Framed Drawers gives you a blank template which you can combine in a crafting table with different blocks to use their texture instead, whether it's the front, the sides, or the trim, these Framed Drawers are highly customizable visually." "" - "Needless to say, this mod offers more than just a single drawer style templates, it actually has a template for each type of drawers, whether it is a 2x2, a Compacting Drawer, or even a Drawer Controller." + "Needless to say, this mod offers more than just a single drawer style templates, it actually has a template for each type of drawer, whether it is a 2x2, a Compacting Drawer, or even a Drawer Controller." ] dependencies: ["058D3BEB64C74E27"] id: "473BE440ECB1CEDF" @@ -450,9 +452,9 @@ y: -1.0d subtitle: "Nothing a little wood filler won't fix" description: [ - "Chipped offers a massive collection of carved Vanilla blocks, whether it is decorative glass, quilted wool for nice carpet design, or even an omenious chisled gilded blackstone. Chipped got you covered." + "Chipped offers a massive collection of carved Vanilla blocks, whether it is decorative glass, quilted wool for nice carpet design, or even an ominous chisled gilded blackstone. Chipped has got you covered." "" - "To start, build one of the carving stations available which function in a similar way as a Vanilla Stonecutter, place the apprioriate block in it, and select a different output that suits your building needs." + "To start, build one of the carving stations available which function in a similar way to the Vanilla Stonecutter. Place the apprioriate block in it and select a different output that suits your building needs." ] dependencies: ["058D3BEB64C74E27"] id: "1EAFB4FB2CF09F26" @@ -515,7 +517,7 @@ description: [ "If you love the industrial look of Immersive Engineering, then you will probably love Engineer's Decor." "" - "This mod adds a handful of both functional and decorative blocks that should feel right at home in your Immersive Engineering base. Whether it is a DANGER! sign, or an industrial looking Crafting Station, Engineer's Decor got you covered." + "This mod adds a handful of both functional and decorative blocks that should feel right at home in your Immersive Engineering base. Whether it is a DANGER! sign, or an industrial looking Crafting Station, Engineer's Decor has got you covered." ] dependencies: ["058D3BEB64C74E27"] id: "68E143E444AF44C2" @@ -540,9 +542,9 @@ y: 1.5d subtitle: "Safty Helmet must be worn at all times!" description: [ - "Are you building a Factory to house all your loud machinary? Does that power station building feel open to wandering wild life and hostile mobs? Do you wish you could put up a chain fence to stop those pesky illagers from interupting you? Well then ..." + "Are you building a Factory to house all your loud machinery? Does that power station building feel open to wandering wild life and hostile mobs? Do you wish you could put up a chain fence to stop those pesky illagers from interupting you? Well then ..." "" - "'Dustrial Craft offers all the above, and more. This mod offers a decent range of decorative blocks with industrial theme in mind." + "'Dustrial Decor offers all the above, and more. This mod offers a decent range of decorative blocks with industrial theme in mind." ] dependencies: ["058D3BEB64C74E27"] id: "201E7950E17180BD" @@ -590,7 +592,7 @@ description: [ "If you are into your medieval or rustic builds, whether it is a castle on a cliff, a cabin in the woods, or a hearty tavern for a weary traveler, Decorative Blocks will have some blocks that fits your style." "" - "Decorative Blocks offers a nicely textured, and well designed blocks for your building needs." + "Decorative Blocks offers many nicely textured and well designed blocks for your building needs." ] dependencies: ["058D3BEB64C74E27"] id: "03D0B336BB7CEFE1" @@ -723,11 +725,11 @@ y: 1.5d subtitle: "It's like the Chisel, but fatter" description: [ - "It cuts, it grinds, it chisels, polishes and and even cooks and cleans!" + "It cuts, it grinds, it chisels, polishes and even cooks and cleans!" "" "All the power of a Stone Cutter, now in a compact portable format that fits in the palm of your hand." "" - "Disclaimer: Will not actually cook or clean. Not for Commercial Use" + "Disclaimer: Will not actually cook or clean. Not for Commercial Use." "" "Warning: Keep away from children, animals, nitwits. Do not place hand on blade while in motion. Extended use may lead to fatigue and loss of vision." ] @@ -760,13 +762,13 @@ y: 1.0d subtitle: "It's like the Portable Stonecutter, but skinnier" description: [ - "A classic tool for any new, and seasoned builder. " + "A classic tool for new and seasoned builders alike." "" - "Right clicking the Chisel opens its GUI, where you can place a block, and chisel it into a different, more decorative version of it." + "Right clicking the Chisel opens a GUI where you can place a block and chisel it into a different, more decorative version of itself." "" "You can also keep a specific chiseled block in the GUI to be able to chisel blocks in the world by left clicking them." "" - "Higher tiers of the Chisel adds extra functionalities such as 3x3 in-world chiseling, or even a pattern preview." + "Higher tiers of the Chisel adds extra functionalities such as 3x3 in-world chiseling or even a pattern preview." ] dependencies: ["5411C8D2344CC2F1"] id: "165DFE2F0AF151E7" @@ -827,7 +829,7 @@ y: 1.5d subtitle: "It's nothing like the Chisel or the Portable Stonecutter" description: [ - "Chisels from this mod allows you to chip away pieces of the block, down to a single pixel at a time." + "Chisels from this mod allow you to chip away pieces of the block down to a single pixel, or bit, at a time." "" "This mod gives you almost complete control on the shapes you can build and combine, including fluids." ] @@ -1185,7 +1187,7 @@ description: [ "Botania offers a variaty of building and terraforming rods." "" - "With the cost of some Mana, you can place blocks, exchange blocks, or full on terraform a whole section of your world." + "At the cost of some Mana, you can place blocks, exchange blocks, or fully terraform whole sections of your world." "" "The connected quests will have a brief description of what each rod does. However, for more detailed information please refer back to your Lexica Botania." ] @@ -1314,7 +1316,7 @@ y: 0.0d shape: "gear" subtitle: "No construction work after hours" - description: ["Once you unlock access to the Starmetal Ore, you should be able to craft these 2 wonderful wands to help you shape the world to your liking, using the power of the stars."] + description: ["Once you've unlock access to Starmetal Ore, you should be able to craft these two wonderful wands to help you shape the world to your liking using the power of the stars."] id: "020ECCFFA45CE43D" tasks: [{ id: "37EDC6B3AC445773" @@ -1342,7 +1344,7 @@ y: 0.0d subtitle: "Astral Projection is nothing short of sorcery" description: [ - "The Formation Wand acts like a build tool, where you can select a Block by Shift+Right Clicking it. Once a source block is selected, you can Shift+Right Click in the air to change the formation shape." + "The Formation Wand acts like a build tool, where you can select a Block by Sneak Right Clicking it. Once a source block is selected, you can Sneak Right Click in the air to change the formation shape." "" "Note: Sizes are fixed, and can't be changed." ] @@ -1383,7 +1385,7 @@ description: [ "The Conversion Wand allows you to swap blocks in the world to blocks in your inventory." "" - "You start by Shift+Right Clicking a block in the world to select it as an exchange option. However, you are not limited to just a single block, you can select multiple blocks to convert to, which randomizes the pattern of the conversion for a more seamless and natural transition between blocks from your palette." + "You start by Sneak Right Clicking a block in the world to select it as an exchange option. However, you are not limited to just a single block, you can select multiple blocks to convert to, which randomizes the pattern of the conversion for a more seamless and natural transition between blocks from your palette." ] dependencies: ["020ECCFFA45CE43D"] id: "2334B38255294FAE" @@ -1415,9 +1417,9 @@ shape: "gear" subtitle: "Let's get mechanical, mechanical" description: [ - "Create offers 2 ultility based building tools, the Extendo Grip and the Wand of Symmatry. " + "Create offers two ultility based building tools, the Extendo Grip and the Wand of Symmatry. " "" - "While these 2 tools are somewhat costly, they are worth the effort as they offer some unique functionalities." + "While these tools are somewhat costly, they are worth the effort as they offer some unique functionalities." ] id: "1E318BCAC2C6FA09" tasks: [{ @@ -1448,9 +1450,9 @@ description: [ "The Extendo Grip increases your reach distance, thus allowing you to place and break blocks at a larger distance." "" - "To use the Extendo Grip, put it in your Off-Hand, and then use blocks or tools in your Main-Hand to use it." + "To use the Extendo Grip, put it in your Off-Hand, and then use blocks or tools in your Main-Hand as you normally would." "" - "While wearing a Copper Tank, the Extendo Grip loses no Durability, instead you lose some of the air pressure you have stored in your tank." + "While wearing a Copper Tank, the Extendo Grip loses no Durability and instead uses some of the air pressure you have stored in your tank." ] dependencies: ["1E318BCAC2C6FA09"] id: "34F00196E2D0B4B0" @@ -1485,7 +1487,7 @@ "" "This tool allows you to place a symmetry plane which perfectly mirrors your block placement." "" - "To start, Right Click a block on the ground to place your place. Once placed, you can Shift+Right Click to open the configuration GUI where you can select the plane type, and the mirroring axis." + "To start, Right Click a block on the ground to place your place. Once placed, you can Sneak Right Click to open the configuration GUI where you can select the plane type, and the mirroring axis." ] dependencies: ["1E318BCAC2C6FA09"] id: "147B701C5BCF2424" @@ -1511,11 +1513,11 @@ shape: "square" subtitle: "I love it when a plan comes together" description: [ - "If you are the type of player that avoid building a base and lives in a dirt hole somewhere because you are not confident with your building skills, or simply don't have the time and energy to plan out a full base design, this this mod is for you." + "If you are the type of player who avoids building a base and lives in a dirt hole somewhere because you are not confident with your building skills, or simply don't have the time and energy to plan out a full base design, this this mod is for you." "" - "The Mighty Architect allows you to plot down a dynamic design where you get to select how big or small the build is, how many floors, roof style, building materials ..etc. Once your design is complete, it will save it as a schematic for you which you can then use Create Cannon to build it for you." + "The Mighty Architect allows you to plot down a dynamic design where you get to select how big or small the build is, how many floors, roof style, building materials, etc. Once your design is complete, it will save it as a schematic for you which can then be used in a Create Shematicannon to build it automatically." "" - "If the above introduction intrigues you, and you would like to learn more, or even see this mod in action, this short 2 mins video by the Mod Dev will show you the ins and outs of this wonderful mod." + "If the above introduction intrigues you, and you would like to learn more, or even see this mod in action, this short two minute video by the Mod Dev will show you the ins and outs of this wonderful mod." "Link: https://youtu.be/VdoKmdYubBM" ] id: "4407C59E32585B96" @@ -1682,7 +1684,7 @@ description: [ "Did you know that you can use Armor Stands to display your curios and baubles? " "" - "I didn't either, but you can in fact use Vanilla Armor Stands to display a set of your curios and artifacts that you found around the world in your travels to bring a little flare to your living space, or build in general, whether it is for storage purposes, or purely decorative." + "I didn't either, but you can in fact use Vanilla Armor Stands to display a set of your curios and artifacts found in your travels to bring a little flare to your living space, or build in general, whether it is for storage purposes, or purely decorative." ] id: "48D7E182886BF82F" tasks: [{ @@ -1720,7 +1722,7 @@ "" "- Trowel: This tool allows the randomization of block placement. It selects block(s) for your hotbar when used." "" - "- Burning Vines: You can burn the end of a Vine with Flint \\& Steel to stop it from growing further down. No more strings Vanilla hacks!!" + "- Burning Vines: You can burn the end of a Vine with Flint \\& Steel to stop them from growing further down. No more stringy Vanilla hacks!!" "" "- Pickarang: Breaks blocks at an extreme range, and brings them back to you." "" From 512eed15fd873a34b6e917e08150fbdfa5354903 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 00:47:15 -0400 Subject: [PATCH 067/124] Update building.snbt --- config/ftbquests/quests/chapters/building.snbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/ftbquests/quests/chapters/building.snbt b/config/ftbquests/quests/chapters/building.snbt index f380e75b22..83a18dcddb 100644 --- a/config/ftbquests/quests/chapters/building.snbt +++ b/config/ftbquests/quests/chapters/building.snbt @@ -1316,7 +1316,7 @@ y: 0.0d shape: "gear" subtitle: "No construction work after hours" - description: ["Once you've unlock access to Starmetal Ore, you should be able to craft these two wonderful wands to help you shape the world to your liking using the power of the stars."] + description: ["Once you've unlocked access to Starmetal Ore, you should be able to craft these two wonderful wands to help you shape the world to your liking using the power of the stars."] id: "020ECCFFA45CE43D" tasks: [{ id: "37EDC6B3AC445773" From 42a44581a39b45425cf4834c3b80ac4b0f1e72db Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 13:07:32 -0400 Subject: [PATCH 068/124] Add Blazing Blood as fuel for the Magmatic Dynamo Produces the same amount as diesel in the compression dynamo. --- .../recipetypes/thermal/dynamo/magmatic.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js new file mode 100644 index 0000000000..9e9152ffa9 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js @@ -0,0 +1,18 @@ +onEvent('recipes', (event) => { + var multiplier = 10; + var data = { + recipes: [ + { + fluid: 'tconstruct:blazing_blood', + energy: 1000000 + } + ] + }; + data.recipes.forEach((recipe) => { + event.recipes.thermal.magmatic_fuel({ + type: 'thermal.magmatic_fuel', + ingredient: { fluid: recipe.fluid, amount: 1000 }, + energy: recipe.energy * multiplier + }); + }); +}); From 81c0b223b66f83bf7e15e1656f56391da44537be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 3 Oct 2021 19:55:09 +0200 Subject: [PATCH 069/124] added friendly fire #3358 --- config/friendlyfire-common.toml | 12 ++++++ minecraftinstance.json | 76 ++++++++++++++++++++++++++++++++- 2 files changed, 86 insertions(+), 2 deletions(-) create mode 100644 config/friendlyfire-common.toml diff --git a/config/friendlyfire-common.toml b/config/friendlyfire-common.toml new file mode 100644 index 0000000000..cedc28f4dd --- /dev/null +++ b/config/friendlyfire-common.toml @@ -0,0 +1,12 @@ + +#General settings for the mod. +[general] + #Should pets be protected from damage dealt by their owners? + protectPetsFromOwner = true + #Should pets be protected from damage dealt by other pets with the same owner? + protectPetsFromOtherPets = true + #Should children mobs be protected from damage? + protectChildren = false + #Should damage against friendly mobs be reflected back on the damage dealer? + reflectDamage = false + diff --git a/minecraftinstance.json b/minecraftinstance.json index f0dff867a9..4e93f3562d 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,8 +30,8 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2021-10-02T18:33:27.1312755Z", - "playedCount": 395, + "lastPlayed": "2021-10-03T17:38:52.3752312Z", + "playedCount": 396, "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -1300,6 +1300,78 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 255105, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3348623, + "displayName": "FriendlyFire-1.16.5-7.0.4.jar", + "fileName": "FriendlyFire-1.16.5-7.0.4.jar", + "fileDate": "2021-06-12T02:41:01.817Z", + "fileLength": 7452, + "releaseType": 3, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3348/623/FriendlyFire-1.16.5-7.0.4.jar", + "isAlternate": false, + "alternateFileId": 3348624, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1358245758, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "net", + "fingerprint": 3643590655, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 4138555843, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 2821361215, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 2480812494, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "FriendlyFire-1.16.5-7.0.4.jar" + }, + "dateInstalled": "2021-10-03T06:47:20.1606108Z", + "dateUpdated": "2021-10-03T06:47:20.2486102Z", + "dateLastUpdateAttempted": "2021-10-03T06:47:20.2486102Z", + "status": 4, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 492246, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", From 4433827cbd17e99e1230a4c3a3576d19322cb4f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 3 Oct 2021 20:53:56 +0200 Subject: [PATCH 070/124] fixed create belts sometimes not displaying their items (Credit Iris-6) #3367 --- defaultconfigs/entity_culling-client.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaultconfigs/entity_culling-client.toml b/defaultconfigs/entity_culling-client.toml index 91c5615bfe..84d3236f29 100644 --- a/defaultconfigs/entity_culling-client.toml +++ b/defaultconfigs/entity_culling-client.toml @@ -18,7 +18,7 @@ skipHiddenTileEntityRendering = true #Range: 0.0 ~ 128.0 skipHiddenTileEntityRenderingSize = 128.0 #Tile entities which will always be rendered. (Format: 'modid:tile_entity_name') -skipHiddenTileEntityRenderingBlacklist = ["travel_anchors:travel_anchor"] +skipHiddenTileEntityRenderingBlacklist = ["travel_anchors:travel_anchor", "create:belt"] #No comment [optifineShaderOptions] From 4a76895bb042f3eee3bfb48747be7ee9987c6b73 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 15:45:41 -0400 Subject: [PATCH 071/124] Attempting to add subtypes... Attempting to add subtypes... --- .../item_modifiers/jei_add_items.js | 6 ++++-- .../item_modifiers/jei_add_subtypes.js | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 kubejs/client_scripts/item_modifiers/jei_add_subtypes.js diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index 77fa76e43e..2463449172 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -26,7 +26,8 @@ onEvent('jei.add.items', (event) => { 'sword/blade:arrested': 0, 'sword/decorative_pommel_material': 'decorative_pommel/oak' }), - // Thermal Augments - See Notes Below + // Thermal Augments - See Notes Below for NBT data. + // When making new augments, register them through KubeJS and include the word 'augment' in the name somewhere. Otherwise, update 'jei_add_subtypes' // Machine Speed Upgrades Item.of( 'kubejs:machine_speed_augment_mk2', @@ -56,7 +57,8 @@ onEvent('jei.add.items', (event) => { // Dynamo Efficiency Upgrades Item.of('kubejs:dynamo_fuel_augment_mk2', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.43d}}'), Item.of('kubejs:dynamo_fuel_augment_mk3', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.859d}}'), - Item.of('kubejs:dynamo_fuel_augment_mk4', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}') + Item.of('kubejs:dynamo_fuel_augment_mk4', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}'), + Item.of('minecraft:stone_sword', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}') ]; items.forEach((item) => event.add(item)); diff --git a/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js b/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js new file mode 100644 index 0000000000..d4b3bb8cde --- /dev/null +++ b/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js @@ -0,0 +1,18 @@ +onEvent('jei.subtypes', (event) => { + const augmentItems = [ + 'kubejs:machine_speed_augment_mk2', + 'kubejs:machine_speed_augment_mk3', + 'kubejs:machine_speed_augment_mk4', + 'kubejs:dynamo_output_augment_mk2', + 'kubejs:dynamo_output_augment_mk3', + 'kubejs:dynamo_output_augment_mk4', + 'kubejs:dynamo_fuel_augment_mk2', + 'kubejs:dynamo_fuel_augment_mk3', + 'kubejs:dynamo_fuel_augment_mk4', + 'minecraft:stone_sword' + ]; + + augmentItems.forEach((augmentItem) => { + event.useNBTKey(augmentItem, 'AugmentData'); + }); +}); From 38d30be7c4afe5c68623e0be361b137c8caebfc3 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 16:56:53 -0400 Subject: [PATCH 072/124] re-show items need a way to hide only things that don't have nbt... --- kubejs/client_scripts/constants.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index 38f4535e7c..e05cf6e49e 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -184,18 +184,6 @@ const itemsToHide = [ 'immersiveengineering:dust_wood', 'immersiveengineering:coal_coke', - 'kubejs:machine_speed_augment_mk2', - 'kubejs:machine_speed_augment_mk3', - 'kubejs:machine_speed_augment_mk4', - - 'kubejs:dynamo_output_augment_mk2', - 'kubejs:dynamo_output_augment_mk3', - 'kubejs:dynamo_output_augment_mk4', - - 'kubejs:dynamo_fuel_augment_mk2', - 'kubejs:dynamo_fuel_augment_mk3', - 'kubejs:dynamo_fuel_augment_mk4', - 'mctb:cherry_crafting_table', 'mctb:dead_crafting_table', 'mctb:fir_crafting_table', From c017a0fdb93aa8336b7482af5d8e63fbeb6b3a56 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 17:02:18 -0400 Subject: [PATCH 073/124] remove sword augment! --- kubejs/client_scripts/item_modifiers/jei_add_items.js | 3 +-- kubejs/client_scripts/item_modifiers/jei_add_subtypes.js | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index 2463449172..a89d48e838 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -57,8 +57,7 @@ onEvent('jei.add.items', (event) => { // Dynamo Efficiency Upgrades Item.of('kubejs:dynamo_fuel_augment_mk2', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.43d}}'), Item.of('kubejs:dynamo_fuel_augment_mk3', '{AugmentData:{Type:"Dynamo",DynamoEnergy:1.859d}}'), - Item.of('kubejs:dynamo_fuel_augment_mk4', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}'), - Item.of('minecraft:stone_sword', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}') + Item.of('kubejs:dynamo_fuel_augment_mk4', '{AugmentData:{Type:"Dynamo",DynamoEnergy:2.4167d}}') ]; items.forEach((item) => event.add(item)); diff --git a/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js b/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js index d4b3bb8cde..30a44b764f 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_subtypes.js @@ -1,5 +1,7 @@ onEvent('jei.subtypes', (event) => { + /// regex to be supported next version. Can remove direct item calls then and just rely on the regex. const augmentItems = [ + /kubejs:\w+augment/, 'kubejs:machine_speed_augment_mk2', 'kubejs:machine_speed_augment_mk3', 'kubejs:machine_speed_augment_mk4', @@ -8,8 +10,7 @@ onEvent('jei.subtypes', (event) => { 'kubejs:dynamo_output_augment_mk4', 'kubejs:dynamo_fuel_augment_mk2', 'kubejs:dynamo_fuel_augment_mk3', - 'kubejs:dynamo_fuel_augment_mk4', - 'minecraft:stone_sword' + 'kubejs:dynamo_fuel_augment_mk4' ]; augmentItems.forEach((augmentItem) => { From 9b7ef702c3c12f1cf66d3131b55281f43c46b569 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 21:04:13 -0400 Subject: [PATCH 074/124] Update jei_add_items.js --- .../item_modifiers/jei_add_items.js | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/kubejs/client_scripts/item_modifiers/jei_add_items.js b/kubejs/client_scripts/item_modifiers/jei_add_items.js index a89d48e838..d3820dc330 100644 --- a/kubejs/client_scripts/item_modifiers/jei_add_items.js +++ b/kubejs/client_scripts/item_modifiers/jei_add_items.js @@ -29,18 +29,39 @@ onEvent('jei.add.items', (event) => { // Thermal Augments - See Notes Below for NBT data. // When making new augments, register them through KubeJS and include the word 'augment' in the name somewhere. Otherwise, update 'jei_add_subtypes' // Machine Speed Upgrades + // Test Set 1 - moderate FE/t + + // 17.9 ticks/5720 FE per craft Item.of( 'kubejs:machine_speed_augment_mk2', '{AugmentData:{Type:"Machine",MachineEnergy:1.43d,MachinePower:3.0d}}' ), + // 9.3 ticks/7436 FE per craft Item.of( 'kubejs:machine_speed_augment_mk3', '{AugmentData:{Type:"Machine",MachineEnergy:1.859d,MachinePower:9.0d}}' ), + // 4.1 ticks/9666 FE per craft Item.of( 'kubejs:machine_speed_augment_mk4', '{AugmentData:{Type:"Machine",MachineEnergy:2.4167d,MachinePower:27.0d}}' ), + // Test Set 2 - considerably more FE/t + // 16.5 ticks/13200 FE per craft + Item.of( + 'kubejs:machine_speed_augment_mk2', + '{AugmentData:{Type:"Machine",MachineEnergy:3.3d,MachinePower:9.0d}}' + ), + // 6.0 ticks/39600 FE per craft + Item.of( + 'kubejs:machine_speed_augment_mk3', + '{AugmentData:{Type:"Machine",MachineEnergy:9.9d,MachinePower:91.0d}}' + ), + // 2 ticks/118800 FE per craft + Item.of( + 'kubejs:machine_speed_augment_mk4', + '{AugmentData:{Type:"Machine",MachineEnergy:29.7d,MachinePower:729.0d}}' + ), // Dynamo Speed Upgrades Item.of( 'kubejs:dynamo_output_augment_mk2', From efd94cddcbb2400fcad9ebc5b79e277cb743daaf Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 3 Oct 2021 21:30:13 -0400 Subject: [PATCH 075/124] refactor thermal fuel scripts refactor thermal fuel scripts --- .../recipetypes/thermal/dynamo/compression.js | 99 ++++--------------- .../recipetypes/thermal/dynamo/lapidary.js | 72 +++----------- .../recipetypes/thermal/dynamo/magmatic.js | 22 ++--- .../recipetypes/thermal/dynamo/numismatic.js | 87 ++++------------ 4 files changed, 60 insertions(+), 220 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/compression.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/compression.js index 9baeaa8afd..5810964c44 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/compression.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/compression.js @@ -3,89 +3,28 @@ onEvent('recipes', (event) => { var multiplier = 10; var data = { recipes: [ - { - fluid: 'pneumaticcraft:diesel', - energy: 1000000 - }, - { - fluid: 'immersivepetroleum:diesel', - energy: 1000000 - }, - { - fluid: 'pneumaticcraft:biodiesel', - energy: 1000000 - }, - { - fluid: 'immersiveengineering:biodiesel', - energy: 1000000 - }, - { - fluid: 'pneumaticcraft:kerosene', - energy: 1100000 - }, - { - fluid: 'pneumaticcraft:gasoline', - energy: 1500000 - }, - { - fluid: 'immersivepetroleum:gasoline', - energy: 1500000 - }, - { - fluid: 'pneumaticcraft:lpg', - energy: 1800000 - }, - { - fluid: 'mekanism:ethene', - energy: 1800000 - }, - { - fluid: 'pneumaticcraft:ethanol', - energy: 400000 - }, - { - fluid: 'mekanismgenerators:bioethanol', - energy: 400000 - }, - { - fluid: 'immersiveengineering:ethanol', - energy: 400000 - }, - { - fluid: 'industrialforegoing:biofuel', - energy: 100000 - }, - { - fluid: 'thermal:tree_oil', - energy: 100000 - }, - { - fluid: 'thermal:creosote', - energy: 20000 - }, - { - fluid: 'immersiveengineering:creosote', - energy: 20000 - }, - { - fluid: 'thermal:refined_fuel', - energy: 1500000 - }, - { - fluid: 'resourcefulbees:rocket_honey', - energy: 1500000 - } + { input: 'pneumaticcraft:diesel', energy: 1000000 }, + { input: 'immersivepetroleum:diesel', energy: 1000000 }, + { input: 'pneumaticcraft:biodiesel', energy: 1000000 }, + { input: 'immersiveengineering:biodiesel', energy: 1000000 }, + { input: 'pneumaticcraft:kerosene', energy: 1100000 }, + { input: 'pneumaticcraft:gasoline', energy: 1500000 }, + { input: 'immersivepetroleum:gasoline', energy: 1500000 }, + { input: 'pneumaticcraft:lpg', energy: 1800000 }, + { input: 'mekanism:ethene', energy: 1800000 }, + { input: 'pneumaticcraft:ethanol', energy: 400000 }, + { input: 'mekanismgenerators:bioethanol', energy: 400000 }, + { input: 'immersiveengineering:ethanol', energy: 400000 }, + { input: 'industrialforegoing:biofuel', energy: 100000 }, + { input: 'thermal:tree_oil', energy: 100000 }, + { input: 'thermal:creosote', energy: 20000 }, + { input: 'immersiveengineering:creosote', energy: 20000 }, + { input: 'thermal:refined_fuel', energy: 1500000 }, + { input: 'resourcefulbees:rocket_honey', energy: 1500000 } ] }; data.recipes.forEach((recipe) => { //event.recipes.thermal.compression_fuel(recipe.fluid).energy(recipe.energy * multiplier); - event.recipes.thermal.compression_fuel({ - type: 'thermal.compression_fuel', - ingredient: { - fluid: recipe.fluid, - amount: 1000 - }, - energy: recipe.energy * multiplier - }); + event.recipes.thermal.compression_fuel(Fluid.of(recipe.input, 1000)).energy(recipe.energy * multiplier); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/lapidary.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/lapidary.js index 9854039d21..6b07f817a8 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/lapidary.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/lapidary.js @@ -3,66 +3,22 @@ onEvent('recipes', (event) => { var multiplier = 40; var data = { recipes: [ - { - gem: 'forge:gems/lapis', - energy: 40000 - }, - { - gem: 'forge:gems/prismarine', - energy: 40000 - }, - { - gem: 'forge:gems/quartz', - energy: 40000 - }, - { - gem: 'forge:gems/diamond', - energy: 500000 - }, - { - gem: 'forge:gems/emerald', - energy: 125000 - }, - { - gem: 'forge:gems/mana_diamond', - energy: 625000 - }, - { - gem: 'forge:gems/dragonstone', - energy: 750000 - }, - { - gem: 'forge:gems/mana', - energy: 10000 - }, - { - gem: 'forge:gems/fluorite', - energy: 40000 - }, - { - gem: 'forge:gems/dimensional', - energy: 700000 - }, - { - gem: 'forge:gems/apatite', - energy: 40000 - }, - { - gem: 'forge:gems/aquarmarine', - energy: 10000 - }, - { - gem: 'forge:gems/amber', - energy: 160000 - } + { input: '#forge:gems/lapis', energy: 40000 }, + { input: '#forge:gems/prismarine', energy: 40000 }, + { input: '#forge:gems/quartz', energy: 40000 }, + { input: '#forge:gems/diamond', energy: 500000 }, + { input: '#forge:gems/emerald', energy: 125000 }, + { input: '#forge:gems/mana_diamond', energy: 625000 }, + { input: '#forge:gems/dragonstone', energy: 750000 }, + { input: '#forge:gems/mana', energy: 10000 }, + { input: '#forge:gems/fluorite', energy: 40000 }, + { input: '#forge:gems/dimensional', energy: 700000 }, + { input: '#forge:gems/apatite', energy: 40000 }, + { input: '#forge:gems/aquarmarine', energy: 10000 }, + { input: '#forge:gems/amber', energy: 160000 } ] }; data.recipes.forEach((recipe) => { - event.recipes.thermal.lapidary_fuel({ - ingredient: { - tag: recipe.gem - }, - energy: recipe.energy * multiplier - }); + event.recipes.thermal.lapidary_fuel(recipe.input).energy(recipe.energy * multiplier); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js index 9e9152ffa9..43f7d5804e 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/magmatic.js @@ -1,18 +1,12 @@ onEvent('recipes', (event) => { var multiplier = 10; - var data = { - recipes: [ - { - fluid: 'tconstruct:blazing_blood', - energy: 1000000 - } - ] - }; - data.recipes.forEach((recipe) => { - event.recipes.thermal.magmatic_fuel({ - type: 'thermal.magmatic_fuel', - ingredient: { fluid: recipe.fluid, amount: 1000 }, - energy: recipe.energy * multiplier - }); + const recipes = [ + { + input: 'tconstruct:blazing_blood', + energy: 1000000 + } + ]; + recipes.forEach((recipe) => { + event.recipes.thermal.magmatic_fuel(Fluid.of(recipe.input, 1000)).energy(recipe.energy * multiplier); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/numismatic.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/numismatic.js index 03d24e31f8..ea0fd2b9b8 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/numismatic.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/thermal/dynamo/numismatic.js @@ -1,73 +1,24 @@ onEvent('recipes', (event) => { event.remove({ type: 'thermal:numismatic_fuel' }); var multiplier = 40; - var data = { - recipes: [ - { - coin: 'forge:coins/gold', - energy: 64000 - }, - { - coin: 'forge:coins/invar', - energy: 48000 - }, - { - coin: 'forge:coins/iron', - energy: 32000 - }, - { - coin: 'forge:coins/enderium', - energy: 160000 - }, - { - coin: 'forge:coins/lead', - energy: 48000 - }, - { - coin: 'forge:coins/lumium', - energy: 80000 - }, - { - coin: 'forge:coins/nickel', - energy: 64000 - }, - { - coin: 'forge:coins/signalum', - energy: 80000 - }, - { - coin: 'forge:coins/silver', - energy: 48000 - }, - { - coin: 'forge:coins/tin', - energy: 32000 - }, - { - coin: 'forge:coins/bronze', - energy: 40000 - }, - { - coin: 'forge:coins/constantan', - energy: 56000 - }, - { - coin: 'forge:coins/copper', - energy: 32000 - }, - { - coin: 'forge:coins/electrum', - energy: 60000 - } - ] - }; - data.recipes.forEach((recipe) => { - event.recipes.thermal.numismatic_fuel({ - type: 'thermal.numismatic_fuel', - ingredient: { - tag: recipe.coin - }, - energy: recipe.energy * multiplier - }); + + const recipes = [ + { input: '#forge:coins/gold', energy: 64000 }, + { input: '#forge:coins/invar', energy: 48000 }, + { input: '#forge:coins/iron', energy: 32000 }, + { input: '#forge:coins/enderium', energy: 160000 }, + { input: '#forge:coins/lead', energy: 48000 }, + { input: '#forge:coins/lumium', energy: 80000 }, + { input: '#forge:coins/nickel', energy: 64000 }, + { input: '#forge:coins/signalum', energy: 80000 }, + { input: '#forge:coins/silver', energy: 48000 }, + { input: '#forge:coins/tin', energy: 32000 }, + { input: '#forge:coins/bronze', energy: 40000 }, + { input: '#forge:coins/constantan', energy: 56000 }, + { input: '#forge:coins/copper', energy: 32000 }, + { input: '#forge:coins/electrum', energy: 60000 } + ]; + recipes.forEach((recipe) => { + event.recipes.thermal.numismatic_fuel(recipe.input).energy(recipe.energy * multiplier); }); }); From d2ad8de22eea07953a029be3c4716c0e5f202bd3 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Mon, 4 Oct 2021 12:41:41 -0400 Subject: [PATCH 076/124] Remove ender slime from tinkers tree fluids Since both the purple and green tree use the same logs, this script was resulting in end slime from both trees. Defaulting to regular slime instead. Moved ender slime over to the pythandron tree instead. --- kubejs/server_scripts/enigmatica/kubejs/constants/trees.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js b/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js index 1d5d82bc2a..80d8b5882f 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js +++ b/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js @@ -638,7 +638,7 @@ const treeRegistry = [ trunk: 'betterendforge:pythadendron_log', leaf: 'betterendforge:pythadendron_leaves', substrate: 'chorus_nylium', - sap: 'integrateddynamics:liquid_chorus', + sap: 'tconstruct:ender_slime', rate: { living: 25, dead: 4 } }, { @@ -839,7 +839,7 @@ const treeRegistry = [ leaf: 'tconstruct:ender_slime_leaves', fruit: 'tconstruct:ender_slime_ball', substrate: 'slimy_dirt', - sap: 'tconstruct:ender_slime', + sap: 'tconstruct:earth_slime', rate: { living: 25, dead: 4 } }, { From 6fe51330ec6bad64518600c9b267d24ff04cfc22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 4 Oct 2021 22:44:47 +0200 Subject: [PATCH 077/124] tried fixing #3373 no luck yet --- config/invtweaks-client.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/invtweaks-client.toml b/config/invtweaks-client.toml index afe9282734..26312afb83 100644 --- a/config/invtweaks-client.toml +++ b/config/invtweaks-client.toml @@ -88,6 +88,10 @@ containerClass = "mcjty.rftoolsutility.modules.crafter.blocks.CrafterContainer" sortRange = "" + [[sorting.containerOverrides]] + containerClass = "link.infra.demagnetize.blocks.DemagnetizerGui" + sortRange = "" + #Categor(y/ies) for sorting # #name: the name of the category From 63699b871ad1dfdcbbc3d666f781883f51bb9b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 4 Oct 2021 22:45:28 +0200 Subject: [PATCH 078/124] blocked adv. demagnetizer from having quark buttons, not that it does atm :D --- config/quark-common.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/quark-common.toml b/config/quark-common.toml index 5b7c1b5e1f..ceac8e2f3e 100644 --- a/config/quark-common.toml +++ b/config/quark-common.toml @@ -7,14 +7,14 @@ "Use Fast Worldgen" = false "Enable 'q' Button" = false #A list of screens that don't play well with quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. - "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel", "team.chisel.client.gui.GuiHitechChisel", "me.desht.modularrouters.client.gui.filter.GuiBulkItemFilter"] + "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel", "team.chisel.client.gui.GuiHitechChisel", "me.desht.modularrouters.client.gui.filter.GuiBulkItemFilter", "link.infra.demagnetize.blocks.DemagnetizerGui"] "Use Anti Overlap" = true #Enables quark network profiling features. Do not enable this unless requested to. "Enable Network Profiling" = false #Quark replaces the Piston logic to allow for its piston features to work. If you're having troubles, try turning this off. "Use Piston Logic Replacement" = true #Set to true if you need to find the class name for a screen that's causing problems - "Print Screen Classnames" = true + "Print Screen Classnames" = false #Blocks that Quark should treat as Shulker Boxes. "Shulker Boxes" = ["minecraft:white_shulker_box", "minecraft:orange_shulker_box", "minecraft:magenta_shulker_box", "minecraft:light_blue_shulker_box", "minecraft:yellow_shulker_box", "minecraft:lime_shulker_box", "minecraft:pink_shulker_box", "minecraft:gray_shulker_box", "minecraft:light_gray_shulker_box", "minecraft:cyan_shulker_box", "minecraft:purple_shulker_box", "minecraft:blue_shulker_box", "minecraft:brown_shulker_box", "minecraft:green_shulker_box", "minecraft:red_shulker_box", "minecraft:black_shulker_box"] #Set to true to enable a system that debugs quark's worldgen features. This should ONLY be used if you're asked to by a dev. From ac76e9277139a0f60f438199bde8a7760f810bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 5 Oct 2021 19:21:48 +0200 Subject: [PATCH 079/124] fixes #3207 --- config/commoncapabilities-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/commoncapabilities-common.toml b/config/commoncapabilities-common.toml index 94d63a34bd..19a7abaa3c 100644 --- a/config/commoncapabilities-common.toml +++ b/config/commoncapabilities-common.toml @@ -15,5 +15,5 @@ [machine.general] #The NBT Paths that should be filtered away when checking equality. - ignoreNbtPathsForEqualityFilters = ["$.ForgeCaps[\"astralsorcery:cap_item_amulet_holder\"]", "$.binding"] + ignoreNbtPathsForEqualityFilters = ["$.ForgeCaps[\"astralsorcery:cap_item_amulet_holder\"]", "$.binding", "$.energy"] From 1e27f504698d9c7dfc4669022d83da878f01a645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 5 Oct 2021 21:10:07 +0200 Subject: [PATCH 080/124] add sushigocrafting avokado leaves to `minecraft:leaves` tag, fixes #3376 --- .../base/tags/items/minecraft/leaves.js | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/minecraft/leaves.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/minecraft/leaves.js index 6412194bac..bc4ce3e1b7 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/minecraft/leaves.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/minecraft/leaves.js @@ -1,19 +1,19 @@ onEvent('item.tags', (event) => { - event - .get('minecraft:leaves/coniferous') - .add([ - 'atmospheric:aspen_leaves', - 'byg:brown_zelkova_leaves', - 'byg:aspen_leaves', - 'byg:fir_leaves', - 'byg:redwood_leaves', - 'byg:zelkova_leaves', - 'byg:araucaria_leaves', - 'minecraft:spruce_leaves', - 'byg:blue_spruce_leaves', - 'byg:orange_spruce_leaves', - 'byg:red_spruce_leaves', - 'byg:yellow_spruce_leaves', - 'byg:pine_leaves' - ]); + event.add('minecraft:leaves/coniferous', [ + 'atmospheric:aspen_leaves', + 'byg:brown_zelkova_leaves', + 'byg:aspen_leaves', + 'byg:fir_leaves', + 'byg:redwood_leaves', + 'byg:zelkova_leaves', + 'byg:araucaria_leaves', + 'minecraft:spruce_leaves', + 'byg:blue_spruce_leaves', + 'byg:orange_spruce_leaves', + 'byg:red_spruce_leaves', + 'byg:yellow_spruce_leaves', + 'byg:pine_leaves' + ]); + + event.add('minecraft:leaves', ['sushigocrafting:avocado_leaves']); }); From 3890d63f9a9c002350ab7d8f66f5de6f98cdba92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 5 Oct 2021 21:10:20 +0200 Subject: [PATCH 081/124] actually fix #3373 --- config/invtweaks-client.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/invtweaks-client.toml b/config/invtweaks-client.toml index 26312afb83..4d98e6fcc8 100644 --- a/config/invtweaks-client.toml +++ b/config/invtweaks-client.toml @@ -89,7 +89,7 @@ sortRange = "" [[sorting.containerOverrides]] - containerClass = "link.infra.demagnetize.blocks.DemagnetizerGui" + containerClass = "link.infra.demagnetize.blocks.DemagnetizerContainer" sortRange = "" #Categor(y/ies) for sorting From dbf0d0567f9ff34a61a6f272ba9923db88ee32b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 5 Oct 2021 21:10:35 +0200 Subject: [PATCH 082/124] future proofing for the adv. demagnetizer not voiding/duping --- config/quark-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/quark-common.toml b/config/quark-common.toml index ceac8e2f3e..cb7d78ba28 100644 --- a/config/quark-common.toml +++ b/config/quark-common.toml @@ -7,7 +7,7 @@ "Use Fast Worldgen" = false "Enable 'q' Button" = false #A list of screens that don't play well with quark's buttons. Use "Print Screen Classnames" to find the names of any others you'd want to add. - "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel", "team.chisel.client.gui.GuiHitechChisel", "me.desht.modularrouters.client.gui.filter.GuiBulkItemFilter", "link.infra.demagnetize.blocks.DemagnetizerGui"] + "Ignored Screens" = ["com.tfar.craftingstation.client.CraftingStationScreen", "com.refinedmods.refinedstorage.screen.grid.GridScreen", "appeng.client.gui.implementations.CraftingTermScreen", "appeng.client.gui.implementations.PatternTermScreen", "blusunrize.immersiveengineering.client.gui.CraftingTableScreen", "wile.engineersdecor.blocks.EdCraftingTable$CraftingTableGui", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsRequester", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsStorage", "me.desht.pneumaticcraft.client.gui.semiblock.GuiLogisticsProvider", "me.desht.modularrouters.client.gui.filter.GuiFilterScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.MechanicalCentrifugeScreen", "com.resourcefulbees.resourcefulbees.client.gui.screen.CentrifugeMultiblockScreen", "com.refinedmods.refinedstorage.screen.FilterScreen", "slimeknights.tconstruct.tables.client.inventory.table.CraftingStationScreen", "slimeknights.tconstruct.tables.client.inventory.TinkerChestScreen", "slimeknights.tconstruct.smeltery.client.inventory.HeatingStructureScreen", "team.chisel.client.gui.GuiChisel", "team.chisel.client.gui.GuiHitechChisel", "me.desht.modularrouters.client.gui.filter.GuiBulkItemFilter", "link.infra.demagnetize.blocks.DemagnetizerContainer"] "Use Anti Overlap" = true #Enables quark network profiling features. Do not enable this unless requested to. "Enable Network Profiling" = false From 32c84b46d8541424e7c912f22dc4fef1db72c543 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Tue, 5 Oct 2021 20:27:50 -0400 Subject: [PATCH 083/124] add missing glowshrooms to vanilla nether shrooms add missing glowshrooms to vanilla nether shrooms --- kubejs/server_scripts/enigmatica/kubejs/constants/trees.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js b/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js index 80d8b5882f..c5aef80426 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js +++ b/kubejs/server_scripts/enigmatica/kubejs/constants/trees.js @@ -1076,6 +1076,7 @@ const treeRegistry = [ sapling: 'minecraft:crimson_fungus', trunk: 'minecraft:crimson_stem', leaf: 'minecraft:nether_wart_block', + extraDecoration: 'minecraft:shroomlight', substrate: 'crimson_nylium' }, { @@ -1088,6 +1089,7 @@ const treeRegistry = [ sapling: 'minecraft:warped_fungus', trunk: 'minecraft:warped_stem', leaf: 'minecraft:warped_wart_block', + extraDecoration: 'minecraft:shroomlight', substrate: 'warped_nylium' }, { From 0bae1ceddd47b123d1a7e933c769187f5c5b39bd Mon Sep 17 00:00:00 2001 From: theboo Date: Tue, 5 Oct 2021 18:41:48 -0700 Subject: [PATCH 084/124] re-disabled various supplementaries items --- config/supplementaries-registry.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/supplementaries-registry.toml b/config/supplementaries-registry.toml index 7ce9361cdc..b3a7f93286 100644 --- a/config/supplementaries-registry.toml +++ b/config/supplementaries-registry.toml @@ -18,7 +18,7 @@ [initialization.blocks] clock_block = true speaker_block = true - sack = true + sack = false #WIP laser_block = false bellows = true @@ -38,9 +38,9 @@ checker_block = true slingshot = true wattle_and_daub = true - stone_lamp = true + stone_lamp = false cog_block = true - crank = true + crank = false copper_lantern = true pancake = true statue = true @@ -59,8 +59,8 @@ #WIP present = true sign_post = true - pedestal = true - blackboard = true + pedestal = false + blackboard = false netherite_door = true candle_holder = true flint_block = true @@ -74,7 +74,7 @@ planter = true wind_vane = true item_shelf = true - turn_table = true + turn_table = false faucet = true daub = true blackstone_lamp = true From cfa1e2a6a6f70db406a83fbe53f09e408f4fa7b6 Mon Sep 17 00:00:00 2001 From: theboo Date: Tue, 5 Oct 2021 18:43:01 -0700 Subject: [PATCH 085/124] un-hid supplementaries items we have enabled --- kubejs/client_scripts/constants.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index e05cf6e49e..336c67b068 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -264,10 +264,7 @@ const itemsToHide = [ 'supplementaries:pedestal', 'supplementaries:crank', - 'supplementaries:cog_block', - 'supplementaries:redstone_illuminator', 'supplementaries:turn_table', - 'supplementaries:firefly_jar', 'supplementaries:stone_lamp', 'supplementaries:sack', 'supplementaries:blackboard', From 4c6585b6c03311031ed9208a01b064e790f24ece Mon Sep 17 00:00:00 2001 From: theboo Date: Tue, 5 Oct 2021 19:06:09 -0700 Subject: [PATCH 086/124] removed unneeded blocks from valid apiary tag const --- .../enigmatica/kubejs/constants/resourcefulbees.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js b/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js index d16cf5091e..1638d9d671 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js +++ b/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js @@ -3,22 +3,11 @@ // Items added here will get the 'valid_apiary' tag, and be usable as Apiary multiblock walls. // This is in addition to all blocks that have collision. const validApiaryBlocks = [ - 'botania:bifrost_pane', - 'botania:bifrost_perm', - 'botania:elf_glass_pane', - 'botania:mana_glass_pane', - 'botania:elf_glass', - 'botania:mana_glass', - 'glassential:glass_dark', 'glassential:glass_dark_ethereal', 'glassential:glass_ethereal', 'glassential:glass_light', 'glassential:glass_redstone', - - /mcwwindows:/, - - /elevatorid/ ]; const honeyVarieties = [ From a563dd26cfd8d6368ae75650e6a142a146139e0d Mon Sep 17 00:00:00 2001 From: theboo Date: Tue, 5 Oct 2021 19:07:10 -0700 Subject: [PATCH 087/124] removed removeAll from script --- .../kubejs/base/tags/blocks/resourcefulbees/valid_apiary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/blocks/resourcefulbees/valid_apiary.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/blocks/resourcefulbees/valid_apiary.js index 6cad468d27..0d17af8746 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/blocks/resourcefulbees/valid_apiary.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/blocks/resourcefulbees/valid_apiary.js @@ -1,3 +1,3 @@ onEvent('block.tags', (event) => { - event.get('resourcefulbees:valid_apiary').removeAll().add(validApiaryBlocks); + event.get('resourcefulbees:valid_apiary').add(validApiaryBlocks); }); From b7577400ebd8d69db66800ecf29bf1fac6f3d51c Mon Sep 17 00:00:00 2001 From: theboo Date: Tue, 5 Oct 2021 19:07:49 -0700 Subject: [PATCH 088/124] removed removeAll from script --- .../kubejs/base/tags/items/resourcefulbees/valid_apiary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/resourcefulbees/valid_apiary.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/resourcefulbees/valid_apiary.js index c686b1e64b..a3d8b4d364 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/resourcefulbees/valid_apiary.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/resourcefulbees/valid_apiary.js @@ -1,3 +1,3 @@ onEvent('item.tags', (event) => { - event.get('resourcefulbees:valid_apiary').removeAll().add(validApiaryBlocks); + event.get('resourcefulbees:valid_apiary').add(validApiaryBlocks); }); From 86104a3386f90957c6577bf47a468002c4c4cac3 Mon Sep 17 00:00:00 2001 From: theboo Date: Tue, 5 Oct 2021 19:12:35 -0700 Subject: [PATCH 089/124] left a comma! --- .../enigmatica/kubejs/constants/resourcefulbees.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js b/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js index 1638d9d671..b832bbeb6b 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js +++ b/kubejs/server_scripts/enigmatica/kubejs/constants/resourcefulbees.js @@ -7,7 +7,7 @@ const validApiaryBlocks = [ 'glassential:glass_dark_ethereal', 'glassential:glass_ethereal', 'glassential:glass_light', - 'glassential:glass_redstone', + 'glassential:glass_redstone' ]; const honeyVarieties = [ From ab6a50599f3c64098917ecefcd575f92c826a734 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Tue, 5 Oct 2021 23:21:29 -0400 Subject: [PATCH 090/124] Fix firework descriptions Totally didn't invert those. Nope. >.< --- kubejs/client_scripts/item_modifiers/jei_descriptions.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kubejs/client_scripts/item_modifiers/jei_descriptions.js b/kubejs/client_scripts/item_modifiers/jei_descriptions.js index f9caf0a02e..442dbe83c3 100644 --- a/kubejs/client_scripts/item_modifiers/jei_descriptions.js +++ b/kubejs/client_scripts/item_modifiers/jei_descriptions.js @@ -245,22 +245,22 @@ onEvent('jei.information', (event) => { description: [`Drops from Wraiths in the sandy wastes of Atum.`] }, { - items: ['minecraft:firework_star'], + items: ['minecraft:firework_rocket'], description: [`Shapeless Crafting: One paper and at least one gunpowder.`] }, { - items: ['minecraft:firework_star'], + items: ['minecraft:firework_rocket'], description: [ `Adding more gunpowder increases the duration of the rocket.`, `Up to three gunpowder or up to seven firework stars can be added.` ] }, { - items: ['minecraft:firework_rocket'], + items: ['minecraft:firework_star'], description: [`Shapeless Crafting: One gunpowder and at least one dye.`] }, { - items: ['minecraft:firework_rocket'], + items: ['minecraft:firework_star'], description: [ `Up to eight dyes can be added.`, `One head, gold nugget, feather, or fire charge can be added to set a shape.`, From db728f0b8763c1b364fa26b81a140deb7cbdf5bb Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Wed, 6 Oct 2021 11:50:16 -0400 Subject: [PATCH 091/124] [expert] fix compressors dropping compressed bricks in normal mode [expert] fix compressors dropping compressed bricks in normal mode --- .../enigmatica/kubejs/expert/block/loot_tables.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/block/loot_tables.js b/kubejs/server_scripts/enigmatica/kubejs/expert/block/loot_tables.js index 76fcbed385..83f58f844b 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/block/loot_tables.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/block/loot_tables.js @@ -1,4 +1,7 @@ onEvent('block.loot_tables', (event) => { + if (global.isExpertMode == false) { + return; + } const loot_tables = [ { target: ['pneumaticcraft:air_compressor', 'pneumaticcraft:advanced_air_compressor'], From 3c11586114671664f444c2426529f1a7b5c4ce4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Wed, 6 Oct 2021 18:57:09 +0200 Subject: [PATCH 092/124] #1438 --- .../loot_tables/blocks/field_projector.json | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 kubejs/data/compactcrafting/loot_tables/blocks/field_projector.json diff --git a/kubejs/data/compactcrafting/loot_tables/blocks/field_projector.json b/kubejs/data/compactcrafting/loot_tables/blocks/field_projector.json deleted file mode 100644 index 85c1801268..0000000000 --- a/kubejs/data/compactcrafting/loot_tables/blocks/field_projector.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "name": "compactcrafting:field_projector", - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "compactcrafting:field_projector" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file From 597edfc4264daddf26bfad17e74533b83d117bc6 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 7 Oct 2021 06:56:54 -0400 Subject: [PATCH 093/124] Fix oil in neromantic prime. Fix recipe loop for expert mana spreader Fix oil in neromantic prime. Fix recipe loop for expert mana spreader --- defaultconfigs/astralsorcery.toml | 2 +- .../recipetypes/astralsorcery/altar/altar_0_luminous.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/defaultconfigs/astralsorcery.toml b/defaultconfigs/astralsorcery.toml index d9372ff8d0..271098b377 100644 --- a/defaultconfigs/astralsorcery.toml +++ b/defaultconfigs/astralsorcery.toml @@ -675,7 +675,7 @@ [registries.fluid_rarities] #Defines fluid-rarities and amounts for the evershifting fountain's neromantic prime. The lower the relative rarity, the more rare the fluid. Format: ;;; - fluid_rarities = ["minecraft:water;2147483647;2147483647;14000", "minecraft:lava;4000000;1000000;7500","immersivepetroleum:oil;2500000;1000000;5000","mekanismgenerators:flowing_fusion_fuel;1000000;500000;100","industrialforegoing:sewage_fluid;10000000;5000000;250","bloodmagic:life_essence_fluid_flowing;5000000;2500000;250","industrialforegoing:sludge_fluid;1000000;1000000;200","immersivepetroleum:napalm;500000;500000;100","industrialforegoing:essence_fluid;500000;100000;300", "mekanism:flowing_heavy_water;10000000;2000000;2500"] + fluid_rarities = ["minecraft:water;2147483647;2147483647;14000", "minecraft:lava;4000000;1000000;7500","pneumaticcraft:oil;2500000;1000000;5000","mekanismgenerators:flowing_fusion_fuel;1000000;500000;100","industrialforegoing:sewage_fluid;10000000;5000000;250","bloodmagic:life_essence_fluid_flowing;5000000;2500000;250","industrialforegoing:sludge_fluid;1000000;1000000;200","immersivepetroleum:napalm;500000;500000;100","industrialforegoing:essence_fluid;500000;100000;300", "mekanism:flowing_heavy_water;10000000;2000000;2500"] [registries.technical_entities] #Defines entities whose purpose is mostly technical and less gameplay impactful. Those will be excluded from effects that manipulate entities. Add entities by their entity type name.Format: diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js index 73ab9b6e0f..59515147fd 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/astralsorcery/altar/altar_0_luminous.js @@ -12,7 +12,7 @@ onEvent('recipes', (event) => { } const id_prefix = 'enigmatica:expert/astralsorcery/altar/'; const recipes = [ - /// Luminous Crafting Table REcipes + /// Luminous Crafting Table Recipes { output: Item.of('astralsorcery:well'), pattern: ['_____', '_B_B_', '_CDC_', '_ABA_', '_____'], @@ -126,7 +126,7 @@ onEvent('recipes', (event) => { B: { item: 'botania:glimmering_livingwood' }, C: { tag: 'forge:ingots/infused_iron' }, D: { item: 'botania:spark' }, - E: { item: 'astralsorcery:glass_lens' } + E: { item: 'atum:crystal_glass_pane' } }, altar_type: 0, duration: 100, From 6f07bca9792086f7a4aea16fa769b118aa91073c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Thu, 7 Oct 2021 19:47:49 +0200 Subject: [PATCH 094/124] Update settings.ps1 --- automation/settings.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/settings.ps1 b/automation/settings.ps1 index 8cac31f26b..44353821bd 100644 --- a/automation/settings.ps1 +++ b/automation/settings.ps1 @@ -29,11 +29,11 @@ $MODPACK_NAME = "Enigmatica6" $CLIENT_NAME = "Enigmatica6" # Version Of The Modpack -$MODPACK_VERSION = "0.5.14" +$MODPACK_VERSION = "0.5.15" # Last Version Of The Modpack # Needed For Changelog Parsing -$LAST_MODPACK_VERSION = "0.5.13" +$LAST_MODPACK_VERSION = "0.5.14" # =====================================================================// # CHANGELOG SETTINGS From d652dafaf51fe6d71d9627a622d3f4cd3f0488c6 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 7 Oct 2021 14:26:46 -0400 Subject: [PATCH 095/124] [Expert] Swap Tremblecrust for Shiverstone Minor change, but technically tremblecrust isn't meant to be obtainable in survival. The only reason we can is because it's part of the random stone generator. So, to avoid confusion, this swaps out tremblecrust for shiverstone instead. This can be found in small pockets in the undergarden like andesite in vanilla. --- .../enigmatica/kubejs/expert/recipetypes/botania/runic_altar.js | 2 +- .../kubejs/expert/recipetypes/interactio/item_lightning.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/runic_altar.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/runic_altar.js index c89ad7cf91..de61814e49 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/runic_altar.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/botania/runic_altar.js @@ -37,7 +37,7 @@ onEvent('recipes', (event) => { '#forge:dusts/mana', '#forge:ingots/manasteel', 'thermal:basalz_powder', - 'undergarden:tremblecrust', + 'undergarden:shiverstone', '#quark:runes', 'aquaculture:worm' ], diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js index eda31819a5..15ad822dca 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/interactio/item_lightning.js @@ -198,7 +198,7 @@ onEvent('recipes', (event) => { inputs: [ { tag: 'forge:dusts/fluorite', count: 1 }, { item: 'minecraft:prismarine', count: 6 }, - { item: 'undergarden:tremblecrust', count: 6 } + { item: 'undergarden:shiverstone', count: 6 } ], output: { entries: [{ result: { item: 'kubejs:firmament', count: 1 }, weight: 7 }], From a427445128482b78867dc8c721d6256faeee726e Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 7 Oct 2021 22:59:41 -0400 Subject: [PATCH 096/124] Refined Storage Clean up some of the BM scripts. Thoughts for RS components: Destruction Core: ![image](https://user-images.githubusercontent.com/9543430/136490815-61a2e3d5-8ad4-46d3-814c-46fa33aa73ad.png) Construction Core: ![image](https://user-images.githubusercontent.com/9543430/136490837-4433e7d6-936e-4bd4-b988-ca0807d1ddb0.png) Exporter: ![image](https://user-images.githubusercontent.com/9543430/136490844-f270afb8-6176-413f-8872-d955ee9b436f.png) Importer: ![image](https://user-images.githubusercontent.com/9543430/136490862-0eaa73c4-4bc5-42c7-98d0-5f814d43d7b7.png) Cables: ![image](https://user-images.githubusercontent.com/9543430/136490884-2f50771c-ecef-445b-8549-bd94b70e84e1.png) --- .../recipetypes/bloodmagic/alchemytable.js | 3 +- .../expert/recipetypes/bloodmagic/altar.js | 377 +++++++++--------- .../expert/recipetypes/bloodmagic/arc.js | 130 +++--- .../expert/recipetypes/bloodmagic/array.js | 87 ++-- .../pneumaticcraft/pressure_chamber.js | 20 + .../recipetypes/refinedstorage/shaped.js | 56 +++ 6 files changed, 386 insertions(+), 287 deletions(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js index 245d6d1ad9..5b401fa5f0 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/alchemytable.js @@ -2,7 +2,7 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - const id_prefix = 'enigmatica:expert/ars_nouveau/enchanting_apparatus/'; + const id_prefix = 'enigmatica:expert/bloodmagic/alchemytable/'; const recipes = [ { inputs: ['ars_nouveau:magic_clay', 'minecraft:blaze_powder'], @@ -740,7 +740,6 @@ onEvent('recipes', (event) => { }); recipes.forEach((recipe) => { - console.log(`Adding Recipe for ${recipe.output}`); event.recipes.bloodmagic .alchemytable(Item.of(recipe.output, recipe.count), recipe.inputs) .syphon(recipe.syphon) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/altar.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/altar.js index 8ccdbad2b4..170eb4aef4 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/altar.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/altar.js @@ -2,9 +2,9 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - data = { - recipes: [ - /*{ + const id_prefix = 'enigmatica:expert/bloodmagic/altar/'; + const recipes = [ + /*{ input: 'input item here', output: 'output item here', syphon: 1000, //Recipe LP Cost @@ -14,196 +14,195 @@ onEvent('recipes', (event) => { id: 'input item here' }*/ - { - input: 'eidolon:unholy_symbol', - output: 'bloodmagic:weakbloodorb', - syphon: 7000, - altarLevel: 0, - consumptionRate: 5, - drainRate: 1, - id: 'bloodmagic:altar/weakbloodorb' - }, - { - input: 'meetyourfight:caged_heart', - output: 'bloodmagic:apprenticebloodorb', - syphon: 7000, - altarLevel: 1, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:altar/apprenticebloodorb' - }, - { - input: 'botania:mana_tablet', - output: 'bloodmagic:magicianbloodorb', - syphon: 50000, - altarLevel: 2, - consumptionRate: 20, - drainRate: 20, - id: 'bloodmagic:altar/magicianbloodorb' - }, - { - input: 'occultism:otherstone_tablet', - output: 'bloodmagic:blankslate', - syphon: 1000, - altarLevel: 0, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:altar/slate' - }, - { - input: 'occultism:chalk_white_impure', - output: 'occultism:chalk_white', - syphon: 7000, - altarLevel: 0, - consumptionRate: 5, - drainRate: 1, - id: 'occultism:spirit_fire/chalk_white' - }, - { - input: 'occultism:chalk_gold_impure', - output: 'occultism:chalk_gold', - syphon: 7000, - altarLevel: 1, - consumptionRate: 5, - drainRate: 5, - id: 'occultism:spirit_fire/chalk_gold' - }, - { - input: 'occultism:chalk_purple_impure', - output: 'occultism:chalk_purple', - syphon: 25000, - altarLevel: 2, - consumptionRate: 20, - drainRate: 20, - id: 'occultism:spirit_fire/chalk_purple' - }, - { - input: 'occultism:chalk_red_impure', - output: 'occultism:chalk_red', - syphon: 40000, - altarLevel: 3, - consumptionRate: 30, - drainRate: 50, - id: 'occultism:spirit_fire/chalk_red' - }, - { - input: 'ars_nouveau:mana_fiber', - output: 'bloodmagic:soulsnare', - syphon: 500, - altarLevel: 1, - consumptionRate: 5, - drainRate: 1, - id: 'bloodmagic:altar/soul_snare' - }, - { - input: 'kubejs:firmament', - output: 'architects_palette:moonstone', - syphon: 25000, - altarLevel: 2, - consumptionRate: 20, - drainRate: 20 - }, - { - input: 'eidolon:sapping_sword', - output: 'bloodmagic:sacrificialdagger', - syphon: 7000, - altarLevel: 1, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:sacrificial_dagger' - }, - { - input: 'create:shadow_steel', - output: 'bloodmagic:masterbloodorb', - syphon: 80000, - altarLevel: 3, - consumptionRate: 30, - drainRate: 50, - id: 'bloodmagic:altar/masterbloodorb' - }, - { - input: '#botania:runes/air', - output: 'bloodmagic:airscribetool', - syphon: 1000, - altarLevel: 2, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:altar/air_tool' - }, - { - input: '#botania:runes/fire', - output: 'bloodmagic:firescribetool', - syphon: 1000, - altarLevel: 2, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:altar/fire_tool' - }, - { - input: '#botania:runes/water', - output: 'bloodmagic:waterscribetool', - syphon: 1000, - altarLevel: 2, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:altar/water_tool' - }, - { - input: '#botania:runes/earth', - output: 'bloodmagic:earthscribetool', - syphon: 1000, - altarLevel: 2, - consumptionRate: 5, - drainRate: 5, - id: 'bloodmagic:altar/earth_tool' - }, - { - input: '#botania:runes/nidavellir', - output: 'bloodmagic:duskscribetool', - syphon: 2000, - altarLevel: 3, - consumptionRate: 20, - drainRate: 10, - id: 'bloodmagic:altar/dusk_tool' - }, - { - input: 'botania:livingwood_planks', - output: 'eidolon:polished_planks', - syphon: 50, - altarLevel: 0, - consumptionRate: 25, - drainRate: 5 - }, - { - input: 'ars_nouveau:ritual_warping', - output: 'waystones:warp_stone', - syphon: 50000, - altarLevel: 2, - consumptionRate: 1000, - drainRate: 100, - id: 'waystones:warp_stone' - }, - { - input: 'undergarden:gloom_o_lantern', - output: 'botania:fel_pumpkin', - syphon: 1000, - altarLevel: 0, - consumptionRate: 5, - drainRate: 5, - id: 'botania:fel_pumpkin' - } - ] - }; + { + input: 'eidolon:unholy_symbol', + output: 'bloodmagic:weakbloodorb', + syphon: 7000, + altarLevel: 0, + consumptionRate: 5, + drainRate: 1, + id: 'bloodmagic:altar/weakbloodorb' + }, + { + input: 'meetyourfight:caged_heart', + output: 'bloodmagic:apprenticebloodorb', + syphon: 7000, + altarLevel: 1, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:altar/apprenticebloodorb' + }, + { + input: 'botania:mana_tablet', + output: 'bloodmagic:magicianbloodorb', + syphon: 50000, + altarLevel: 2, + consumptionRate: 20, + drainRate: 20, + id: 'bloodmagic:altar/magicianbloodorb' + }, + { + input: 'occultism:otherstone_tablet', + output: 'bloodmagic:blankslate', + syphon: 1000, + altarLevel: 0, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:altar/slate' + }, + { + input: 'occultism:chalk_white_impure', + output: 'occultism:chalk_white', + syphon: 7000, + altarLevel: 0, + consumptionRate: 5, + drainRate: 1, + id: 'occultism:spirit_fire/chalk_white' + }, + { + input: 'occultism:chalk_gold_impure', + output: 'occultism:chalk_gold', + syphon: 7000, + altarLevel: 1, + consumptionRate: 5, + drainRate: 5, + id: 'occultism:spirit_fire/chalk_gold' + }, + { + input: 'occultism:chalk_purple_impure', + output: 'occultism:chalk_purple', + syphon: 25000, + altarLevel: 2, + consumptionRate: 20, + drainRate: 20, + id: 'occultism:spirit_fire/chalk_purple' + }, + { + input: 'occultism:chalk_red_impure', + output: 'occultism:chalk_red', + syphon: 40000, + altarLevel: 3, + consumptionRate: 30, + drainRate: 50, + id: 'occultism:spirit_fire/chalk_red' + }, + { + input: 'ars_nouveau:mana_fiber', + output: 'bloodmagic:soulsnare', + syphon: 500, + altarLevel: 1, + consumptionRate: 5, + drainRate: 1, + id: 'bloodmagic:altar/soul_snare' + }, + { + input: 'kubejs:firmament', + output: 'architects_palette:moonstone', + syphon: 25000, + altarLevel: 2, + consumptionRate: 20, + drainRate: 20, + id: `${id_prefix}moonstone` + }, + { + input: 'eidolon:sapping_sword', + output: 'bloodmagic:sacrificialdagger', + syphon: 7000, + altarLevel: 1, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:sacrificial_dagger' + }, + { + input: 'create:shadow_steel', + output: 'bloodmagic:masterbloodorb', + syphon: 80000, + altarLevel: 3, + consumptionRate: 30, + drainRate: 50, + id: 'bloodmagic:altar/masterbloodorb' + }, + { + input: '#botania:runes/air', + output: 'bloodmagic:airscribetool', + syphon: 1000, + altarLevel: 2, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:altar/air_tool' + }, + { + input: '#botania:runes/fire', + output: 'bloodmagic:firescribetool', + syphon: 1000, + altarLevel: 2, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:altar/fire_tool' + }, + { + input: '#botania:runes/water', + output: 'bloodmagic:waterscribetool', + syphon: 1000, + altarLevel: 2, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:altar/water_tool' + }, + { + input: '#botania:runes/earth', + output: 'bloodmagic:earthscribetool', + syphon: 1000, + altarLevel: 2, + consumptionRate: 5, + drainRate: 5, + id: 'bloodmagic:altar/earth_tool' + }, + { + input: '#botania:runes/nidavellir', + output: 'bloodmagic:duskscribetool', + syphon: 2000, + altarLevel: 3, + consumptionRate: 20, + drainRate: 10, + id: 'bloodmagic:altar/dusk_tool' + }, + { + input: 'botania:livingwood_planks', + output: 'eidolon:polished_planks', + syphon: 50, + altarLevel: 0, + consumptionRate: 25, + drainRate: 5, + id: `${id_prefix}polished_planks` + }, + { + input: 'ars_nouveau:ritual_warping', + output: 'waystones:warp_stone', + syphon: 50000, + altarLevel: 2, + consumptionRate: 1000, + drainRate: 100, + id: 'waystones:warp_stone' + }, + { + input: 'undergarden:gloom_o_lantern', + output: 'botania:fel_pumpkin', + syphon: 1000, + altarLevel: 0, + consumptionRate: 5, + drainRate: 5, + id: 'botania:fel_pumpkin' + } + ]; - data.recipes.forEach((recipe) => { - const re = event.recipes.bloodmagic + recipes.forEach((recipe) => { + event.recipes.bloodmagic .altar(recipe.output, recipe.input) .upgradeLevel(recipe.altarLevel) .altarSyphon(recipe.syphon) .consumptionRate(recipe.consumptionRate) - .drainRate(recipe.drainRate); - if (recipe.id) { - re.id(recipe.id); - } + .drainRate(recipe.drainRate) + .id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/arc.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/arc.js index 0dc5efa9ca..83985d0f03 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/arc.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/arc.js @@ -3,61 +3,89 @@ onEvent('recipes', (event) => { return; } - var data = { - recipes: [ - { - input: 'bloodmagic:weakbloodorb', - output: 'eidolon:unholy_symbol', - tool: '#bloodmagic:arc/reverter', - extraOutputs: [], - consume: false, - id: 'bloodmagic:arc/reversion/weak_blood_orb' - }, - { - input: 'bloodmagic:apprenticebloodorb', - output: 'meetyourfight:caged_heart', - tool: '#bloodmagic:arc/reverter', - extraOutputs: [], - consume: false, - id: 'bloodmagic:arc/reversion/apprentice_blood_orb' - }, - { - input: 'bloodmagic:magicianbloodorb', - output: 'botania:mana_tablet', - tool: '#bloodmagic:arc/reverter', - extraOutputs: [], - consume: false, - id: 'bloodmagic:arc/reversion/magician_blood_orb' - }, - { - input: 'bloodmagic:masterbloodorb', - output: 'create:shadow_steel', - tool: '#bloodmagic:arc/reverter', - extraOutputs: [], - consume: false, - id: 'bloodmagic:arc/reversion/master_blood_orb' - }, - { - input: '#bloodmagic:crystals/demon', - output: Item.of('bloodmagic:corrupted_tinydust', 6), - tool: '#bloodmagic:arc/resonator', - extraOutputs: [Item.of('bloodmagic:corrupted_tinydust').chance(0.15)], - consume: false - } - ] - }; + const id_prefix = 'enigmatica:expert/bloodmagic/arc/'; + const recipes = [ + { + output: 'eidolon:unholy_symbol', + input: 'bloodmagic:weakbloodorb', + tool: '#bloodmagic:arc/reverter', + extraOutputs: [], + consume: false, + id: 'bloodmagic:arc/reversion/weak_blood_orb' + }, + { + output: 'meetyourfight:caged_heart', + input: 'bloodmagic:apprenticebloodorb', + tool: '#bloodmagic:arc/reverter', + extraOutputs: [], + consume: false, + id: 'bloodmagic:arc/reversion/apprentice_blood_orb' + }, + { + output: 'botania:mana_tablet', + input: 'bloodmagic:magicianbloodorb', + tool: '#bloodmagic:arc/reverter', + extraOutputs: [], + consume: false, + id: 'bloodmagic:arc/reversion/magician_blood_orb' + }, + { + output: 'create:shadow_steel', + input: 'bloodmagic:masterbloodorb', + tool: '#bloodmagic:arc/reverter', + extraOutputs: [], + consume: false, + id: 'bloodmagic:arc/reversion/master_blood_orb' + }, + { + output: Item.of('bloodmagic:corrupted_tinydust', 6), + input: '#bloodmagic:crystals/demon', + tool: '#bloodmagic:arc/resonator', + extraOutputs: [Item.of('bloodmagic:corrupted_tinydust').chance(0.15)], + consume: false, + id: `${id_prefix}corrupted_tinydust_from_demon_crystals` + } - data.recipes.forEach((recipe) => { + /*, + // Disabled for now. Thought this could be a nifty way to access this stuff instead of the magma crucible recipes but it's not discoverable in JEI at all... + // Issue opened with BloodMagic. To revist possibly later. + { + output: 'botania:mana_powder', + input: '#forge:storage_blocks/ender', + tool: '#bloodmagic:arc/resonator', + extraOutputs: [], + outputFluid: Fluid.of('thermal:ender', 500), + consume: false, + id: `${id_prefix}mana_powder_from_pearl` + }, + { + output: 'botania:mana_powder', + input: '#forge:storage_blocks/redstone', + tool: '#bloodmagic:arc/resonator', + extraOutputs: [], + outputFluid: Fluid.of('thermal:redstone', 500), + consume: false, + id: `${id_prefix}mana_powder_from_redstone` + }, + { + output: 'botania:mana_powder', + input: '#forge:storage_blocks/glowstone', + tool: '#bloodmagic:arc/resonator', + extraOutputs: [], + outputFluid: Fluid.of('thermal:glowstone', 500), + consume: false, + id: `${id_prefix}mana_powder_from_glowstone` + } + */ + ]; + recipes.forEach((recipe) => { const re = event.recipes.bloodmagic .arc(recipe.output, recipe.input, recipe.tool, recipe.extraOutputs) - .consumeIngredient(recipe.consume); - - if (recipe.fluidOutput) { - re.outputFluid(recipe.fluidOutput); - } + .consumeIngredient(recipe.consume) + .id(recipe.id); - if (recipe.id) { - re.id(recipe.id); + if (recipe.outputFluid) { + re.outputFluid(recipe.outputFluid); } }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/array.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/array.js index 38b5d0d18b..a52a5b1409 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/array.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/bloodmagic/array.js @@ -3,51 +3,48 @@ onEvent('recipes', (event) => { return; } - data = { - recipes: [ - { - inputs: ['#forge:rods/copper', '#forge:dusts/fluorite'], - output: 'powah:charged_snowball', - texture: 'bindinglightningarray' - }, - { - inputs: ['architects_palette:algal_lamp', '#forge:gems/aquamarine'], - output: 'minecraft:heart_of_the_sea', - texture: 'watersigil' - }, - { - inputs: ['architects_palette:moonstone', '#forge:ingots/silver'], - output: 'bloodmagic:arcaneashes', - texture: 'moonarray', - id: 'bloodmagic:array/night' - }, - { - inputs: ['architects_palette:sunstone', '#forge:ingots/sunmetal'], - output: 'bloodmagic:arcaneashes', - texture: 'sunarray', - id: 'bloodmagic:array/day' - }, - { - inputs: ['ars_nouveau:ritual_scrying', 'bloodmagic:blankslate'], - output: 'bloodmagic:divinationsigil', - texture: 'divinationsigil', - id: 'bloodmagic:array/divinationsigil' - } - ] - }; - - data.recipes.forEach((recipe) => { - const re = event.custom({ - type: 'bloodmagic:array', - texture: `bloodmagic:textures/models/alchemyarrays/${recipe.texture}.png`, - baseinput: Ingredient.of(recipe.inputs[0]).toJson(), - addedinput: Ingredient.of(recipe.inputs[1]).toJson(), - output: { - item: recipe.output - } - }); - if (recipe.id) { - re.id(recipe.id); + const id_prefix = 'enigmatica:expert/bloodmagic/array/'; + const recipes = [ + { + input: '#forge:rods/copper', + addedInput: '#forge:dusts/fluorite', + output: 'powah:charged_snowball', + texture: 'bindinglightningarray', + id: `${id_prefix}charged_snowball` + }, + { + input: 'architects_palette:algal_lamp', + addedInput: '#forge:gems/aquamarine', + output: 'minecraft:heart_of_the_sea', + texture: 'watersigil', + id: `${id_prefix}heart_of_the_sea` + }, + { + input: 'architects_palette:moonstone', + addedInput: '#forge:ingots/silver', + output: 'bloodmagic:arcaneashes', + texture: 'moonarray', + id: 'bloodmagic:array/night' + }, + { + input: 'architects_palette:sunstone', + addedInput: '#forge:ingots/sunmetal', + output: 'bloodmagic:arcaneashes', + texture: 'sunarray', + id: 'bloodmagic:array/day' + }, + { + input: 'ars_nouveau:ritual_scrying', + addedInput: 'bloodmagic:blankslate', + output: 'bloodmagic:divinationsigil', + texture: 'divinationsigil', + id: 'bloodmagic:array/divinationsigil' } + ]; + recipes.forEach((recipe) => { + event.recipes.bloodmagic + .array(recipe.output, recipe.input, recipe.addedInput) + .texture(`bloodmagic:textures/models/alchemyarrays/${recipe.texture}.png`) + .id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js index db1eeec7a8..8b4231f48a 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js @@ -121,6 +121,26 @@ onEvent('recipes', (event) => { pressure: 1.0, results: [{ item: 'pneumaticcraft:turbine_blade', count: 1 }], id: 'pneumaticcraft:pressure_chamber/turbine_blade' + }, + { + inputs: [ + { item: 'tconstruct:ichor_slime_crystal', count: 1 }, + { item: 'refinedstorage:basic_processor', count: 1 }, + { item: 'botania:corporea_spark', count: 1 } + ], + pressure: 2.0, + results: [{ item: 'refinedstorage:destruction_core', count: 1 }], + id: 'refinedstorage:destruction_core' + }, + { + inputs: [ + { item: 'tconstruct:sky_slime_crystal', count: 1 }, + { item: 'refinedstorage:basic_processor', count: 1 }, + { item: 'botania:corporea_spark', count: 1 } + ], + pressure: 2.0, + results: [{ item: 'refinedstorage:construction_core', count: 1 }], + id: 'refinedstorage:construction_core' } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js new file mode 100644 index 0000000000..969119409e --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js @@ -0,0 +1,56 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/kubejs/'; + /* + , + { + output: '', + pattern: ['', '', ''], + key: { + A: '' + }, + id: '' + } + */ + + const recipes = [ + { + output: Item.of('12x refinedstorage:cable'), + pattern: ['AAA', 'BCB', 'AAA'], + key: { + A: 'refinedstorage:quartz_enriched_iron', + B: 'immersiveengineering:connector_bundled', + C: 'immersiveengineering:wirecoil_redstone' + }, + id: 'refinedstorage:cable' + }, + { + output: Item.of('refinedstorage:importer'), + pattern: [' C ', 'ADB', ' C '], + key: { + A: 'refinedstorage:cable', + B: 'refinedstorage:improved_processor', + C: 'refinedstorage:destruction_core', + D: '#xnet:connectors' + }, + id: 'refinedstorage:importer' + }, + { + output: Item.of('refinedstorage:exporter'), + pattern: [' C ', 'ADB', ' C '], + key: { + A: 'refinedstorage:cable', + B: 'refinedstorage:improved_processor', + C: 'refinedstorage:construction_core', + D: '#xnet:connectors' + }, + id: 'refinedstorage:exporter' + } + ]; + + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); + }); +}); From 66e037022b5b40abee9a2250e42063ffcb70fc13 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Thu, 7 Oct 2021 23:28:15 -0400 Subject: [PATCH 097/124] Update pressure_chamber.js --- .../pneumaticcraft/pressure_chamber.js | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js index 8b4231f48a..8cb40f7654 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js @@ -141,6 +141,39 @@ onEvent('recipes', (event) => { pressure: 2.0, results: [{ item: 'refinedstorage:construction_core', count: 1 }], id: 'refinedstorage:construction_core' + }, + { + inputs: [ + { tag: 'forge:plates/signalum', count: 1 }, + { tag: 'forge:gems/silicon', count: 1 }, + { item: 'refinedstorage:processor_binding', count: 1 }, + { item: 'fluxnetworks:flux_dust', count: 1 } + ], + pressure: 2.0, + results: [{ item: 'refinedstorage:raw_basic_processor', count: 1 }], + id: 'refinedstorage:raw_basic_processor' + }, + { + inputs: [ + { tag: 'forge:plates/lumium', count: 1 }, + { tag: 'forge:gems/silicon', count: 1 }, + { item: 'refinedstorage:processor_binding', count: 1 }, + { item: 'fluxnetworks:flux_dust', count: 1 } + ], + pressure: 2.0, + results: [{ item: 'refinedstorage:raw_improved_processor', count: 1 }], + id: 'refinedstorage:raw_improved_processor' + }, + { + inputs: [ + { tag: 'forge:plates/enderium', count: 1 }, + { tag: 'forge:gems/silicon', count: 1 }, + { item: 'refinedstorage:processor_binding', count: 1 }, + { item: 'fluxnetworks:flux_dust', count: 1 } + ], + pressure: 2.0, + results: [{ item: 'refinedstorage:raw_advanced_processor', count: 1 }], + id: 'refinedstorage:raw_advanced_processor' } ]; From 7b153887223fee9372b68a16ddd7b672a89ec5ad Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 8 Oct 2021 07:44:43 -0400 Subject: [PATCH 098/124] Update pressure_chamber.js --- .../expert/recipetypes/pneumaticcraft/pressure_chamber.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js index 8cb40f7654..0f14c4a286 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/pneumaticcraft/pressure_chamber.js @@ -144,7 +144,7 @@ onEvent('recipes', (event) => { }, { inputs: [ - { tag: 'forge:plates/signalum', count: 1 }, + { tag: 'forge:coins/tin', count: 1 }, { tag: 'forge:gems/silicon', count: 1 }, { item: 'refinedstorage:processor_binding', count: 1 }, { item: 'fluxnetworks:flux_dust', count: 1 } @@ -155,7 +155,7 @@ onEvent('recipes', (event) => { }, { inputs: [ - { tag: 'forge:plates/lumium', count: 1 }, + { tag: 'forge:coins/lumium', count: 1 }, { tag: 'forge:gems/silicon', count: 1 }, { item: 'refinedstorage:processor_binding', count: 1 }, { item: 'fluxnetworks:flux_dust', count: 1 } @@ -166,7 +166,7 @@ onEvent('recipes', (event) => { }, { inputs: [ - { tag: 'forge:plates/enderium', count: 1 }, + { tag: 'forge:coins/enderium', count: 1 }, { tag: 'forge:gems/silicon', count: 1 }, { item: 'refinedstorage:processor_binding', count: 1 }, { item: 'fluxnetworks:flux_dust', count: 1 } From 5c158eb3f9d7385ea1171da4c36835e0662bc1e8 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 8 Oct 2021 07:52:56 -0400 Subject: [PATCH 099/124] Update shaped.js --- .../expert/recipetypes/refinedstorage/shaped.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js index 969119409e..002ebe53a4 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js @@ -47,6 +47,18 @@ onEvent('recipes', (event) => { D: '#xnet:connectors' }, id: 'refinedstorage:exporter' + }, + { + output: Item.of('refinedstorage:external_storage'), + pattern: [' C ', 'AEB', ' D '], + key: { + A: 'refinedstorage:cable', + B: 'refinedstorage:improved_processor', + C: 'refinedstorage:construction_core', + D: 'refinedstorage:destruction_core', + E: '#xnet:connectors' + }, + id: 'refinedstorage:external_storage' } ]; From 07e1573b48be32c3dbddc251df7edaa2e482afd0 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 8 Oct 2021 09:50:00 -0400 Subject: [PATCH 100/124] crafter update --- .../expert/recipetypes/extrastorage/shaped.js | 60 +++++++++++++++++++ .../recipetypes/refinedstorage/shaped.js | 14 ++++- .../recipetypes/thermal/machine/bottler.js | 6 ++ 3 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js new file mode 100644 index 0000000000..467ad3ef0b --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js @@ -0,0 +1,60 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/extrastorage/'; + /* + , + { + output: '', + pattern: ['', '', ''], + key: { + A: '' + }, + id: '' + } + */ + + const recipes = [ + { + output: Item.of('extrastorage:iron_crafter'), + pattern: ['ABA', 'CEC', 'ADA'], + key: { + A: 'refinedstorage:quartz_enriched_iron', + B: '#forge:circuits/advanced', + C: 'extrastorage:neural_processor', + D: 'thermal:upgrade_augment_1', + E: 'refinedstorage:crafter' + }, + id: 'extrastorage:iron_crafter' + }, + { + output: Item.of('extrastorage:gold_crafter'), + pattern: ['ABA', 'CEC', 'ADA'], + key: { + A: 'refinedstorage:quartz_enriched_iron', + B: '#forge:circuits/elite', + C: 'extrastorage:neural_processor', + D: 'thermal:upgrade_augment_2', + E: 'refinedstorage:crafter' + }, + id: 'extrastorage:gold_crafter' + }, + { + output: Item.of('extrastorage:diamond_crafter'), + pattern: ['ABA', 'CEC', 'ADA'], + key: { + A: 'refinedstorage:quartz_enriched_iron', + B: '#forge:circuits/ultimate', + C: 'extrastorage:neural_processor', + D: 'thermal:upgrade_augment_3', + E: 'refinedstorage:crafter' + }, + id: 'extrastorage:diamond_crafter' + } + ]; + + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js index 002ebe53a4..f4d9833804 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/refinedstorage/shaped.js @@ -2,7 +2,7 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - const id_prefix = 'enigmatica:expert/kubejs/'; + const id_prefix = 'enigmatica:expert/refinedstorage/'; /* , { @@ -59,6 +59,18 @@ onEvent('recipes', (event) => { E: '#xnet:connectors' }, id: 'refinedstorage:external_storage' + }, + { + output: Item.of('refinedstorage:crafter'), + pattern: ['ABA', 'CEC', 'ADA'], + key: { + A: 'create:mechanical_crafter', + B: 'refinedstorage:construction_core', + C: 'refinedstorage:advanced_processor', + D: 'refinedstorage:destruction_core', + E: 'refinedstorage:machine_casing' + }, + id: 'refinedstorage:crafter' } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/bottler.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/bottler.js index 765d14c668..d81c1bb6f0 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/bottler.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/thermal/machine/bottler.js @@ -28,6 +28,12 @@ onEvent('recipes', (event) => { fluid: Fluid.of('kubejs:molten_compressed_iron', 18), output: 'pneumaticcraft:reinforced_stone', id: 'pneumaticcraft:reinforced_stone' + }, + { + input: 'extrastorage:diamond_crafter', + fluid: Fluid.of('tconstruct:molten_netherite', 5184), + output: 'extrastorage:netherite_crafter', + id: 'extrastorage:netherite_crafter' } ]; recipes.forEach((recipe) => { From 0860255e720cd35f0fd956bb932266aaadf49a51 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 8 Oct 2021 10:21:32 -0400 Subject: [PATCH 101/124] [Expert] Squirrel Power! Dunno, just made me chuckle. :D --- .../expert/recipetypes/create/mechanical_crafting.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/mechanical_crafting.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/mechanical_crafting.js index 211c400dd0..4c6a40d75a 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/mechanical_crafting.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/mechanical_crafting.js @@ -227,6 +227,18 @@ onEvent('recipes', (event) => { F: 'pneumaticcraft:spawner_agitator' }, id: `${id_prefix}spawner_extractor` + }, + { + output: 'create:flywheel', + pattern: [' AAA ', 'ABCBA', 'ACDCA', 'ABEBA', ' AAA '], + key: { + A: '#forge:plates/brass', + B: '#forge:rods/brass', + C: '#forge:gears/enderium', + D: 'create:brass_casing', + E: 'ars_nouveau:carbuncle_charm' + }, + id: 'create:mechanical_crafting/flywheel' } ]; From d1e925d57e71fdaa24160e7addc8fe0d1a437f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Fri, 8 Oct 2021 19:42:09 +0200 Subject: [PATCH 102/124] Delete waystones-server.toml --- config/waystones-server.toml | 109 ----------------------------------- 1 file changed, 109 deletions(-) delete mode 100644 config/waystones-server.toml diff --git a/config/waystones-server.toml b/config/waystones-server.toml deleted file mode 100644 index 3c842f0610..0000000000 --- a/config/waystones-server.toml +++ /dev/null @@ -1,109 +0,0 @@ - -#These options will be synced to joining clients. -[server] - - #These options apply to teleporting using the scroll items. - [server.scrolls] - #The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click. - #Range: > 1 - scrollUseTime = 32 - - #These options apply to the optional Waystones button displayed in the inventory. - [server.inventoryButton] - #Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone. - inventoryButton = "NONE" - #The multiplier applied to the base xp cost when teleporting via the inventory button. - #Range: 0.0 ~ Infinity - inventoryButtonXpCostMultiplier = 1.0 - #The cooldown between usages of the inventory button in seconds. - #Range: > 0 - inventoryButtonCooldown = 300 - - #These options apply to teleporting using the Warp Stone item. - [server.warpStone] - #The cooldown between usages of the warp stone in seconds. This is bound to the player, not the item, so multiple warp stones share the same cooldown. - #Range: > 0 - warpStoneCooldown = 300 - #The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click. - #Range: > 1 - warpStoneUseTime = 32 - #The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, John) - #Range: 0.0 ~ Infinity - warpStoneXpCostMultiplier = 1.0 - - #These options define restrictions when managing waystones. - [server.restrictions] - #If enabled, only creative players can place, edit or break waystones. This does NOT disable the crafting recipe. - restrictToCreative = false - #If enabled, waystones generated in worldgen are unbreakable. - generatedWaystonesUnbreakable = false - #If enabled, only the owner of a waystone (the one who placed it) can rename it. - restrictRenameToOwner = false - - #Note: Base XP cost is based on the distance travelled. - [server.baseXpCost] - #The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs - #Range: 0.0 ~ Infinity - maximumXpCost = 3.0 - #The minimum base xp cost - #Range: 0.0 ~ Infinity - minimumXpCost = 0.0 - #The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels. - #Range: > 1 - blocksPerXPLevel = 500 - #Set to true if experience cost should be inverted, meaning the shorter the distance, the more expensive. Can be used to encourage other methods for short-distance travel. - inverseXpCost = false - - #These options apply to teleporting between dimensions. - [server.dimensionalWarp] - #The base xp level cost when travelling between dimensions. Ignores block distance. - #Range: > 0 - dimensionalWarpXpCost = 3 - #Set to 'ALLOW' to allow dimensional warp in general. Set to 'GLOBAL_ONLY' to restrict dimensional warp to global waystones. Set to 'DENY' to disallow all dimensional warps. - #Allowed Values: ALLOW, GLOBAL_ONLY, DENY - dimensionalWarp = "ALLOW" - - #These options apply to teleporting from one waystone to another by right-clicking it. - [server.waystoneToWaystone] - #The multiplier applied to the base xp cost when teleporting from one waystone to another. - #Range: 0.0 ~ Infinity - waystoneXpCostMultiplier = 1.0 - #The multiplier applied to the base xp cost when teleporting from one sharestone to another. - #Range: 0.0 ~ Infinity - sharestoneXpCostMultiplier = 1.0 - #The multiplier applied to the base xp cost when teleporting from a portstone. - #Range: 0.0 ~ Infinity - portstoneXpCostMultiplier = 0.0 - - #These options apply to the global waystones. - [server.globalWaystones] - #Set to false to allow non-creative players to make waystones globally activated for all players. - globalWaystoneRequiresCreative = true - #The multiplier applied to the cooldown when teleporting to a global waystone via inventory button or warp stone. - #Range: 0.0 ~ Infinity - globalWaystoneCooldownMultiplier = 1.0 - #The multiplier applied to the base xp cost when teleporting to a global waystone through any method. - #Range: 0.0 ~ Infinity - globalWaystonesXpCostMultiplier = 1.0 - - #These options apply to taking leashed mobs with you when teleporting. - [server.leashedMobs] - #If enabled, leashed mobs/animals will be teleported with you - transportLeashed = true - #Take animals with you when travelling between dimensions - transportLeashedDimensional = true - #How much xp is need per leashed animal to travel with you - #Range: > 0 - costPerLeashed = 1 - #Which leashed mobs cannot be taken with you when travelling. - leashedBlacklist = ["minecraft:wither"] - - #These options apply to warp plates. - [server.warpPlate] - #The multiplier applied to the base xp cost when teleporting from one warp plate to another. - #Range: 0.0 ~ Infinity - warpPlateXpCostMultiplier = 0.0 - #The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for. - #Range: > 0 - warpPlateUseTime = 20 - From dfa91ccdf46bc942a7ee8924daecb20d40442065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Fri, 8 Oct 2021 19:45:41 +0200 Subject: [PATCH 103/124] Revert "Delete waystones-server.toml" This reverts commit d1e925d57e71fdaa24160e7addc8fe0d1a437f0d. --- config/waystones-server.toml | 109 +++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 config/waystones-server.toml diff --git a/config/waystones-server.toml b/config/waystones-server.toml new file mode 100644 index 0000000000..3c842f0610 --- /dev/null +++ b/config/waystones-server.toml @@ -0,0 +1,109 @@ + +#These options will be synced to joining clients. +[server] + + #These options apply to teleporting using the scroll items. + [server.scrolls] + #The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click. + #Range: > 1 + scrollUseTime = 32 + + #These options apply to the optional Waystones button displayed in the inventory. + [server.inventoryButton] + #Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone. + inventoryButton = "NONE" + #The multiplier applied to the base xp cost when teleporting via the inventory button. + #Range: 0.0 ~ Infinity + inventoryButtonXpCostMultiplier = 1.0 + #The cooldown between usages of the inventory button in seconds. + #Range: > 0 + inventoryButtonCooldown = 300 + + #These options apply to teleporting using the Warp Stone item. + [server.warpStone] + #The cooldown between usages of the warp stone in seconds. This is bound to the player, not the item, so multiple warp stones share the same cooldown. + #Range: > 0 + warpStoneCooldown = 300 + #The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click. + #Range: > 1 + warpStoneUseTime = 32 + #The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, John) + #Range: 0.0 ~ Infinity + warpStoneXpCostMultiplier = 1.0 + + #These options define restrictions when managing waystones. + [server.restrictions] + #If enabled, only creative players can place, edit or break waystones. This does NOT disable the crafting recipe. + restrictToCreative = false + #If enabled, waystones generated in worldgen are unbreakable. + generatedWaystonesUnbreakable = false + #If enabled, only the owner of a waystone (the one who placed it) can rename it. + restrictRenameToOwner = false + + #Note: Base XP cost is based on the distance travelled. + [server.baseXpCost] + #The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs + #Range: 0.0 ~ Infinity + maximumXpCost = 3.0 + #The minimum base xp cost + #Range: 0.0 ~ Infinity + minimumXpCost = 0.0 + #The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels. + #Range: > 1 + blocksPerXPLevel = 500 + #Set to true if experience cost should be inverted, meaning the shorter the distance, the more expensive. Can be used to encourage other methods for short-distance travel. + inverseXpCost = false + + #These options apply to teleporting between dimensions. + [server.dimensionalWarp] + #The base xp level cost when travelling between dimensions. Ignores block distance. + #Range: > 0 + dimensionalWarpXpCost = 3 + #Set to 'ALLOW' to allow dimensional warp in general. Set to 'GLOBAL_ONLY' to restrict dimensional warp to global waystones. Set to 'DENY' to disallow all dimensional warps. + #Allowed Values: ALLOW, GLOBAL_ONLY, DENY + dimensionalWarp = "ALLOW" + + #These options apply to teleporting from one waystone to another by right-clicking it. + [server.waystoneToWaystone] + #The multiplier applied to the base xp cost when teleporting from one waystone to another. + #Range: 0.0 ~ Infinity + waystoneXpCostMultiplier = 1.0 + #The multiplier applied to the base xp cost when teleporting from one sharestone to another. + #Range: 0.0 ~ Infinity + sharestoneXpCostMultiplier = 1.0 + #The multiplier applied to the base xp cost when teleporting from a portstone. + #Range: 0.0 ~ Infinity + portstoneXpCostMultiplier = 0.0 + + #These options apply to the global waystones. + [server.globalWaystones] + #Set to false to allow non-creative players to make waystones globally activated for all players. + globalWaystoneRequiresCreative = true + #The multiplier applied to the cooldown when teleporting to a global waystone via inventory button or warp stone. + #Range: 0.0 ~ Infinity + globalWaystoneCooldownMultiplier = 1.0 + #The multiplier applied to the base xp cost when teleporting to a global waystone through any method. + #Range: 0.0 ~ Infinity + globalWaystonesXpCostMultiplier = 1.0 + + #These options apply to taking leashed mobs with you when teleporting. + [server.leashedMobs] + #If enabled, leashed mobs/animals will be teleported with you + transportLeashed = true + #Take animals with you when travelling between dimensions + transportLeashedDimensional = true + #How much xp is need per leashed animal to travel with you + #Range: > 0 + costPerLeashed = 1 + #Which leashed mobs cannot be taken with you when travelling. + leashedBlacklist = ["minecraft:wither"] + + #These options apply to warp plates. + [server.warpPlate] + #The multiplier applied to the base xp cost when teleporting from one warp plate to another. + #Range: 0.0 ~ Infinity + warpPlateXpCostMultiplier = 0.0 + #The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for. + #Range: > 0 + warpPlateUseTime = 20 + From ed41d12997e2a5f30730141ea2d7f3727da9a063 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 8 Oct 2021 15:53:31 -0400 Subject: [PATCH 104/124] upgrades --- .../expert/recipetypes/extrastorage/shaped.js | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js index 467ad3ef0b..59043e054b 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js @@ -40,6 +40,16 @@ onEvent('recipes', (event) => { }, id: 'extrastorage:gold_crafter' }, + { + output: Item.of('extrastorage:gold_crafter'), + pattern: [' B ', ' E ', ' D '], + key: { + B: '#forge:circuits/elite', + D: 'thermal:upgrade_augment_2', + E: 'extrastorage:iron_crafter' + }, + id: 'extrastorage:gold_crafter_upgrade' + }, { output: Item.of('extrastorage:diamond_crafter'), pattern: ['ABA', 'CEC', 'ADA'], @@ -51,6 +61,16 @@ onEvent('recipes', (event) => { E: 'refinedstorage:crafter' }, id: 'extrastorage:diamond_crafter' + }, + { + output: Item.of('extrastorage:diamond_crafter'), + pattern: [' B ', ' E ', ' D '], + key: { + B: '#forge:circuits/ultimate', + D: 'thermal:upgrade_augment_3', + E: ['extrastorage:iron_crafter', 'extrastorage:gold_crafter'] + }, + id: 'extrastorage:diamond_crafter_upgrade' } ]; From 919f6cdc4fd902c29284a6ebf42d3414ea0dd16f Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Fri, 8 Oct 2021 18:37:48 -0400 Subject: [PATCH 105/124] [Expert] Misc recipe --- .../recipetypes/create/create/shaped.js | 73 +++++++++++++++++ .../create/immersiveengineering/shaped.js | 78 +++++++++++++++++++ 2 files changed, 151 insertions(+) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js create mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js new file mode 100644 index 0000000000..5493f534ca --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js @@ -0,0 +1,73 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/create/'; + /* + , + { + output: '', + pattern: ['', '', ''], + key: { + A: '' + }, + id: '' + } + */ + + const recipes = [ + { + output: 'create:millstone', + pattern: [' A ', 'BCB', 'DDD'], + key: { + A: '#forge:gears/copper', + B: '#forge:ingots/andesite_alloy', + C: 'create:cogwheel', + D: 'minecraft:smooth_stone_slab' + }, + id: 'create:crafting/kinetics/millstone' + }, + { + output: 'create:windmill_bearing', + pattern: ['A', 'B', 'C'], + key: { + A: 'create:turntable', + B: 'minecraft:sticky_piston', + C: 'create:shaft' + }, + id: 'create:crafting/kinetics/windmill_bearing' + }, + { + output: Item.of('create:white_sail', 8), + pattern: ['AAA', 'ABA', 'AAA'], + key: { + A: 'create:sail_frame', + B: '#thermal:rockwool' + }, + id: 'create:crafting/kinetics/white_sail' + }, + { + output: Item.of('create:brass_casing', 4), + pattern: ['ABA', 'BBB', 'ABA'], + key: { + A: '#forge:plates/brass', + B: 'eidolon:polished_planks' + }, + id: 'create:crafting/materials/brass_casing' + }, + { + output: Item.of('create:encased_chain_drive', 2), + pattern: [' A ', 'BCB', ' A '], + key: { + A: 'minecraft:chain', + B: 'create:shaft', + C: 'create:andesite_casing' + }, + id: 'create:crafting/kinetics/encased_chain_drive' + } + ]; + + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js new file mode 100644 index 0000000000..49f3f2e815 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js @@ -0,0 +1,78 @@ +onEvent('recipes', (event) => { + if (global.isExpertMode == false) { + return; + } + const id_prefix = 'enigmatica:expert/immersiveengineering/'; + /* + , + { + output: '', + pattern: ['', '', ''], + key: { + A: '' + }, + id: '' + } + */ + + const recipes = [ + { + output: Item.of('immersiveengineering:cokebrick', 3), + pattern: ['CAC', 'ABA', 'CAC'], + key: { + A: '#forge:stones/basalt', + B: 'create:cinder_flour', + C: '#forge:clay' + }, + id: 'immersiveengineering:crafting/cokebrick' + }, + { + output: 'immersiveengineering:workbench', + pattern: ['A ', 'BCC', 'E D'], + key: { + A: '#forge:rods/steel', + B: '#forge:plates/steel', + C: '#forge:treated_wood_slab', + D: 'immersiveengineering:treated_fence', + E: 'immersiveengineering:craftingtable' + }, + id: 'immersiveengineering:crafting/workbench' + }, + { + output: Item.of('immersiveengineering:alloybrick', 4), + pattern: ['CAC', 'ABA', 'CAC'], + key: { + A: '#forge:ingots/brick', + B: 'kubejs:smoldering_lapis_lazuli_compound', + C: 'immersiveengineering:blastbrick' + }, + id: 'immersiveengineering:crafting/alloybrick' + }, + { + output: 'immersiveengineering:furnace_heater', + pattern: ['ABA', 'ACD', 'ABA'], + key: { + A: '#forge:sheetmetals/aluminum', + B: 'immersiveengineering:coil_lv', + C: 'powah:dielectric_casing', + D: 'thermal:rf_coil' + }, + id: 'immersiveengineering:crafting/furnace_heater' + }, + { + output: Item.of('12x immersiveengineering:conveyor_basic'), + pattern: ['ABA', 'CDC'], + key: { + A: 'create:shaft', + B: 'create:belt_connector', + C: '#forge:gears/iron_aluminum', + D: 'thermal:redstone_servo' + }, + id: 'immersiveengineering:crafting/conveyor_basic' + } + ]; + + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); + }); +}); From faae32ef025c08d03d3d3709c8fb928e2add530e Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sat, 9 Oct 2021 15:14:05 -0400 Subject: [PATCH 106/124] Update shaped.js --- .../enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js index 59043e054b..efed13bcfb 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/extrastorage/shaped.js @@ -68,7 +68,7 @@ onEvent('recipes', (event) => { key: { B: '#forge:circuits/ultimate', D: 'thermal:upgrade_augment_3', - E: ['extrastorage:iron_crafter', 'extrastorage:gold_crafter'] + E: 'extrastorage:gold_crafter' }, id: 'extrastorage:diamond_crafter_upgrade' } From 34898369518393a7a973ba8920f9e47f23c99487 Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sat, 9 Oct 2021 15:20:24 -0400 Subject: [PATCH 107/124] fix ma derps --- .../recipetypes/create/create/shaped.js | 73 ----------------- .../create/immersiveengineering/shaped.js | 78 ------------------- .../expert/recipetypes/create/shaped.js | 22 ++++-- .../immersiveengineering/shaped.js | 15 +++- 4 files changed, 27 insertions(+), 161 deletions(-) delete mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js delete mode 100644 kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js deleted file mode 100644 index 5493f534ca..0000000000 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/create/shaped.js +++ /dev/null @@ -1,73 +0,0 @@ -onEvent('recipes', (event) => { - if (global.isExpertMode == false) { - return; - } - const id_prefix = 'enigmatica:expert/create/'; - /* - , - { - output: '', - pattern: ['', '', ''], - key: { - A: '' - }, - id: '' - } - */ - - const recipes = [ - { - output: 'create:millstone', - pattern: [' A ', 'BCB', 'DDD'], - key: { - A: '#forge:gears/copper', - B: '#forge:ingots/andesite_alloy', - C: 'create:cogwheel', - D: 'minecraft:smooth_stone_slab' - }, - id: 'create:crafting/kinetics/millstone' - }, - { - output: 'create:windmill_bearing', - pattern: ['A', 'B', 'C'], - key: { - A: 'create:turntable', - B: 'minecraft:sticky_piston', - C: 'create:shaft' - }, - id: 'create:crafting/kinetics/windmill_bearing' - }, - { - output: Item.of('create:white_sail', 8), - pattern: ['AAA', 'ABA', 'AAA'], - key: { - A: 'create:sail_frame', - B: '#thermal:rockwool' - }, - id: 'create:crafting/kinetics/white_sail' - }, - { - output: Item.of('create:brass_casing', 4), - pattern: ['ABA', 'BBB', 'ABA'], - key: { - A: '#forge:plates/brass', - B: 'eidolon:polished_planks' - }, - id: 'create:crafting/materials/brass_casing' - }, - { - output: Item.of('create:encased_chain_drive', 2), - pattern: [' A ', 'BCB', ' A '], - key: { - A: 'minecraft:chain', - B: 'create:shaft', - C: 'create:andesite_casing' - }, - id: 'create:crafting/kinetics/encased_chain_drive' - } - ]; - - recipes.forEach((recipe) => { - event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); - }); -}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js deleted file mode 100644 index 49f3f2e815..0000000000 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/immersiveengineering/shaped.js +++ /dev/null @@ -1,78 +0,0 @@ -onEvent('recipes', (event) => { - if (global.isExpertMode == false) { - return; - } - const id_prefix = 'enigmatica:expert/immersiveengineering/'; - /* - , - { - output: '', - pattern: ['', '', ''], - key: { - A: '' - }, - id: '' - } - */ - - const recipes = [ - { - output: Item.of('immersiveengineering:cokebrick', 3), - pattern: ['CAC', 'ABA', 'CAC'], - key: { - A: '#forge:stones/basalt', - B: 'create:cinder_flour', - C: '#forge:clay' - }, - id: 'immersiveengineering:crafting/cokebrick' - }, - { - output: 'immersiveengineering:workbench', - pattern: ['A ', 'BCC', 'E D'], - key: { - A: '#forge:rods/steel', - B: '#forge:plates/steel', - C: '#forge:treated_wood_slab', - D: 'immersiveengineering:treated_fence', - E: 'immersiveengineering:craftingtable' - }, - id: 'immersiveengineering:crafting/workbench' - }, - { - output: Item.of('immersiveengineering:alloybrick', 4), - pattern: ['CAC', 'ABA', 'CAC'], - key: { - A: '#forge:ingots/brick', - B: 'kubejs:smoldering_lapis_lazuli_compound', - C: 'immersiveengineering:blastbrick' - }, - id: 'immersiveengineering:crafting/alloybrick' - }, - { - output: 'immersiveengineering:furnace_heater', - pattern: ['ABA', 'ACD', 'ABA'], - key: { - A: '#forge:sheetmetals/aluminum', - B: 'immersiveengineering:coil_lv', - C: 'powah:dielectric_casing', - D: 'thermal:rf_coil' - }, - id: 'immersiveengineering:crafting/furnace_heater' - }, - { - output: Item.of('12x immersiveengineering:conveyor_basic'), - pattern: ['ABA', 'CDC'], - key: { - A: 'create:shaft', - B: 'create:belt_connector', - C: '#forge:gears/iron_aluminum', - D: 'thermal:redstone_servo' - }, - id: 'immersiveengineering:crafting/conveyor_basic' - } - ]; - - recipes.forEach((recipe) => { - event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); - }); -}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/shaped.js index 03bd5d372d..5493f534ca 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/create/shaped.js @@ -2,7 +2,7 @@ onEvent('recipes', (event) => { if (global.isExpertMode == false) { return; } - + const id_prefix = 'enigmatica:expert/create/'; /* , { @@ -15,7 +15,7 @@ onEvent('recipes', (event) => { } */ - const newRecipes = [ + const recipes = [ { output: 'create:millstone', pattern: [' A ', 'BCB', 'DDD'], @@ -54,14 +54,20 @@ onEvent('recipes', (event) => { B: 'eidolon:polished_planks' }, id: 'create:crafting/materials/brass_casing' + }, + { + output: Item.of('create:encased_chain_drive', 2), + pattern: [' A ', 'BCB', ' A '], + key: { + A: 'minecraft:chain', + B: 'create:shaft', + C: 'create:andesite_casing' + }, + id: 'create:crafting/kinetics/encased_chain_drive' } ]; - newRecipes.forEach((recipe) => { - if (recipe.id) { - event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); - } else { - event.shaped(recipe.output, recipe.pattern, recipe.key); - } + recipes.forEach((recipe) => { + event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); }); }); diff --git a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/shaped.js b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/shaped.js index 3277084be2..49f3f2e815 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/shaped.js +++ b/kubejs/server_scripts/enigmatica/kubejs/expert/recipetypes/immersiveengineering/shaped.js @@ -15,7 +15,7 @@ onEvent('recipes', (event) => { } */ - const newRecipes = [ + const recipes = [ { output: Item.of('immersiveengineering:cokebrick', 3), pattern: ['CAC', 'ABA', 'CAC'], @@ -58,10 +58,21 @@ onEvent('recipes', (event) => { D: 'thermal:rf_coil' }, id: 'immersiveengineering:crafting/furnace_heater' + }, + { + output: Item.of('12x immersiveengineering:conveyor_basic'), + pattern: ['ABA', 'CDC'], + key: { + A: 'create:shaft', + B: 'create:belt_connector', + C: '#forge:gears/iron_aluminum', + D: 'thermal:redstone_servo' + }, + id: 'immersiveengineering:crafting/conveyor_basic' } ]; - newRecipes.forEach((recipe) => { + recipes.forEach((recipe) => { event.shaped(recipe.output, recipe.pattern, recipe.key).id(recipe.id); }); }); From 24669eda205a895bc6292cbe3b1ef81ba1fc9534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 9 Oct 2021 21:51:04 +0200 Subject: [PATCH 108/124] fixed dense construction block recipe being way too expensive #3400 --- .../enigmatica/kubejs/base/recipetypes/mekanism/injecting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js index 96400a7080..cfa8c242ca 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/mekanism/injecting.js @@ -3,7 +3,7 @@ onEvent('recipes', (event) => { { output: 'buildinggadgets:construction_block_dense', input: 'buildinggadgets:construction_block_powder', - gas: { tag: 'mekanism:water_vapor', amount: 200 } + gas: { tag: 'mekanism:water_vapor', amount: 1 } }, { output: 'minecraft:clay', From 228948e5235b993de210fbce133b62a96432ab6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 9 Oct 2021 21:57:17 +0200 Subject: [PATCH 109/124] mod updates --- config/compactcrafting-client.toml | 4 + config/ferritecore-mixin.toml | 2 + config/integratedcrafting-common.toml | 2 + config/sidebar_buttons.json | 3 + config/sophisticatedbackpacks-common.toml | 5 + config/supplementaries-registry.toml | 3 +- local/ftbchunks/client-config.snbt | 6 +- minecraftinstance.json | 1395 ++++++++++----------- 8 files changed, 686 insertions(+), 734 deletions(-) diff --git a/config/compactcrafting-client.toml b/config/compactcrafting-client.toml index d8df9bfbc6..5a3ed4237e 100644 --- a/config/compactcrafting-client.toml +++ b/config/compactcrafting-client.toml @@ -4,4 +4,8 @@ #The color for the projector fields. (HEX format) #Examples: Orange - #FF6A00, Violet - #32174D, Green - #00A658, Blue - #3A7FE1 projectorColor = "#FF6A00" + #The color for the projectors when not active. (HEX format) + projectorOffColor = "#898989" + #Whether or not activating F3 will enable debug renderers. + projectorDebugger = false diff --git a/config/ferritecore-mixin.toml b/config/ferritecore-mixin.toml index 2ad1f079d3..c72b7dc3ef 100644 --- a/config/ferritecore-mixin.toml +++ b/config/ferritecore-mixin.toml @@ -16,4 +16,6 @@ bakedQuadDeduplication = true compactFastMap = false #Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. populateNeighborTable = false +#Do not keep already-parsed NBT data for partially loaded chunks in memory +reducedChunkNBT = true diff --git a/config/integratedcrafting-common.toml b/config/integratedcrafting-common.toml index ec0f3a8714..1946051da2 100644 --- a/config/integratedcrafting-common.toml +++ b/config/integratedcrafting-common.toml @@ -8,6 +8,8 @@ maxPendingCraftingJobs = 256 #The minimal update frequency in ticks to use for crafting interfaces. minCraftingInterfaceUpdateFreq = 5 + #Enabling this option will log all recipe validation failures in crafting interfaces into the server logs + logRecipeValidationFailures = true [general] diff --git a/config/sidebar_buttons.json b/config/sidebar_buttons.json index 02781c55cc..702667cad7 100644 --- a/config/sidebar_buttons.json +++ b/config/sidebar_buttons.json @@ -11,6 +11,9 @@ "toggle.day": false, "toggle.night": false }, + "ftbessentials": { + "trash_can": true + }, "ftbchunks": { "chunks": true } diff --git a/config/sophisticatedbackpacks-common.toml b/config/sophisticatedbackpacks-common.toml index 28900e76ef..6e5f06c9e4 100644 --- a/config/sophisticatedbackpacks-common.toml +++ b/config/sophisticatedbackpacks-common.toml @@ -291,3 +291,8 @@ #Range: 1 ~ 6 slotsInRow = 4 + #Stack Upgrade Settings + [common.stackUpgrade] + #List of items that are not supposed to stack in backpack even when stack upgrade is inserted. Item registry names are expected here. + nonStackableItems = [] + diff --git a/config/supplementaries-registry.toml b/config/supplementaries-registry.toml index b3a7f93286..f7c25ef122 100644 --- a/config/supplementaries-registry.toml +++ b/config/supplementaries-registry.toml @@ -64,8 +64,9 @@ netherite_door = true candle_holder = true flint_block = true + flag = true + candy = true rope = true - flags = true notice_board = true redstone_illuminator = true crimson_lantern = true diff --git a/local/ftbchunks/client-config.snbt b/local/ftbchunks/client-config.snbt index 7b19438b1d..f81ea399be 100644 --- a/local/ftbchunks/client-config.snbt +++ b/local/ftbchunks/client-config.snbt @@ -20,6 +20,10 @@ # Default: false debug_info: false + # Moves map update tasks to a different thread. May cause CME errors and some weird chunks but could improve performance. + # Default: false + experimental_performance_improvement: false + # Advanced option. Foliage darkness # Default: 50 # Range: 0 ~ 255 @@ -36,7 +40,7 @@ # Different ways to render map # Default: "none" - # Valid values: "none", "night", "topography", "blocks", "biome_temperature", "light_sources" + # Valid values: "none", "night", "topography", "blocks", "light_sources" map_mode: "none" # Noise added to map to make it look less plastic diff --git a/minecraftinstance.json b/minecraftinstance.json index 4e93f3562d..ecea46a893 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,8 +30,8 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2021-10-03T17:38:52.3752312Z", - "playedCount": 396, + "lastPlayed": "2021-10-09T18:04:28.8483098Z", + "playedCount": 404, "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -47,8 +47,8 @@ "name": "Enigmatica6", "cachedScans": [], "isValid": true, - "lastPreviousMatchUpdate": "2021-10-02T18:09:03.9879875Z", - "lastRefreshAttempt": "2021-10-02T20:09:06.8328687+02:00", + "lastPreviousMatchUpdate": "2021-10-05T19:39:16.9964081Z", + "lastRefreshAttempt": "2021-10-05T21:39:18.1639886+02:00", "isEnabled": true, "isPinned": false, "gameVersion": "1.16.5", @@ -59,6 +59,7 @@ "preferenceDeleteSavedVariables": false, "preferenceProcessFileCommands": true, "preferenceReleaseType": 3, + "preferenceModdingFolderPath": null, "syncProfile": { "PreferenceEnabled": false, "PreferenceAutoSync": true, @@ -689,7 +690,7 @@ "dateInstalled": "2021-08-29T17:29:36.8913804Z", "dateUpdated": "2021-10-02T18:11:51.9804191Z", "dateLastUpdateAttempted": "2021-10-02T18:11:51.9804191Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -1361,7 +1362,7 @@ "dateInstalled": "2021-10-03T06:47:20.1606108Z", "dateUpdated": "2021-10-03T06:47:20.2486102Z", "dateLastUpdateAttempted": "2021-10-03T06:47:20.2486102Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -3334,14 +3335,14 @@ "addonID": 268655, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478390, - "displayName": "GameStages-Forge-1.16.5-7.3.11.jar", - "fileName": "GameStages-Forge-1.16.5-7.3.11.jar", - "fileDate": "2021-10-01T21:33:04.01Z", - "fileLength": 64285, + "id": 3480161, + "displayName": "GameStages-Forge-1.16.5-7.3.12.jar", + "fileName": "GameStages-Forge-1.16.5-7.3.12.jar", + "fileDate": "2021-10-03T15:03:46.897Z", + "fileLength": 64854, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/390/GameStages-Forge-1.16.5-7.3.11.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3480/161/GameStages-Forge-1.16.5-7.3.12.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -3356,13 +3357,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3709906896, + "fingerprint": 169134492, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3135022295, + "fingerprint": 169720749, "type": 0, "invalidFingerprint": false }, @@ -3391,7 +3392,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 162103789, + "packageFingerprint": 4159508737, "gameVersion": [ "1.16.5", "Forge" @@ -3405,12 +3406,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "GameStages-Forge-1.16.5-7.3.11.jar" + "FileNameOnDisk": "GameStages-Forge-1.16.5-7.3.12.jar" }, "dateInstalled": "2021-07-05T20:20:52.5028989Z", - "dateUpdated": "2021-10-02T18:13:50.0001238Z", - "dateLastUpdateAttempted": "2021-10-02T18:13:50.0001238Z", - "status": 4, + "dateUpdated": "2021-10-04T17:58:54.3481503Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:54.3481503Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4039,14 +4040,14 @@ "addonID": 429735, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3348414, - "displayName": "compactcrafting-1.0.0-beta.3.jar", - "fileName": "compactcrafting-1.0.0-beta.3.jar", - "fileDate": "2021-06-11T23:47:06.21Z", - "fileLength": 309615, + "id": 3484775, + "displayName": "compactcrafting-1.0.0-beta.6.jar", + "fileName": "compactcrafting-1.0.0-beta.6.jar", + "fileDate": "2021-10-08T12:42:33.537Z", + "fileLength": 411847, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3348/414/compactcrafting-1.0.0-beta.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3484/775/compactcrafting-1.0.0-beta.6.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -4054,79 +4055,61 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2430283600, - "type": 3, + "fingerprint": 3241882302, + "type": 0, "invalidFingerprint": false }, { - "foldername": "com", - "fingerprint": 3823144946, - "type": 3, + "foldername": "dev", + "fingerprint": 2303088978, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", - "fingerprint": 1269182687, - "type": 3, + "fingerprint": 1171374459, + "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 28181765, - "type": 3, + "foldername": "assets", + "fingerprint": 1690692290, + "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 3681724189, - "type": 3, + "foldername": ".cache", + "fingerprint": 494425664, + "type": 0, "invalidFingerprint": false }, { - "foldername": ".cache", - "fingerprint": 3018483409, - "type": 3, + "foldername": "data", + "fingerprint": 4235783927, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 824721554, + "packageFingerprint": 3794120598, "gameVersion": [ "1.16.5", "Forge" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2358047, - "projectId": 429735, - "packageFingerprintId": 681908996, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 3034210, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "compactcrafting-1.0.0-beta.3.jar" + "FileNameOnDisk": "compactcrafting-1.0.0-beta.6.jar" }, "dateInstalled": "2021-07-05T20:20:52.5303961Z", - "dateUpdated": "2021-07-05T20:20:52.5303961Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateUpdated": "2021-10-09T17:57:43.0462926Z", + "dateLastUpdateAttempted": "2021-10-09T17:57:43.0462926Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4250,14 +4233,14 @@ "addonID": 74072, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3439200, - "displayName": "Tinkers' Construct 3.1.2.265 for 1.16.5", - "fileName": "TConstruct-1.16.5-3.1.2.265.jar", - "fileDate": "2021-08-25T22:26:43.537Z", - "fileLength": 10088256, + "id": 3482903, + "displayName": "Tinkers' Construct 3.1.3.271 for 1.16.5", + "fileName": "TConstruct-1.16.5-3.1.3.271.jar", + "fileDate": "2021-10-06T04:51:36.85Z", + "fileLength": 10156061, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3439/200/TConstruct-1.16.5-3.1.2.265.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/903/TConstruct-1.16.5-3.1.3.271.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -4272,19 +4255,19 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3673228740, + "fingerprint": 4021684019, "type": 0, "invalidFingerprint": false }, { "foldername": "slimeknights", - "fingerprint": 920752151, + "fingerprint": 2397122769, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 3133816837, + "fingerprint": 1430793898, "type": 0, "invalidFingerprint": false }, @@ -4302,12 +4285,12 @@ }, { "foldername": "assets", - "fingerprint": 3868453206, + "fingerprint": 1618822610, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1187491472, + "packageFingerprint": 1950479871, "gameVersion": [ "1.16.5", "Forge" @@ -4321,11 +4304,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "TConstruct-1.16.5-3.1.2.265.jar" + "FileNameOnDisk": "TConstruct-1.16.5-3.1.3.271.jar" }, - "dateInstalled": "2021-08-04T13:38:29.0995552Z", - "dateUpdated": "2021-08-26T19:10:04.3161085Z", - "dateLastUpdateAttempted": "2021-08-26T19:10:04.3161085Z", + "dateInstalled": "2021-10-06T17:09:33.9094471Z", + "dateUpdated": "2021-10-06T17:09:33.9384422Z", + "dateLastUpdateAttempted": "2021-10-06T17:09:33.9384422Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -4498,7 +4481,7 @@ "dateInstalled": "2021-07-05T20:20:52.5193918Z", "dateUpdated": "2021-10-02T18:17:03.6712463Z", "dateLastUpdateAttempted": "2021-10-02T18:17:03.6712463Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -6897,20 +6880,20 @@ "addonID": 412082, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3477848, - "displayName": "supplementaries-1.16.5-0.17.3.jar", - "fileName": "supplementaries-1.16.5-0.17.3.jar", - "fileDate": "2021-10-01T06:13:56.547Z", - "fileLength": 12112003, + "id": 3485416, + "displayName": "supplementaries-1.16.5-0.17.4.jar", + "fileName": "supplementaries-1.16.5-0.17.4.jar", + "fileDate": "2021-10-09T03:59:45.217Z", + "fileLength": 12059694, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3477/848/supplementaries-1.16.5-0.17.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/416/supplementaries-1.16.5-0.17.4.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 284007, + "addonId": 486392, "type": 2, "fileId": 0 }, @@ -6922,20 +6905,20 @@ }, { "id": 0, - "addonId": 499980, - "type": 3, + "addonId": 284007, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 486392, + "addonId": 457570, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 457570, - "type": 2, + "addonId": 499980, + "type": 3, "fileId": 0 } ], @@ -6943,13 +6926,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4179400268, + "fingerprint": 2662533319, "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 2888922192, + "fingerprint": 1229736334, "type": 0, "invalidFingerprint": false }, @@ -6961,13 +6944,13 @@ }, { "foldername": "assets", - "fingerprint": 1851321099, + "fingerprint": 1406815681, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2826821329, + "fingerprint": 3809660118, "type": 0, "invalidFingerprint": false }, @@ -6996,7 +6979,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 911738399, + "packageFingerprint": 1650027509, "gameVersion": [ "1.16.3", "1.16.5", @@ -7012,11 +6995,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "supplementaries-1.16.5-0.17.3.jar" + "FileNameOnDisk": "supplementaries-1.16.5-0.17.4.jar" }, "dateInstalled": "2021-08-11T21:22:43.3270429Z", - "dateUpdated": "2021-10-02T18:16:38.1204726Z", - "dateLastUpdateAttempted": "2021-10-02T18:16:38.1204726Z", + "dateUpdated": "2021-10-09T18:04:00.7189842Z", + "dateLastUpdateAttempted": "2021-10-09T18:04:00.7189842Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -7190,16 +7173,16 @@ "addonID": 353928, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478383, - "displayName": "BotanyPots-1.16.5-7.1.25.jar", - "fileName": "BotanyPots-1.16.5-7.1.25.jar", - "fileDate": "2021-10-01T21:31:49.397Z", - "fileLength": 541145, + "id": 3481709, + "displayName": "BotanyPots-1.16.5-7.1.26.jar", + "fileName": "BotanyPots-1.16.5-7.1.26.jar", + "fileDate": "2021-10-04T23:43:11.96Z", + "fileLength": 542581, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/383/BotanyPots-1.16.5-7.1.25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/709/BotanyPots-1.16.5-7.1.26.jar", "isAlternate": false, - "alternateFileId": 3478384, + "alternateFileId": 3481710, "dependencies": [ { "id": 0, @@ -7212,13 +7195,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2561892324, + "fingerprint": 1186106640, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2694368843, + "fingerprint": 1874972436, "type": 0, "invalidFingerprint": false }, @@ -7241,7 +7224,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 4206940246, + "packageFingerprint": 3316911981, "gameVersion": [ "1.16.5", "Forge" @@ -7255,12 +7238,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "BotanyPots-1.16.5-7.1.25.jar" + "FileNameOnDisk": "BotanyPots-1.16.5-7.1.26.jar" }, "dateInstalled": "2021-07-05T20:20:54.9228218Z", - "dateUpdated": "2021-10-02T18:11:56.3004203Z", - "dateLastUpdateAttempted": "2021-10-02T18:11:56.3004203Z", - "status": 4, + "dateUpdated": "2021-10-06T16:58:24.5135097Z", + "dateLastUpdateAttempted": "2021-10-06T16:58:24.5135097Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -9132,32 +9115,32 @@ "addonID": 295910, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474915, - "displayName": "IntegratedTerminals-1.16.5-1.2.5.jar", - "fileName": "IntegratedTerminals-1.16.5-1.2.5.jar", - "fileDate": "2021-09-27T17:39:44.053Z", - "fileLength": 473386, + "id": 3484112, + "displayName": "IntegratedTerminals-1.16.5-1.2.7.jar", + "fileName": "IntegratedTerminals-1.16.5-1.2.7.jar", + "fileDate": "2021-10-07T16:46:32.49Z", + "fileLength": 473939, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/915/IntegratedTerminals-1.16.5-1.2.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3484/112/IntegratedTerminals-1.16.5-1.2.7.jar", "isAlternate": false, - "alternateFileId": 3474916, + "alternateFileId": 3484113, "dependencies": [ { "id": 0, - "addonId": 251389, - "type": 3, + "addonId": 287357, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 287357, - "type": 2, + "addonId": 232758, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 232758, + "addonId": 251389, "type": 3, "fileId": 0 }, @@ -9172,43 +9155,43 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3959407484, + "fingerprint": 1244823680, "type": 0, "invalidFingerprint": false }, { "foldername": "org", - "fingerprint": 1287632607, + "fingerprint": 1118703486, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 191223691, + "foldername": "logo.png", + "fingerprint": 2877892280, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1782312737, + "foldername": "logo_small.png", + "fingerprint": 18908756, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo_small.png", - "fingerprint": 18908756, + "foldername": "pack.mcmeta", + "fingerprint": 1782312737, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2441444065, + "foldername": "assets", + "fingerprint": 191223691, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 2877892280, + "foldername": "data", + "fingerprint": 2441444065, "type": 0, "invalidFingerprint": false }, @@ -9219,7 +9202,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2213612494, + "packageFingerprint": 2735166207, "gameVersion": [ "1.16.5", "Forge" @@ -9233,11 +9216,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IntegratedTerminals-1.16.5-1.2.5.jar" + "FileNameOnDisk": "IntegratedTerminals-1.16.5-1.2.7.jar" }, "dateInstalled": "2021-07-05T20:20:54.9328256Z", - "dateUpdated": "2021-10-02T18:14:19.1137337Z", - "dateLastUpdateAttempted": "2021-10-02T18:14:19.1137337Z", + "dateUpdated": "2021-10-09T17:57:41.3355848Z", + "dateLastUpdateAttempted": "2021-10-09T17:57:41.3355848Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -10314,14 +10297,14 @@ "addonID": 231095, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478816, - "displayName": "Rebuild: 1.0.10", - "fileName": "chiselsandbits-1.0.10-BETA-universal.jar", - "fileDate": "2021-10-02T09:09:29.437Z", - "fileLength": 1000958, - "releaseType": 2, + "id": 3481100, + "displayName": "1.0.12", + "fileName": "chiselsandbits-1.0.12-RELEASE-universal.jar", + "fileDate": "2021-10-04T11:55:32.18Z", + "fileLength": 1007936, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/816/chiselsandbits-1.0.10-BETA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/100/chiselsandbits-1.0.12-RELEASE-universal.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -10336,19 +10319,19 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 95900484, + "fingerprint": 1106352185, "type": 0, "invalidFingerprint": false }, { "foldername": "mod", - "fingerprint": 249566498, + "fingerprint": 369568726, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1842410271, + "fingerprint": 4099989435, "type": 0, "invalidFingerprint": false }, @@ -10371,7 +10354,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2011001551, + "packageFingerprint": 4085583314, "gameVersion": [ "1.16.3", "1.16.5", @@ -10387,12 +10370,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "chiselsandbits-1.0.10-BETA-universal.jar" + "FileNameOnDisk": "chiselsandbits-1.0.12-RELEASE-universal.jar" }, "dateInstalled": "2021-09-24T18:21:26.2309502Z", - "dateUpdated": "2021-10-02T18:11:53.8104202Z", - "dateLastUpdateAttempted": "2021-10-02T18:11:53.8104202Z", - "status": 4, + "dateUpdated": "2021-10-04T17:58:44.1394374Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:44.1394374Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11094,7 +11077,7 @@ "dateInstalled": "2021-07-05T20:20:57.5365845Z", "dateUpdated": "2021-10-02T18:33:04.1466519Z", "dateLastUpdateAttempted": "2021-10-02T18:33:04.1466519Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11312,20 +11295,20 @@ "addonID": 313970, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3451418, - "displayName": "Apotheosis-1.16.5-4.8.0.jar", - "fileName": "Apotheosis-1.16.5-4.8.0.jar", - "fileDate": "2021-09-05T19:51:43.623Z", - "fileLength": 925636, + "id": 3485463, + "displayName": "Apotheosis-1.16.5-4.8.1.jar", + "fileName": "Apotheosis-1.16.5-4.8.1.jar", + "fileDate": "2021-10-09T05:55:53.84Z", + "fileLength": 942382, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3451/418/Apotheosis-1.16.5-4.8.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/463/Apotheosis-1.16.5-4.8.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 250419, + "addonId": 324717, "type": 2, "fileId": 0 }, @@ -11337,13 +11320,13 @@ }, { "id": 0, - "addonId": 253449, + "addonId": 238222, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 238222, + "addonId": 250419, "type": 2, "fileId": 0 } @@ -11352,7 +11335,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4219668769, + "fingerprint": 3914164658, "type": 0, "invalidFingerprint": false }, @@ -11364,13 +11347,13 @@ }, { "foldername": "shadows", - "fingerprint": 544914589, + "fingerprint": 1280547673, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3327823722, + "fingerprint": 3962720693, "type": 0, "invalidFingerprint": false }, @@ -11382,7 +11365,7 @@ }, { "foldername": "data", - "fingerprint": 778286281, + "fingerprint": 388620936, "type": 0, "invalidFingerprint": false }, @@ -11393,7 +11376,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3774337239, + "packageFingerprint": 3878280824, "gameVersion": [ "1.16.5", "Forge" @@ -11407,12 +11390,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Apotheosis-1.16.5-4.8.0.jar" + "FileNameOnDisk": "Apotheosis-1.16.5-4.8.1.jar" }, "dateInstalled": "2021-09-27T18:50:08.2167934Z", - "dateUpdated": "2021-09-27T18:50:08.2297943Z", - "dateLastUpdateAttempted": "2021-09-27T18:50:08.2297943Z", - "status": 5, + "dateUpdated": "2021-10-09T18:03:13.0283003Z", + "dateLastUpdateAttempted": "2021-10-09T18:03:13.0283003Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12570,7 +12553,7 @@ "dateInstalled": "2021-07-05T20:20:57.5175818Z", "dateUpdated": "2021-10-02T18:33:03.6606507Z", "dateLastUpdateAttempted": "2021-10-02T18:33:03.6606507Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12878,14 +12861,14 @@ "addonID": 361026, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3475377, - "displayName": "occultism-1.15.0.jar", - "fileName": "occultism-1.16.5-1.15.0.jar", - "fileDate": "2021-09-28T06:53:57.103Z", - "fileLength": 4268046, + "id": 3482197, + "displayName": "occultism-1.15.1.jar", + "fileName": "occultism-1.16.5-1.15.1.jar", + "fileDate": "2021-10-05T13:56:49.2Z", + "fileLength": 4275502, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3475/377/occultism-1.16.5-1.15.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/197/occultism-1.16.5-1.15.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -12906,19 +12889,19 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 595215799, + "fingerprint": 1672823568, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 728086299, + "fingerprint": 183310938, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1963540963, + "fingerprint": 583978682, "type": 0, "invalidFingerprint": false }, @@ -12930,7 +12913,7 @@ }, { "foldername": "data", - "fingerprint": 918326848, + "fingerprint": 2578633093, "type": 0, "invalidFingerprint": false }, @@ -12941,7 +12924,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2179117715, + "packageFingerprint": 585161433, "gameVersion": [ "1.16.3", "1.16.5", @@ -12958,12 +12941,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "occultism-1.16.5-1.15.0.jar" + "FileNameOnDisk": "occultism-1.16.5-1.15.1.jar" }, "dateInstalled": "2021-09-25T14:41:32.7416314Z", - "dateUpdated": "2021-10-02T18:16:40.8324708Z", - "dateLastUpdateAttempted": "2021-10-02T18:16:40.8324708Z", - "status": 4, + "dateUpdated": "2021-10-06T17:09:16.1265372Z", + "dateLastUpdateAttempted": "2021-10-06T17:09:16.1265372Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13654,16 +13637,16 @@ "addonID": 247007, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474905, - "displayName": "CommonCapabilities-1.16.5-2.7.1.jar", - "fileName": "CommonCapabilities-1.16.5-2.7.1.jar", - "fileDate": "2021-09-27T17:37:36.527Z", - "fileLength": 232695, + "id": 3482420, + "displayName": "CommonCapabilities-1.16.5-2.8.0.jar", + "fileName": "CommonCapabilities-1.16.5-2.8.0.jar", + "fileDate": "2021-10-05T18:14:03.637Z", + "fileLength": 233490, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/905/CommonCapabilities-1.16.5-2.7.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/420/CommonCapabilities-1.16.5-2.8.0.jar", "isAlternate": false, - "alternateFileId": 3474906, + "alternateFileId": 3482421, "dependencies": [ { "id": 0, @@ -13676,13 +13659,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1750697612, + "fingerprint": 1368267283, "type": 0, "invalidFingerprint": false }, { "foldername": "org", - "fingerprint": 792019091, + "fingerprint": 179509137, "type": 0, "invalidFingerprint": false }, @@ -13717,7 +13700,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 4255918634, + "packageFingerprint": 3223743797, "gameVersion": [ "1.16.5", "Forge" @@ -13731,11 +13714,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "CommonCapabilities-1.16.5-2.7.1.jar" + "FileNameOnDisk": "CommonCapabilities-1.16.5-2.8.0.jar" }, "dateInstalled": "2021-07-05T20:20:57.5465805Z", - "dateUpdated": "2021-09-27T17:47:39.9756577Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:39.9756577Z", + "dateUpdated": "2021-10-06T16:58:24.1875085Z", + "dateLastUpdateAttempted": "2021-10-06T16:58:24.1875085Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14161,14 +14144,14 @@ "addonID": 441647, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3453471, - "displayName": "FramedBlocks-2.10.0.jar", - "fileName": "FramedBlocks-2.10.0.jar", - "fileDate": "2021-09-07T21:41:00.093Z", - "fileLength": 535672, + "id": 3480743, + "displayName": "FramedBlocks-2.11.0.jar", + "fileName": "FramedBlocks-2.11.0.jar", + "fileDate": "2021-10-03T23:56:39.877Z", + "fileLength": 569942, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3453/471/FramedBlocks-2.10.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3480/743/FramedBlocks-2.11.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -14176,7 +14159,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4073729383, + "fingerprint": 3258375913, "type": 0, "invalidFingerprint": false }, @@ -14188,31 +14171,31 @@ }, { "foldername": "xfacthd", - "fingerprint": 3176010730, + "fingerprint": 3416463902, "type": 0, "invalidFingerprint": false }, { "foldername": ".cache", - "fingerprint": 2730059780, + "fingerprint": 1637966753, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 1188843323, + "fingerprint": 1004783936, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 296462197, + "fingerprint": 204396418, "type": 0, "invalidFingerprint": false }, { "foldername": "framedblocks.mixin.json", - "fingerprint": 3441545819, + "fingerprint": 4089559895, "type": 0, "invalidFingerprint": false }, @@ -14230,12 +14213,12 @@ }, { "foldername": "framedblocks.refmap.json", - "fingerprint": 307935087, + "fingerprint": 2490754047, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1193117242, + "packageFingerprint": 871125421, "gameVersion": [ "1.16.5", "Forge" @@ -14249,11 +14232,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "FramedBlocks-2.10.0.jar" + "FileNameOnDisk": "FramedBlocks-2.11.0.jar" }, "dateInstalled": "2021-07-10T17:55:07.2563413Z", - "dateUpdated": "2021-09-08T17:53:19.2414871Z", - "dateLastUpdateAttempted": "2021-09-08T17:53:19.2414871Z", + "dateUpdated": "2021-10-04T17:58:56.9261501Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:56.9261501Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -14359,38 +14342,38 @@ "addonID": 238086, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3476601, - "displayName": "kubejs-forge-1605.3.18-build.141.jar", - "fileName": "kubejs-forge-1605.3.18-build.141.jar", - "fileDate": "2021-09-29T19:08:19.02Z", - "fileLength": 850681, + "id": 3481251, + "displayName": "kubejs-forge-1605.3.18-build.144.jar", + "fileName": "kubejs-forge-1605.3.18-build.144.jar", + "fileDate": "2021-10-04T15:29:11.15Z", + "fileLength": 851611, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3476/601/kubejs-forge-1605.3.18-build.141.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/251/kubejs-forge-1605.3.18-build.144.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 238222, + "addonId": 268655, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 268655, - "type": 2, + "addonId": 416294, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 419699, - "type": 3, + "addonId": 238222, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 416294, + "addonId": 419699, "type": 3, "fileId": 0 } @@ -14447,19 +14430,19 @@ }, { "foldername": "META-INF", - "fingerprint": 319174324, + "fingerprint": 1661160531, "type": 0, "invalidFingerprint": false }, { "foldername": "dev", - "fingerprint": 3835847390, + "fingerprint": 3826522156, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_KubeJS1165_common_50fdb9eedad74cb7974c212aa0feec32", - "fingerprint": 1235254752, + "foldername": "architectury_inject_KubeJS1165_common_df75c6b7310947679014773671c5ed9a", + "fingerprint": 538915640, "type": 0, "invalidFingerprint": false }, @@ -14470,7 +14453,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 764324113, + "packageFingerprint": 2628864267, "gameVersion": [ "1.16.5", "Forge", @@ -14485,12 +14468,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "kubejs-forge-1605.3.18-build.141.jar" + "FileNameOnDisk": "kubejs-forge-1605.3.18-build.144.jar" }, "dateInstalled": "2021-09-28T18:08:09.9226898Z", - "dateUpdated": "2021-10-02T18:14:12.8349593Z", - "dateLastUpdateAttempted": "2021-10-02T18:14:12.8349593Z", - "status": 4, + "dateUpdated": "2021-10-04T17:58:52.0071512Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:52.0071512Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -14609,14 +14592,14 @@ "addonID": 363363, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3470966, - "displayName": "Extreme Sound Muffler 3.15 - Forge 1.16.5", - "fileName": "extremeSoundMuffler-3.15_1.16.5.jar", - "fileDate": "2021-09-25T12:21:48.053Z", - "fileLength": 283646, + "id": 3483059, + "displayName": "Extreme Sound Muffler 3.16 - Forge 1.16.5", + "fileName": "extremeSoundMuffler-3.16_1.16.5.jar", + "fileDate": "2021-10-06T10:54:28.19Z", + "fileLength": 283454, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3470/966/extremeSoundMuffler-3.15_1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3483/59/extremeSoundMuffler-3.16_1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -14624,13 +14607,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1240450862, + "fingerprint": 3601481315, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3878571952, + "fingerprint": 248376923, "type": 0, "invalidFingerprint": false }, @@ -14659,7 +14642,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1435304898, + "packageFingerprint": 331046537, "gameVersion": [ "1.16.5", "Forge" @@ -14673,11 +14656,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "extremeSoundMuffler-3.15_1.16.5.jar" + "FileNameOnDisk": "extremeSoundMuffler-3.16_1.16.5.jar" }, "dateInstalled": "2021-07-05T20:21:03.3831197Z", - "dateUpdated": "2021-09-25T14:37:02.399646Z", - "dateLastUpdateAttempted": "2021-09-25T14:37:02.399646Z", + "dateUpdated": "2021-10-07T18:09:14.2795249Z", + "dateLastUpdateAttempted": "2021-10-07T18:09:14.2795249Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -15131,20 +15114,20 @@ "addonID": 287357, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3409900, - "displayName": "IntegratedCrafting-1.16.5-1.0.17.jar", - "fileName": "IntegratedCrafting-1.16.5-1.0.17.jar", - "fileDate": "2021-08-02T17:56:50.023Z", - "fileLength": 265234, + "id": 3482425, + "displayName": "IntegratedCrafting-1.16.5-1.0.18.jar", + "fileName": "IntegratedCrafting-1.16.5-1.0.18.jar", + "fileDate": "2021-10-05T18:15:00.473Z", + "fileLength": 265644, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3409/900/IntegratedCrafting-1.16.5-1.0.17.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/425/IntegratedCrafting-1.16.5-1.0.18.jar", "isAlternate": false, - "alternateFileId": 3409901, + "alternateFileId": 3482426, "dependencies": [ { "id": 0, - "addonId": 236307, + "addonId": 251389, "type": 3, "fileId": 0 }, @@ -15156,7 +15139,7 @@ }, { "id": 0, - "addonId": 251389, + "addonId": 236307, "type": 3, "fileId": 0 } @@ -15165,25 +15148,25 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 651679679, + "fingerprint": 2231806482, "type": 0, "invalidFingerprint": false }, { "foldername": "org", - "fingerprint": 2327455343, + "fingerprint": 793353792, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1296569065, + "foldername": "assets", + "fingerprint": 2126579824, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2126579824, + "foldername": "pack.mcmeta", + "fingerprint": 1296569065, "type": 0, "invalidFingerprint": false }, @@ -15194,19 +15177,19 @@ "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3950789569, + "foldername": "data", + "fingerprint": 3192681218, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3192681218, + "foldername": "logo.png", + "fingerprint": 3950789569, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1446969018, + "packageFingerprint": 1057330700, "gameVersion": [ "1.16.5", "Forge" @@ -15220,11 +15203,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IntegratedCrafting-1.16.5-1.0.17.jar" + "FileNameOnDisk": "IntegratedCrafting-1.16.5-1.0.18.jar" }, "dateInstalled": "2021-07-05T20:19:25.3039342Z", - "dateUpdated": "2021-08-02T19:50:42.4933794Z", - "dateLastUpdateAttempted": "2021-08-02T19:50:42.4933794Z", + "dateUpdated": "2021-10-06T16:58:22.0913521Z", + "dateLastUpdateAttempted": "2021-10-06T16:58:22.0913521Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16125,7 +16108,7 @@ "dateInstalled": "2021-07-05T20:21:03.3771196Z", "dateUpdated": "2021-10-02T18:12:00.1484229Z", "dateLastUpdateAttempted": "2021-10-02T18:12:00.1484229Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16140,14 +16123,14 @@ "addonID": 238222, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3438494, - "displayName": "jei-1.16.5-7.7.1.121.jar", - "fileName": "jei-1.16.5-7.7.1.121.jar", - "fileDate": "2021-08-25T06:28:30.36Z", - "fileLength": 814217, + "id": 3485382, + "displayName": "jei-1.16.5-7.7.1.124.jar", + "fileName": "jei-1.16.5-7.7.1.124.jar", + "fileDate": "2021-10-09T02:53:39.91Z", + "fileLength": 814485, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3438/494/jei-1.16.5-7.7.1.121.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/382/jei-1.16.5-7.7.1.124.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16155,13 +16138,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2317160737, + "fingerprint": 2322985871, "type": 0, "invalidFingerprint": false }, { "foldername": "mezz", - "fingerprint": 3778864182, + "fingerprint": 568143629, "type": 0, "invalidFingerprint": false }, @@ -16178,7 +16161,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3158079338, + "packageFingerprint": 229628057, "gameVersion": [ "1.16.5", "Forge" @@ -16192,12 +16175,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "jei-1.16.5-7.7.1.121.jar" + "FileNameOnDisk": "jei-1.16.5-7.7.1.124.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3651184Z", - "dateUpdated": "2021-08-26T19:09:25.9874397Z", - "dateLastUpdateAttempted": "2021-08-26T19:09:25.9874397Z", - "status": 5, + "dateInstalled": "2021-10-04T19:00:56.2227538Z", + "dateUpdated": "2021-10-09T18:03:03.4088821Z", + "dateLastUpdateAttempted": "2021-10-09T18:03:03.4088821Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16212,14 +16195,14 @@ "addonID": 74924, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3439180, - "displayName": "Mantle 1.6.123 for 1.16.5", - "fileName": "Mantle-1.16.5-1.6.123.jar", - "fileDate": "2021-08-25T22:02:55.607Z", - "fileLength": 742903, + "id": 3482897, + "displayName": "Mantle 1.6.127 for 1.16.5", + "fileName": "Mantle-1.16.5-1.6.127.jar", + "fileDate": "2021-10-06T04:47:58.91Z", + "fileLength": 746595, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3439/180/Mantle-1.16.5-1.6.123.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/897/Mantle-1.16.5-1.6.127.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16227,13 +16210,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1004667897, + "fingerprint": 2008750178, "type": 0, "invalidFingerprint": false }, { "foldername": "slimeknights", - "fingerprint": 4098133632, + "fingerprint": 3230285198, "type": 0, "invalidFingerprint": false }, @@ -16262,7 +16245,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1203431666, + "packageFingerprint": 1074832223, "gameVersion": [ "1.16.5", "Forge" @@ -16276,11 +16259,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Mantle-1.16.5-1.6.123.jar" + "FileNameOnDisk": "Mantle-1.16.5-1.6.127.jar" }, - "dateInstalled": "2021-07-05T20:21:03.3541194Z", - "dateUpdated": "2021-08-26T19:09:30.6854897Z", - "dateLastUpdateAttempted": "2021-08-26T19:09:30.6854897Z", + "dateInstalled": "2021-10-06T17:09:47.5252987Z", + "dateUpdated": "2021-10-06T17:09:47.5312813Z", + "dateLastUpdateAttempted": "2021-10-06T17:09:47.5312813Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16376,14 +16359,14 @@ "addonID": 361276, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3474391, - "displayName": "lootr-1.16.5-0.0.8.23.jar", - "fileName": "lootr-1.16.5-0.0.8.23.jar", - "fileDate": "2021-09-27T00:13:51.543Z", - "fileLength": 198584, + "id": 3479880, + "displayName": "lootr-1.16.5-0.0.8.24.jar", + "fileName": "lootr-1.16.5-0.0.8.24.jar", + "fileDate": "2021-10-03T09:12:49.863Z", + "fileLength": 198582, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3474/391/lootr-1.16.5-0.0.8.23.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3479/880/lootr-1.16.5-0.0.8.24.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16391,7 +16374,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 429005880, + "fingerprint": 2666374326, "type": 0, "invalidFingerprint": false }, @@ -16432,7 +16415,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3645318813, + "packageFingerprint": 701533300, "gameVersion": [ "1.16.5", "Forge", @@ -16447,11 +16430,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "lootr-1.16.5-0.0.8.23.jar" + "FileNameOnDisk": "lootr-1.16.5-0.0.8.24.jar" }, "dateInstalled": "2021-07-05T20:21:03.3531188Z", - "dateUpdated": "2021-09-27T17:47:35.5904154Z", - "dateLastUpdateAttempted": "2021-09-27T17:47:35.5904154Z", + "dateUpdated": "2021-10-04T18:04:06.5886439Z", + "dateLastUpdateAttempted": "2021-10-04T18:04:06.5886439Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -16536,7 +16519,7 @@ "dateInstalled": "2021-09-17T18:18:50.3163976Z", "dateUpdated": "2021-10-02T18:13:49.3718365Z", "dateLastUpdateAttempted": "2021-10-02T18:13:49.3718365Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16750,7 +16733,7 @@ "dateInstalled": "2021-07-10T17:55:07.2513379Z", "dateUpdated": "2021-10-02T18:16:38.2314712Z", "dateLastUpdateAttempted": "2021-10-02T18:16:38.2314712Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18388,28 +18371,28 @@ "addonID": 377109, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478341, - "displayName": "ToolStats-1.16.5-6.0.3.jar", - "fileName": "ToolStats-1.16.5-6.0.3.jar", - "fileDate": "2021-10-01T21:03:50.323Z", - "fileLength": 9853, + "id": 3481705, + "displayName": "ToolStats-1.16.5-6.0.4.jar", + "fileName": "ToolStats-1.16.5-6.0.4.jar", + "fileDate": "2021-10-04T23:42:14.32Z", + "fileLength": 10273, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/341/ToolStats-1.16.5-6.0.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/705/ToolStats-1.16.5-6.0.4.jar", "isAlternate": false, - "alternateFileId": 3478342, + "alternateFileId": 3481706, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1466050769, + "fingerprint": 1535999489, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2327503992, + "fingerprint": 3655757526, "type": 0, "invalidFingerprint": false }, @@ -18426,7 +18409,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2169543073, + "packageFingerprint": 4043968383, "gameVersion": [ "1.16.5", "Forge" @@ -18440,12 +18423,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ToolStats-1.16.5-6.0.3.jar" + "FileNameOnDisk": "ToolStats-1.16.5-6.0.4.jar" }, "dateInstalled": "2021-07-05T20:21:03.3451193Z", - "dateUpdated": "2021-10-02T18:16:17.3444961Z", - "dateLastUpdateAttempted": "2021-10-02T18:16:17.3444961Z", - "status": 4, + "dateUpdated": "2021-10-06T17:09:16.5476717Z", + "dateLastUpdateAttempted": "2021-10-06T17:09:16.5476717Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -20287,26 +20270,26 @@ "addonID": 312353, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3475090, - "displayName": "Artifacts-1.16.5-2.10.2.jar", - "fileName": "Artifacts-1.16.5-2.10.2.jar", - "fileDate": "2021-09-27T21:10:28.033Z", - "fileLength": 466241, + "id": 3485700, + "displayName": "Artifacts-1.16.5-2.10.3.jar", + "fileName": "Artifacts-1.16.5-2.10.3.jar", + "fileDate": "2021-10-09T13:16:49.423Z", + "fileLength": 467595, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3475/90/Artifacts-1.16.5-2.10.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/700/Artifacts-1.16.5-2.10.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 465066, + "addonId": 309927, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 309927, + "addonId": 465066, "type": 3, "fileId": 0 } @@ -20315,31 +20298,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1115433340, + "fingerprint": 3274632632, "type": 0, "invalidFingerprint": false }, { "foldername": "artifacts", - "fingerprint": 3308877399, + "fingerprint": 2174113529, "type": 0, "invalidFingerprint": false }, { "foldername": ".cache", - "fingerprint": 2587024261, + "fingerprint": 2201887183, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 3452165575, + "fingerprint": 2934735429, "type": 0, "invalidFingerprint": false }, { "foldername": "data", - "fingerprint": 2793233805, + "fingerprint": 2499046309, "type": 0, "invalidFingerprint": false }, @@ -20368,7 +20351,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3318923622, + "packageFingerprint": 2672758573, "gameVersion": [ "1.16.5", "Forge" @@ -20382,11 +20365,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Artifacts-1.16.5-2.10.2.jar" + "FileNameOnDisk": "Artifacts-1.16.5-2.10.3.jar" }, "dateInstalled": "2021-07-05T20:19:25.3019353Z", - "dateUpdated": "2021-10-02T18:11:57.5574198Z", - "dateLastUpdateAttempted": "2021-10-02T18:11:57.5574198Z", + "dateUpdated": "2021-10-09T18:03:11.073299Z", + "dateLastUpdateAttempted": "2021-10-09T18:03:11.073299Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -20953,26 +20936,26 @@ "addonID": 236307, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3476398, - "displayName": "IntegratedDynamics-1.16.5-1.10.1.jar", - "fileName": "IntegratedDynamics-1.16.5-1.10.1.jar", - "fileDate": "2021-09-29T14:43:46.607Z", - "fileLength": 3162333, + "id": 3482429, + "displayName": "IntegratedDynamics-1.16.5-1.10.2.jar", + "fileName": "IntegratedDynamics-1.16.5-1.10.2.jar", + "fileDate": "2021-10-05T18:16:04.087Z", + "fileLength": 3162330, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3476/398/IntegratedDynamics-1.16.5-1.10.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/429/IntegratedDynamics-1.16.5-1.10.2.jar", "isAlternate": false, - "alternateFileId": 3476399, + "alternateFileId": 3482430, "dependencies": [ { "id": 0, - "addonId": 232758, + "addonId": 247007, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 247007, + "addonId": 232758, "type": 3, "fileId": 0 } @@ -20981,13 +20964,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3158566783, + "fingerprint": 2686072377, "type": 0, "invalidFingerprint": false }, { "foldername": "org", - "fingerprint": 1249784503, + "fingerprint": 2182935820, "type": 0, "invalidFingerprint": false }, @@ -21034,7 +21017,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1352345368, + "packageFingerprint": 669592767, "gameVersion": [ "1.16.5", "Forge" @@ -21048,12 +21031,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "IntegratedDynamics-1.16.5-1.10.1.jar" + "FileNameOnDisk": "IntegratedDynamics-1.16.5-1.10.2.jar" }, "dateInstalled": "2021-07-05T20:19:25.3009353Z", - "dateUpdated": "2021-10-02T18:14:22.4409612Z", - "dateLastUpdateAttempted": "2021-10-02T18:14:22.4409612Z", - "status": 4, + "dateUpdated": "2021-10-06T16:58:23.1824413Z", + "dateLastUpdateAttempted": "2021-10-06T16:58:23.1824413Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -21177,14 +21160,14 @@ "addonID": 368293, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3469414, - "displayName": "Repurposed Structures v3.2.5 (1.16.5 MC)", - "fileName": "repurposed_structures_forge-3.2.5+1.16.5.jar", - "fileDate": "2021-09-23T16:25:23.263Z", - "fileLength": 5239086, + "id": 3485284, + "displayName": "Repurposed Structures v3.2.8 (1.16.5 MC)", + "fileName": "repurposed_structures_forge-3.2.8+1.16.5.jar", + "fileDate": "2021-10-08T23:46:57.97Z", + "fileLength": 5251685, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3469/414/repurposed_structures_forge-3.2.5+1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/284/repurposed_structures_forge-3.2.8+1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -21192,13 +21175,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 524167333, + "fingerprint": 1229997125, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1666062541, + "fingerprint": 2767977553, "type": 0, "invalidFingerprint": false }, @@ -21210,7 +21193,7 @@ }, { "foldername": "data", - "fingerprint": 954114756, + "fingerprint": 2979215546, "type": 0, "invalidFingerprint": false }, @@ -21228,18 +21211,18 @@ }, { "foldername": "repurposed_structures.mixins.json", - "fingerprint": 2605214407, + "fingerprint": 2115470436, "type": 0, "invalidFingerprint": false }, { "foldername": "repurposed_structures.refmap.json", - "fingerprint": 2123920743, + "fingerprint": 3925754959, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 744666860, + "packageFingerprint": 2237146356, "gameVersion": [ "1.16.5", "Forge" @@ -21253,12 +21236,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "repurposed_structures_forge-3.2.5+1.16.5.jar" + "FileNameOnDisk": "repurposed_structures_forge-3.2.8+1.16.5.jar" }, "dateInstalled": "2021-08-05T21:06:59.9349112Z", - "dateUpdated": "2021-09-24T18:45:33.5399274Z", - "dateLastUpdateAttempted": "2021-09-24T18:45:33.5399274Z", - "status": 5, + "dateUpdated": "2021-10-09T18:04:07.5889567Z", + "dateLastUpdateAttempted": "2021-10-09T18:04:07.5889567Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -21612,14 +21595,14 @@ "addonID": 410811, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3453355, - "displayName": "ftb-essentials-1605.1.4-build.20.jar", - "fileName": "ftb-essentials-1605.1.4-build.20.jar", - "fileDate": "2021-09-07T18:47:25.05Z", - "fileLength": 74966, + "id": 3483906, + "displayName": "ftb-essentials-1605.1.4-build.24.jar", + "fileName": "ftb-essentials-1605.1.4-build.24.jar", + "fileDate": "2021-10-07T12:12:42.853Z", + "fileLength": 75956, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3453/355/ftb-essentials-1605.1.4-build.20.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3483/906/ftb-essentials-1605.1.4-build.24.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -21639,8 +21622,14 @@ "isAvailable": true, "modules": [ { - "foldername": "pack.mcmeta", - "fingerprint": 1298629587, + "foldername": "data", + "fingerprint": 2116477754, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "assets", + "fingerprint": 28964555, "type": 0, "invalidFingerprint": false }, @@ -21651,14 +21640,14 @@ "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2116477754, + "foldername": "pack.mcmeta", + "fingerprint": 1298629587, "type": 0, "invalidFingerprint": false }, { "foldername": "META-INF", - "fingerprint": 3953174334, + "fingerprint": 2333265292, "type": 0, "invalidFingerprint": false }, @@ -21669,7 +21658,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3394438896, + "packageFingerprint": 3453836885, "gameVersion": [ "1.16.5" ], @@ -21682,11 +21671,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-essentials-1605.1.4-build.20.jar" + "FileNameOnDisk": "ftb-essentials-1605.1.4-build.24.jar" }, "dateInstalled": "2021-07-05T20:21:08.4264731Z", - "dateUpdated": "2021-09-08T17:52:51.9229571Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:51.9229571Z", + "dateUpdated": "2021-10-07T18:09:09.9515333Z", + "dateLastUpdateAttempted": "2021-10-07T18:09:09.9515333Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22487,14 +22476,14 @@ "addonID": 377281, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478394, - "displayName": "DarkPaintings-1.16.5-6.0.4.jar", - "fileName": "DarkPaintings-1.16.5-6.0.4.jar", - "fileDate": "2021-10-01T21:35:35.513Z", - "fileLength": 26335, + "id": 3480157, + "displayName": "DarkPaintings-1.16.5-6.0.5.jar", + "fileName": "DarkPaintings-1.16.5-6.0.5.jar", + "fileDate": "2021-10-03T15:01:51.85Z", + "fileLength": 26813, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/394/DarkPaintings-1.16.5-6.0.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3480/157/DarkPaintings-1.16.5-6.0.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -22502,13 +22491,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 329766613, + "fingerprint": 583492775, "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 4286905945, + "fingerprint": 1803140679, "type": 0, "invalidFingerprint": false }, @@ -22525,7 +22514,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3685268912, + "packageFingerprint": 581105143, "gameVersion": [ "1.16.5", "Forge" @@ -22539,12 +22528,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "DarkPaintings-1.16.5-6.0.4.jar" + "FileNameOnDisk": "DarkPaintings-1.16.5-6.0.5.jar" }, "dateInstalled": "2021-07-05T20:21:08.4824714Z", - "dateUpdated": "2021-10-02T18:13:55.9579688Z", - "dateLastUpdateAttempted": "2021-10-02T18:13:55.9579688Z", - "status": 4, + "dateUpdated": "2021-10-04T17:58:40.8110309Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:40.8110309Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -22743,7 +22732,7 @@ "dateInstalled": "2021-09-17T18:18:50.6213974Z", "dateUpdated": "2021-10-02T18:13:52.0801122Z", "dateLastUpdateAttempted": "2021-10-02T18:13:52.0801122Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -23204,14 +23193,14 @@ "addonID": 247560, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3444476, - "displayName": "Biomes You Go 1.3.4 MCV: 1.16.5", - "fileName": "byg-1.3.4.jar", - "fileDate": "2021-08-31T02:54:58.89Z", - "fileLength": 10313922, + "id": 3485079, + "displayName": "Biomes You Go 1.3.5 MCV: 1.16.5", + "fileName": "byg-1.3.5.jar", + "fileDate": "2021-10-08T19:20:15.223Z", + "fileLength": 10314611, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3444/476/byg-1.3.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/79/byg-1.3.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -23219,13 +23208,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1985442624, + "fingerprint": 3008800581, "type": 0, "invalidFingerprint": false }, { "foldername": "corgiaoc", - "fingerprint": 2592629088, + "fingerprint": 154279541, "type": 0, "invalidFingerprint": false }, @@ -23243,7 +23232,7 @@ }, { "foldername": "data", - "fingerprint": 4025516341, + "fingerprint": 3730571386, "type": 0, "invalidFingerprint": false }, @@ -23273,12 +23262,12 @@ }, { "foldername": "byg.refmap.json", - "fingerprint": 146847686, + "fingerprint": 3852571865, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 803105978, + "packageFingerprint": 3878374771, "gameVersion": [ "1.16.5", "Forge" @@ -23292,12 +23281,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "byg-1.3.4.jar" + "FileNameOnDisk": "byg-1.3.5.jar" }, "dateInstalled": "2021-08-25T04:42:14.3967903Z", - "dateUpdated": "2021-08-31T18:22:24.0062386Z", - "dateLastUpdateAttempted": "2021-08-31T18:22:24.0062386Z", - "status": 5, + "dateUpdated": "2021-10-09T18:03:50.3325963Z", + "dateLastUpdateAttempted": "2021-10-09T18:03:50.3325963Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -24570,10 +24559,10 @@ "isServerPack": false, "FileNameOnDisk": "ImmersiveEngineering-1.16.5-5.0.3-138.jar" }, - "dateInstalled": "2021-07-05T20:31:05.1764869Z", - "dateUpdated": "2021-08-22T11:00:54.8809408Z", - "dateLastUpdateAttempted": "2021-08-22T11:00:54.8809408Z", - "status": 5, + "dateInstalled": "2021-10-08T18:14:50.7214402Z", + "dateUpdated": "2021-10-08T18:14:50.7424529Z", + "dateLastUpdateAttempted": "2021-10-08T18:14:50.7424529Z", + "status": 3, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -24652,7 +24641,7 @@ "dateInstalled": "2021-07-05T20:21:08.4554703Z", "dateUpdated": "2021-10-02T18:14:13.3940074Z", "dateLastUpdateAttempted": "2021-10-02T18:14:13.3940074Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -25476,14 +25465,14 @@ "addonID": 496030, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3451336, - "displayName": "EnigmaticGraves-1.6.2.jar", - "fileName": "EnigmaticGraves-1.6.2.jar", - "fileDate": "2021-09-05T18:29:46.57Z", - "fileLength": 72398, + "id": 3474994, + "displayName": "EnigmaticGraves-1.6.3.jar", + "fileName": "EnigmaticGraves-1.6.3.jar", + "fileDate": "2021-09-27T18:57:40.617Z", + "fileLength": 72445, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3451/336/EnigmaticGraves-1.6.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3474/994/EnigmaticGraves-1.6.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -25491,13 +25480,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3805657105, + "fingerprint": 2327841231, "type": 0, "invalidFingerprint": false }, { "foldername": "dev", - "fingerprint": 1714614039, + "fingerprint": 2325831502, "type": 0, "invalidFingerprint": false }, @@ -25526,7 +25515,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1035292235, + "packageFingerprint": 4035277360, "gameVersion": [ "1.16.5" ], @@ -25539,11 +25528,11 @@ "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "EnigmaticGraves-1.6.2.jar" + "FileNameOnDisk": "EnigmaticGraves-1.6.3.jar" }, "dateInstalled": "2021-07-13T20:16:02.8369272Z", - "dateUpdated": "2021-09-08T17:52:09.4778375Z", - "dateLastUpdateAttempted": "2021-09-08T17:52:09.4778375Z", + "dateUpdated": "2021-10-07T18:09:14.9035276Z", + "dateLastUpdateAttempted": "2021-10-07T18:09:14.9035276Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26027,14 +26016,14 @@ "addonID": 511733, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3462648, - "displayName": "clickadv-1.8.jar", - "fileName": "clickadv-1.8.jar", - "fileDate": "2021-09-18T09:35:54.39Z", - "fileLength": 15162, + "id": 3481565, + "displayName": "clickadv-1.9.jar", + "fileName": "clickadv-1.9.jar", + "fileDate": "2021-10-04T20:41:04.657Z", + "fileLength": 15198, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3462/648/clickadv-1.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/565/clickadv-1.9.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -26042,13 +26031,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 968228337, + "fingerprint": 1008933787, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1601293228, + "fingerprint": 1472023426, "type": 0, "invalidFingerprint": false }, @@ -26071,7 +26060,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 628084508, + "packageFingerprint": 1677456705, "gameVersion": [ "1.14.4", "1.16.5", @@ -26087,11 +26076,11 @@ "gameVersionDateReleased": "2019-07-19T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "clickadv-1.8.jar" + "FileNameOnDisk": "clickadv-1.9.jar" }, "dateInstalled": "2021-08-13T18:01:17.0810367Z", - "dateUpdated": "2021-09-18T18:43:34.4872474Z", - "dateLastUpdateAttempted": "2021-09-18T18:43:34.4872474Z", + "dateUpdated": "2021-10-06T16:58:23.1824413Z", + "dateLastUpdateAttempted": "2021-10-06T16:58:23.1824413Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26107,28 +26096,28 @@ "addonID": 256717, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478840, - "displayName": "Clumps-6.0.0.26.jar", - "fileName": "Clumps-6.0.0.26.jar", - "fileDate": "2021-10-02T09:45:49.72Z", - "fileLength": 18335, + "id": 3481298, + "displayName": "Clumps-6.0.0.27.jar", + "fileName": "Clumps-6.0.0.27.jar", + "fileDate": "2021-10-04T16:10:21.287Z", + "fileLength": 18404, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/840/Clumps-6.0.0.26.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/298/Clumps-6.0.0.27.jar", "isAlternate": false, - "alternateFileId": 3478841, + "alternateFileId": 3481299, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1782882426, + "fingerprint": 17774557, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2941140876, + "fingerprint": 1139458361, "type": 0, "invalidFingerprint": false }, @@ -26139,7 +26128,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1032545246, + "packageFingerprint": 2748069084, "gameVersion": [ "1.16.5", "Forge" @@ -26153,12 +26142,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Clumps-6.0.0.26.jar" + "FileNameOnDisk": "Clumps-6.0.0.27.jar" }, "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-10-02T18:11:51.8144193Z", - "dateLastUpdateAttempted": "2021-10-02T18:11:51.8144193Z", - "status": 4, + "dateUpdated": "2021-10-04T17:58:41.8655898Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:41.8655898Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -26499,14 +26488,14 @@ "addonID": 314904, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3038811, - "displayName": "ftb-backups-2.1.1.6.jar", - "fileName": "ftb-backups-2.1.1.6.jar", - "fileDate": "2020-08-21T19:55:35.923Z", - "fileLength": 44329, + "id": 3482306, + "displayName": "ftb-backups-2.1.2.2.jar", + "fileName": "ftb-backups-2.1.2.2.jar", + "fileDate": "2021-10-05T16:17:56.53Z", + "fileLength": 44027, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3038/811/ftb-backups-2.1.1.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/306/ftb-backups-2.1.2.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -26514,93 +26503,53 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 877028652, - "type": 3, + "fingerprint": 1428939546, + "type": 0, "invalidFingerprint": false }, { "foldername": "com", "fingerprint": 3270655232, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", - "fingerprint": 2230058698, - "type": 3, + "fingerprint": 1625399635, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 2532301426, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", "fingerprint": 2955125231, - "type": 3, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 64481104, + "packageFingerprint": 1451020067, "gameVersion": [ - "1.16.3", - "1.16.1", - "1.16.5", - "1.16.4", - "1.16.2" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } + "1.16.5" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 1965116, - "projectId": 314904, - "packageFingerprintId": 509372794, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2390529, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-backups-2.1.1.6.jar" + "FileNameOnDisk": "ftb-backups-2.1.2.2.jar" }, "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateUpdated": "2021-10-06T16:58:23.0268492Z", + "dateLastUpdateAttempted": "2021-10-06T16:58:23.0268492Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26713,39 +26662,39 @@ "addonID": 314906, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3466965, - "displayName": "ftb-chunks-forge-1605.3.2-build.57.jar", - "fileName": "ftb-chunks-forge-1605.3.2-build.57.jar", - "fileDate": "2021-09-20T17:16:03.327Z", - "fileLength": 712556, + "id": 3482751, + "displayName": "ftb-chunks-forge-1605.3.2-build.65.jar", + "fileName": "ftb-chunks-forge-1605.3.2-build.65.jar", + "fileDate": "2021-10-06T00:19:17.463Z", + "fileLength": 716151, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3466/965/ftb-chunks-forge-1605.3.2-build.57.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/751/ftb-chunks-forge-1605.3.2-build.65.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 404465, - "type": 3, + "addonId": 314905, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 404468, + "addonId": 419699, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 419699, + "addonId": 404468, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 314905, - "type": 2, + "addonId": 404465, + "type": 3, "fileId": 0 } ], @@ -26753,7 +26702,7 @@ "modules": [ { "foldername": "ftbchunks-common.mixins.json", - "fingerprint": 691596479, + "fingerprint": 3663979655, "type": 0, "invalidFingerprint": false }, @@ -26777,13 +26726,13 @@ }, { "foldername": "assets", - "fingerprint": 1623746368, + "fingerprint": 2063970202, "type": 0, "invalidFingerprint": false }, { "foldername": "ftb-chunks-common-refmap.json", - "fingerprint": 1767887801, + "fingerprint": 2133320153, "type": 0, "invalidFingerprint": false }, @@ -26795,24 +26744,24 @@ }, { "foldername": "META-INF", - "fingerprint": 493506663, + "fingerprint": 2145995233, "type": 0, "invalidFingerprint": false }, { "foldername": "dev", - "fingerprint": 1612836477, + "fingerprint": 2624419235, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBChunks1165_common_02791dbdb0a347e69f58669087588986", - "fingerprint": 971609713, + "foldername": "architectury_inject_FTBChunks1165_common_12b9d8c39e9c43dc9868ff136891ae4a", + "fingerprint": 1855577570, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1015439143, + "packageFingerprint": 4289139788, "gameVersion": [ "1.16.5", "Forge" @@ -26826,11 +26775,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-chunks-forge-1605.3.2-build.57.jar" + "FileNameOnDisk": "ftb-chunks-forge-1605.3.2-build.65.jar" }, "dateInstalled": "2021-09-10T17:14:11.272099Z", - "dateUpdated": "2021-09-21T13:03:59.7670597Z", - "dateLastUpdateAttempted": "2021-09-21T13:03:59.7670597Z", + "dateUpdated": "2021-10-07T18:09:11.6955286Z", + "dateLastUpdateAttempted": "2021-10-07T18:09:11.6955286Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -26846,26 +26795,26 @@ "addonID": 422301, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3455669, - "displayName": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar", - "fileName": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar", - "fileDate": "2021-09-10T16:56:34.73Z", - "fileLength": 1233886, + "id": 3485233, + "displayName": "sophisticatedbackpacks-1.16.5-3.4.2.354.jar", + "fileName": "sophisticatedbackpacks-1.16.5-3.4.2.354.jar", + "fileDate": "2021-10-08T22:36:52.187Z", + "fileLength": 1252692, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3455/669/sophisticatedbackpacks-1.16.5-3.2.12.337.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/233/sophisticatedbackpacks-1.16.5-3.4.2.354.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 301356, + "addonId": 309927, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 238222, + "addonId": 225643, "type": 2, "fileId": 0 }, @@ -26877,19 +26826,19 @@ }, { "id": 0, - "addonId": 225643, + "addonId": 238222, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 243121, + "addonId": 301356, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 309927, + "addonId": 243121, "type": 2, "fileId": 0 } @@ -26898,19 +26847,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1821336421, + "fingerprint": 3910823808, "type": 0, "invalidFingerprint": false }, { "foldername": "net", - "fingerprint": 893207206, - "type": 0, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1415314844, + "fingerprint": 139536063, "type": 0, "invalidFingerprint": false }, @@ -26928,12 +26871,18 @@ }, { "foldername": "assets", - "fingerprint": 4014858000, + "fingerprint": 2597053471, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1415314844, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2880603544, + "packageFingerprint": 313775566, "gameVersion": [ "1.16.5" ], @@ -26946,12 +26895,12 @@ "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "sophisticatedbackpacks-1.16.5-3.2.12.337.jar" + "FileNameOnDisk": "sophisticatedbackpacks-1.16.5-3.4.2.354.jar" }, "dateInstalled": "2021-07-05T20:21:15.1320328Z", - "dateUpdated": "2021-09-10T17:30:59.4099218Z", - "dateLastUpdateAttempted": "2021-09-10T17:30:59.4099218Z", - "status": 5, + "dateUpdated": "2021-10-09T18:04:04.3029611Z", + "dateLastUpdateAttempted": "2021-10-09T18:04:04.3029611Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -27818,7 +27767,7 @@ "dateInstalled": "2021-07-05T20:31:05.1764869Z", "dateUpdated": "2021-10-02T18:17:03.1472457Z", "dateLastUpdateAttempted": "2021-10-02T18:17:03.1472457Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -28259,7 +28208,7 @@ "dateInstalled": "2021-08-18T18:00:56.9919032Z", "dateUpdated": "2021-10-02T18:13:53.065276Z", "dateLastUpdateAttempted": "2021-10-02T18:13:53.065276Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -28365,63 +28314,63 @@ "addonID": 529754, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3466312, - "displayName": "RoadRunner-mc1.16.5-1.1.1.jar", - "fileName": "RoadRunner-mc1.16.5-1.1.1.jar", - "fileDate": "2021-09-19T21:44:18.067Z", - "fileLength": 387474, + "id": 3482250, + "displayName": "RoadRunner-mc1.16.5-1.2.2.jar", + "fileName": "RoadRunner-mc1.16.5-1.2.2.jar", + "fileDate": "2021-10-05T15:22:09.24Z", + "fileLength": 384386, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3466/312/RoadRunner-mc1.16.5-1.1.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3482/250/RoadRunner-mc1.16.5-1.2.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "LICENSE.txt", - "fingerprint": 1136524626, + "foldername": "META-INF", + "fingerprint": 2553760134, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1265881845, + "foldername": "LICENSE.txt", + "fingerprint": 1136524626, "type": 0, "invalidFingerprint": false }, { - "foldername": "roadrunner.mixins.json", - "fingerprint": 1649045226, + "foldername": "roadrunner.overrides.properties", + "fingerprint": 544816676, "type": 0, "invalidFingerprint": false }, { - "foldername": "roadrunner.overrides.properties", - "fingerprint": 3942409938, + "foldername": "roadrunner.mixins.json", + "fingerprint": 2006770597, "type": 0, "invalidFingerprint": false }, { - "foldername": "META-INF", - "fingerprint": 2738395886, + "foldername": "pack.mcmeta", + "fingerprint": 1265881845, "type": 0, "invalidFingerprint": false }, { "foldername": "me", - "fingerprint": 3847400500, + "fingerprint": 91953827, "type": 0, "invalidFingerprint": false }, { "foldername": "RoadRunner-mc1.16.5-refmap.json", - "fingerprint": 3955167373, + "fingerprint": 3272417653, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3554115702, + "packageFingerprint": 3741920589, "gameVersion": [ "1.16.5", "Forge", @@ -28436,11 +28385,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "RoadRunner-mc1.16.5-1.1.1.jar" + "FileNameOnDisk": "RoadRunner-mc1.16.5-1.2.2.jar" }, - "dateInstalled": "2021-09-22T17:33:29.0701517Z", - "dateUpdated": "2021-09-22T17:33:29.0731504Z", - "dateLastUpdateAttempted": "2021-09-22T17:33:29.0731504Z", + "dateInstalled": "2021-10-05T17:24:14.8188822Z", + "dateUpdated": "2021-10-05T17:24:14.8388863Z", + "dateLastUpdateAttempted": "2021-10-05T17:24:14.8388863Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -30036,14 +29985,14 @@ "addonID": 429235, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3435176, - "displayName": "ferritecore-2.0.7-forge.jar", - "fileName": "ferritecore-2.0.7-forge.jar", - "fileDate": "2021-08-23T06:16:38.207Z", - "fileLength": 101813, + "id": 3485636, + "displayName": "ferritecore-2.1.0-forge.jar", + "fileName": "ferritecore-2.1.0-forge.jar", + "fileDate": "2021-10-09T11:07:30.687Z", + "fileLength": 108520, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3435/176/ferritecore-2.0.7-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/636/ferritecore-2.1.0-forge.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -30051,31 +30000,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 10563238, + "fingerprint": 2628354756, "type": 0, "invalidFingerprint": false }, { "foldername": "googleaccess", - "fingerprint": 3491285138, + "fingerprint": 2003153283, "type": 0, "invalidFingerprint": false }, { - "foldername": "ferritecore.mrl.mixin.json", - "fingerprint": 1186793239, + "foldername": "logo.png", + "fingerprint": 3369927219, "type": 0, "invalidFingerprint": false }, { - "foldername": "ferritecore.dedupbakedquad.mixin.json", - "fingerprint": 1286500205, + "foldername": "ferritecore.predicates.mixin.json", + "fingerprint": 1322969185, "type": 0, "invalidFingerprint": false }, { - "foldername": "ferritecore.blockstatecache.mixin.json", - "fingerprint": 352172374, + "foldername": "ferritecore.mrl.mixin.json", + "fingerprint": 1186793239, "type": 0, "invalidFingerprint": false }, @@ -30086,26 +30035,32 @@ "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 3369927219, + "foldername": "ferritecore.dedupmultipart.mixin.json", + "fingerprint": 4096495031, "type": 0, "invalidFingerprint": false }, { - "foldername": "ferritecore.dedupmultipart.mixin.json", - "fingerprint": 4096495031, + "foldername": "ferritecore.dedupbakedquad.mixin.json", + "fingerprint": 1286500205, "type": 0, "invalidFingerprint": false }, { - "foldername": "ferritecore.predicates.mixin.json", - "fingerprint": 1322969185, + "foldername": "ferritecore.chunknbt.mixin.json", + "fingerprint": 4009643519, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "ferritecore.blockstatecache.mixin.json", + "fingerprint": 352172374, "type": 0, "invalidFingerprint": false }, { "foldername": "ferritecore-common-refmap.json", - "fingerprint": 2901900899, + "fingerprint": 4148642999, "type": 0, "invalidFingerprint": false }, @@ -30123,12 +30078,12 @@ }, { "foldername": "malte0811", - "fingerprint": 4102796611, + "fingerprint": 601212093, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 2655477553, + "packageFingerprint": 3613242926, "gameVersion": [ "1.16.5", "Forge" @@ -30142,12 +30097,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ferritecore-2.0.7-forge.jar" + "FileNameOnDisk": "ferritecore-2.1.0-forge.jar" }, "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-08-25T05:56:50.9635024Z", - "dateLastUpdateAttempted": "2021-08-25T05:56:50.9635024Z", - "status": 5, + "dateUpdated": "2021-10-09T18:03:04.0168772Z", + "dateLastUpdateAttempted": "2021-10-09T18:03:04.0168772Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30283,14 +30238,14 @@ "addonID": 384508, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478990, - "displayName": "Resourceful Bees 1.16.5-0.9.9.7", - "fileName": "ResourcefulBees-1.16.5-0.9.9.7.jar", - "fileDate": "2021-10-02T13:18:08.65Z", - "fileLength": 4132479, + "id": 3485315, + "displayName": "Resourceful Bees 1.16.5-0.9.9.8", + "fileName": "ResourcefulBees-1.16.5-0.9.9.8.jar", + "fileDate": "2021-10-09T00:19:52.503Z", + "fileLength": 4141301, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/990/ResourcefulBees-1.16.5-0.9.9.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3485/315/ResourcefulBees-1.16.5-0.9.9.8.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -30298,54 +30253,54 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2437158903, + "fingerprint": 1506845401, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 268925944, + "fingerprint": 3950163998, "type": 0, "invalidFingerprint": false }, { - "foldername": "resourcefulbees.mixins.json", - "fingerprint": 645418765, + "foldername": "logo.png", + "fingerprint": 1074719077, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 2816218501, + "foldername": "pack.mcmeta", + "fingerprint": 684766769, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 684766769, + "foldername": "assets", + "fingerprint": 3838832073, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 2602403227, + "foldername": "resourcefulbees.mixins.json", + "fingerprint": 645418765, "type": 0, "invalidFingerprint": false }, { - "foldername": "logo.png", - "fingerprint": 1074719077, + "foldername": "data", + "fingerprint": 3667186963, "type": 0, "invalidFingerprint": false }, { "foldername": "resourcefulbees.refmap.json", - "fingerprint": 4087400258, + "fingerprint": 424182295, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1528225177, + "packageFingerprint": 3748173545, "gameVersion": [ "1.16.5", "Forge" @@ -30359,11 +30314,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ResourcefulBees-1.16.5-0.9.9.7.jar" + "FileNameOnDisk": "ResourcefulBees-1.16.5-0.9.9.8.jar" }, "dateInstalled": "2021-07-05T20:21:18.9930639Z", - "dateUpdated": "2021-10-02T18:17:04.8082452Z", - "dateLastUpdateAttempted": "2021-10-02T18:17:04.8082452Z", + "dateUpdated": "2021-10-09T18:04:06.319963Z", + "dateLastUpdateAttempted": "2021-10-09T18:04:06.319963Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -30558,7 +30513,7 @@ "dateInstalled": "2021-09-09T17:38:34.3676105Z", "dateUpdated": "2021-10-02T18:14:15.9182373Z", "dateLastUpdateAttempted": "2021-10-02T18:14:15.9182373Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30676,106 +30631,82 @@ "addonID": 465066, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3277762, - "displayName": "[Forge 1.16.4-1.16.5] v2.0.1", - "fileName": "expandability-2.0.1-forge.jar", - "fileDate": "2021-04-15T10:53:58.273Z", - "fileLength": 43358, + "id": 3481341, + "displayName": "[Forge 1.16.4-1.16.5] v2.0.2", + "fileName": "expandability-2.0.2-forge.jar", + "fileDate": "2021-10-04T16:56:23.143Z", + "fileLength": 43591, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3277/762/expandability-2.0.1-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3481/341/expandability-2.0.2-forge.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "expandability.mixins.json", - "fingerprint": 2504465341, - "type": 3, + "foldername": "icon.png", + "fingerprint": 437909498, + "type": 0, "invalidFingerprint": false }, { - "foldername": "icon.png", - "fingerprint": 437909498, - "type": 3, + "foldername": "expandability.mixins.json", + "fingerprint": 2504465341, + "type": 0, "invalidFingerprint": false }, { "foldername": "expandability-common-refmap.json", - "fingerprint": 2115119192, - "type": 3, + "fingerprint": 120255893, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 2432372732, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "META-INF", - "fingerprint": 3794404027, - "type": 3, + "fingerprint": 121821072, + "type": 0, "invalidFingerprint": false }, { - "foldername": "be", - "fingerprint": 2125577898, - "type": 3, + "foldername": "architectury_inject_expandability_common_f8dbd8d32a934f30863b205681a41140", + "fingerprint": 2167866445, + "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_expandability_common_8bce1ab34a2a43a9b5ffa443293d038d", - "fingerprint": 1036221710, - "type": 3, + "foldername": "be", + "fingerprint": 3917712861, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 4080179122, + "packageFingerprint": 1291197528, "gameVersion": [ "1.16.5", "Forge", "1.16.4" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2267508, - "projectId": 465066, - "packageFingerprintId": 644467532, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2868175, - "gameVersionId": 7498, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "expandability-2.0.1-forge.jar" + "FileNameOnDisk": "expandability-2.0.2-forge.jar" }, "dateInstalled": "2021-07-05T20:21:18.9880623Z", - "dateUpdated": "2021-07-05T20:21:18.9880623Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", + "dateUpdated": "2021-10-04T17:58:39.6540224Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:39.6540224Z", "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -31893,22 +31824,22 @@ "addonID": 250398, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3478849, - "displayName": "Controlling-7.0.0.25.jar", - "fileName": "Controlling-7.0.0.25.jar", - "fileDate": "2021-10-02T09:48:41.363Z", - "fileLength": 54326, + "id": 3480210, + "displayName": "Controlling-7.0.0.26.jar", + "fileName": "Controlling-7.0.0.26.jar", + "fileDate": "2021-10-03T15:46:45.793Z", + "fileLength": 54388, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3478/849/Controlling-7.0.0.25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3480/210/Controlling-7.0.0.26.jar", "isAlternate": false, - "alternateFileId": 3478850, + "alternateFileId": 3480211, "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3932428994, + "fingerprint": 1619437895, "type": 0, "invalidFingerprint": false }, @@ -31926,12 +31857,12 @@ }, { "foldername": "assets", - "fingerprint": 1319105506, + "fingerprint": 1317702248, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3769575691, + "packageFingerprint": 2840124715, "gameVersion": [ "1.16.5", "Forge" @@ -31945,12 +31876,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Controlling-7.0.0.25.jar" + "FileNameOnDisk": "Controlling-7.0.0.26.jar" }, "dateInstalled": "2021-07-05T20:21:18.9860639Z", - "dateUpdated": "2021-10-02T18:13:56.0339674Z", - "dateLastUpdateAttempted": "2021-10-02T18:13:56.0339674Z", - "status": 4, + "dateUpdated": "2021-10-04T17:58:41.6575877Z", + "dateLastUpdateAttempted": "2021-10-04T17:58:41.6575877Z", + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -32249,7 +32180,7 @@ "dateInstalled": "2021-10-01T04:22:30.4801221Z", "dateUpdated": "2021-10-02T18:14:14.7229108Z", "dateLastUpdateAttempted": "2021-10-02T18:14:14.7229108Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, From 0e3fe19af777def5d924535044c948b08d355e95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 9 Oct 2021 23:21:42 +0200 Subject: [PATCH 110/124] Update Crowdin configuration file --- crowdin.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 crowdin.yml diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 0000000000..b7b1a39408 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,3 @@ +files: + - source: '**/en_us.json' + translation: /%original_path%/%locale_with_underscore%.%file_extension% From 35652a504fd622be219000df06470a8e8c21a7c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 19:29:14 +0200 Subject: [PATCH 111/124] mod updates --- .../repurposed_structures-forge/mansions.toml | 4 + minecraftinstance.json | 198 +++++++++--------- 2 files changed, 106 insertions(+), 96 deletions(-) diff --git a/config/repurposed_structures-forge/mansions.toml b/config/repurposed_structures-forge/mansions.toml index f52ad68fa1..a3c7c522cc 100644 --- a/config/repurposed_structures-forge/mansions.toml +++ b/config/repurposed_structures-forge/mansions.toml @@ -33,4 +33,8 @@ mansionDesertMaxChunkDistance = 140 # 1 for spawning in most chunks and 1001 for none. #Range: 1 ~ 1001 mansionSnowyMaxChunkDistance = 140 +# +# Only make supports downward if there is land below. +# (Helps make structure look better in floating island worlds instead of support going down to void at world bottom) +pillarOnlyToLand = true diff --git a/minecraftinstance.json b/minecraftinstance.json index ecea46a893..5b71ac216e 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,8 +30,8 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2021-10-09T18:04:28.8483098Z", - "playedCount": 404, + "lastPlayed": "2021-10-10T16:49:39.2842979Z", + "playedCount": 405, "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -3127,26 +3127,20 @@ "addonID": 342466, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3424922, - "displayName": "RFToolsUtility - 1.16-3.1.2", - "fileName": "rftoolsutility-1.16-3.1.2.jar", - "fileDate": "2021-08-14T05:26:51.973Z", - "fileLength": 1606928, + "id": 3486653, + "displayName": "RFToolsUtility - 1.16-3.1.3", + "fileName": "rftoolsutility-1.16-3.1.3.jar", + "fileDate": "2021-10-10T08:02:48.387Z", + "fileLength": 1606957, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3424/922/rftoolsutility-1.16-3.1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3486/653/rftoolsutility-1.16-3.1.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 245211, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 233105, + "addonId": 326041, "type": 3, "fileId": 0 }, @@ -3158,22 +3152,28 @@ }, { "id": 0, - "addonId": 326041, + "addonId": 233105, "type": 3, "fileId": 0 + }, + { + "id": 0, + "addonId": 245211, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3044384234, + "fingerprint": 4042000452, "type": 0, "invalidFingerprint": false }, { "foldername": "mcjty", - "fingerprint": 634041100, + "fingerprint": 4080597986, "type": 0, "invalidFingerprint": false }, @@ -3196,7 +3196,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 1973625588, + "packageFingerprint": 410183838, "gameVersion": [ "1.16.5", "Forge" @@ -3210,12 +3210,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsutility-1.16-3.1.2.jar" + "FileNameOnDisk": "rftoolsutility-1.16-3.1.3.jar" }, "dateInstalled": "2021-07-10T17:55:07.2653389Z", - "dateUpdated": "2021-08-14T19:13:10.6013954Z", - "dateLastUpdateAttempted": "2021-08-14T19:13:10.6013954Z", - "status": 5, + "dateUpdated": "2021-10-10T16:49:08.4906374Z", + "dateLastUpdateAttempted": "2021-10-10T16:49:08.4906374Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -6692,14 +6692,14 @@ "addonID": 233105, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3402861, - "displayName": "McJtyLib - 1.16-5.0.22", - "fileName": "mcjtylib-1.16-5.0.22.jar", - "fileDate": "2021-07-27T13:34:01.007Z", - "fileLength": 562853, + "id": 3486621, + "displayName": "McJtyLib - 1.16-5.0.23", + "fileName": "mcjtylib-1.16-5.0.23.jar", + "fileDate": "2021-10-10T06:48:04.677Z", + "fileLength": 574622, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3402/861/mcjtylib-1.16-5.0.22.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3486/621/mcjtylib-1.16-5.0.23.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -6720,13 +6720,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 166700395, + "fingerprint": 932745707, "type": 0, "invalidFingerprint": false }, { "foldername": "mcjty", - "fingerprint": 2207894873, + "fingerprint": 2478312194, "type": 0, "invalidFingerprint": false }, @@ -6743,7 +6743,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 68474313, + "packageFingerprint": 889851276, "gameVersion": [ "1.16.5", "Forge" @@ -6757,12 +6757,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcjtylib-1.16-5.0.22.jar" + "FileNameOnDisk": "mcjtylib-1.16-5.0.23.jar" }, "dateInstalled": "2021-07-10T17:55:07.2543409Z", - "dateUpdated": "2021-07-27T20:20:08.3323329Z", - "dateLastUpdateAttempted": "2021-07-27T20:20:08.3323329Z", - "status": 5, + "dateUpdated": "2021-10-10T16:49:09.8766715Z", + "dateLastUpdateAttempted": "2021-10-10T16:49:09.8766715Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16123,14 +16123,14 @@ "addonID": 238222, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3485382, - "displayName": "jei-1.16.5-7.7.1.124.jar", - "fileName": "jei-1.16.5-7.7.1.124.jar", - "fileDate": "2021-10-09T02:53:39.91Z", - "fileLength": 814485, + "id": 3486455, + "displayName": "jei-1.16.5-7.7.1.125.jar", + "fileName": "jei-1.16.5-7.7.1.125.jar", + "fileDate": "2021-10-10T03:38:38.97Z", + "fileLength": 814451, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3485/382/jei-1.16.5-7.7.1.124.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3486/455/jei-1.16.5-7.7.1.125.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16138,13 +16138,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2322985871, + "fingerprint": 647687672, "type": 0, "invalidFingerprint": false }, { "foldername": "mezz", - "fingerprint": 568143629, + "fingerprint": 3411531229, "type": 0, "invalidFingerprint": false }, @@ -16161,7 +16161,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 229628057, + "packageFingerprint": 2920701052, "gameVersion": [ "1.16.5", "Forge" @@ -16175,11 +16175,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "jei-1.16.5-7.7.1.124.jar" + "FileNameOnDisk": "jei-1.16.5-7.7.1.125.jar" }, "dateInstalled": "2021-10-04T19:00:56.2227538Z", - "dateUpdated": "2021-10-09T18:03:03.4088821Z", - "dateLastUpdateAttempted": "2021-10-09T18:03:03.4088821Z", + "dateUpdated": "2021-10-10T16:49:29.6620745Z", + "dateLastUpdateAttempted": "2021-10-10T16:49:29.6620745Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -21160,14 +21160,14 @@ "addonID": 368293, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3485284, - "displayName": "Repurposed Structures v3.2.8 (1.16.5 MC)", - "fileName": "repurposed_structures_forge-3.2.8+1.16.5.jar", - "fileDate": "2021-10-08T23:46:57.97Z", - "fileLength": 5251685, + "id": 3486458, + "displayName": "Repurposed Structures v3.2.9 (1.16.5 MC)", + "fileName": "repurposed_structures_forge-3.2.9+1.16.5.jar", + "fileDate": "2021-10-10T03:42:23.197Z", + "fileLength": 5252679, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3485/284/repurposed_structures_forge-3.2.8+1.16.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3486/458/repurposed_structures_forge-3.2.9+1.16.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -21175,13 +21175,13 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1229997125, + "fingerprint": 3523640280, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 2767977553, + "fingerprint": 314973976, "type": 0, "invalidFingerprint": false }, @@ -21222,7 +21222,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 2237146356, + "packageFingerprint": 2740451650, "gameVersion": [ "1.16.5", "Forge" @@ -21236,11 +21236,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "repurposed_structures_forge-3.2.8+1.16.5.jar" + "FileNameOnDisk": "repurposed_structures_forge-3.2.9+1.16.5.jar" }, "dateInstalled": "2021-08-05T21:06:59.9349112Z", - "dateUpdated": "2021-10-09T18:04:07.5889567Z", - "dateLastUpdateAttempted": "2021-10-09T18:04:07.5889567Z", + "dateUpdated": "2021-10-10T16:49:11.2886369Z", + "dateLastUpdateAttempted": "2021-10-10T16:49:11.2886369Z", "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, @@ -22644,26 +22644,26 @@ "addonID": 502561, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3477434, - "displayName": "EquipmentCompare-1.16.5-1.2.4.jar", - "fileName": "EquipmentCompare-1.16.5-1.2.4.jar", - "fileDate": "2021-09-30T18:50:53.107Z", - "fileLength": 19989, + "id": 3486298, + "displayName": "EquipmentCompare-1.16.5-1.2.5.jar", + "fileName": "EquipmentCompare-1.16.5-1.2.5.jar", + "fileDate": "2021-10-09T23:32:28.033Z", + "fileLength": 21002, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3477/434/EquipmentCompare-1.16.5-1.2.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3486/298/EquipmentCompare-1.16.5-1.2.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 366844, + "addonId": 309927, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 309927, + "addonId": 532127, "type": 2, "fileId": 0 }, @@ -22672,19 +22672,25 @@ "addonId": 520110, "type": 3, "fileId": 0 + }, + { + "id": 0, + "addonId": 366844, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1308155646, + "fingerprint": 3057116330, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 3379482068, + "fingerprint": 2037614233, "type": 0, "invalidFingerprint": false }, @@ -22713,7 +22719,7 @@ "invalidFingerprint": false } ], - "packageFingerprint": 3180964751, + "packageFingerprint": 2375028636, "gameVersion": [ "1.16.5", "Forge" @@ -22727,12 +22733,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "EquipmentCompare-1.16.5-1.2.4.jar" + "FileNameOnDisk": "EquipmentCompare-1.16.5-1.2.5.jar" }, "dateInstalled": "2021-09-17T18:18:50.6213974Z", - "dateUpdated": "2021-10-02T18:13:52.0801122Z", - "dateLastUpdateAttempted": "2021-10-02T18:13:52.0801122Z", - "status": 5, + "dateUpdated": "2021-10-10T16:49:12.758639Z", + "dateLastUpdateAttempted": "2021-10-10T16:49:12.758639Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30631,34 +30637,34 @@ "addonID": 465066, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3481341, - "displayName": "[Forge 1.16.4-1.16.5] v2.0.2", - "fileName": "expandability-2.0.2-forge.jar", - "fileDate": "2021-10-04T16:56:23.143Z", - "fileLength": 43591, + "id": 3277762, + "displayName": "[Forge 1.16.4-1.16.5] v2.0.1", + "fileName": "expandability-2.0.1-forge.jar", + "fileDate": "2021-04-15T10:53:58.273Z", + "fileLength": 43358, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3481/341/expandability-2.0.2-forge.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3277/762/expandability-2.0.1-forge.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], "isAvailable": true, "modules": [ { - "foldername": "icon.png", - "fingerprint": 437909498, + "foldername": "expandability.mixins.json", + "fingerprint": 2504465341, "type": 0, "invalidFingerprint": false }, { - "foldername": "expandability.mixins.json", - "fingerprint": 2504465341, + "foldername": "icon.png", + "fingerprint": 437909498, "type": 0, "invalidFingerprint": false }, { "foldername": "expandability-common-refmap.json", - "fingerprint": 120255893, + "fingerprint": 2115119192, "type": 0, "invalidFingerprint": false }, @@ -30670,24 +30676,24 @@ }, { "foldername": "META-INF", - "fingerprint": 121821072, + "fingerprint": 3794404027, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_expandability_common_f8dbd8d32a934f30863b205681a41140", - "fingerprint": 2167866445, + "foldername": "be", + "fingerprint": 2125577898, "type": 0, "invalidFingerprint": false }, { - "foldername": "be", - "fingerprint": 3917712861, + "foldername": "architectury_inject_expandability_common_8bce1ab34a2a43a9b5ffa443293d038d", + "fingerprint": 1036221710, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1291197528, + "packageFingerprint": 4080179122, "gameVersion": [ "1.16.5", "Forge", @@ -30702,12 +30708,12 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "expandability-2.0.2-forge.jar" + "FileNameOnDisk": "expandability-2.0.1-forge.jar" }, "dateInstalled": "2021-07-05T20:21:18.9880623Z", - "dateUpdated": "2021-10-04T17:58:39.6540224Z", - "dateLastUpdateAttempted": "2021-10-04T17:58:39.6540224Z", - "status": 5, + "dateUpdated": "2021-10-10T16:49:11.1116384Z", + "dateLastUpdateAttempted": "2021-10-10T16:49:11.1116384Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, From ebbb3654292c1a260dadfc6f0be211d0593e8b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 21:01:30 +0200 Subject: [PATCH 112/124] added recipe for clearing nbt of redstone transmitter/receiver, fixes #3372 --- .../recipetypes/rftoolsutility/shapeless.js | 19 +++++++++++++++++++ .../kubejs/base/tags/items/rftools/rftools.js | 3 +++ 2 files changed, 22 insertions(+) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js new file mode 100644 index 0000000000..cd79bd5aa7 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js @@ -0,0 +1,19 @@ +onEvent('recipes', (event) => { + const id_prefix = 'enigmatica:base/rftoolsutility/'; + const recipes = [ + { + output: 'rftoolsutility:redstone_transmitter', + inputs: ['#rftoolsutility:redstone_transmitter'], + id: `${id_prefix}redstone_transmitter` + }, + { + output: 'rftoolsutility:redstone_receiver', + inputs: ['#rftoolsutility:redstone_receiver'], + id: `${id_prefix}redstone_receiver` + } + ]; + + recipes.forEach((recipe) => { + event.shapeless(recipe.output, recipe.inputs).id(recipe.id); + }); +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js index ede8eca3b3..43a280ec06 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js @@ -26,4 +26,7 @@ onEvent('item.tags', (event) => { event.get('rftools:fluidcard').add('rftoolsbuilder:shape_card_liquid'); event.get('rftools:fluidcard').add('rftoolsbuilder:shape_card_pump'); event.get('rftools:fluidcard').add('rftoolsbuilder:shape_card_pump_clear'); + + event.add('rftoolsutility:redstone_receiver', ['rftoolsutility:redstone_receiver']); + event.add('rftoolsutility:redstone_transmitter', ['rftoolsutility:redstone_transmitter']); }); From be459e6ff9bbc6b94ea48722a42ed273ee14a4d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 21:38:29 +0200 Subject: [PATCH 113/124] copied powahAPI stuff from PR that targetted master, credit will be given still ofc --- kubejs/startup_scripts/powah_coolants.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 kubejs/startup_scripts/powah_coolants.js diff --git a/kubejs/startup_scripts/powah_coolants.js b/kubejs/startup_scripts/powah_coolants.js new file mode 100644 index 0000000000..0a026cc6d1 --- /dev/null +++ b/kubejs/startup_scripts/powah_coolants.js @@ -0,0 +1,9 @@ +// Listen to post-init event, after all mods have loaded +onEvent('postinit', (event) => { + // Load PowahAPI + var PowahAPI = java('owmii.powah.api.PowahAPI'); + // Register the Coolants + PowahAPI.registerSolidCoolant(Item.of('betterendforge:emerald_ice').item, 400, -20); + PowahAPI.registerSolidCoolant(Item.of('betterendforge:dense_emerald_ice').item, 800, -40); + PowahAPI.registerSolidCoolant(Item.of('betterendforge:ancient_emerald_ice').item, 1200, -100); +}); From c7df927309741015cbed61f40d9f9a6959507e02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 21:44:43 +0200 Subject: [PATCH 114/124] added tags to BYG nether ores --- .../enigmatica/kubejs/base/tags/items/forge/ores.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/ores.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/ores.js index e16e497219..c3cccb646a 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/ores.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/ores.js @@ -16,9 +16,14 @@ onEvent('item.tags', (event) => { 'rftoolsbase:dimensionalshard_nether', 'rftoolsbase:dimensionalshard_end' ]); + event.add('forge:ores/quartz', ['byg:blue_nether_quartz_ore', 'byg:brimstone_nether_quartz_ore']); - event.get('forge:ores/nether/gold').add('minecraft:nether_gold_ore'); - //event.get('forge:ores/netherite_scrap').remove('minecraft:ancient_debris'); + event.add('forge:ores/gold', ['byg:blue_nether_gold_ore', 'byg:brimstone_nether_gold_ore']); + event.add('forge:ores/nether/gold', [ + 'minecraft:nether_gold_ore', + 'byg:blue_nether_gold_ore', + 'byg:brimstone_nether_gold_ore' + ]); event.get('forge:ores/netherite').add('minecraft:ancient_debris'); event.add('forge:ores/ender', 'betterendforge:ender_ore'); From 41ae32b0428899f36fc544bf52db8f97bf5feb11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 22:10:05 +0200 Subject: [PATCH 115/124] melting recipes for emerald/diamond plates, rods and gears, fixes #3064 --- .../base/recipetypes/tconstruct/melting.js | 82 +++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/tconstruct/melting.js diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/tconstruct/melting.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/tconstruct/melting.js new file mode 100644 index 0000000000..35a052d1a0 --- /dev/null +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/tconstruct/melting.js @@ -0,0 +1,82 @@ +onEvent('recipes', (event) => { + const id_prefix = 'enigmatica:base/tconstruct/melting/'; + const recipes = [ + { + ingredient: { + tag: 'forge:plates/emerald' + }, + result: { + fluid: 'tconstruct:molten_emerald', + amount: 144 + }, + temperature: 934, + time: 64, + id: `${id_prefix}molten_emerald_from_plate` + }, + { + ingredient: { + tag: 'forge:plates/diamond' + }, + result: { + fluid: 'tconstruct:molten_diamond', + amount: 144 + }, + temperature: 1450, + time: 79, + id: `${id_prefix}molten_diamond_from_plate` + }, + { + ingredient: { + tag: 'forge:rods/emerald' + }, + result: { + fluid: 'tconstruct:molten_emerald', + amount: 144 + }, + temperature: 934, + time: 64, + id: `${id_prefix}molten_emerald_from_rod` + }, + { + ingredient: { + tag: 'forge:rods/diamond' + }, + result: { + fluid: 'tconstruct:molten_diamond', + amount: 144 + }, + temperature: 1450, + time: 79, + id: `${id_prefix}molten_diamond_from_rod` + }, + { + ingredient: { + tag: 'forge:gears/emerald' + }, + result: { + fluid: 'tconstruct:molten_emerald', + amount: 576 + }, + temperature: 934, + time: 256, + id: `${id_prefix}molten_emerald_from_gear` + }, + { + ingredient: { + tag: 'forge:gears/diamond' + }, + result: { + fluid: 'tconstruct:molten_diamond', + amount: 576 + }, + temperature: 1450, + time: 316, + id: `${id_prefix}molten_diamond_from_gear` + } + ]; + + recipes.forEach((recipe) => { + recipe.type = 'tconstruct:melting'; + event.custom(recipe).id(recipe.id); + }); +}); From 5c048ec5ba9f186f79cc5a79667752378bdfba8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 22:59:53 +0200 Subject: [PATCH 116/124] adjusted xp fluid conversion recipes, fixes #3359 --- .../dissolution_chamber.js | 27 ++- .../pneumaticcraft/thermo_plant.js | 216 +++++++++--------- 2 files changed, 127 insertions(+), 116 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/industrialforegoing/dissolution_chamber.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/industrialforegoing/dissolution_chamber.js index 76021729d0..839a59ca17 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/industrialforegoing/dissolution_chamber.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/industrialforegoing/dissolution_chamber.js @@ -1,6 +1,6 @@ onEvent('recipes', (event) => { const recipes = [ -/* + /* { inputs: [ '', // top left @@ -22,9 +22,7 @@ onEvent('recipes', (event) => { } */ { - inputs: [ - 'minecraft:glass_pane' - ], + inputs: ['minecraft:glass_pane'], inputFluid: 'pneumaticcraft:memory_essence', inputFluidAmount: 1000, processingTime: 50, @@ -33,31 +31,38 @@ onEvent('recipes', (event) => { outputFluidAmount: 1000 }, { - inputs: [ - 'minecraft:glass_pane' - ], + inputs: ['minecraft:glass_pane'], inputFluid: 'industrialforegoing:essence', inputFluidAmount: 1000, processingTime: 50, outputItem: { item: 'minecraft:glass_pane', count: 1 }, + outputFluid: 'cofh_core:experience', + outputFluidAmount: 1000 + }, + { + inputs: ['minecraft:glass_pane'], + inputFluid: 'cofh_core:experience', + inputFluidAmount: 1000, + processingTime: 50, + outputItem: { item: 'minecraft:glass_pane', count: 1 }, outputFluid: 'pneumaticcraft:memory_essence', outputFluidAmount: 1000 }, { inputs: [ '#forge:ingots/pink_slime', // top left - 'resourcefulbees:bee_jar', // top + 'resourcefulbees:bee_jar', // top '#forge:ingots/pink_slime', // top right 'resourcefulbees:iron_honeycomb_block', // left 'resourcefulbees:iron_honeycomb_block', // right 'resourcefulbees:iron_honey_block', // bottom left '#industrialforegoing:machine_frame/advanced', // bottom - 'resourcefulbees:iron_honey_block' // bottom right + 'resourcefulbees:iron_honey_block' // bottom right ], inputFluid: 'industrialforegoing:pink_slime', inputFluidAmount: 1000, processingTime: 600, - outputItem: Item.of('resourcefulbees:bee_jar', {Entity: "resourcefulbees:industrious_bee"}).toJson(), + outputItem: Item.of('resourcefulbees:bee_jar', { Entity: 'resourcefulbees:industrious_bee' }).toJson(), outputFluid: '', outputFluidAmount: 0 } @@ -83,4 +88,4 @@ onEvent('recipes', (event) => { re.id(recipe.id); } }); -}); \ No newline at end of file +}); diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/pneumaticcraft/thermo_plant.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/pneumaticcraft/thermo_plant.js index 0fef0b49b8..fdeee27d7c 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/pneumaticcraft/thermo_plant.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/pneumaticcraft/thermo_plant.js @@ -1,110 +1,116 @@ onEvent('recipes', (event) => { - var data = { - recipes: [ - { - type: 'pneumaticcraft:thermo_plant', - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'industrialforegoing:essence', amount: 1000 }, - fluid_output: { fluid: 'pneumaticcraft:memory_essence', amount: 1000 }, - pressure: 1.0, - speed: 5.0, - exothermic: false - }, - { - type: 'pneumaticcraft:thermo_plant', - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'pneumaticcraft:memory_essence', amount: 1000 }, - fluid_output: { fluid: 'industrialforegoing:essence', amount: 1000 }, - pressure: 1.0, - speed: 5.0, - exothermic: false - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { tag: 'integrateddynamics:menril_logs' }, - item_output: { item: 'integrateddynamics:crystalized_menril_chunk', count: 4 }, - fluid_output: { fluid: 'integrateddynamics:menril_resin', amount: 1000 }, - pressure: 3.0, - exothermic: false - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { item: 'integrateddynamics:menril_planks' }, - item_output: { item: 'integrateddynamics:crystalized_menril_chunk' }, - fluid_output: { fluid: 'integrateddynamics:menril_resin', amount: 250 }, - pressure: 3.0, - exothermic: false - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { item: 'minecraft:popped_chorus_fruit' }, - item_output: { item: 'integrateddynamics:crystalized_chorus_chunk', count: 4 }, - fluid_output: { fluid: 'integrateddynamics:liquid_chorus', amount: 125 }, - pressure: 3.0, - exothermic: false - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { item: 'integrateddynamics:proto_chorus' }, - item_output: { item: 'integrateddynamics:crystalized_chorus_chunk', count: 2 }, - fluid_output: { fluid: 'integrateddynamics:liquid_chorus', amount: 125 }, - pressure: 3.0, - exothermic: false - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { tag: 'forge:glass/colorless' }, - item_output: { item: 'integratedterminals:menril_glass' }, - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'integrateddynamics:menril_resin', amount: 1000 }, - pressure: 3.0, - exothermic: false, - temperature: { min_temp: 1273 } - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { tag: 'forge:glass/colorless' }, - item_output: { item: 'integratedterminals:chorus_glass' }, - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'integrateddynamics:liquid_chorus', amount: 1000 }, - pressure: 3.0, - exothermic: false, - temperature: { min_temp: 1273 } - }, - { - type: 'pneumaticcraft:thermo_plant', - item_input: { tag: 'forge:terracotta' }, - item_output: { item: 'minecraft:clay' }, - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'minecraft:water', amount: 10 }, - pressure: 2.0, - speed: 2.0, - exothermic: false, - temperature: { min_temp: 373 } - }, - { - type: 'pneumaticcraft:thermo_plant', - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'thermal:sap', amount: 20 }, - fluid_output: { fluid: 'thermal:syrup', amount: 1 }, - speed: 10.0, - exothermic: false, - temperature: { min_temp: 377 } - }, - { - type: 'pneumaticcraft:thermo_plant', - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'thermal:syrup', amount: 25 }, - item_output: { item: 'minecraft:sugar', count: 2 }, - speed: 10.0, - exothermic: false, - temperature: { min_temp: 377 } - }, - { - type: 'pneumaticcraft:thermo_plant', - fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'thermal:resin', amount: 400 }, - fluid_output: { fluid: 'thermal:tree_oil', amount: 200 }, - item_output: { item: 'thermal:rosin', count: 1 }, - exothermic: false, - temperature: { min_temp: 377 } - } - ] - }; + const recipes = [ + { + type: 'pneumaticcraft:thermo_plant', + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'pneumaticcraft:memory_essence', amount: 1000 }, + fluid_output: { fluid: 'industrialforegoing:essence', amount: 1000 }, + pressure: 1.0, + speed: 5.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'industrialforegoing:essence', amount: 1000 }, + fluid_output: { fluid: 'cofh_core:experience', amount: 1000 }, + pressure: 1.0, + speed: 5.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'cofh_core:experience', amount: 1000 }, + fluid_output: { fluid: 'pneumaticcraft:memory_essence', amount: 1000 }, + pressure: 1.0, + speed: 5.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { tag: 'integrateddynamics:menril_logs' }, + item_output: { item: 'integrateddynamics:crystalized_menril_chunk', count: 4 }, + fluid_output: { fluid: 'integrateddynamics:menril_resin', amount: 1000 }, + pressure: 3.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { item: 'integrateddynamics:menril_planks' }, + item_output: { item: 'integrateddynamics:crystalized_menril_chunk' }, + fluid_output: { fluid: 'integrateddynamics:menril_resin', amount: 250 }, + pressure: 3.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { item: 'minecraft:popped_chorus_fruit' }, + item_output: { item: 'integrateddynamics:crystalized_chorus_chunk', count: 4 }, + fluid_output: { fluid: 'integrateddynamics:liquid_chorus', amount: 125 }, + pressure: 3.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { item: 'integrateddynamics:proto_chorus' }, + item_output: { item: 'integrateddynamics:crystalized_chorus_chunk', count: 2 }, + fluid_output: { fluid: 'integrateddynamics:liquid_chorus', amount: 125 }, + pressure: 3.0, + exothermic: false + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { tag: 'forge:glass/colorless' }, + item_output: { item: 'integratedterminals:menril_glass' }, + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'integrateddynamics:menril_resin', amount: 1000 }, + pressure: 3.0, + exothermic: false, + temperature: { min_temp: 1273 } + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { tag: 'forge:glass/colorless' }, + item_output: { item: 'integratedterminals:chorus_glass' }, + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'integrateddynamics:liquid_chorus', amount: 1000 }, + pressure: 3.0, + exothermic: false, + temperature: { min_temp: 1273 } + }, + { + type: 'pneumaticcraft:thermo_plant', + item_input: { tag: 'forge:terracotta' }, + item_output: { item: 'minecraft:clay' }, + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'minecraft:water', amount: 10 }, + pressure: 2.0, + speed: 2.0, + exothermic: false, + temperature: { min_temp: 373 } + }, + { + type: 'pneumaticcraft:thermo_plant', + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'thermal:sap', amount: 20 }, + fluid_output: { fluid: 'thermal:syrup', amount: 1 }, + speed: 10.0, + exothermic: false, + temperature: { min_temp: 377 } + }, + { + type: 'pneumaticcraft:thermo_plant', + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'thermal:syrup', amount: 25 }, + item_output: { item: 'minecraft:sugar', count: 2 }, + speed: 10.0, + exothermic: false, + temperature: { min_temp: 377 } + }, + { + type: 'pneumaticcraft:thermo_plant', + fluid_input: { type: 'pneumaticcraft:fluid', fluid: 'thermal:resin', amount: 400 }, + fluid_output: { fluid: 'thermal:tree_oil', amount: 200 }, + item_output: { item: 'thermal:rosin', count: 1 }, + exothermic: false, + temperature: { min_temp: 377 } + } + ]; - data.recipes.forEach((recipe) => { + recipes.forEach((recipe) => { event.custom(recipe); }); }); From e005b6548ec3715159135b12310f35ef43798ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 10 Oct 2021 23:00:00 +0200 Subject: [PATCH 117/124] Update CHANGELOG.md --- changelogs/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md index 0eb89bddc0..0e1e99336b 100644 --- a/changelogs/CHANGELOG.md +++ b/changelogs/CHANGELOG.md @@ -9,7 +9,7 @@ _Using Forge-1.16.5-36.2.4_ | _[Mod Updates](https://github.com/NillerMedDild/En **Changes/Improvements** -- +- Adjusted our Experience Fluid exchanging recipes. The cycle now goes IF -> PNC -> Thermal -> IF ### Enigmatica 6 v0.5.14 From 89bf1b681d0f535e2e5fee5ed218ee3aad98c8cb Mon Sep 17 00:00:00 2001 From: MuteTiefling Date: Sun, 10 Oct 2021 18:37:10 -0400 Subject: [PATCH 118/124] Remove total myth botany override. switch to smarter, more targeted overrides cannot test in game. should be fine though --- config/serverconfigupdater-common.toml | 2 +- kubejs/assets/enigmatica/lang/en_us.json | 49 +++++++++ kubejs/assets/mythicbotany/lang/en_us.json | 109 --------------------- 3 files changed, 50 insertions(+), 110 deletions(-) delete mode 100644 kubejs/assets/mythicbotany/lang/en_us.json diff --git a/config/serverconfigupdater-common.toml b/config/serverconfigupdater-common.toml index abe7875fa8..43558c92d4 100644 --- a/config/serverconfigupdater-common.toml +++ b/config/serverconfigupdater-common.toml @@ -10,7 +10,7 @@ #By default Folders are only deleted if they are empty. Set to true to change that. deleteFoldersWithContent = false #This is intended for deleting datapacks and/or craft tweaker scripts. The file will be deleted every launch if it exists! No access to saves or world folder. Specify the path to the file. Comma Separated List. Example: scripts/badscript.zs - filesToDelete = "kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/occultism/spirit_fire.js,kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/tools.js,kubejs/data/tetra/loot_tables/actions/geode.json,kubejs/assets/enigmatica/tips/paraglider.json,kubejs/data/minecraft/loot_tables/chests/end_city_treasure.json,config/entity_culling-client.toml" + filesToDelete = "kubejs/assets/mythicbotany/lang/en_us.json,kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/occultism/spirit_fire.js,kubejs/server_scripts/enigmatica/kubejs/base/tags/items/forge/tools.js,kubejs/data/tetra/loot_tables/actions/geode.json,kubejs/assets/enigmatica/tips/paraglider.json,kubejs/data/minecraft/loot_tables/chests/end_city_treasure.json,config/entity_culling-client.toml" ["Version History"] #Editing these values will not affect any worlds that are already on that version. diff --git a/kubejs/assets/enigmatica/lang/en_us.json b/kubejs/assets/enigmatica/lang/en_us.json index 6b96bfa1a1..a8c3fa7980 100644 --- a/kubejs/assets/enigmatica/lang/en_us.json +++ b/kubejs/assets/enigmatica/lang/en_us.json @@ -55,5 +55,54 @@ "fluid.bloodmagic.life_essence_fluid": "Life Essence", + "lexicon.mythicbotany.runes.page1": "Runes representing the affinities of the $(thing)Nine World$(0) may now be crafted in the $(item) Runic Altar$(0). These new runes unlock great potential though they're dangerous if used carelessly.", + "lexicon.mythicbotany.runes.runeMidgard": "Midgard, the birth-place of humans.", + "lexicon.mythicbotany.runes.runeAlfheim": "Alfheim, home to the arboreal cities of the elves.", + "lexicon.mythicbotany.runes.runeNidavellir": "Nidavellir, filled with the great halls of the dwarves.", + "lexicon.mythicbotany.runes.runeJoetunheim": "Jötunheim, the place of origin of all giants.", + "lexicon.mythicbotany.runes.runeMuspelheim": "Muspelheim, a world of flame inhabited by fire giants.", + "lexicon.mythicbotany.runes.runeNiflheim": "Niflheim, rime covered plains home to frost giants.", + "lexicon.mythicbotany.runes.runeAsgard": "Asgard, where the Aesir rule from on-high.", + "lexicon.mythicbotany.runes.runeVanaheim": "Vanaheim, the lush plains where the Vanir keep court.", + "lexicon.mythicbotany.runes.runeHelheim": "Helheim, home to all in the end, the domain of the dead.", + + "lexicon.mythicbotany.infuser.page1": "Creating Alfsteel is no trivial accomplishment and the $(l:botania:basics/terrasteel)Terrestrial Agglomeration Plate$() was not up to the task. The elves in Alfheim have devised an improved version capable of channeling the energies necessary for all known mana-alloys. The Mana Infuser will not draw mana from a spark network automatically; a Dominant Augment is required.", + "lexicon.mythicbotany.infuser.page2": "Upgrading the Terrestrial Agglomeration Plate into a Mana Infuser.", + "lexicon.mythicbotany.infuser.page3": "The platform required by the Mana Infuser consists of Gold and Shimmerrock.", + "lexicon.mythicbotany.infuser.page4": "The process for creating Alfsteel is similar to that of Terrasteel, though it uses resources native to Alfheim. It requires a great deal more mana but can be used to create various powerful artifacts.", + + "lexicon.mythicbotany.tools.page1": "Trade between worlds has created possibilities never previously dreamt of. The elves have been busy experimenting with the samples they've received. Their long labour has at last born fruit in the form of Alfsteel. Plating Terrasteel with this new alloy in a Smithing Table greatly enhances its already potent nature.", + "lexicon.mythicbotany.tools.page2": "It takes no small quantity of Alfsteel to plate Terrasteel implements.", + "lexicon.mythicbotany.tools.page3": "Nimble as the minds who devised it, and equally sharp.", + "lexicon.mythicbotany.tools.page4": "Capable of felling entire trees with a single strike, the Alf Truncator can also aid in collecting items by pressing Sneak + Right Click.", + "lexicon.mythicbotany.tools.page5": "A more voracious tool than the Terrashatterer that it's made from, breaking a cubic area for the same effort as before.", + "lexicon.mythicbotany.tools.page6": "The elves are well known for their magic and this helm is no exception, bestowing limited telekenises upon the wearer.$(p)Ancient Wills can also be bonded to it as with the Terrasteel Helm.", + "lexicon.mythicbotany.tools.page7": "Remain firmly grounded, while wearing this Chestplate even the strongest attack will struggle to displace the wearer.", + "lexicon.mythicbotany.tools.page8": "Mana courses through Alfsteel Leggings, making the wearer fleet of foot.", + "lexicon.mythicbotany.tools.page9": "This armor feels surprisingly light, despite it's seeming bulk. Jumping feels easier than before.", + + "lexicon.mythicbotany.manaband.title": "Alfsteel Mana Bands", + "lexicon.mythicbotany.manaband.page1": "Plating a $(l:botania:baubles/mana_ring)Greater Band of Mana$() with Alfsteel in the smithing table greatly increases it's mana capacity, roughly doubling the already substantial reserve.", + "lexicon.mythicbotany.manaband.page2": "Similarly, the $(l:botania:baubles/aura_ring)Greater Band of Aura$() can be plated to grant a noticeable boost to its mana production.", + + "lexicon.mythicbotany.pylon.title": "Alfsteel Pylons", + "lexicon.mythicbotany.pylon.page1": "The secret forge of Alfheim.$(p)Merely laying a damaged tool enchanted with Mending on an Alfsteel Pylon is enough for it to erupt in a fury of mana fueled flame, burning the mana stored within to quickly repair the item.$(p)Aim a Mana Spreader at it to deliver the necessary mana.", + + "lexicon.mythicbotany.wand.title": "Dreamwood Wands", + "lexicon.mythicbotany.wand.page1": "For the discerning Botanist.$(p)Like Livingwood, Dreamwood may also be used to craft a Wand of the Forest.", + + "lexicon.mythicbotany.muspelheim.page1": "Granting the bearer immunity to the forge flames of Muspelheim, as well as igniting foes who dare make a strike.", + "lexicon.mythicbotany.niflheim.page1": "The bearer may withstand the crushing power of ice and stone with this band and a chilling aura emanates from it, slowing all within reach.", + + "lexicon.mythicbotany.generating.title": "Generating Flora", + "lexicon.mythicbotany.generating.page1": "$(thing)Disabled by Enigmatica 6$(0)", + "lexicon.mythicbotany.generating.page2": "$(thing)Disabled by Enigmatica 6$(0)", + "lexicon.mythicbotany.generating.page3": "At times, a Mana Spreader simply cannot keep up with mana as it's being produce. Generating Flora can instead be linked to a Mana Collector, allowing the mana to flow directly into a Spark network. A Spark and a Recessive Augment must be placed on the device.", + + "lexicon.mythicbotany.functional.title": "Functional Flora", + "lexicon.mythicbotany.functional.page1": "The Exoblaze channels mana into nearby Brewing Stands, empowering them to work without fuel.", + "lexicon.mythicbotany.functional.page2": "Drawing from deep aquifers to fill nearby cauldrons and Petal Apothecaries.", + "lexicon.mythicbotany.functional.page3": "Making Piglins and Hoglins feel right at home, preventing their zombification while mana is supplied.", + "": "" } diff --git a/kubejs/assets/mythicbotany/lang/en_us.json b/kubejs/assets/mythicbotany/lang/en_us.json deleted file mode 100644 index 2efe741cf7..0000000000 --- a/kubejs/assets/mythicbotany/lang/en_us.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "itemGroup.mythicbotany": "MythicBotany", - - "item.mythicbotany.asgard_rune": "Rune of Asgard", - "item.mythicbotany.vanaheim_rune": "Rune of Vanaheim", - "item.mythicbotany.alfheim_rune": "Rune of Alfheim", - "item.mythicbotany.midgard_rune": "Rune of Midgard", - "item.mythicbotany.joetunheim_rune": "Rune of Jötunheim", - "item.mythicbotany.muspelheim_rune": "Rune of Muspelheim", - "item.mythicbotany.niflheim_rune": "Rune of Niflheim", - "item.mythicbotany.nidavellir_rune": "Rune of Nidavellir", - "item.mythicbotany.helheim_rune": "Rune of Helheim", - "item.mythicbotany.alfsteel_ingot": "Alfsteel Ingot", - "item.mythicbotany.alfsteel_nugget": "Alfsteel Nugget", - "item.mythicbotany.alfsteel_armor_upgrade": "Double Alfsteel Ingot", - "item.mythicbotany.alfsteel_sword": "Alf Blade", - "item.mythicbotany.alfsteel_pick": "Alf Shatterer", - "item.mythicbotany.alfsteel_axe": "Alf Truncator", - "item.mythicbotany.alfsteel_helmet": "Alfsteel Helmet", - "item.mythicbotany.alfsteel_chestplate": "Alfsteel Chestplate", - "item.mythicbotany.alfsteel_leggings": "Alfsteel Leggings", - "item.mythicbotany.alfsteel_boots": "Alfsteel Boots", - "item.mythicbotany.mana_ring_greatest": "Greatest Band of Mana", - "item.mythicbotany.aura_ring_greatest": "Greatest Band of Aura", - "item.mythicbotany.faded_nether_star": "Faded Nether Star", - "item.mythicbotany.fire_ring": "Ring of Muspelheim", - "item.mythicbotany.ice_ring": "Ring of Niflheim", - - "block.mythicbotany.mana_infuser": "Mana-Infuser", - "block.mythicbotany.alfsteel_block": "Block of Alfsteel", - "block.mythicbotany.alfsteel_pylon": "Alfsteel Pylon", - "block.mythicbotany.mana_collector": "Mana Collector", - "block.mythicbotany.exoblaze": "Exoblaze", - "block.mythicbotany.exoblaze_floating": "Floating Exoblaze", - "block.mythicbotany.wither_aconite": "Wither Aconite", - "block.mythicbotany.wither_aconite_floating": "Floating Wither Aconite", - "block.mythicbotany.aquapanthus": "Aquapanthus", - "block.mythicbotany.aquapanthus_floating": "Floating Aquapanthus", - "block.mythicbotany.hellebore": "Hellebore", - "block.mythicbotany.hellebore_floating": "Floating Hellebore", - "block.mythicbotany.raindeletia": "Raindeltia", - "block.mythicbotany.raindeletia_floating": "Floating Raindeltia", - - "item.mythicbotany.alfsteel_helmet.description": "Makes you reach a little bit further.", - "item.mythicbotany.alfsteel_chestplate.description": "Gives you a fairly good knockback resistance", - "item.mythicbotany.alfsteel_leggings.description": "Makes you run faster.", - "item.mythicbotany.alfsteel_boots.description": "Makes you jump higher.", - - "block.mythicbotany.exoblaze.description": "Blazing!", - "block.mythicbotany.wither_aconite.description": "It gobbles nether stars.", - "block.mythicbotany.aquapanthus.description": "Try it when it's dry.", - "block.mythicbotany.hellebore.description": "It feels like Helheim.", - "block.mythicbotany.raindeletia.description": "Rain is not a pain.", - - "lexicon.mythicbotany.title": "MythicBotany", - "lexicon.mythicbotany.description": "Dive deeper into the world of magic", - - "lexicon.mythicbotany.runes.title": "Runes of the Nine Worlds", - "lexicon.mythicbotany.runes.page1": "Runes representing the affinities of the $(thing)Nine World$(0) may now be crafted in the $(item) Runic Altar$(0). These new runes unlock great potential though they're dangerous if used carelessly.", - "lexicon.mythicbotany.runes.runeMidgard": "Midgard, the birth-place of humans.", - "lexicon.mythicbotany.runes.runeAlfheim": "Alfheim, home to the arboreal cities of the elves.", - "lexicon.mythicbotany.runes.runeNidavellir": "Nidavellir, filled with the great halls of the dwarves.", - "lexicon.mythicbotany.runes.runeJoetunheim": "Jötunheim, the place of origin of all giants.", - "lexicon.mythicbotany.runes.runeMuspelheim": "Muspelheim, a world of flame inhabited by fire giants.", - "lexicon.mythicbotany.runes.runeNiflheim": "Niflheim, rime covered plains home to frost giants.", - "lexicon.mythicbotany.runes.runeAsgard": "Asgard, where the Aesir rule from on-high.", - "lexicon.mythicbotany.runes.runeVanaheim": "Vanaheim, the lush plains where the Vanir keep court.", - "lexicon.mythicbotany.runes.runeHelheim": "Helheim, home to all in the end, the domain of the dead.", - - "lexicon.mythicbotany.infuser.title": "The Mana Infuser", - "lexicon.mythicbotany.infuser.page1": "Creating Alfsteel is no trivial accomplishment and the $(l:botania:basics/terrasteel)Terrestrial Agglomeration Plate$() was not up to the task. The elves in Alfheim have devised an improved version capable of channeling the energies necessary fo all known mana-alloys. The Mana Infuser will not draw mana from a spark network automatically; a Dominant Augment is required.", - "lexicon.mythicbotany.infuser.page2": "Upgrading the Terrestrial Agglomeration Plate into a Mana Infuser.", - "lexicon.mythicbotany.infuser.page3": "The platform required by the Mana Infuser consists of Gold and Shimmerrock.", - "lexicon.mythicbotany.infuser.page4": "The process for creating Alfsteel is similar to that of Terrasteel, though it uses resources native to Alfheim. It requires a great deal more mana but can be used to create various powerful artifacts.", - - "lexicon.mythicbotany.tools.title": "Alfsteel Tools", - "lexicon.mythicbotany.tools.page1": "Trade between worlds has created possibilities never previously dreamt of. The elves have been busy experimenting with the samples they've received. Their long labour has at last born fruit in the form of Alfsteel. Plating Terrasteel with this new alloy in a Smithing Table greatly enhances its already potent nature.", - "lexicon.mythicbotany.tools.page2": "It takes no small quantity of Alfsteel to plate Terrasteel implements.", - "lexicon.mythicbotany.tools.page3": "Nimble as the minds who devised it, and equally sharp.", - "lexicon.mythicbotany.tools.page4": "Capable of felling entire trees with a single strike, the Alf Truncator can also aid in collecting items by pressing Sneak + Right Click.", - "lexicon.mythicbotany.tools.page5": "A more voracious tool than the Terrashatterer that it's made from, breaking a cubic area for the same effort as before.", - "lexicon.mythicbotany.tools.page6": "The elves are well known for their magic and this helm is no exception, bestowing limited telekenises upon the wearer.$(p)Ancient Wills can also be bonded to it as with the Terrasteel Helm.", - "lexicon.mythicbotany.tools.page7": "Remain firmly grounded, while wearing this Chestplate even the strongest attack will struggle to displace the wearer.", - "lexicon.mythicbotany.tools.page8": "Mana courses through Alfsteel Leggings, making the wearer fleet of foot.", - "lexicon.mythicbotany.tools.page9": "This armor feels surprisingly light, despite it's seeming bulk. Jumping feels easier than before.", - - "lexicon.mythicbotany.manaband.title": "Alfsteel Mana Bands", - "lexicon.mythicbotany.manaband.page1": "Plating a $(l:botania:baubles/mana_ring)Greater Band of Mana$() with Alfsteel in the smithing table greatly increases it's mana capacity, roughly doubling the already substantial reserve.", - "lexicon.mythicbotany.manaband.page2": "Similarly, the $(l:botania:baubles/aura_ring)Greater Band of Aura$() can be plated to grant a noticeable boost to its mana production.", - - "lexicon.mythicbotany.pylon.title": "Alfsteel Pylons", - "lexicon.mythicbotany.pylon.page1": "The secret forge of Alfheim.$(p)Merely laying a damaged tool enchanted with Mending on an Alfsteel Pylon is enough for it to erupt in a fury of mana fueled flame, burning the mana stored within to quickly repair the item.$(p)Aim a Mana Spreader at it to deliver the necessary mana.", - - "lexicon.mythicbotany.wand.title": "Dreamwood Wands", - "lexicon.mythicbotany.wand.page1": "For the discerning Botanist.$(p)Like Livingwood, Dreamwood may also be used to craft a Wand of the Forest.", - - "lexicon.mythicbotany.muspelheim.page1": "Granting the bearer immunity to the forge flames of Muspelheim, as well as igniting foes who dare make a strike.", - "lexicon.mythicbotany.niflheim.page1": "The bearer may withstand the crushing power of ice and stone with this band and a chilling aura emanates from it, slowing all within reach.", - - "lexicon.mythicbotany.generating.title": "Generating Flora", - "lexicon.mythicbotany.generating.page1": "$(thing)Disabled by Enigmatica 6$(0)", - "lexicon.mythicbotany.generating.page2": "$(thing)Disabled by Enigmatica 6$(0)", - "lexicon.mythicbotany.generating.page3": "At times, a Mana Spreader simply cannot keep up with mana as it's being produce. Generating Flora can instead be linked to a Mana Collector, allowing the mana to flow directly into a Spark network. A Spark and a Recessive Augment must be placed on the device.", - - "lexicon.mythicbotany.functional.title": "Functional Flora", - "lexicon.mythicbotany.functional.page1": "The Exoblaze channels mana into nearby Brewing Stands, empowering them to work without fuel.", - "lexicon.mythicbotany.functional.page2": "Drawing from deep aquifers to fill nearby cauldrons and Petal Apothecaries.", - "lexicon.mythicbotany.functional.page3": "Making Piglins and Hoglins feel right at home, preventing their zombification while mana is supplied." -} From b993270a2e3a862bad177c0466b8cf0096bc1743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 11 Oct 2021 21:02:02 +0200 Subject: [PATCH 119/124] enabled the roadrunner mixin `ai.pathing` \o/ --- config/roadrunner/rules.properties | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/config/roadrunner/rules.properties b/config/roadrunner/rules.properties index 47e0ded619..7c5e314309 100644 --- a/config/roadrunner/rules.properties +++ b/config/roadrunner/rules.properties @@ -4,6 +4,4 @@ # You can find information on editing this file and all the available options here: # https://github.com/MaxNeedsSnacks/roadrunner/wiki/Configuration-Files#rule-overrides # -# By default, this file will be empty except for this notice. - -mixin.ai.pathing=false \ No newline at end of file +# By default, this file will be empty except for this notice. \ No newline at end of file From 96a04f0f231dbb8e82e057594e417619321bd737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 11 Oct 2021 21:02:14 +0200 Subject: [PATCH 120/124] mod updates --- config/ftbultimine.snbt | 11 +- minecraftinstance.json | 424 ++++++++++++++++++---------------------- 2 files changed, 195 insertions(+), 240 deletions(-) diff --git a/config/ftbultimine.snbt b/config/ftbultimine.snbt index 508ef20006..8787752f48 100644 --- a/config/ftbultimine.snbt +++ b/config/ftbultimine.snbt @@ -1,6 +1,15 @@ { + # This is an advanced option, that you better leave alone unless you disable vanilla tools. + # Default: false + cancel_on_block_break_fail: false + + # This will stop mining if tool reaches X durability. It's possible it won't work with special tool types. + # Default: 0 + # Range: 0 ~ 100 + prevent_tool_break: 0 + # (This only works if the mod 'Lost Trinkets' is installed!) - # Adds a custom 'Ultiminer' trinket players will need to activate to be able to use Ultimine + # Adds a custom 'Ultiminer' trinket players will need to activate to be able to use Ultimine. # Make sure you disable the 'Octopick' trinket if this is enabled! # Default: false use_trinket: false diff --git a/minecraftinstance.json b/minecraftinstance.json index 5b71ac216e..c8cbc09e22 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,8 +30,8 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2021-10-10T16:49:39.2842979Z", - "playedCount": 405, + "lastPlayed": "2021-10-11T18:26:31.6550282Z", + "playedCount": 409, "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -47,8 +47,8 @@ "name": "Enigmatica6", "cachedScans": [], "isValid": true, - "lastPreviousMatchUpdate": "2021-10-05T19:39:16.9964081Z", - "lastRefreshAttempt": "2021-10-05T21:39:18.1639886+02:00", + "lastPreviousMatchUpdate": "2021-10-10T19:00:57.7201294Z", + "lastRefreshAttempt": "2021-10-10T21:00:59.9581286+02:00", "isEnabled": true, "isPinned": false, "gameVersion": "1.16.5", @@ -3215,7 +3215,7 @@ "dateInstalled": "2021-07-10T17:55:07.2653389Z", "dateUpdated": "2021-10-10T16:49:08.4906374Z", "dateLastUpdateAttempted": "2021-10-10T16:49:08.4906374Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4109,7 +4109,7 @@ "dateInstalled": "2021-07-05T20:20:52.5303961Z", "dateUpdated": "2021-10-09T17:57:43.0462926Z", "dateLastUpdateAttempted": "2021-10-09T17:57:43.0462926Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -6762,7 +6762,7 @@ "dateInstalled": "2021-07-10T17:55:07.2543409Z", "dateUpdated": "2021-10-10T16:49:09.8766715Z", "dateLastUpdateAttempted": "2021-10-10T16:49:09.8766715Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -7000,7 +7000,7 @@ "dateInstalled": "2021-08-11T21:22:43.3270429Z", "dateUpdated": "2021-10-09T18:04:00.7189842Z", "dateLastUpdateAttempted": "2021-10-09T18:04:00.7189842Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -7652,76 +7652,76 @@ "addonID": 376351, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3146365, - "displayName": "framedcompactdrawers-1.16-2.2.0.jar", - "fileName": "framedcompactdrawers-1.16-2.2.0.jar", - "fileDate": "2020-12-22T19:00:01.787Z", - "fileLength": 116626, + "id": 3487197, + "displayName": "framedcompactdrawers-1.16-2.2.1.jar", + "fileName": "framedcompactdrawers-1.16-2.2.1.jar", + "fileDate": "2021-10-10T20:05:09.24Z", + "fileLength": 116808, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3146/365/framedcompactdrawers-1.16-2.2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3487/197/framedcompactdrawers-1.16-2.2.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 59410508, + "id": 0, "addonId": 223852, "type": 3, - "fileId": 3146365 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2285096581, - "type": 3, + "fingerprint": 4214998931, + "type": 0, "invalidFingerprint": false }, { "foldername": "eutros", - "fingerprint": 2272543578, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 706551264, - "type": 3, + "fingerprint": 414622565, + "type": 0, "invalidFingerprint": false }, { "foldername": "logo.png", "fingerprint": 1881664966, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "pack.mcmeta", "fingerprint": 1762540746, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "assets", "fingerprint": 4127160251, - "type": 3, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 706551264, + "type": 0, "invalidFingerprint": false }, { "foldername": "mcmod.info", "fingerprint": 3412890546, - "type": 3, + "type": 0, "invalidFingerprint": false }, { "foldername": "framedcompactdrawers.refmap.json", "fingerprint": 3140626583, - "type": 3, + "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1144186776, + "packageFingerprint": 2362912554, "gameVersion": [ "1.16.3", "1.16.1", @@ -7729,57 +7729,21 @@ "1.16.4", "1.16.2" ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000016.0000000003", - "gameVersion": "1.16.3", - "gameVersionReleaseDate": "2020-09-10T14:44:20.443Z", - "gameVersionName": "1.16.3" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000001", - "gameVersion": "1.16.1", - "gameVersionReleaseDate": "2020-06-24T12:41:11.823Z", - "gameVersionName": "1.16.1" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000005", - "gameVersion": "1.16.5", - "gameVersionReleaseDate": "2021-01-15T14:14:48.91Z", - "gameVersionName": "1.16.5" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000002", - "gameVersion": "1.16.2", - "gameVersionReleaseDate": "2020-08-11T16:42:21.863Z", - "gameVersionName": "1.16.2" - } - ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2098288, - "projectId": 376351, - "packageFingerprintId": 572452317, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameVersionMappingId": 2601888, - "gameVersionId": 4458, - "gameId": 432, + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "framedcompactdrawers-1.16-2.2.0.jar" + "FileNameOnDisk": "framedcompactdrawers-1.16-2.2.1.jar" }, "dateInstalled": "2021-07-05T20:20:54.9428204Z", - "dateUpdated": "2021-07-05T20:20:54.9428204Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateUpdated": "2021-10-11T17:47:26.032147Z", + "dateLastUpdateAttempted": "2021-10-11T17:47:26.032147Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -9221,7 +9185,7 @@ "dateInstalled": "2021-07-05T20:20:54.9328256Z", "dateUpdated": "2021-10-09T17:57:41.3355848Z", "dateLastUpdateAttempted": "2021-10-09T17:57:41.3355848Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11395,7 +11359,7 @@ "dateInstalled": "2021-09-27T18:50:08.2167934Z", "dateUpdated": "2021-10-09T18:03:13.0283003Z", "dateLastUpdateAttempted": "2021-10-09T18:03:13.0283003Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16180,7 +16144,7 @@ "dateInstalled": "2021-10-04T19:00:56.2227538Z", "dateUpdated": "2021-10-10T16:49:29.6620745Z", "dateLastUpdateAttempted": "2021-10-10T16:49:29.6620745Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16446,6 +16410,78 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 535766, + "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", + "installedFile": { + "id": 3487397, + "displayName": "towers_of_the_wild-1.16.3-2.1.0.1.jar", + "fileName": "towers_of_the_wild-1.16.3-2.1.0.1.jar", + "fileDate": "2021-10-11T00:18:05.183Z", + "fileLength": 157147, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3487/397/towers_of_the_wild-1.16.3-2.1.0.1.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 551278339, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "com", + "fingerprint": 1726853743, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "data", + "fingerprint": 1151932235, + "type": 0, + "invalidFingerprint": false + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 1438559181, + "type": 0, + "invalidFingerprint": false + } + ], + "packageFingerprint": 855436463, + "gameVersion": [ + "1.16.5", + "Forge" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "towers_of_the_wild-1.16.3-2.1.0.1.jar" + }, + "dateInstalled": "2021-10-11T09:32:55.2274872Z", + "dateUpdated": "2021-10-11T09:32:55.2384791Z", + "dateLastUpdateAttempted": "2021-10-11T09:32:55.2384791Z", + "status": 4, + "preferenceAutoInstallUpdates": null, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 520110, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", @@ -19437,26 +19473,26 @@ "addonID": 386134, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3409570, - "displayName": "ftb-ultimine-forge-1605.3.0-build.25.jar", - "fileName": "ftb-ultimine-forge-1605.3.0-build.25.jar", - "fileDate": "2021-08-02T13:51:03.443Z", - "fileLength": 77169, + "id": 3487876, + "displayName": "ftb-ultimine-forge-1605.3.0-build.27.jar", + "fileName": "ftb-ultimine-forge-1605.3.0-build.27.jar", + "fileDate": "2021-10-11T14:48:58.61Z", + "fileLength": 77652, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3409/570/ftb-ultimine-forge-1605.3.0-build.25.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3487/876/ftb-ultimine-forge-1605.3.0-build.27.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 419699, + "addonId": 404465, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 404465, + "addonId": 419699, "type": 3, "fileId": 0 } @@ -19464,14 +19500,14 @@ "isAvailable": true, "modules": [ { - "foldername": "data", - "fingerprint": 668690037, + "foldername": "ftbultimine.accesswidener", + "fingerprint": 2828944861, "type": 0, "invalidFingerprint": false }, { - "foldername": "ftbultimine.accesswidener", - "fingerprint": 2828944861, + "foldername": "data", + "fingerprint": 668690037, "type": 0, "invalidFingerprint": false }, @@ -19495,24 +19531,24 @@ }, { "foldername": "META-INF", - "fingerprint": 1606682521, + "fingerprint": 1237762490, "type": 0, "invalidFingerprint": false }, { "foldername": "dev", - "fingerprint": 266643835, + "fingerprint": 2159715219, "type": 0, "invalidFingerprint": false }, { - "foldername": "architectury_inject_FTBUltimine1165_common_482e62daa2a74b129dc76f7a99c81f93", - "fingerprint": 2222672506, + "foldername": "architectury_inject_FTBUltimine1165_common_ef519f50a7374be69d0c4a7bbb996106", + "fingerprint": 3490763573, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 379087819, + "packageFingerprint": 4042441373, "gameVersion": [ "1.16.5", "Forge", @@ -19527,12 +19563,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ftb-ultimine-forge-1605.3.0-build.25.jar" + "FileNameOnDisk": "ftb-ultimine-forge-1605.3.0-build.27.jar" }, "dateInstalled": "2021-07-05T20:21:08.477471Z", - "dateUpdated": "2021-08-02T19:50:44.82838Z", - "dateLastUpdateAttempted": "2021-08-02T19:50:44.82838Z", - "status": 5, + "dateUpdated": "2021-10-11T17:47:20.1167784Z", + "dateLastUpdateAttempted": "2021-10-11T17:47:20.1167784Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -20370,7 +20406,7 @@ "dateInstalled": "2021-07-05T20:19:25.3019353Z", "dateUpdated": "2021-10-09T18:03:11.073299Z", "dateLastUpdateAttempted": "2021-10-09T18:03:11.073299Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -21241,7 +21277,7 @@ "dateInstalled": "2021-08-05T21:06:59.9349112Z", "dateUpdated": "2021-10-10T16:49:11.2886369Z", "dateLastUpdateAttempted": "2021-10-10T16:49:11.2886369Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -22738,7 +22774,7 @@ "dateInstalled": "2021-09-17T18:18:50.6213974Z", "dateUpdated": "2021-10-10T16:49:12.758639Z", "dateLastUpdateAttempted": "2021-10-10T16:49:12.758639Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -23292,7 +23328,7 @@ "dateInstalled": "2021-08-25T04:42:14.3967903Z", "dateUpdated": "2021-10-09T18:03:50.3325963Z", "dateLastUpdateAttempted": "2021-10-09T18:03:50.3325963Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -25377,96 +25413,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 386415, - "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", - "installedFile": { - "id": 3103750, - "displayName": "towers_of_the_wild-1.16.4-2.0.1.jar", - "fileName": "towers_of_the_wild-1.16.4-2.0.1.jar", - "fileDate": "2020-11-06T14:59:21.373Z", - "fileLength": 157181, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3103/750/towers_of_the_wild-1.16.4-2.0.1.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 4122247997, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "com", - "fingerprint": 70519731, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "data", - "fingerprint": 1151932235, - "type": 3, - "invalidFingerprint": false - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 1438559181, - "type": 3, - "invalidFingerprint": false - } - ], - "packageFingerprint": 2289824670, - "gameVersion": [ - "Forge", - "1.16.4" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0", - "gameVersion": "", - "gameVersionReleaseDate": "2019-08-01T00:00:00Z", - "gameVersionName": "Forge" - }, - { - "gameVersionPadded": "0000000001.0000000016.0000000004", - "gameVersion": "1.16.4", - "gameVersionReleaseDate": "2020-11-02T18:40:51.49Z", - "gameVersionName": "1.16.4" - } - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 2044270, - "projectId": 386415, - "packageFingerprintId": 549197885, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameVersionMappingId": 2517612, - "gameVersionId": 7498, - "gameId": 432, - "isServerPack": false, - "FileNameOnDisk": "towers_of_the_wild-1.16.4-2.0.1.jar" - }, - "dateInstalled": "2021-07-05T20:21:15.1220335Z", - "dateUpdated": "2021-07-05T20:21:15.1220335Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, - "preferenceAutoInstallUpdates": null, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 496030, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", @@ -26906,7 +26852,7 @@ "dateInstalled": "2021-07-05T20:21:15.1320328Z", "dateUpdated": "2021-10-09T18:04:04.3029611Z", "dateLastUpdateAttempted": "2021-10-09T18:04:04.3029611Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -28320,14 +28266,14 @@ "addonID": 529754, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3482250, - "displayName": "RoadRunner-mc1.16.5-1.2.2.jar", - "fileName": "RoadRunner-mc1.16.5-1.2.2.jar", - "fileDate": "2021-10-05T15:22:09.24Z", - "fileLength": 384386, + "id": 3487988, + "displayName": "RoadRunner-mc1.16.5-1.3.0.jar", + "fileName": "RoadRunner-mc1.16.5-1.3.0.jar", + "fileDate": "2021-10-11T16:47:32.02Z", + "fileLength": 365043, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3482/250/RoadRunner-mc1.16.5-1.2.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3487/988/RoadRunner-mc1.16.5-1.3.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -28335,7 +28281,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2553760134, + "fingerprint": 2552399192, "type": 0, "invalidFingerprint": false }, @@ -28352,31 +28298,31 @@ "invalidFingerprint": false }, { - "foldername": "roadrunner.mixins.json", - "fingerprint": 2006770597, + "foldername": "pack.mcmeta", + "fingerprint": 1265881845, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 1265881845, + "foldername": "roadrunner.mixins.json", + "fingerprint": 2521530393, "type": 0, "invalidFingerprint": false }, { "foldername": "me", - "fingerprint": 91953827, + "fingerprint": 1995430003, "type": 0, "invalidFingerprint": false }, { "foldername": "RoadRunner-mc1.16.5-refmap.json", - "fingerprint": 3272417653, + "fingerprint": 100690750, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 3741920589, + "packageFingerprint": 2611572159, "gameVersion": [ "1.16.5", "Forge", @@ -28391,12 +28337,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "RoadRunner-mc1.16.5-1.2.2.jar" + "FileNameOnDisk": "RoadRunner-mc1.16.5-1.3.0.jar" }, - "dateInstalled": "2021-10-05T17:24:14.8188822Z", - "dateUpdated": "2021-10-05T17:24:14.8388863Z", - "dateLastUpdateAttempted": "2021-10-05T17:24:14.8388863Z", - "status": 5, + "dateInstalled": "2021-10-11T17:48:01.1730208Z", + "dateUpdated": "2021-10-11T17:48:01.1900176Z", + "dateLastUpdateAttempted": "2021-10-11T17:48:01.1900176Z", + "status": 3, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -28405,7 +28351,7 @@ "isFuzzyMatch": false, "preferenceReleaseType": null, "manifestName": null, - "installedTargets": null + "installedTargets": [] }, { "addonID": 402256, @@ -30108,7 +30054,7 @@ "dateInstalled": "2021-07-05T20:21:15.1220335Z", "dateUpdated": "2021-10-09T18:03:04.0168772Z", "dateLastUpdateAttempted": "2021-10-09T18:03:04.0168772Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30325,7 +30271,7 @@ "dateInstalled": "2021-07-05T20:21:18.9930639Z", "dateUpdated": "2021-10-09T18:04:06.319963Z", "dateLastUpdateAttempted": "2021-10-09T18:04:06.319963Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30713,7 +30659,7 @@ "dateInstalled": "2021-07-05T20:21:18.9880623Z", "dateUpdated": "2021-10-10T16:49:11.1116384Z", "dateLastUpdateAttempted": "2021-10-10T16:49:11.1116384Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -30917,14 +30863,14 @@ "addonID": 438240, "gameInstanceID": "965be41e-0584-4b35-9c9a-4efa04c29c1f", "installedFile": { - "id": 3445579, - "displayName": "tomeofblood-1.16.5-1.2.jar", - "fileName": "tomeofblood-1.16.5-1.2.jar", - "fileDate": "2021-09-01T04:18:12.803Z", - "fileLength": 74721, + "id": 3487411, + "displayName": "tomeofblood-1.16.5-1.2.2.jar", + "fileName": "tomeofblood-1.16.5-1.2.2.jar", + "fileDate": "2021-10-11T00:42:49.133Z", + "fileLength": 74699, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3445/579/tomeofblood-1.16.5-1.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3487/411/tomeofblood-1.16.5-1.2.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -30945,36 +30891,36 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3015745454, + "fingerprint": 4193489244, "type": 0, "invalidFingerprint": false }, { "foldername": "com", - "fingerprint": 1817031075, + "fingerprint": 2748432923, "type": 0, "invalidFingerprint": false }, { - "foldername": "assets", - "fingerprint": 286154215, + "foldername": "pack.mcmeta", + "fingerprint": 3630444543, "type": 0, "invalidFingerprint": false }, { - "foldername": "data", - "fingerprint": 3390349326, + "foldername": "assets", + "fingerprint": 286154215, "type": 0, "invalidFingerprint": false }, { - "foldername": "pack.mcmeta", - "fingerprint": 3630444543, + "foldername": "data", + "fingerprint": 3390349326, "type": 0, "invalidFingerprint": false } ], - "packageFingerprint": 1585369781, + "packageFingerprint": 2000004197, "gameVersion": [ "1.16.5" ], @@ -30984,15 +30930,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2021-01-15T14:14:48.91Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "tomeofblood-1.16.5-1.2.jar" + "FileNameOnDisk": "tomeofblood-1.16.5-1.2.2.jar" }, "dateInstalled": "2021-07-05T20:21:18.981063Z", - "dateUpdated": "2021-09-02T12:00:15.287463Z", - "dateLastUpdateAttempted": "2021-09-02T12:00:15.287463Z", - "status": 5, + "dateUpdated": "2021-10-11T17:47:18.7199876Z", + "dateLastUpdateAttempted": "2021-10-11T17:47:18.7199876Z", + "status": 4, "preferenceAutoInstallUpdates": null, "preferenceAlternateFile": false, "preferenceIsIgnored": false, From 0299b262fd830f3c01e543f019ff05b9d4f6ac92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 11 Oct 2021 21:21:22 +0200 Subject: [PATCH 121/124] hide `farmersdelight:fried_egg` from JEI and SoL:CE --- defaultconfigs/solcarrot-server.toml | 2 +- kubejs/client_scripts/constants.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/defaultconfigs/solcarrot-server.toml b/defaultconfigs/solcarrot-server.toml index 555d4f2ec9..d3737bbf45 100644 --- a/defaultconfigs/solcarrot-server.toml +++ b/defaultconfigs/solcarrot-server.toml @@ -14,7 +14,7 @@ #Range: 0 ~ 1000 minimumFoodValue = 1 #Foods in this list won't affect the player's health nor show up in the food book. - blacklist = [] + blacklist = ["farmersdelight:fried_egg"] #When this list contains anything, the blacklist is ignored and instead only foods from here count. whitelist = [] diff --git a/kubejs/client_scripts/constants.js b/kubejs/client_scripts/constants.js index 336c67b068..764b806e20 100644 --- a/kubejs/client_scripts/constants.js +++ b/kubejs/client_scripts/constants.js @@ -180,6 +180,8 @@ const itemsToHide = [ 'environmental:cherry_pie', 'environmental:apple_pie', + 'farmersdelight:fried_egg', + 'immersiveengineering:dust_saltpeter', 'immersiveengineering:dust_wood', 'immersiveengineering:coal_coke', From 6d4bf810aa7bce6fda4b6b54db605b6087964d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 11 Oct 2021 21:21:32 +0200 Subject: [PATCH 122/124] add environmental fried egg to protein list --- .../enigmatica/kubejs/base/tags/items/diet/proteins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/diet/proteins.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/diet/proteins.js index bf5dc6042a..76ef4465e2 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/diet/proteins.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/diet/proteins.js @@ -1,3 +1,3 @@ onEvent('item.tags', (event) => { - event.add('diet:proteins', ['mekanism:canteen']); + event.add('diet:proteins', ['mekanism:canteen', 'environmental:fried_egg']); }); From 51a18dbf6e369f7f32011ca3fcafe1d020299dde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 11 Oct 2021 21:28:41 +0200 Subject: [PATCH 123/124] delete solcarrot server config to update blacklist --- config/serverconfigupdater-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/serverconfigupdater-common.toml b/config/serverconfigupdater-common.toml index 43558c92d4..79196e67fd 100644 --- a/config/serverconfigupdater-common.toml +++ b/config/serverconfigupdater-common.toml @@ -14,5 +14,5 @@ ["Version History"] #Editing these values will not affect any worlds that are already on that version. - history = "1=travel_anchors;2=astralsorcery;3=valhelsia_structures,immersiveengineering,curios;4=valhelsia_structures,immersiveengineering,curios;5=ensorcellation,curios;6=create;7=rftoolsbuilder;8=computercraft;9=refinedstorage;10=rftoolsdim;11=astralsorcery;" + history = "1=travel_anchors;2=astralsorcery;3=valhelsia_structures,immersiveengineering,curios;4=valhelsia_structures,immersiveengineering,curios;5=ensorcellation,curios;6=create;7=rftoolsbuilder;8=computercraft;9=refinedstorage;10=rftoolsdim;11=astralsorcery;12=solcarrot;" From 059f59d99d06859695f931984242ccf6466262f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 11 Oct 2021 21:46:25 +0200 Subject: [PATCH 124/124] simplify recipes to clear redstone transmitter/receiver --- .../kubejs/base/recipetypes/rftoolsutility/shapeless.js | 4 ++-- .../enigmatica/kubejs/base/tags/items/rftools/rftools.js | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js index cd79bd5aa7..563bf400ed 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/recipetypes/rftoolsutility/shapeless.js @@ -3,12 +3,12 @@ onEvent('recipes', (event) => { const recipes = [ { output: 'rftoolsutility:redstone_transmitter', - inputs: ['#rftoolsutility:redstone_transmitter'], + inputs: ['rftoolsutility:redstone_transmitter'], id: `${id_prefix}redstone_transmitter` }, { output: 'rftoolsutility:redstone_receiver', - inputs: ['#rftoolsutility:redstone_receiver'], + inputs: ['rftoolsutility:redstone_receiver'], id: `${id_prefix}redstone_receiver` } ]; diff --git a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js index 43a280ec06..ede8eca3b3 100644 --- a/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js +++ b/kubejs/server_scripts/enigmatica/kubejs/base/tags/items/rftools/rftools.js @@ -26,7 +26,4 @@ onEvent('item.tags', (event) => { event.get('rftools:fluidcard').add('rftoolsbuilder:shape_card_liquid'); event.get('rftools:fluidcard').add('rftoolsbuilder:shape_card_pump'); event.get('rftools:fluidcard').add('rftoolsbuilder:shape_card_pump_clear'); - - event.add('rftoolsutility:redstone_receiver', ['rftoolsutility:redstone_receiver']); - event.add('rftoolsutility:redstone_transmitter', ['rftoolsutility:redstone_transmitter']); });