most mods added, with basic balance config for a few of them
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
*.mrpack
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"ModSettings": {
|
||||||
|
"highlight_foused_items": {
|
||||||
|
"value": false
|
||||||
|
},
|
||||||
|
"highlight_foused_items_foreground": false,
|
||||||
|
"first_run": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,449 @@
|
|||||||
|
#Server Settings
|
||||||
|
[server]
|
||||||
|
#List of blocks that are not allowed to connect to backpacks - e.g. "refinedstorage:external_storage"
|
||||||
|
noConnectionBlocks = []
|
||||||
|
#Determines whether player can right click on backpack that another player is wearing to open it. If off will turn off that capability for everyone and remove related settings from backpack.
|
||||||
|
allowOpeningOtherPlayerBackpacks = true
|
||||||
|
#Determines if container items (those that override canFitInsideContainerItems to false) are able to fit in backpacks
|
||||||
|
containerItemsDisallowed = false
|
||||||
|
#List of blocks that inventory interaction upgrades can't interact with - e.g. "minecraft:shulker_box"
|
||||||
|
noInteractionBlocks = []
|
||||||
|
#Allows disabling item display settings. Primarily in cases where custom backpack model doesn't support showing the item. (Requires game restart to take effect)
|
||||||
|
itemDisplayDisabled = false
|
||||||
|
#Turns on/off item fluid handler of backpack in its item form. There are some dupe bugs caused by default fluid handling implementation that manifest when backpack is drained / filled in its item form in another mod's tank and the only way to prevent them is disallowing drain/fill in item form altogether
|
||||||
|
itemFluidHandlerEnabled = false
|
||||||
|
#List of items that are not allowed to be put in backpacks - e.g. "minecraft:shulker_box"
|
||||||
|
disallowedItems = []
|
||||||
|
#Allows disabling logic that dedupes backpacks with the same UUID in players' inventory. This is here to allow turning off the logic just in case it would be causing performance issues.
|
||||||
|
tickDedupeLogicDisabled = false
|
||||||
|
#Determines if backpacks can be placed in container items (those that check for return value of canFitInsideContainerItems)
|
||||||
|
canBePlacedInContainerItems = false
|
||||||
|
#Maximum number of upgrades of type per backpack in format of "UpgradeRegistryName[or UpgradeGroup]|MaxNumber"
|
||||||
|
maxUpgradesPerStorage = [
|
||||||
|
"furnace_upgrades|0",
|
||||||
|
"stack_upgrades|1",
|
||||||
|
"jukebox_upgrades|1",
|
||||||
|
]
|
||||||
|
|
||||||
|
#Advanced Void Upgrade Settings
|
||||||
|
[server.advancedVoidUpgrade]
|
||||||
|
#Number of Advanced Void Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Determines whether void upgrade allows voiding anything or it only has overflow option
|
||||||
|
voidAnythingEnabled = true
|
||||||
|
#Advanced Magnet Upgrade Settings
|
||||||
|
[server.advancedMagnetUpgrade]
|
||||||
|
#Number of Advanced Magnet Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Range around storage in blocks at which magnet will pickup items
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
magnetRange = 4
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Smoking Upgrade Settings
|
||||||
|
[server.smokingUpgrade]
|
||||||
|
#Smelting speed multiplier (1.0 equals speed at which vanilla furnace smelts items)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
smeltingSpeedMultiplier = 1.0
|
||||||
|
#Fuel efficiency multiplier (1.0 equals speed at which it's used in vanilla furnace)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
fuelEfficiencyMultiplier = 1.0
|
||||||
|
#Pickup Upgrade Settings
|
||||||
|
[server.pickupUpgrade]
|
||||||
|
#Number of Pickup Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Filter Upgrade Settings
|
||||||
|
[server.filterUpgrade]
|
||||||
|
#Number of Filter Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Advanced Compacting Upgrade Settings
|
||||||
|
[server.advancedCompactingUpgrade]
|
||||||
|
#Number of Advanced Compacting Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
[server.nerfs]
|
||||||
|
#Ratio of slowness levels per every backpack above the maximum number allowed. (number of backpacks above the max gets multiplied by this number and ceiled)
|
||||||
|
#Range: 0.1 ~ 5.0
|
||||||
|
slownessLevelsPerAdditionalBackpack = 1.0
|
||||||
|
#Determines if active upgrades will only work in the backpack that's worn by the player. Active upgrades are for example magnet, pickup, cooking, feeding upgrades.
|
||||||
|
onlyWornBackpackTriggersUpgrades = false
|
||||||
|
#Maximum number of backpacks in player's inventory that will not cause slowness
|
||||||
|
#Range: 1 ~ 27
|
||||||
|
maxNumberOfBackpacks = 3
|
||||||
|
#Determines if too many backpacks in player's inventory cause slowness to the player
|
||||||
|
tooManyBackpacksSlowness = true
|
||||||
|
#Restock Upgrade Settings
|
||||||
|
[server.restockUpgrade]
|
||||||
|
#Number of Restock Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Copper Backpack Settings
|
||||||
|
[server.copperBackpack]
|
||||||
|
#Number of upgrade slots in the backpack
|
||||||
|
#Range: 0 ~ 10
|
||||||
|
upgradeSlotCount = 1
|
||||||
|
#Number of inventory slots in the backpack
|
||||||
|
#Range: 1 ~ 144
|
||||||
|
inventorySlotCount = 45
|
||||||
|
#Auto-Blasting Upgrade Settings
|
||||||
|
[server.autoBlastingUpgrade]
|
||||||
|
#Number of fuel filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
fuelFilterSlotsInRow = 4
|
||||||
|
#Number of input filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
inputFilterSlots = 8
|
||||||
|
#Smelting speed multiplier (1.0 equals speed at which vanilla furnace smelts items)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
smeltingSpeedMultiplier = 1.0
|
||||||
|
#Number of fuel filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
fuelFilterSlots = 4
|
||||||
|
#Fuel efficiency multiplier (1.0 equals speed at which it's used in vanilla furnace)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
fuelEfficiencyMultiplier = 1.0
|
||||||
|
#Number of input filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
inputFilterSlotsInRow = 4
|
||||||
|
#Auto-Smoking Upgrade Settings
|
||||||
|
[server.autoSmokingUpgrade]
|
||||||
|
#Number of fuel filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
fuelFilterSlotsInRow = 4
|
||||||
|
#Number of input filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
inputFilterSlots = 8
|
||||||
|
#Smelting speed multiplier (1.0 equals speed at which vanilla furnace smelts items)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
smeltingSpeedMultiplier = 1.0
|
||||||
|
#Number of fuel filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
fuelFilterSlots = 4
|
||||||
|
#Fuel efficiency multiplier (1.0 equals speed at which it's used in vanilla furnace)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
fuelEfficiencyMultiplier = 1.0
|
||||||
|
#Number of input filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
inputFilterSlotsInRow = 4
|
||||||
|
#Netherite Backpack Settings
|
||||||
|
[server.netheriteBackpack]
|
||||||
|
#Number of upgrade slots in the backpack
|
||||||
|
#Range: 0 ~ 10
|
||||||
|
upgradeSlotCount = 7
|
||||||
|
#Number of inventory slots in the backpack
|
||||||
|
#Range: 1 ~ 144
|
||||||
|
inventorySlotCount = 120
|
||||||
|
#Deposit Upgrade Settings
|
||||||
|
[server.depositUpgrade]
|
||||||
|
#Number of Deposit Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Pump Upgrade Settings
|
||||||
|
[server.pumpUpgrade]
|
||||||
|
#Ratio that gets applied (multiplies) to inventory stack multiplier before this is applied to max input/output value. Value lower than 1 makes stack multiplier affect the capacity less, higher makes it affect the capacity more. 0 turns off stack multiplier affecting input/output
|
||||||
|
#Range: 0.0 ~ 5.0
|
||||||
|
stackMultiplierRatio = 1.0
|
||||||
|
#Number of fluid filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 4
|
||||||
|
#How much mB can be transfered in / out per operation. This is a base transfer rate that gets multiplied by number of rows in storage and stack multiplier.
|
||||||
|
#Range: 1 ~ 1000
|
||||||
|
maxInputOutput = 20
|
||||||
|
#Auto-Smelting Upgrade Settings
|
||||||
|
[server.autoSmeltingUpgrade]
|
||||||
|
#Number of fuel filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
fuelFilterSlotsInRow = 4
|
||||||
|
#Number of input filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
inputFilterSlots = 8
|
||||||
|
#Smelting speed multiplier (1.0 equals speed at which vanilla furnace smelts items)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
smeltingSpeedMultiplier = 1.0
|
||||||
|
#Number of fuel filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
fuelFilterSlots = 4
|
||||||
|
#Fuel efficiency multiplier (1.0 equals speed at which it's used in vanilla furnace)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
fuelEfficiencyMultiplier = 1.0
|
||||||
|
#Number of input filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
inputFilterSlotsInRow = 4
|
||||||
|
#Advanced Restock Upgrade Settings
|
||||||
|
[server.advancedRestockUpgrade]
|
||||||
|
#Number of Advanced Restock Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Leather Backpack Settings
|
||||||
|
[server.leatherBackpack]
|
||||||
|
#Number of upgrade slots in the backpack
|
||||||
|
#Range: 0 ~ 10
|
||||||
|
upgradeSlotCount = 1
|
||||||
|
#Number of inventory slots in the backpack
|
||||||
|
#Range: 1 ~ 144
|
||||||
|
inventorySlotCount = 27
|
||||||
|
#Gold Backpack Settings
|
||||||
|
[server.goldBackpack]
|
||||||
|
#Number of upgrade slots in the backpack
|
||||||
|
#Range: 0 ~ 10
|
||||||
|
upgradeSlotCount = 3
|
||||||
|
#Number of inventory slots in the backpack
|
||||||
|
#Range: 1 ~ 144
|
||||||
|
inventorySlotCount = 81
|
||||||
|
#Iron Backpack Settings
|
||||||
|
[server.ironBackpack]
|
||||||
|
#Number of upgrade slots in the backpack
|
||||||
|
#Range: 0 ~ 10
|
||||||
|
upgradeSlotCount = 2
|
||||||
|
#Number of inventory slots in the backpack
|
||||||
|
#Range: 1 ~ 144
|
||||||
|
inventorySlotCount = 54
|
||||||
|
#Advanced Feeding Upgrade Settings
|
||||||
|
[server.advancedFeedingUpgrade]
|
||||||
|
#Number of Advanced Feeding Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Advanced Refill Upgrade Settings
|
||||||
|
[server.advancedRefillUpgrade]
|
||||||
|
#Number of Advanced Refill Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 12
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Xp Pump Upgrade Settings
|
||||||
|
[server.xpPumpUpgrade]
|
||||||
|
#Whether xp pump can mend items with mending. Set false here to turn off the feature altogether.
|
||||||
|
mendingOn = true
|
||||||
|
#How many experience points at a maximum would be used to mend an item per operation (every 5 ticks and 1 xp point usually translates to 2 damage repaired).
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
maxXpPointsPerMending = 5
|
||||||
|
#Tank Upgrade Settings
|
||||||
|
[server.tankUpgrade]
|
||||||
|
#Ratio that gets applied (multiplies) to inventory stack multiplier before this is applied to max energy of the battery and max in/out. Value lower than 1 makes stack multiplier affect the max energy less, higher makes it affect the max energy more. 0 turns off stack multiplier affecting battery upgrade
|
||||||
|
#Range: 0.0 ~ 5.0
|
||||||
|
stackMultiplierRatio = 1.0
|
||||||
|
#How much FE can be transfered in / out per operation. This is a base transfer rate and same as max capacity gets multiplied by number of rows in storage and stack multiplier.
|
||||||
|
#Range: 1 ~ 1000
|
||||||
|
maxInputOutput = 20
|
||||||
|
#Capacity in mB the tank upgrade will have per row of storage slots
|
||||||
|
#Range: 500 ~ 20000
|
||||||
|
capacityPerSlotRow = 4000
|
||||||
|
#Energy in FE the battery upgrade will have per row of storage slots
|
||||||
|
#Range: 500 ~ 50000
|
||||||
|
energyPerSlotRow = 10000
|
||||||
|
#Cooldown between fill/drain actions done on fluid containers in tank slots. Only fills/drains one bucket worth to/from container after this cooldown and then waits again.
|
||||||
|
#Range: 1 ~ 100
|
||||||
|
autoFillDrainContainerCooldown = 20
|
||||||
|
#Advanced Pickup Upgrade Settings
|
||||||
|
[server.advancedPickupUpgrade]
|
||||||
|
#Number of Advanced Pickup Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Stack Upgrade Settings
|
||||||
|
[server.stackUpgrade]
|
||||||
|
#List of items that are not supposed to stack in storage even when stack upgrade is inserted. Item registry names are expected here.
|
||||||
|
nonStackableItems = [
|
||||||
|
"minecraft:bundle",
|
||||||
|
"minecraft:shulker_box",
|
||||||
|
"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",
|
||||||
|
]
|
||||||
|
#Advanced Filter Upgrade Settings
|
||||||
|
[server.advancedFilterUpgrade]
|
||||||
|
#Number of Advanced Filter Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Advanced Jukebox Upgrade Settings
|
||||||
|
[server.advancedJukeboxUpgrade]
|
||||||
|
#Number of lots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Number of slots for discs in jukebox upgrade
|
||||||
|
#Range: 1 ~ 16
|
||||||
|
numberOfSlots = 12
|
||||||
|
#Diamond Backpack Settings
|
||||||
|
[server.diamondBackpack]
|
||||||
|
#Number of upgrade slots in the backpack
|
||||||
|
#Range: 0 ~ 10
|
||||||
|
upgradeSlotCount = 5
|
||||||
|
#Number of inventory slots in the backpack
|
||||||
|
#Range: 1 ~ 144
|
||||||
|
inventorySlotCount = 108
|
||||||
|
#Compacting Upgrade Settings
|
||||||
|
[server.compactingUpgrade]
|
||||||
|
#Number of Compacting Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Void Upgrade Settings
|
||||||
|
[server.voidUpgrade]
|
||||||
|
#Number of Void Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Determines whether void upgrade allows voiding anything or it only has overflow option
|
||||||
|
voidAnythingEnabled = true
|
||||||
|
#Tool Swapper Upgrade Settings
|
||||||
|
[server.toolSwapperUpgrade]
|
||||||
|
#Number of Tool Swapper Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 8
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Inception Upgrade Settings
|
||||||
|
[server.inceptionUpgrade]
|
||||||
|
#Allows / Disallows backpack upgrades to work with inventories of Backpacks in the Backpack with Inception Upgrade
|
||||||
|
upgradesUseInventoriesOfBackpacksInBackpack = true
|
||||||
|
#Allows / Disallows upgrades to be functional even when they are in Backpacks in the inventory of Backpack with Inception Upgrade
|
||||||
|
upgradesInContainedBackpacksAreFunctional = true
|
||||||
|
#Advanced Deposit Upgrade Settings
|
||||||
|
[server.advancedDepositUpgrade]
|
||||||
|
#Number of Advanced Deposit Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 16
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 4
|
||||||
|
#Blasting Upgrade Settings
|
||||||
|
[server.blastingUpgrade]
|
||||||
|
#Smelting speed multiplier (1.0 equals speed at which vanilla furnace smelts items)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
smeltingSpeedMultiplier = 1.0
|
||||||
|
#Fuel efficiency multiplier (1.0 equals speed at which it's used in vanilla furnace)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
fuelEfficiencyMultiplier = 1.0
|
||||||
|
#Feeding Upgrade Settings
|
||||||
|
[server.feedingUpgrade]
|
||||||
|
#Number of Feeding Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Magnet Upgrade Settings
|
||||||
|
[server.magnetUpgrade]
|
||||||
|
#Number of Magnet Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 9
|
||||||
|
#Range around storage in blocks at which magnet will pickup items
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
magnetRange = 3
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Smelting Upgrade Settings
|
||||||
|
[server.smeltingUpgrade]
|
||||||
|
#Smelting speed multiplier (1.0 equals speed at which vanilla furnace smelts items)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
smeltingSpeedMultiplier = 1.0
|
||||||
|
#Fuel efficiency multiplier (1.0 equals speed at which it's used in vanilla furnace)
|
||||||
|
#Range: 0.25 ~ 4.0
|
||||||
|
fuelEfficiencyMultiplier = 1.0
|
||||||
|
#Refill Upgrade Settings
|
||||||
|
[server.refillUpgrade]
|
||||||
|
#Number of Refill Upgrade's filter slots
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
filterSlots = 6
|
||||||
|
#Number of filter slots displayed in a row
|
||||||
|
#Range: 1 ~ 6
|
||||||
|
slotsInRow = 3
|
||||||
|
#Settings for Spawning Entities with Backpack
|
||||||
|
[server.entityBackpackAdditions]
|
||||||
|
#Chance of an entity spawning with Backpack
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
chance = 0.005
|
||||||
|
#Chance increase per looting level of mob dropping backpack
|
||||||
|
#Range: 0.0 ~ 0.3
|
||||||
|
lootingChanceIncreasePerLevel = 0.15
|
||||||
|
#Determines whether backpack drops to fake players if killed by them in addition to real ones that it always drops to
|
||||||
|
dropToFakePlayers = false
|
||||||
|
#Turns on/off buffing the entity that wears backpack with potion effects. These are scaled based on how much loot is added.
|
||||||
|
buffWithPotionEffects = true
|
||||||
|
#Map of entities that can spawn with backpack and related loot tables (if adding a loot is enabled) in format of "EntityRegistryName|LootTableName"
|
||||||
|
entityLootTableList = [
|
||||||
|
# "minecraft:creeper|minecraft:chests/desert_pyramid",
|
||||||
|
# "minecraft:drowned|minecraft:chests/shipwreck_treasure",
|
||||||
|
"minecraft:enderman|minecraft:chests/end_city_treasure",
|
||||||
|
# "minecraft:evoker|minecraft:chests/woodland_mansion",
|
||||||
|
# "minecraft:husk|minecraft:chests/desert_pyramid",
|
||||||
|
"minecraft:piglin|minecraft:chests/bastion_bridge",
|
||||||
|
# "minecraft:piglin_brute|minecraft:chests/bastion_treasure",
|
||||||
|
# "minecraft:pillager|minecraft:chests/pillager_outpost",
|
||||||
|
"minecraft:skeleton|minecraft:chests/simple_dungeon",
|
||||||
|
# "minecraft:stray|minecraft:chests/igloo_chest",
|
||||||
|
# "minecraft:vex|minecraft:chests/woodland_mansion",
|
||||||
|
# "minecraft:vindicator|minecraft:chests/woodland_mansion",
|
||||||
|
"minecraft:witch|minecraft:chests/buried_treasure",
|
||||||
|
# "minecraft:wither_skeleton|minecraft:chests/nether_bridge",
|
||||||
|
"minecraft:zombie|minecraft:chests/simple_dungeon",
|
||||||
|
# "minecraft:zombie_villager|minecraft:chests/village/village_armorer",
|
||||||
|
"minecraft:zombified_piglin|minecraft:chests/bastion_other",
|
||||||
|
]
|
||||||
|
#List of music discs that are not supposed to be played by entities
|
||||||
|
discBlockList = ["botania:record_gaia_1", "botania:record_gaia_2"]
|
||||||
|
#Chance of mob dropping backpack when killed by player
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
backpackDropChance = 1.0
|
||||||
|
#Turns on/off buffing the entity that wears backpack with additional health. Health is scaled based on backpack tier the mob wears.
|
||||||
|
buffHealth = true
|
||||||
|
#Turns on/off equiping the entity that wears backpack with armor. What armor material and how enchanted is scaled based on backpack tier the mob wears.
|
||||||
|
equipWithArmor = true
|
||||||
|
#Turns on/off addition of loot into backpacks
|
||||||
|
addLoot = true
|
||||||
|
#Turns on/off a chance that the entity that wears backpack gets jukebox upgrade and plays a music disc.
|
||||||
|
playJukebox = false
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
# Simple Voice Chat server config v1.20.1-2.6.6
|
||||||
|
|
||||||
|
# The port number to use for the voice chat communication.
|
||||||
|
# Audio packets are always transmitted via the UDP protocol on the port number
|
||||||
|
# specified here, independently of other networking used for the game server.
|
||||||
|
# Set this to '-1' to use the same port number that is used by the Minecraft server.
|
||||||
|
# However, it is strongly recommended NOT to use the same port number because UDP on
|
||||||
|
# it is also used by default for the server query. Doing so may crash the server!
|
||||||
|
port=24454
|
||||||
|
# The server IP address to bind the voice chat to
|
||||||
|
# Leave blank to use the 'server-ip' property from the 'server.properties' config file
|
||||||
|
# To bind to the wildcard IP address, use '*'
|
||||||
|
bind_address=*
|
||||||
|
# The distance to which the voice can be heard
|
||||||
|
max_voice_distance=45.0
|
||||||
|
# The distance to which the voice can be heard when whispering
|
||||||
|
whisper_distance=18.0
|
||||||
|
# The Opus codec
|
||||||
|
# Valid values are 'VOIP', 'AUDIO', and 'RESTRICTED_LOWDELAY'
|
||||||
|
codec=VOIP
|
||||||
|
# The maximum size that audio packets are allowed to have (in bytes)
|
||||||
|
# Set this to a lower value if audio packets don't arrive
|
||||||
|
mtu_size=1024
|
||||||
|
# The frequency at which keep-alive packets are sent (in milliseconds)
|
||||||
|
# Setting this to a higher value may result in timeouts
|
||||||
|
keep_alive=1000
|
||||||
|
# If group chats are allowed
|
||||||
|
enable_groups=false
|
||||||
|
# The hostname that clients should use to connect to the voice chat
|
||||||
|
# This may also include a port, e.g. 'example.com:24454' or just a port, e.g. '24454'
|
||||||
|
# Do NOT change this value if you don't know what you're doing
|
||||||
|
voice_host=
|
||||||
|
# If players are allowed to record the voice chat audio
|
||||||
|
allow_recording=true
|
||||||
|
# If spectators are allowed to talk to other players
|
||||||
|
spectator_interaction=false
|
||||||
|
# If spectators can talk to players they are spectating
|
||||||
|
spectator_player_possession=false
|
||||||
|
# If players without the voice chat mod should be kicked from the server
|
||||||
|
force_voice_chat=false
|
||||||
|
# The amount of time the server should wait to check if a player has the mod installed (in milliseconds)
|
||||||
|
# Only relevant when 'force_voice_chat' is set to 'true'
|
||||||
|
login_timeout=10000
|
||||||
|
# The range in which the voice chat should broadcast audio
|
||||||
|
# A value less than 0 means 'max_voice_distance'
|
||||||
|
broadcast_range=-1.0
|
||||||
|
# If the voice chat server should reply to external pings
|
||||||
|
allow_pings=false
|
||||||
|
# If the mod should load native libraries on dedicated servers
|
||||||
|
# This is mostly relevant for voice chat addons
|
||||||
|
use_natives=true
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
[client]
|
||||||
|
|
||||||
|
# If enabled, the text overlay on waystones will no longer always render at full brightness.
|
||||||
|
disableTextGlow = false
|
||||||
|
|
||||||
|
[compatibility]
|
||||||
|
|
||||||
|
# If enabled, JourneyMap waypoints will be created for each activated waystone.
|
||||||
|
displayWaystonesOnJourneyMap = true
|
||||||
|
|
||||||
|
# If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed
|
||||||
|
preferJourneyMapIntegration = true
|
||||||
|
|
||||||
|
[cooldowns]
|
||||||
|
|
||||||
|
# The multiplier applied to the cooldown when teleporting to a global waystone via inventory button or warp stone.
|
||||||
|
globalWaystoneCooldownMultiplier = 2.0
|
||||||
|
|
||||||
|
# The cooldown between usages of the inventory button in seconds.
|
||||||
|
inventoryButtonCooldown = 300
|
||||||
|
|
||||||
|
# The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click.
|
||||||
|
scrollUseTime = 32
|
||||||
|
|
||||||
|
# The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for.
|
||||||
|
warpPlateUseTime = 20
|
||||||
|
|
||||||
|
# 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.
|
||||||
|
warpStoneCooldown = 30
|
||||||
|
|
||||||
|
# The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click.
|
||||||
|
warpStoneUseTime = 32
|
||||||
|
|
||||||
|
[inventoryButton]
|
||||||
|
|
||||||
|
# The y position of the warp button in the creative menu.
|
||||||
|
creativeWarpButtonX = 88
|
||||||
|
|
||||||
|
# The y position of the warp button in the creative menu.
|
||||||
|
creativeWarpButtonY = 33
|
||||||
|
|
||||||
|
# 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 = ""
|
||||||
|
|
||||||
|
# The x position of the warp button in the inventory.
|
||||||
|
warpButtonX = 58
|
||||||
|
|
||||||
|
# The y position of the warp button in the inventory.
|
||||||
|
warpButtonY = 60
|
||||||
|
|
||||||
|
[restrictions]
|
||||||
|
|
||||||
|
# Set to true if players should be able to teleport between waystones by simply right-clicking a waystone.
|
||||||
|
allowWaystoneToWaystoneTeleport = true
|
||||||
|
|
||||||
|
# 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.
|
||||||
|
dimensionalWarp = "DENY"
|
||||||
|
|
||||||
|
# List of dimensions that players are allowed to warp cross-dimension from and to. If left empty, all dimensions except those in dimensionalWarpDenyList are allowed.
|
||||||
|
dimensionalWarpAllowList = []
|
||||||
|
|
||||||
|
# List of dimensions that players are not allowed to warp cross-dimension from and to. Only used if dimensionalWarpAllowList is empty.
|
||||||
|
dimensionalWarpDenyList = []
|
||||||
|
|
||||||
|
# If enabled, waystones generated in worldgen are unbreakable.
|
||||||
|
generatedWaystonesUnbreakable = true
|
||||||
|
|
||||||
|
# Set to false to allow non-creative players to make waystones globally activated for all players.
|
||||||
|
globalWaystoneSetupRequiresCreativeMode = true
|
||||||
|
|
||||||
|
# List of leashed mobs that cannot be taken with you when teleporting
|
||||||
|
leashedDenyList = ["minecraft:wither"]
|
||||||
|
|
||||||
|
# If enabled, only the owner of a waystone (the one who placed it) can rename it.
|
||||||
|
restrictRenameToOwner = false
|
||||||
|
|
||||||
|
# If enabled, only creative players can place, edit or break waystones. This does NOT disable the crafting recipe.
|
||||||
|
restrictToCreative = false
|
||||||
|
|
||||||
|
# If enabled, leashed mobs will be teleported with you
|
||||||
|
transportLeashed = true
|
||||||
|
|
||||||
|
# Whether to take leashed mobs with you when teleporting between dimensions
|
||||||
|
transportLeashedDimensional = true
|
||||||
|
|
||||||
|
[worldGen]
|
||||||
|
|
||||||
|
# These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info.
|
||||||
|
customWaystoneNames = ["Never gonna", "Skibidi dop"]
|
||||||
|
|
||||||
|
# List of dimensions that waystones are allowed to spawn in through world gen. If left empty, all dimensions except those in worldGenDimensionDenyList are used.
|
||||||
|
dimensionAllowList = [
|
||||||
|
"minecraft:overworld",
|
||||||
|
"minecraft:the_nether",
|
||||||
|
"minecraft:the_end",
|
||||||
|
]
|
||||||
|
|
||||||
|
# List of dimensions that waystones are not allowed to spawn in through world gen. Only used if worldGenDimensionAllowList is empty.
|
||||||
|
dimensionDenyList = []
|
||||||
|
|
||||||
|
# Ensures that pretty much every village will have a waystone, by spawning it as early as possible. In addition, this means waystones will generally be located in the center of the village.
|
||||||
|
forceSpawnInVillages = false
|
||||||
|
|
||||||
|
# Approximate chunk distance between waystones generated freely in world generation. Set to 0 to disable generation.
|
||||||
|
frequency = 25
|
||||||
|
|
||||||
|
# Set to 'PRESET_FIRST' to first use names from the custom names list. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names.
|
||||||
|
nameGenerationMode = "PRESET_ONLY"
|
||||||
|
|
||||||
|
# Set to true if waystones should be added to the generation of villages. Some villages may still spawn without a waystone.
|
||||||
|
spawnInVillages = true
|
||||||
|
|
||||||
|
# Set to 'DEFAULT' to only generate the normally textured waystones. Set to 'MOSSY' or 'SANDY' to generate all as that variant. Set to 'BIOME' to make the style depend on the biome it is generated in.
|
||||||
|
worldGenStyle = "BIOME"
|
||||||
|
|
||||||
|
[xpCost]
|
||||||
|
|
||||||
|
# The amount of blocks per xp level requirement. If set to 500, the base xp cost for travelling 1000 blocks will be 2 levels.
|
||||||
|
blocksPerXpLevel = 250
|
||||||
|
|
||||||
|
# The base xp level cost when travelling between dimensions. Ignores block distance.
|
||||||
|
dimensionalWarpXpCost = 3
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting to a global waystone through any method.
|
||||||
|
globalWaystoneXpCostMultiplier = 0.0
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting via the inventory button.
|
||||||
|
inventoryButtonXpCostMultiplier = 0.0
|
||||||
|
|
||||||
|
# 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 = true
|
||||||
|
|
||||||
|
# The maximum base xp cost (may be exceeded by multipliers defined below), set to 0 to disable all distance-based XP costs
|
||||||
|
maximumBaseXpCost = 3.0
|
||||||
|
|
||||||
|
# The minimum base xp cost (may be subceeded by multipliers defined below)
|
||||||
|
minimumBaseXpCost = 0.0
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting from a portstone.
|
||||||
|
portstoneXpCostMultiplier = 1.0
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting from one sharestone to another.
|
||||||
|
sharestoneXpCostMultiplier = 1.0
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting from one warp plate to another.
|
||||||
|
warpPlateXpCostMultiplier = 1.0
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting using a Warp Stone item (not the Waystone block, Konstantin)
|
||||||
|
warpStoneXpCostMultiplier = 1.0
|
||||||
|
|
||||||
|
# The multiplier applied to the base xp cost when teleporting from one waystone to another.
|
||||||
|
waystoneXpCostMultiplier = 1.0
|
||||||
|
|
||||||
|
# How much xp is needed per leashed animal to travel with you
|
||||||
|
xpCostPerLeashed = 250
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
allowCaveModeOnServer:fasle
|
||||||
|
allowNetherCaveModeOnServer:false
|
||||||
|
allowRadarOnServer:true
|
||||||
|
registerStatusEffects:true
|
||||||
|
everyoneTracksEveryone:false
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
allowCaveModeOnServer:false
|
||||||
|
allowNetherCaveModeOnServer:true
|
||||||
|
registerStatusEffects:true
|
||||||
|
everyoneTracksEveryone:false
|
||||||
+684
@@ -1,16 +1,700 @@
|
|||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/inventoryprofilesnext/inventoryprofiles.json"
|
||||||
|
hash = "8ef92c1775411824ef42556396b69d467ed94bb1305f151e320d14810e549755"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/sophisticatedbackpacks-server.toml"
|
||||||
|
hash = "8f36a0097d26ab476b1bc2d5763c93d06d966d7298102ac2ed5754521f038114"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/voicechat/voicechat-server.properties"
|
||||||
|
hash = "6729a674139b4213157926d3b4407d475fa3406ebc104bb875bf6721a8f98fb5"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/waystones-common.toml"
|
||||||
|
hash = "2f2da08e66874dd563be3df625431767975d5874bbc2319483702c8cb19a4c9e"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/xaerominimap-common.txt"
|
||||||
|
hash = "4359412488d763aabefc48a31d705bf5299a5671205eb0acf2ae3f3e2eca1910"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/xaeroworldmap-common.txt"
|
||||||
|
hash = "c814a21cab7e0fcc259ebfe00a74a8178e60d3c668c01074b0e62a89cebbcdfc"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/3dskinlayers.pw.toml"
|
||||||
|
hash = "82becc6910845ae1a68884e6f7a3dcdc861d79a087ae81b1d7e120e82884372d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/advanced-netherite.pw.toml"
|
||||||
|
hash = "4a7568e25cac4f4bedba140135036d9481403069a6d9513a922e9901661c05ca"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/alexs-caves-(unofficial-port).pw.toml"
|
||||||
|
hash = "e3ea6c1ae49cfdb68008b673687d013a8b75d53fc2cc66ba2d1677dc51b929b0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/amendments.pw.toml"
|
||||||
|
hash = "ca7ccbfc12a2103e8a155731eb03f94b243cc07fe9fae2f22c9ab04656109544"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/appleskin.pw.toml"
|
||||||
|
hash = "716d930feff599bf9ce732e05979fbae8025dc8a3c13ccf4f1cb207a70883bc6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/architectury-api.pw.toml"
|
||||||
|
hash = "ea336d25c3e21ef168aec20e1ea470c96949ad29632646ee8e8ab0d74b4bbfc9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ars-nouveau.pw.toml"
|
||||||
|
hash = "ce802e7b916b5a196a6943d78159bd0eb371cc1589f647627728c01acf7e24f8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/arsdelight.pw.toml"
|
||||||
|
hash = "fc1e0cdcf649784186fdf7ccaa617f615fe9c8defdaad497482d923460cb10ef"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ash-api.pw.toml"
|
||||||
|
hash = "9369292bea18bb65ba56285a1da5929527b76deb11347ad062b9d82ac1a3b7e0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/backport-copper-age.pw.toml"
|
||||||
|
hash = "61854b1ff0419be14d2a4fa1b70b382633e529a95b338c59fbd3f5c47ded96be"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/balm.pw.toml"
|
||||||
|
hash = "392901b7f79963442553456af846d06f48b4057a054a928adb8a76eea13c6383"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/bclib-neoforge.pw.toml"
|
||||||
|
hash = "39c7121302c1a21c0db0080a3abffd379af36930465fcbe4bd6682881c1d8203"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/betterend-neoforge.pw.toml"
|
||||||
|
hash = "bc792ba30b8b96a4451720488348b375d5eccdcd6d83f7527f960a1ea552f251"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/betterf3.pw.toml"
|
||||||
|
hash = "c9aca350959a8936b054c7164fb55d789ab1e0d38cff2af48b78f70af2bc0c6d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/biomes-o-plenty.pw.toml"
|
||||||
|
hash = "9b1610cd28c49d34ce2fd760d208fb569f0e20055fee4c81ed4da6489b340312"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/blueprint.pw.toml"
|
||||||
|
hash = "0ab9d26c800d8bfc998341bf2d34c91238dbcba1f646f2c57705c1760148cc17"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/borninchaos.pw.toml"
|
||||||
|
hash = "6d6592921805a740571094baab543ee8e3a954d6ff4df78bd4c000a49e0a6d84"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/carry-on.pw.toml"
|
||||||
|
hash = "c5e47d922e39c1556dc2e8c94bfe852cf16de14f65b99eb3e054e41745dddad0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/carryon-aeronautics-compat.pw.toml"
|
||||||
|
hash = "575ebf4c7a4d60e8db84e1dbbfed2c9bc73cd50abd61e5f37d92ac9a97cfd900"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/chat-heads.pw.toml"
|
||||||
|
hash = "8f0d13cc7d1b993657aa32e4495b9d75cfdd2e7f93f9a10dec522866e18afc6f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/citadel-(1.21.1-port).pw.toml"
|
||||||
|
hash = "80d7af83c244304212b8d95ab2e3525b3eeae02f31e41474c2cdec2f4d370723"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cloth-config.pw.toml"
|
||||||
|
hash = "75181b55e0407d1fca1e2f346c6501f919f5109545990ddfb66db9cd1b771f8a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/clumps.pw.toml"
|
||||||
|
hash = "2acaff560bbda5741538528a2967355ec86a8f7564adba0b2316989c66892374"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/collective.pw.toml"
|
||||||
|
hash = "34cb9102708e368a116c6b11e98728e0c4b471a6afdf7ce9602f93cb75174509"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/comforts.pw.toml"
|
||||||
|
hash = "36f2f6e74b7dbeccb504572d47006582207544fa234a095093b97adfc7ecd5ac"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/connector.pw.toml"
|
||||||
|
hash = "e487d315e7a44f917cd1ddc2da1b26e65968bc19fe6c0ac868dab3d2bb97bbf1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/continuity.pw.toml"
|
||||||
|
hash = "2e082857985c7550efdad38a1997b9805051b07fb61b0cd30921e786a8521130"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/controlling.pw.toml"
|
||||||
|
hash = "65c8086d2ec3d39acc7bd36c7a0306ccc43b602b38fa07d13291bc478ef7dfff"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/copycats.pw.toml"
|
||||||
|
hash = "e002fab16a9b9ef0a35844030339612a38d3c58b0b93e97a34eb43ddc9108be7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cosmetic-armor-reworked-forked.pw.toml"
|
||||||
|
hash = "a46ca4af9976720616c93d993965bd15317ed82746230c702c55eaf447be88fd"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-aeronautics-compatability.pw.toml"
|
||||||
|
hash = "14a661c7ccb290a48b14ed189ff5728cc50d7dd1606368e979464aff1faa9e5b"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-aeronautics-portable-engine-liquid-fuel.pw.toml"
|
||||||
|
hash = "aa69dc9a1d57d4c3c4f83627017b5a741c301f42f83f25a47bc420e869f9d931"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-aeronautics-rechiseled-compatibility.pw.toml"
|
||||||
|
hash = "3d69bef37e924253e746b3496adbff38495f92b994e460814dedd098ef07e250"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/create-aeronautics.pw.toml"
|
file = "mods/create-aeronautics.pw.toml"
|
||||||
hash = "6ea6284b569b13f45bfe44f9790389de4a2f7cda92c8b3bb94511b600d64c486"
|
hash = "6ea6284b569b13f45bfe44f9790389de4a2f7cda92c8b3bb94511b600d64c486"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-aquatic-ambitions.pw.toml"
|
||||||
|
hash = "13095f719e466c9187ed385ea7b709226da71143cf192a932d8ec7b27e0c7288"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-ars-nouveau.pw.toml"
|
||||||
|
hash = "4b452e8b483ef181fd5d23b098dbf356225bd0e1b4505eba606715e1947dd709"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-central-kitchen.pw.toml"
|
||||||
|
hash = "c8b2e60b789885854508c674ba0630cdc8dc2a880302d8475cdc5ae06c44f64a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-cobblestone.pw.toml"
|
||||||
|
hash = "d93c570e2e8faa0067a5449a92ed57d4ded7b972a871f2e733d31058a945286b"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-deep-dark.pw.toml"
|
||||||
|
hash = "59ca697b09cd2339e6bbd524828fed73fa842083846e950a555aa081fedb6c63"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-design-n-decor.pw.toml"
|
||||||
|
hash = "e05bc0c3ee97da0dfcf9dabd3c3eaee0e90819091ead3f500ddc3b1caf77fe54"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-dragons-plus.pw.toml"
|
||||||
|
hash = "2ba3112a833d6e23aae1e0a38a7a324f89efb8a532ea101f355dc38490840b3b"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-encased.pw.toml"
|
||||||
|
hash = "c3cbea800ad6c0b2442f89f83a40b7bb950c1c3645192348e5ba389dacdc3e55"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-enchantment-industry.pw.toml"
|
||||||
|
hash = "52f8600e5c7ab7358bee923cfff7cd2428d7599cb1ff3c0fdbd373330f770587"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-liquid-fuel.pw.toml"
|
||||||
|
hash = "2af9229718d9edb1eaa4b88fac0063ab2f5f7ba7650a4efa5f0a8e6ce25549cd"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-pattern-schematics.pw.toml"
|
||||||
|
hash = "faddfa6807d11014c93bbfd8e543e8843e6d44e53f70d54e0b7e3e95766d2021"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-renewable-egapples.pw.toml"
|
||||||
|
hash = "d1b00edc1a438cdcd2b67f148973453facadaae3d959af46470f0d0f1bcb0471"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-stam1o-tweaks.pw.toml"
|
||||||
|
hash = "e3f104a6517765d92b46c239f5fb819edfe9f0f6988754358691b599e34621a8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-steam-n-rails-1.21.1.pw.toml"
|
||||||
|
hash = "7c9a7c6b0ba555d29cdff0c2874dfee7d1cd7807f084fcf08b3820b382dc3cb8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-stuff-additions.pw.toml"
|
||||||
|
hash = "5d7c434f746d615ea78adfdc4ba6e96452c93b2a68dc939c2ff3611a061e0b21"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/create-vibrant-vaults.pw.toml"
|
||||||
|
hash = "960645d7f385081b108208e58bbbdfc6b93288b7bd7da90e6f229a57b237234a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/create.pw.toml"
|
file = "mods/create.pw.toml"
|
||||||
hash = "dcaf5f2e28db0b9a127d0167456832341045ddc9aec058c3d9fcf53f618d2404"
|
hash = "dcaf5f2e28db0b9a127d0167456832341045ddc9aec058c3d9fcf53f618d2404"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/createoplenty.pw.toml"
|
||||||
|
hash = "f4b24e22e6168f8df906d222d8de0a31bec0263a3f5425344ee0736681655842"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/curios.pw.toml"
|
||||||
|
hash = "36debf7653e95a855b4fedacc19027cf2e01960fc0b6d55ef2ffbffbcb455690"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/deployer.pw.toml"
|
||||||
|
hash = "34f20675ca26ae05670def8d9d84faf42009fabd1113d1739cea6fd380420aac"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/distanthorizons.pw.toml"
|
||||||
|
hash = "a98dd7f86518a0de7bb3451bee7c8e1d7cec1b7fe00d97504ce7afd7e715ae2d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/elysium-api.pw.toml"
|
||||||
|
hash = "d6135ddca5d5b7325af082b8983692b310878416e89cde43df5b4bb16e736365"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/elytra-trims.pw.toml"
|
||||||
|
hash = "7b3c7609e07faade9f1c2f5bcf9c655215d38c2ae32d68fc2de7b5b1459fda4c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/emi.pw.toml"
|
||||||
|
hash = "67bb77eae0b644960be3b1074178ceb5d54facbb42f326981b9d94625238a54a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/enderscape.pw.toml"
|
||||||
|
hash = "dee101b4695257c023df362ae0e99f9ed7ca0f43bf943016f398e301b1678be4"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/entity-model-features.pw.toml"
|
||||||
|
hash = "4fa25309ea7f4f7770ce6588f39711e891d39f70ae0906b842647273a9ce0448"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/entityculling.pw.toml"
|
||||||
|
hash = "590437e0f344c87791842b791a400e95ffd4154f02a04c2d8d78b43a76c659ad"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/entitytexturefeatures.pw.toml"
|
||||||
|
hash = "cf7390cf06a861f7661222773371b429fce4fdd359240ca3c0eff20835471c0c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/extra-gauges.pw.toml"
|
||||||
|
hash = "635b8380894bc7c050deeb426f3e5947b27bda821a616b0ef6a757ae729e96b8"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/farmers-delight.pw.toml"
|
||||||
|
hash = "9aab64fbec4cc794817026caf84e7d0dff14ba3892da94aa0e00d23c84560499"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ferrite-core.pw.toml"
|
||||||
|
hash = "73360e397134d238ee8fd21d33fd7f9275e9441f74f8f1b6ed92278877c0b9f1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/forgified-fabric-api.pw.toml"
|
||||||
|
hash = "a830f9e0393be04dd0a8a3a845b27e90cd34961887403c800e296182283d9c3e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/freecam.pw.toml"
|
||||||
|
hash = "184c6768f11e0c33c22c104397ad559c5b9337c709d1d05c8e9c93891dcddaee"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/fusion-connected-textures.pw.toml"
|
||||||
|
hash = "9342bd3338c6fbb80f84625e2715a6c443b54daff11826f0dfb9ebb6ab411fd2"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/fzzy-config.pw.toml"
|
||||||
|
hash = "f9c118b7a66238a7f9e052705e82402e57c7a5b753d62d679b94701ede479752"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/geckolib.pw.toml"
|
||||||
|
hash = "0521ed2becdf2b460511c92e80e2702a4b6e540c85c99fb571844e1c7c505724"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/glitchcore.pw.toml"
|
||||||
|
hash = "e53646f88aeb6bd54c38db50da972abdac91e83c145a8f974107b0ca103b15bc"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/gravestone-and-sable-compatibility-patch.pw.toml"
|
||||||
|
hash = "6baec0ac505606e2066b5a00a5873cc6895f0ca639a0bfabd74bf408dcf25749"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/gravestone-mod.pw.toml"
|
||||||
|
hash = "e88253c3633274c212b2c4628a26ba03ceba6afff561eb6f9488689fad4cad06"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/gravestone-x-curios-api-compat.pw.toml"
|
||||||
|
hash = "89321cbcc8789aca2ba0e70cbd3e498de493a5f2b9db51f9c72d65d99c7afee7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/inventory-essentials.pw.toml"
|
||||||
|
hash = "702a028e2d428d352b4d664a21b0fb6182c20a930888a6c962f557aeba05871f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jade.pw.toml"
|
||||||
|
hash = "b6e0a61fea06f8d6d8e1672cf07b682625c4b74efd548d5093cd9c1fed167eec"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jadens-nether-expansion.pw.toml"
|
||||||
|
hash = "6523cf4da845f6f06892efb8d2a42a1f584cb74f0114adf2807bebc4677d8073"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/jei.pw.toml"
|
||||||
|
hash = "5367193d3f87b7bc5a81bcd64a5b96a843e76d4df7a83c8bb7e1911aa82dd52e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/kotlin-for-forge.pw.toml"
|
||||||
|
hash = "27302b0087cf53570cd7a3b4eb550a208cbb6f6ba07210c604176155f39e0078"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/kotlin-lang-forge.pw.toml"
|
||||||
|
hash = "1dd962e4a0e51462edd5036cd8b54d17823d7c6edcfe8393796d7a627ed3ddb4"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lets-do-beachparty.pw.toml"
|
||||||
|
hash = "9d60cefdf3351e14d55928e572d4102c87b0e5792198884acaeb6a6ff66abd68"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lets-do-farm-charm.pw.toml"
|
||||||
|
hash = "139243c0b47a2d89147289b8d9ef91178c1c2511f3060e00e3699d0e3adb226b"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lets-do-herbalbrews.pw.toml"
|
||||||
|
hash = "513e9da3100c93614934751c179fbd800f4a409e12a7ba5d44cd09407d211bb0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lets-do-meadow.pw.toml"
|
||||||
|
hash = "98929c2d2368656d039c75d32612333edf4838ce95b84c7191d01021e3cde6fb"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lets-do-vinery.pw.toml"
|
||||||
|
hash = "535e8e9c6bc184e9771cf4e35795c8f162d89abeb5b9aed9c2ea2988c710776f"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/libipn.pw.toml"
|
||||||
|
hash = "0d2a00252d64ed7d2d9b19994f7accb780304be61f3903d36e810714b414c6cb"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lithium.pw.toml"
|
||||||
|
hash = "58e0bebd41fa44f3f0dd6c053ec3eb1529d4bfe0c054c0741ba6e2e1b8e4523e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/lootr.pw.toml"
|
||||||
|
hash = "988377a2fb2346223a83b6545ec52f5b22ebd0e26b63d141427ad389bedfe4f0"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/luminous-nether.pw.toml"
|
||||||
|
hash = "6daa7593f7c084d59b72a8459ca20fef6b10a1abc7294b85d8eafe49d04f6cd1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/luminous-tag.pw.toml"
|
||||||
|
hash = "ecab559e0ba32b904622ba4d4f8190d440a9ff888843057cdf0b730488f19b7e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/modernfix.pw.toml"
|
||||||
|
hash = "e16a311d5197e286f0955f2ebfb46a72d711050e589224f60fcb8e931eb3a386"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/moonlight.pw.toml"
|
||||||
|
hash = "4e93b2710a407b1a518aba64e77d97fd5a2f853b54e2133eac0768ba90bdc5d6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/more-armor-trims.pw.toml"
|
||||||
|
hash = "241889855b03ad7fecf82b441e2fbb3be925bd2e73b22598487a1c4831a77b52"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/mouse-tweaks.pw.toml"
|
||||||
|
hash = "6bc414cc0f2d4c078fe83f384d786343f701f371d657c5279b5b0df1595804bd"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/not-enough-animations.pw.toml"
|
||||||
|
hash = "03bfdca138de9c56b29b120a3a1693269951d261916a8bc16e48d0c3576e72fe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/octo-lib.pw.toml"
|
||||||
|
hash = "3f552bbdc42f07fd7d5695ced1d27d774af63cff5460be45817939e5f8e4f9de"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/ok-zoomer.pw.toml"
|
||||||
|
hash = "413494b5ba534461e22545173a8cc6e98b04962a0ee9514498b830b99d4acabe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/patchouli.pw.toml"
|
||||||
|
hash = "d7f360ebb9f009d6dc0b368cd8fa399bdff70c0f6ef931687b2a35137f72715d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/platform.pw.toml"
|
||||||
|
hash = "00887452f4c902a5f98fc42875d522e59948b60c20d887855a183c0f7235c641"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/polymorph.pw.toml"
|
||||||
|
hash = "152769b5dfbb92a836634e315898b23b6a555c60b6f05ddf38c00085f2b784f6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/pride-moths.pw.toml"
|
||||||
|
hash = "9725b2ea073ef1a7a65260ac35393abb020596140382ce7a05eecc8ab8869a00"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/puzzles-lib.pw.toml"
|
||||||
|
hash = "22dde7441f5bd5d2b4699d00f0efed79f75664dade5a66a36f181a0a823c751c"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/rechiseled-create.pw.toml"
|
||||||
|
hash = "e3e04f1664902e639c5d1df39cc8085fdece053827479b452ac728bcd3604c13"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/rechiseled.pw.toml"
|
||||||
|
hash = "b4cb292255e46d058ef9c4a6bcdf562ae539489a31d0b4bea3718042d98e5c86"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/relics-mod.pw.toml"
|
||||||
|
hash = "5d2ebe2ac7d9436d1c5df0fbb2a1b975196d41a3090065b3c569aaac4fc11430"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sable-new-sodium-compat.pw.toml"
|
||||||
|
hash = "5f79c4d57361e1548a930ec7b24b5437bf49742e9ae022d248ab0710c963a7a1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sable.pw.toml"
|
file = "mods/sable.pw.toml"
|
||||||
hash = "e4c43e944439f4941ba1c417ab3ac1ec3dbd9c95a8456a2069641d031317e142"
|
hash = "e4c43e944439f4941ba1c417ab3ac1ec3dbd9c95a8456a2069641d031317e142"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/searchables.pw.toml"
|
||||||
|
hash = "ce9ddada6ffd55a512149cc474c6a453281a997a5fdf1b7b4a2cc73f875e704a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/shuffle.pw.toml"
|
||||||
|
hash = "85c29d10ee7b8456973d1eb3713bf75cdc181f7e39e98f7b7eb5ddde6da378a7"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/simple-voice-chat.pw.toml"
|
||||||
|
hash = "a4af1bf7389eddd65fb5b665b711e0b25e9e8ccb6b17a1fb50aff8d886859ad6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/slice-and-dice.pw.toml"
|
||||||
|
hash = "18ca1d438084a8578f4b75f12233db58ca1deec55f117fb875afa21f2c021559"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sodium.pw.toml"
|
||||||
|
hash = "e8964aa3252bc02d75abbeac52b4d8deb621e56bc6b549e3127b0f2bc4a76fc2"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sophisticated-backpacks-create-integration.pw.toml"
|
||||||
|
hash = "98894c50922dfad36e4313d798d4497a61c42ce855b44fd63aea79b4990cac5d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sophisticated-backpacks.pw.toml"
|
||||||
|
hash = "a17a6d46d8be7a4aafd1c614073b89d752195fafa1cf7a2b4336a9f046c7587d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/sophisticated-core.pw.toml"
|
||||||
|
hash = "cc3ae619d28140ab5c5614a14c2fb0c06382dd4b56faf7a6e5a18f001a2a8664"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/straw-statues.pw.toml"
|
||||||
|
hash = "8a7cca23996635e2171cfdf4bef21c7674a979225011e2243b3ff09f168e88f6"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/supermartijn642s-config-lib.pw.toml"
|
||||||
|
hash = "62bd7012826fdcccf17a089055be67f87fb7335c88e73efc52bc9e51a1bf3188"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/supermartijn642s-core-lib.pw.toml"
|
||||||
|
hash = "3c08d6331ca871abdfa7a185011d2a6349a1125cc6b2cf87f9c89ca4043dbe70"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/terrablender.pw.toml"
|
||||||
|
hash = "15962183bec2468058c70e87aa32e902a08489b0f86741088cdc9aa958ba4931"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/tide.pw.toml"
|
||||||
|
hash = "74674dea8d53bc4e52793a6bdd03092478ee67d2d5c65f542ea13a5dc2847f32"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/trade-cycling.pw.toml"
|
||||||
|
hash = "1ce973c231d9d6a7e788f5a2eb0797a0f5b8beef318d70f97931309ff7ef9abe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/trimmed.pw.toml"
|
||||||
|
hash = "28db7535fae8c33b5547fefefdd88ead89c7edd7c1f330a5f370dca76e6706c9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/unusual_end.pw.toml"
|
||||||
|
hash = "88e49d09430f58a40b31d885d6abd183941dd8d9bd35ecc5939b748e9346053a"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/vanillabackport.pw.toml"
|
||||||
|
hash = "ef6ec054264f943b1391d230317264f146057b9e3b07e99f4c383c324831b190"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/veil.pw.toml"
|
||||||
|
hash = "7fc272526017c9a6df2bb70ba8b60e4061fcbdb21572343963056cc7396baae3"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/veinminer-client.pw.toml"
|
||||||
|
hash = "4c501b118370f8a6c73388787e820a9ddc96f4b63d654484e352f09704a23c77"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/veinminer.pw.toml"
|
||||||
|
hash = "5c0770a75c9bf48611d0fe965d6653f6904640170b42552eb25ace717a41ee6d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/waystones-sable.pw.toml"
|
||||||
|
hash = "f594a4eb1c1780d994e98f55e5bb046693caa90a24ae7cabb5b1d08fa38b2f3d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/waystones.pw.toml"
|
||||||
|
hash = "6469e09b6d02aa3f1aeb653c9e33ec948e2bd9d09cabc60a834552783120c018"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/worldweaver-neoforge.pw.toml"
|
||||||
|
hash = "1143cc779a00f8f4a582a6f11118de79afd4e089292fb712433f0af9fc0a8562"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/wunderlib-neoforge.pw.toml"
|
||||||
|
hash = "be9540e46f1fb23ecc35d79b468480558924c518f759e46783f9d9de68b772f3"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/xaero-train-map.pw.toml"
|
||||||
|
hash = "055508f48abfc3dc9705337d324fe839bbc88cd5cd06ce77f65b4bd2c976a983"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/xaeros-minimap.pw.toml"
|
||||||
|
hash = "d609fad21021c5578750019bbe247515af55b0d1284ef838e42ef4ad0d5fbff4"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/xaeros-world-map.pw.toml"
|
||||||
|
hash = "ac287f392613eddfa285620dcecb3fea25ee6232a201009cde5c5511b6a39fb9"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/yacl.pw.toml"
|
||||||
|
hash = "539f362e9e192cf3b2813e0dfdfc51a5e6814129c6e82a9733842529beea6242"
|
||||||
|
metafile = true
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "3D Skin Layers"
|
||||||
|
filename = "skinlayers3d-neoforge-1.11.1-mc1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/zV5r3pPn/versions/lWa5oHuK/skinlayers3d-neoforge-1.11.1-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "cdd870541a7c1dcea5252bbb29858cba1b4a0f379357fa49ea4eb416fe1a068c654864f8ff5b4aca5079fc65f6f4f272e70b0e3cd50981dcc332a7d2cd80cee4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "zV5r3pPn"
|
||||||
|
version = "lWa5oHuK"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Advanced Netherite"
|
||||||
|
filename = "advancednetherite-neoforge-2.3.1-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/CFX9ftUJ/versions/tsu9b2K9/advancednetherite-neoforge-2.3.1-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e5750002f1780b6c7effd0258f6ca37d0f4a8db134c172b9ff54dcb9d0a83e6bd2452bd449ace8aefc9d425d178709376d2c82c7b424cb61b3a58e9952056f08"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "CFX9ftUJ"
|
||||||
|
version = "tsu9b2K9"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Alex's Caves (Unofficial Port)"
|
||||||
|
filename = "alexscaves-2.0.10.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/kSsLSjEt/versions/pC1MYhqR/alexscaves-2.0.10.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "5d933f9276ecc721ea67585e56149cbc9450c0036fc6f8a6fbed041d48ebfb8c286cd762477ef63efc2c0a186d0c5598a853002c9524c229d7f55ddee5d21651"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "kSsLSjEt"
|
||||||
|
version = "pC1MYhqR"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Amendments"
|
||||||
|
filename = "amendments-1.21-2.0.15-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/6iTJugQR/versions/8xf6Wpxs/amendments-1.21-2.0.15-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "a9ea5029cb4788e9e1dae8ed94f05e9111754e064d41fcd6bf7e570c28106dc1e680d2f2e82324b87a0a154a3d714bbdf2425124a62cba4765c41c1097d1609a"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "6iTJugQR"
|
||||||
|
version = "8xf6Wpxs"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "AppleSkin"
|
||||||
|
filename = "appleskin-neoforge-mc1.21-3.0.9.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/uAKA6Laj/appleskin-neoforge-mc1.21-3.0.9.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f4ea46273e407334b63e262e2555c9a8204f7b5e60f23f272fbaa83ad9e88800e0ee186aca840710df2dbe0a18b37758695fef2ae1a902c10b3706e3de772937"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "EsAfCjCV"
|
||||||
|
version = "uAKA6Laj"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Architectury API"
|
||||||
|
filename = "architectury-13.0.8-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/ZxYGwlk0/architectury-13.0.8-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "65e3664953385d880320dd6bb818bcb96d361c07c53e2a7f65e64c6a47720ee26b233224ae9cad465ef0b2bbaefdaf30fb0175a983cecd91de058817d6fcf57e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "lhGA9TYQ"
|
||||||
|
version = "ZxYGwlk0"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Ars Nouveau"
|
||||||
|
filename = "ars_nouveau-1.21.1-5.11.6.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/TKB6INcv/versions/ZjQKuuy5/ars_nouveau-1.21.1-5.11.6.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "932aadacd4251e75fd3a7e9a66f8da226babd3da67723abbac319a750a6cc3bc2401b93f2de0e135a46d397f59828e6dd44313fde7c59f0f220678febeabc00c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "TKB6INcv"
|
||||||
|
version = "ZjQKuuy5"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Ars Nouveau's Flavors & Delight"
|
||||||
|
filename = "arsdelight-2.2.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/BwbT0OZE/versions/y49FaxA3/arsdelight-2.2.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "048df1155596e7040e3e60656c26eee25c1d9b6558e25e63afee8bd8da13e985ff7bba01d7c1098e39b3cd64e51c031654b792e124cc15327eb3af94343a3c7c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "BwbT0OZE"
|
||||||
|
version = "y49FaxA3"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Ash API"
|
||||||
|
filename = "ash_api-neoforge-21.1.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Q8xUICr6/versions/3VLPjt5Q/ash_api-neoforge-21.1.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "6db5c15b3c0949c1eed65fc1d41ae5eadcbe23e802c6ed5d96d70a3de41c6c10c973a53389ce09c142b1a369904742ba18c88b778b8c18358c27f1ec3e4b3c94"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Q8xUICr6"
|
||||||
|
version = "3VLPjt5Q"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Copper Age Backport"
|
||||||
|
filename = "copperagebackport-neoforge-1.21.1-0.1.4.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/a1llHwl4/versions/JEPUV1lF/copperagebackport-neoforge-1.21.1-0.1.4.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "16b232857d9319d57ff5f0b739d23507c6f7e576199d4167a933d0505967c854def97c09020c1d9f27deff8c45e063a03e29c001a838fb43518e03562fc5ff95"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "a1llHwl4"
|
||||||
|
version = "JEPUV1lF"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Balm"
|
||||||
|
filename = "balm-neoforge-1.21.1-21.0.58.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/3XiinKbh/balm-neoforge-1.21.1-21.0.58.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "96482428a7e67aea9a5ed6304cbc72baafd157e52d73d07f240d9704f9715bf8fb1d2d45bcaad1329b82a6f46287768f63220da702fb2c19a9a27fb9d9b9cc92"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "MBAkmtvl"
|
||||||
|
version = "3XiinKbh"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "BCLib Neoforge"
|
||||||
|
filename = "bclib-21.0.20.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/7bdKEtKC/versions/sH6onskf/bclib-21.0.20.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "fb69f4f8c2cd4cc86e611f8fa83856351edd507d9c8998fb84f4ead478afbeaeac4a45b04f36eefcd16117ce987f61d90a6c4d66f388eb626a476e5682b6a970"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "7bdKEtKC"
|
||||||
|
version = "sH6onskf"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "BetterEnd Neoforge"
|
||||||
|
filename = "BetterEnd-21.0.24.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/IcERKldh/versions/QWW9Gwwf/BetterEnd-21.0.24.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "062b2d6f555fe00827d3dc55740ff0a3c2ad3f3023de70509d8dfc422fb8685f6c48b29e5256a08dbbe17069c2137610d80c31a981d82077f4531d085706b311"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "IcERKldh"
|
||||||
|
version = "QWW9Gwwf"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "BetterF3"
|
||||||
|
filename = "BetterF3-11.0.3-NeoForge-1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/maXNB1dn/BetterF3-11.0.3-NeoForge-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "59c36a882669399dce2110db42df05e8fe935a2e1194c4bac49abffc3129b2e19373dfe3c4a3d2f8b22f21b1d66ad8cbd653944ce0a71ae05d3d65528d1b7514"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "8shC1gFX"
|
||||||
|
version = "maXNB1dn"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Biomes O' Plenty"
|
||||||
|
filename = "BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/HXF82T3G/versions/8vIRXPpR/BiomesOPlenty-neoforge-1.21.1-21.1.0.13.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "a238c6dbeccf9bb8f7144601e8f8fd7973d76c60344b50670141e76f49f886f6f89487eb81749dfca7c36166831924052106884a9f8dc18893261476a34d4b32"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "HXF82T3G"
|
||||||
|
version = "8vIRXPpR"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Blueprint"
|
||||||
|
filename = "blueprint-1.21.1-8.1.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/VsM5EDoI/versions/5JOCYuQM/blueprint-1.21.1-8.1.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8f4d44efb8ad82a99ccb0d3b0ab0ec2cbca0536ae390dc3cf6f1deeb9d1705bd42feb5f2addfd06ff8ddf87029359cf52b4d4f6164f50e537e84c7f76db611e4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "VsM5EDoI"
|
||||||
|
version = "5JOCYuQM"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Born in Chaos"
|
||||||
|
filename = "born_in_chaos_[Neoforge]_1.21.1_1.7.5.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/1kcHy4de/versions/SmoP64vt/born_in_chaos_%5BNeoforge%5D_1.21.1_1.7.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "9827e7569df214775083d805019740e56a9e674cce93efeeb5c723db779cc652cff6596be542b91e8297bd39d93fbc197159361e296054b5a8a850e5e74a5f2a"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "1kcHy4de"
|
||||||
|
version = "SmoP64vt"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Carry On"
|
||||||
|
filename = "carryon-neoforge-1.21.1-2.2.4.4.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/joEfVgkn/versions/cgZi7nC7/carryon-neoforge-1.21.1-2.2.4.4.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8b78ddc55ce6e28d4457dadb5aca4cd32e16d2db3c395276993e67c6acc108ced55e3e3d9a01aa5bf1da0d4fccab6183ba62acc1421054c0b2ecae9bd03cabf6"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "joEfVgkn"
|
||||||
|
version = "cgZi7nC7"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Carry On + Create Aeronautics Compat"
|
||||||
|
filename = "CarryOnAeroCompat-1.21.1-1.1.1.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/MpnDZ1Lx/versions/z7xbAdje/CarryOnAeroCompat-1.21.1-1.1.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "93684af538863a276232a8bf2a30a54573334023cff9c0a8290a7ff504c222562c447429bc402e591069a26e6fa20e861e5b438d0ce503d5ecdf385067643ed3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "MpnDZ1Lx"
|
||||||
|
version = "z7xbAdje"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Chat Heads"
|
||||||
|
filename = "chat_heads-0.15.1-neoforge-1.21.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/8oDa7chj/chat_heads-0.15.1-neoforge-1.21.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "779c264a4ad54f9fe462c313ba40968ae7fc206d282d5895c433136d510bfa29a86a3ba32e83bbe819c07fc06e75cf8cb2e4606120d8038b6b24378fd556f11d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Wb5oqrBJ"
|
||||||
|
version = "8oDa7chj"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Citadel (Unofficial Port)"
|
||||||
|
filename = "citadel-1.21.1-2.7.6.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/XjY0RcQj/versions/mIylVpkN/citadel-1.21.1-2.7.6.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "81fd425d8910da30d9ce130213e518ed3acf6d6b63c98396668126e17f99f4d8e17348de7f6147ed3639ca59a3d3d79e1f0d78937972732fda04b7ac8a886547"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "XjY0RcQj"
|
||||||
|
version = "mIylVpkN"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Cloth Config API"
|
||||||
|
filename = "cloth-config-15.0.140-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/izKINKFg/cloth-config-15.0.140-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "aaf9b010955b8cd294e5a92f069985b18729fd5e2cf22d351f1dff9680f15488688803ec41e77e941cbde130ceb535014ca4c868047d80ab69c2d508e216654d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "9s6osm5g"
|
||||||
|
version = "izKINKFg"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Clumps"
|
||||||
|
filename = "Clumps-neoforge-1.21.1-19.0.0.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Wnxd13zP/versions/jo7lDoK4/Clumps-neoforge-1.21.1-19.0.0.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "314d8d8e640d73041f27e0f3f2cad7aad8b4c77dbd7fb31700ef7760362261f77085eed5289555c725d99c3f47a114e7290cd608f39c9f0f12ef74958463bdcc"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Wnxd13zP"
|
||||||
|
version = "jo7lDoK4"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Collective"
|
||||||
|
filename = "collective-1.21.1-8.22.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/6xEh8Qbr/collective-1.21.1-8.22.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e598ce7f8bd822fa8a5ffa21c45fa1a14716191b6791ab8cdb96a66b4647483c1b6e2c4e38ba13a2ff5e97a93d851cb9000985a0f2dc7034391811fbbdcfe9a9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "e0M1UDsY"
|
||||||
|
version = "6xEh8Qbr"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Comforts"
|
||||||
|
filename = "comforts-neoforge-9.0.5+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/SaCpeal4/versions/3kpPjcTc/comforts-neoforge-9.0.5%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e9de2952545e9e773a6e78fc501e8cd231ea19750c30404355b71df9928eb5bd0921a4429aeca9d0fa10e67717f77fcf7a2aae117ac953b8f7de246b0ad685e4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "SaCpeal4"
|
||||||
|
version = "3kpPjcTc"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Sinytra Connector"
|
||||||
|
filename = "connector-2.0.0-beta.14+1.21.1-full.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/u58R1TMW/versions/1i8teo7m/connector-2.0.0-beta.14%2B1.21.1-full.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "6ed3168c2c7dad2606ada1fdf63ee412bb8bb5620718a702f6ac51310e671f2f93ab46fc96400e258f4433e51b96f9dd21441e1a8963d8b356c75b578e156dcc"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "u58R1TMW"
|
||||||
|
version = "1i8teo7m"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Continuity"
|
||||||
|
filename = "continuity-3.0.0+1.21.neoforge.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/1IjD5062/versions/eXGUs5sy/continuity-3.0.0%2B1.21.neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "320b6def6073ce0ffc0ce2bd7cdb66324467ea3e7cec05508f32d78f65c60ff3e155394b94c60f62e059404ec0ca3fc6112987a5764a8f85241d3026a2ee4935"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "1IjD5062"
|
||||||
|
version = "eXGUs5sy"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Controlling"
|
||||||
|
filename = "Controlling-neoforge-1.21.1-19.0.5.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/xv94TkTM/versions/FaNppCJJ/Controlling-neoforge-1.21.1-19.0.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "bd01b2a38a869ea38e5f2a8fcd601e67ea9b132b9883c6ae752bc35dff6e94f6d47b965e31c1ee5c2f6a1221653549680da779fcb5319d199aec261d221d179e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "xv94TkTM"
|
||||||
|
version = "FaNppCJJ"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Copycats+"
|
||||||
|
filename = "copycats-3.0.4+mc.1.21.1-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/UT2M39wf/versions/kecZ0sl7/copycats-3.0.4%2Bmc.1.21.1-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "ecc98e659be66a71af0aee66a9f4c7c8838f4f0101402644929079ce7280a572a000e7e417905e1869a51d6e49ebbd601008f54585e07ee4ed01f2c4bc752bfe"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "UT2M39wf"
|
||||||
|
version = "kecZ0sl7"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Cosmetic Armor Reworked Forked"
|
||||||
|
filename = "cosmeticarmorreworkedforked-neoforge-1.21.1-0.0.4.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/6cpT8CUC/versions/U6kExSSz/cosmeticarmorreworkedforked-neoforge-1.21.1-0.0.4.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f89df56fd777592a91f63063d6b0b67166bd60d6453dc3e2526fed1c39eedb37b676ebb03fe19d8ea986285a9998442ff2f8a221af4a26ac0771bc7e4588b1d3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "6cpT8CUC"
|
||||||
|
version = "U6kExSSz"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Aeronautics: Compatability"
|
||||||
|
filename = "aeronauticscompat-1.1.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/aLVC5usA/versions/QTtIbBua/aeronauticscompat-1.1.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e4bf1c16e476d47f2b09d3b5bf6c8713bf7d474019dca871a24a6ea1e35f12288e6aed276004c310ddfd53af80c5415927c8bde2abc0b1005531fce918ea7c90"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "aLVC5usA"
|
||||||
|
version = "QTtIbBua"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Aeronautics: Portable Engine Liquid Fuel"
|
||||||
|
filename = "portable_engine_liquid_fuel-2.0.0-neoforge-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/HLbPoouI/versions/L6KPVFxI/portable_engine_liquid_fuel-2.0.0-neoforge-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f262adfdc441cf718d01549de2f52b81d71492825c4e24e42d5cf87fb02787e8f81a28071995124271caf42eb61840b47beaff6a86e709f74be221572748f7b1"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "HLbPoouI"
|
||||||
|
version = "L6KPVFxI"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Aeronautics: Rechiseled Compatibility"
|
||||||
|
filename = "create-aeronautics-rechiseled-compat-1.21.1-1.2.2.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ub0jAGhg/versions/b6O6XLL6/create-aeronautics-rechiseled-compat-1.21.1-1.2.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0a0cc1a51602b59a49fc5b316c8b7356bd307b4e0ed33d1485e22cae51b9bcc9ac1637067fd4c833699b7f3785d6f156723bccabc90f85c4044c37e8efe96db4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ub0jAGhg"
|
||||||
|
version = "b6O6XLL6"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Aquatic Ambitions"
|
||||||
|
filename = "create_aquatic_ambitions-1.21.1-2.0.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/9SyaPzp7/versions/cgOQIktB/create_aquatic_ambitions-1.21.1-2.0.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0abb46b82f323055c9579feda4d6e63a0f3d0905e31a349bd19f9e4b843f6e6ba6a25c98ea76154fe060f975ace49b3a0fdc3d609eec91384b9550de99977745"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "9SyaPzp7"
|
||||||
|
version = "cgOQIktB"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Ars Nouveau"
|
||||||
|
filename = "createarscompact-1.20.5.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/edZTqBgP/versions/AVB3wxRY/createarscompact-1.20.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "9643f1aa663d883145b0fb4ac847e13eb93b2f3d0945a2399a18fea00cb358354429db4086d6ab578e716f0f60ab9529402d661470a0f53910d1a5dd4cecffa1"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "edZTqBgP"
|
||||||
|
version = "AVB3wxRY"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Central Kitchen"
|
||||||
|
filename = "create-central-kitchen-2.4.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/btq68HMO/versions/TUJIHmUh/create-central-kitchen-2.4.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "adcdb5a85b2dd727fa2b0563aa9e73d26b58ee3ae57192e049f0c2a1e4a878dc9d07fe20589f6e52e6f4be2ba1bb5ab3a64f5fcf5f1f9a42b9518e7c2380fd23"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "btq68HMO"
|
||||||
|
version = "TUJIHmUh"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Cobblestone"
|
||||||
|
filename = "createcobblestone-1.4.10+neoforge-1.21.1-139.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ihpnEd80/versions/gdhN6Pg2/createcobblestone-1.4.10%2Bneoforge-1.21.1-139.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "3f7885b9a04eb019b1a8d225629e49681a08a6df4c17851cb4edeb03a657b350d4f93ddea6b165d5c2aa2a214132adff2fa9367b2653cd3e73ee8fbfd4facfb8"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ihpnEd80"
|
||||||
|
version = "gdhN6Pg2"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Deep Dark"
|
||||||
|
filename = "create_deep_dark-3.0.2-neoforge-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/knrLSB8n/versions/3tduJc4Y/create_deep_dark-3.0.2-neoforge-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "df0b5b9cd489b0def8bc8b750aedb96f4a1de37b4f24b0a45cae302cad94e2b3455240fa9dc6b58fd6cc7e005f445a8ea9cde2a7f51b449e54cccf3739a7a4b3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "knrLSB8n"
|
||||||
|
version = "3tduJc4Y"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Design n' Decor"
|
||||||
|
filename = "Design-n-Decor-1.21.1-2.2b.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/x49wilh8/versions/uQsIRky8/Design-n-Decor-1.21.1-2.2b.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "d888553c8a254c3654f8da2ae2cae0bb642594546c71988739c93bf6b18668145e0ce5b1c20ae0544b9b6019f17e4da944bd5bc17e4c6b73e7f1374cfa2c9db9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "x49wilh8"
|
||||||
|
version = "uQsIRky8"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Dragons Plus"
|
||||||
|
filename = "CreateDragonsPlus-1.10.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/dzb1a5WV/versions/r0TIh2nX/CreateDragonsPlus-1.10.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "cb8ff236250d346f7c76d534a5cd12f75b081d05b542c54cac49cc430a4539061f05562f10b8ba8503423fb6044666418a355aeae31a4e34615d0da41fa14967"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "dzb1a5WV"
|
||||||
|
version = "r0TIh2nX"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Encased"
|
||||||
|
filename = "Create Encased-1.21.1-1.8.1-ht1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hSSqdyU1/versions/3sUW27Ho/Create%20Encased-1.21.1-1.8.1-ht1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "9c4927dd65546a9b0700dc8547a71115dec56d32edb0c5f2fe38440408db33afa00313eb4d02ad3332d3fe269aae9e485bf3eda3a602821cb0a41ebeec16283a"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hSSqdyU1"
|
||||||
|
version = "3sUW27Ho"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Enchantment Industry"
|
||||||
|
filename = "create-enchantment-industry-2.3.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/JWGBpFUP/versions/zjSKnkVT/create-enchantment-industry-2.3.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0e83fef0ae333a2bad9cff09cb661d72c0ab48a5b8a97a06c946d54da1eb967b7bd532e780845ff62d19f3bb094daed07f63daec7c1caaa1aeb5050ec4bfcd7c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "JWGBpFUP"
|
||||||
|
version = "zjSKnkVT"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Liquid Fuel"
|
||||||
|
filename = "createliquidfuel-2.1.1-1.21.1.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/sH9tXU9f/versions/7oNrI3y9/createliquidfuel-2.1.1-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "01a8995f09105e1c4cfe001a4674c208c3ed0e82a7612ea3891b2482a9fcbe1ccec185125cf40fd5802d153bbed5f1d7a057aefe40ba750476f3000936d3c71e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "sH9tXU9f"
|
||||||
|
version = "7oNrI3y9"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Pattern Schematics"
|
||||||
|
filename = "create_pattern_schematics-2.0.10.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/cpqKG67r/versions/VSJhIkG2/create_pattern_schematics-2.0.10.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c55e7d708aab59990ea123b32b5ecca3cdd8a0409e441257e87ac2bc414c15a4976ed06fb4aea3f4c216c4951f519295bb111c896642fd80520bcfc9227e24ee"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "cpqKG67r"
|
||||||
|
version = "VSJhIkG2"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Renewable Notch Apples"
|
||||||
|
filename = "create-renewable-egapples-1.0.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/qpDVQtGR/versions/1kUBuEx8/create-renewable-egapples-1.0.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "5cab70f4e97fa907a3bfaf6bd0ab58f56afcac505202ae0804ac22847cc67ac6300a8077321ace69093117af0712189676ec53214deeb45213fdcabad8ba67cc"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "qpDVQtGR"
|
||||||
|
version = "1kUBuEx8"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Stam1o Tweaks"
|
||||||
|
filename = "Stam1oCreateTweaks-1.0.8+1.21.1-Neo.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/46RgF8H2/versions/QxBHdxaK/Stam1oCreateTweaks-1.0.8%2B1.21.1-Neo.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "a1a52d464a8d0a256f8234d2e8b7a956624af2d23915ee23d9a9e74f6871fd1d9c836a3320c6c80222e3ab126cc3df488d205d8474e3d6c82dff098512355ed5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "46RgF8H2"
|
||||||
|
version = "QxBHdxaK"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Steam 'n' Rails Neoforge"
|
||||||
|
filename = "railways-0.2.0+neoforge-mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/L3Jv0QZI/versions/oQKsMKfj/railways-0.2.0%2Bneoforge-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e91c7db3fabf9d891981e9af545b39acd74eb8c824338bd58bb677cfbf7fa296a1d5ba5275b84cb025512eaf46e4c85b6fc3f46772c3bbbf4793989c1f4fafd8"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "L3Jv0QZI"
|
||||||
|
version = "oQKsMKfj"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Stuff 'N Additions"
|
||||||
|
filename = "create-stuff-additions1.21.1_v2.1.3.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/aq9qUUQG/versions/2RuRqjfk/create-stuff-additions1.21.1_v2.1.3.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "65f678483dc3de3f89375ed3ff9271735f71c83b8cb34c0cf959c315ec9b735cd09a7cb5d0ff6041b42dbe84720c3ccdca414414769bafed2063d87da0410209"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "aq9qUUQG"
|
||||||
|
version = "2RuRqjfk"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Vibrant Vaults"
|
||||||
|
filename = "create_vibrant_vaults-0.3.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hddN8ksR/versions/t17qYXjn/create_vibrant_vaults-0.3.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "3bd53097482e614dc4e5e635778af25020fa27c1c453d4928d1d8baa6767c93cb300810a5ac0c49af86813749a180e3f092ab2e65b07e7741c2b12aaebd47006"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hddN8ksR"
|
||||||
|
version = "t17qYXjn"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Create O' Plenty (Create + Biomes O' Plenty Mod compat)"
|
||||||
|
filename = "CreateOPlenty-NeoForge-Create+6.0.7-3.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/HgWaxodv/versions/k7AAVyW3/CreateOPlenty-NeoForge-Create%2B6.0.7-3.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "758ef597ea2f1767d6f7a17bc6ea43c3a441b15fb8ff48d2bdcf71a7168f28e903d19c47547ac7fda3a02cd7c324ea7baab8ead18593b17a3799ae15642d77ec"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "HgWaxodv"
|
||||||
|
version = "k7AAVyW3"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Curios API"
|
||||||
|
filename = "curios-neoforge-9.5.1+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/vvuO3ImH/versions/yohfFbgD/curios-neoforge-9.5.1%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "5981a267686b744e7e3c227f78cbcd5267c14ac6979a28e814695f4589273998563147207fef4a5cdb7cdbdc39797cd95d9e4abadb55869f18e02a38d0654ae5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "vvuO3ImH"
|
||||||
|
version = "yohfFbgD"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Deployer API"
|
||||||
|
filename = "deployer-0.1.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/OZhUIuou/versions/XrLW2FiE/deployer-0.1.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "1d2ad848e5342758ac6199396c53c2d43419d57337259dfea25a1477b9e7ad76578d02ec8c8eb26acbb21df5b3275d8c5fad89aad2b5a148ece4e23c65c3a517"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "OZhUIuou"
|
||||||
|
version = "XrLW2FiE"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Distant Horizons"
|
||||||
|
filename = "DistantHorizons-3.0.3-b-1.21.1-fabric-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/uCdwusMi/versions/oYXIfeus/DistantHorizons-3.0.3-b-1.21.1-fabric-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8b39994ee6c5d71b8afacc80c2d13dd92fad10281374392c0049d1b6aebc823d7e137125268dee7383d3ff753eacf708fbe87d773cf0087d7b6057a05cf18ad3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "uCdwusMi"
|
||||||
|
version = "oYXIfeus"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Elysium API"
|
||||||
|
filename = "ElysiumAPI-1.21.1-1.2.0-ALPHA.19.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/6YTvv3aI/versions/eQe3TzFx/ElysiumAPI-1.21.1-1.2.0-ALPHA.19.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "70f8725418abca4190d3800d8ce3fdd7a5787fb330839c1a3caebb6d85f75974d957c87b6a4acdbe5a66b00d7b9c036fcb4198f14f10e4bb77952d237a3cc589"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "6YTvv3aI"
|
||||||
|
version = "eQe3TzFx"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Elytra Trims"
|
||||||
|
filename = "elytratrims-neoforge-3.10.0+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/XpzGz7KD/versions/XRCucewh/elytratrims-neoforge-3.10.0%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "d0b7613f6495d037599513afe9a0cc90c84095d213822aba03d52afcaff8cea521b82b653f3f26e2bc7468ea1fb7629d1aad748b24deb913899ecfdfe3cde1c0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "XpzGz7KD"
|
||||||
|
version = "XRCucewh"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "EMI"
|
||||||
|
filename = "emi-1.1.24+1.21.1+neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/5sIPA1To/emi-1.1.24%2B1.21.1%2Bneoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f4c45ed686fe617311d6debadcb6ace5963e66f8cfe0cfed398231f081f87407070efc7a73c8b695d158f1d87a97180737b9107a46771e77df2bc9a7dc715ebd"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "fRiHVvU7"
|
||||||
|
version = "5sIPA1To"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Enderscape"
|
||||||
|
filename = "enderscape-neoforge-1.0.9+mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/btCrWvHr/versions/K3Vz3uXn/enderscape-neoforge-1.0.9%2Bmc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8225a4e7873fe5cf336ca82aa9a2f01b18e169e59e160c033fdc0d80922e3abe270f50c9758adc6a70063b3d53e7e61da2eef029eb2320ee016d3ffeff15b917"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "btCrWvHr"
|
||||||
|
version = "K3Vz3uXn"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[EMF] Entity Model Features"
|
||||||
|
filename = "entity_model_features-3.2.4-1.21-neoforge.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/PAYgk63v/entity_model_features-3.2.4-1.21-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "840866c0b5168b04713652cf31d8a8bc6ed47d9748a78e0e9f07d201e03d2a276f0edfe727a8bffebe7396595876499d8d4f420fc2ff2e71fbc45128ca6c4e11"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "4I1XuqiY"
|
||||||
|
version = "PAYgk63v"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Entity Culling"
|
||||||
|
filename = "entityculling-neoforge-1.10.2-mc1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/2tOn8XA2/entityculling-neoforge-1.10.2-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "237b9cb0df379341d27e22d20f9c87d1ec5bab571131df5d481da7f19450e0dd9eb42c0a5d6cccc913975f72ff4acf2af356765ff07383b20f3357b07db4bb2d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "NNAgCjsB"
|
||||||
|
version = "2tOn8XA2"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[ETF] Entity Texture Features"
|
||||||
|
filename = "entity_texture_features_1.21-neoforge-7.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/YEMROAHv/entity_texture_features_1.21-neoforge-7.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "fc4b6a75ad57defb944d188fac78e45a33342a2c2a2b0e673c81ac370df09335d4371c8e10bea8f593da4b1f1c2fcc361c124b274ee4b3c2ae75571f00742059"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "BVzZfTc1"
|
||||||
|
version = "YEMROAHv"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Extra Gauges"
|
||||||
|
filename = "extra_gauges-2.1.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/6YJgomwt/versions/7ogQOYHA/extra_gauges-2.1.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "2ace66647d2077cf6e06cff491a94248f2e611820983acbe36c9acecdce030bce08b98f9461dd67c30f7b0d16cbb7fd7d21dd8dbcf8f0d8411291a8e762d29a7"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "6YJgomwt"
|
||||||
|
version = "7ogQOYHA"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Farmer's Delight"
|
||||||
|
filename = "FarmersDelight-1.21.1-1.3.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/R2OftAxM/versions/GbNuOZ4S/FarmersDelight-1.21.1-1.3.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "da5a4236427df8010d75992201c8723ac84a8fa71efa55670551d333cac94a90ae8e8c536da63ae07a67f4d00dc2774ae4151030f41d26886e508f4a037c8694"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "R2OftAxM"
|
||||||
|
version = "GbNuOZ4S"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "FerriteCore"
|
||||||
|
filename = "ferritecore-7.0.3-neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/uXXizFIs/versions/x7kQWVju/ferritecore-7.0.3-neoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "19af89a2075bb10a63884fa853ebf84b02c79dc3242430ecdad056fd764fdcde367a7303276b329df01b0736e2ef264c5d80c7dc92c6aebd244f556a230bb417"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "uXXizFIs"
|
||||||
|
version = "x7kQWVju"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Forgified Fabric API"
|
||||||
|
filename = "forgified-fabric-api-0.116.7+2.2.4+1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Aqlf1Shp/versions/7nHK7hMg/forgified-fabric-api-0.116.7%2B2.2.4%2B1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "858acb32a79e7ed1f37472bd7c50e3d2f47c7d7f6e734a8cece3800eb30d565a09580c261778ea73a0ae25e10e9eb9b16866012fe61d24f671b0ffe3ae2377dd"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Aqlf1Shp"
|
||||||
|
version = "7nHK7hMg"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Freecam"
|
||||||
|
filename = "freecam-neoforge-1.3.0+mc1.21.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/XeEZ3fK2/versions/ROfcbxxe/freecam-neoforge-1.3.0%2Bmc1.21.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "06cfa2acdde8320ca19edf3f49e7a3860cc079bbad02fda493459109d745da237e19ff6a28d879d4c863ea4cd24d83b193ec82dd351540ad27991e239f1e7a72"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "XeEZ3fK2"
|
||||||
|
version = "ROfcbxxe"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Fusion (Connected Textures)"
|
||||||
|
filename = "fusion-1.2.12-neoforge-mc1.21.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/p19vrgc2/versions/h2GrA0Ku/fusion-1.2.12-neoforge-mc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "50604fa4125e846b659479a8bb8bcef5db47460a8185902b8655d8b12c6cc67eb3cc4c08fee45e82a6b215976bea2a480e32ce420f062cea88abe17cb362365c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "p19vrgc2"
|
||||||
|
version = "h2GrA0Ku"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Fzzy Config"
|
||||||
|
filename = "fzzy_config-0.7.6+1.21+neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hYykXjDp/versions/MAPG6cXE/fzzy_config-0.7.6%2B1.21%2Bneoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "6071890aba7f2273c9fd508914acc7850de9d986423760f9ce416875ffa04eea2ad71a7a6f4d5f90f0625a672f6f54606778d11151b155f3fd98c223c61a4a6d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hYykXjDp"
|
||||||
|
version = "MAPG6cXE"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Geckolib"
|
||||||
|
filename = "geckolib-neoforge-1.21.1-4.8.4.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/gFmrC8Ru/geckolib-neoforge-1.21.1-4.8.4.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "340d96149a04c57c09485f5b1c69e7f8ec3b68223c618e38b7d84c58f4280dcba3d0e9480b8fc79735d9ef5fd7da5fc8f3081d575bf4bbcd2c44b6dcf21d98c0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "8BmcQJ2H"
|
||||||
|
version = "gFmrC8Ru"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "GlitchCore"
|
||||||
|
filename = "GlitchCore-neoforge-1.21.1-2.1.0.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/s3dmwKy5/versions/S2TfWrZR/GlitchCore-neoforge-1.21.1-2.1.0.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "7a009ed163d03536fdfaee7b37cb1ec3073204dffcb06a683369aa88da8dbc3780b0ac69d466bb32a3ad9394c97b698d0fda676e1b4dd4edfc50ac5aa2283c32"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "s3dmwKy5"
|
||||||
|
version = "S2TfWrZR"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Gravestone and Sable Compatibility Patch"
|
||||||
|
filename = "gravestone_sable_compat-1.0.0.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/xJqwA0XO/versions/bdUGV5X8/gravestone_sable_compat-1.0.0.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "41b85b7db3afd23bb2a079e31beba53dc9026dc1a38ad6678b82cd032099430c4bd5a4008bdbfba1e5948a5b17f5b3a280ac6c3e75737b03ab26e570cfe6a28e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "xJqwA0XO"
|
||||||
|
version = "bdUGV5X8"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "GraveStone Mod"
|
||||||
|
filename = "gravestone-neoforge-1.21.1-1.0.37.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/RYtXKJPr/versions/Y29z3Y9Y/gravestone-neoforge-1.21.1-1.0.37.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "07e1a08d8e1a8c3f7d0a59a3c5a7b03e32862fadbb018067795704683aa8298823cb6d66e739577b7591bef2dfa2bcbe49eafe14cb73920feebb79cd7a539141"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "RYtXKJPr"
|
||||||
|
version = "Y29z3Y9Y"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Gravestone x Curios API Compat"
|
||||||
|
filename = "gravestonecurioscompat-1.21.1-NeoForge-4.0.2.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/NaiL8bPN/versions/ugBtElN2/gravestonecurioscompat-1.21.1-NeoForge-4.0.2.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c8e93920179c13f1b147a405f7726d74fd12c2b7e46286b8bf52070446230e0fc15962f9b9ea2134c2da580cee6381279bbb67fb987969f253cfab350b77dee7"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "NaiL8bPN"
|
||||||
|
version = "ugBtElN2"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Inventory Essentials"
|
||||||
|
filename = "inventoryessentials-neoforge-1.21.1-21.1.15.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Boon8xwi/versions/u2c95ldv/inventoryessentials-neoforge-1.21.1-21.1.15.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "87a278093ef1686e6ec88d4db75bdbb99a051555d7d33ec59a1e5bd0a066df9815fa4296133e0a7af09e6b000a124f3d85dda367d9d2522dbab29453163ba8f0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Boon8xwi"
|
||||||
|
version = "u2c95ldv"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Jade 🔍"
|
||||||
|
filename = "Jade-1.21.1-NeoForge-15.10.5.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/yd8FKCmx/Jade-1.21.1-NeoForge-15.10.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "678b998677a3d73f98f82dac4093893bfc8a3c2335ec627b4147811c381a040475decdb8db31cc3cbe600abb5a7a6dedcd356eed0ba471af0becdcf49bf5b137"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "nvQzSEkH"
|
||||||
|
version = "yd8FKCmx"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Jaden's Nether Expansion"
|
||||||
|
filename = "Jadens-Nether-Expansion-2.4.0-BETA.5.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/v3UlehfS/versions/oeYmggTU/Jadens-Nether-Expansion-2.4.0-BETA.5.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "597ef09e3e09586fbd7ab43e8589115b430f1000da776fe87443fae8dfbfe0008161b6e040f61db120b6ab4e0b98d8f527a45a94cec147fc5b134d2d968e183d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "v3UlehfS"
|
||||||
|
version = "oeYmggTU"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Just Enough Items (JEI)"
|
||||||
|
filename = "jei-1.21.1-neoforge-19.27.0.340.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/YAcQ6elZ/jei-1.21.1-neoforge-19.27.0.340.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8bad8eb3c8e974f867e23e4d74598f603c5fbf03eb5356a386dd37cb9fa23e08ad1f58be6b7be50d2fbf9d3fbfaeac8584c70ced736df4b8f82c7c75be242998"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "u6dRKJwZ"
|
||||||
|
version = "YAcQ6elZ"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Kotlin for Forge"
|
||||||
|
filename = "kotlinforforge-5.11.0-all.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ordsPcFz/versions/NrSebcsG/kotlinforforge-5.11.0-all.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "b32faa6d616511aff4f8b32197877c53b9f8bee103884ec37c632b5d017bb59a498ec971b68d8d94787043b0c5be666a330b61d285033c341bff83ac28a90992"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ordsPcFz"
|
||||||
|
version = "NrSebcsG"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "KotlinLangForge"
|
||||||
|
filename = "KotlinLangForge-2.12.1-k2.3.21-3.0+neoforge.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/1vrSzlao/versions/5BAviahm/KotlinLangForge-2.12.1-k2.3.21-3.0%2Bneoforge.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "fc5c068f2c97de63ef850f93e9410affe498c6a0f3954bab9b59d91e9a850a6cb9494063447e4afba433bc9a1abcac892d0164eac4538a6a65562681cb17e967"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "1vrSzlao"
|
||||||
|
version = "5BAviahm"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[Let's Do] Beachparty"
|
||||||
|
filename = "letsdo-beachparty-neoforge-2.1.4.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/GyKzAh3l/versions/oKpAot1a/letsdo-beachparty-neoforge-2.1.4.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f5c8f90dca40cf74beb4c49c60459f68b06d03ab9e1e590f493068e01b69d1d9be4f944908baf91714c1d1e5dea858ca054becf5c00f8228ce691296ad275e20"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "GyKzAh3l"
|
||||||
|
version = "oKpAot1a"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[Let's Do] Farm & Charm"
|
||||||
|
filename = "letsdo-farm_and_charm-neoforge-1.1.22.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/HJetCzWo/versions/ptvlHtBI/letsdo-farm_and_charm-neoforge-1.1.22.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e31f5c2f5fbf187c65ee3e0e6593bc0520fe53421ab2872600addf6be5e6fb0504ce65bea8c4f047476591eea012d20008d5afb21327635a81d721ed857ff13b"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "HJetCzWo"
|
||||||
|
version = "ptvlHtBI"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[Let's Do] HerbalBrews"
|
||||||
|
filename = "letsdo-herbalbrews-neoforge-1.1.3.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Eh11TaTm/versions/gtG21Zrn/letsdo-herbalbrews-neoforge-1.1.3.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "cfcfc47c24daff1b82849d36cbe5aa1d731a8bfcd814bc6afda2909ae18c4ff29e928122a3c37bb622c14738825f0a0db00547b30b54cd06cdaafb4af155e201"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Eh11TaTm"
|
||||||
|
version = "gtG21Zrn"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[Let's Do] Meadow"
|
||||||
|
filename = "letsdo-meadow-neoforge-1.4.8.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/ra7o6Sl7/versions/GwAjZwzx/letsdo-meadow-neoforge-1.4.8.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "a45a42b1789c3c979e91bc65c422bf5832d514005a82def3860d812a9bf02a2a6d5079d53f625d976b09585cecda8f1d26802b310ce2e44751c5f5c930efe50d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "ra7o6Sl7"
|
||||||
|
version = "GwAjZwzx"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "[Let's Do] Vinery"
|
||||||
|
filename = "letsdo-vinery-neoforge-1.5.3.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/1DWmBJVA/versions/ZywXpLC6/letsdo-vinery-neoforge-1.5.3.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "1a99d218420f57733ec133f059e9491fa1a1ec915e2e350c54a38d6fddb5332a61608ffd3703594faf2924dcc8e9d387ca2573f3816c6b82251046df0cdea122"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "1DWmBJVA"
|
||||||
|
version = "ZywXpLC6"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "libIPN"
|
||||||
|
filename = "libIPN-neoforge-1.21.1-6.6.3.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/onSQdWhM/versions/BGe4KMlE/libIPN-neoforge-1.21.1-6.6.3.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "89383465eb8dfa296e7518dd0e6ddc1a242f4537a3183425f2319c79a3e97843ded0f5e13f86b095f2f09beacd2a1f249f554e0f4e18291209720826031a8b93"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "onSQdWhM"
|
||||||
|
version = "BGe4KMlE"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Lithium"
|
||||||
|
filename = "lithium-neoforge-0.15.3+mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/RXHf27Wv/lithium-neoforge-0.15.3%2Bmc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "65568e6c7e41684ad20e58db8766813840c0c8406eed9edc3f7a2514da7250ac46bde2bfb0936984cc5516c2782f86387ad0ed3d1b804b8bdddc7f7048759df4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "gvQqBUqZ"
|
||||||
|
version = "RXHf27Wv"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Lootr"
|
||||||
|
filename = "lootr-neoforge-1.21.1-1.11.37.120.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/EltpO5cN/versions/C2tLycH2/lootr-neoforge-1.21.1-1.11.37.120.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "c4f85de3cc97f34266e67ff09eb38b69f97918e2f5528b82fd195df0b067d0f4ed53b6adf6ae30fcf74f323042f731beb1e12a9506346d7f15412430e4eb1597"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "EltpO5cN"
|
||||||
|
version = "C2tLycH2"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Luminous: Nether"
|
||||||
|
filename = "Luminous Nether V1.3.2 - NeoForge 1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/2CL6BDdJ/versions/3t8THncN/Luminous%20Nether%20V1.3.2%20-%20NeoForge%201.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "086ab759c8e45c94180780ee1a4ca5f90b10657ec14c79b41ecbae430a928393bb9dd72694657f7daedd34fcb89ba7de99ab4053af240573909d3d49eb4ecbb5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "2CL6BDdJ"
|
||||||
|
version = "3t8THncN"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Luminous Tag"
|
||||||
|
filename = "Luminous Tag V1.1 - NeoForge 1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/uX4Rl6YL/versions/ksV9kNVX/Luminous%20Tag%20V1.1%20-%20NeoForge%201.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "1841f9746d82be0449ec74c9f7db76a4d089ec07639aacdeac393f677abc49a6d8744b2a4ea775517a769db207cd611c4a3430a8661c2e3db452d2554271281e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "uX4Rl6YL"
|
||||||
|
version = "ksV9kNVX"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "ModernFix"
|
||||||
|
filename = "modernfix-neoforge-5.27.11+mc1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/nmDcB62a/versions/nWk1yGgV/modernfix-neoforge-5.27.11%2Bmc1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "427abecd8cc5836744c5b62eb44d31205c99f4a48b7aed65f6d725692387d362ae0d6a99605e08983fcca70a5aaa28c6587cf1efa175cf75d6eed3ee4b5fc6c4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "nmDcB62a"
|
||||||
|
version = "nWk1yGgV"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Moonlight Lib"
|
||||||
|
filename = "moonlight-neoforge-1.21.1-3.0.14.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/twkfQtEc/versions/er7S98Q1/moonlight-neoforge-1.21.1-3.0.14.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e28aa1a0da057a5099232519165af5fe9a36fdd0e133b18af493d2108a17d071add4e0c85dd02e20100f0e2e3ae09e2416c72d9f77e306e4e711b03e4424e5a5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "twkfQtEc"
|
||||||
|
version = "er7S98Q1"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "More Armor Trims"
|
||||||
|
filename = "more_armor_trims-neoforge-1.5.3-1.21.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/FGNYBAJ6/versions/OzLL4h40/more_armor_trims-neoforge-1.5.3-1.21.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "04370973874ca71646c6d1f1d1da19f5bd5148640e5268502e123fa531f8ef6a748c2539380fb15a5c15ac04b7eaf67075964e2503092fcc30cc0a2ddfe264b3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "FGNYBAJ6"
|
||||||
|
version = "OzLL4h40"
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Mouse Tweaks"
|
||||||
|
filename = "MouseTweaks-neoforge-mc1.21-2.26.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/9I21YYxf/MouseTweaks-neoforge-mc1.21-2.26.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f95c0cc881211ee0442434976775e07aae40b4a2ba4e3a85455bc57ca9d3c991e239cd98374a8abd442dc9c378dcd9001e2caa1bf69991d424b5652dd7f3483b"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "aC3cM3Vq"
|
||||||
|
version = "9I21YYxf"
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user