Init 1.21.1 v2

This commit is contained in:
Mateusz Słodkowicz 2026-05-26 22:40:38 +02:00
parent 09e96c6450
commit f13a976dc2
Signed by: materus
SSH Key Fingerprint: SHA256:rzVduzTiiszuYfLPYD0SDZV+g8lxhpcRgpbOZA1X0Uo
200 changed files with 6684 additions and 1024 deletions

View File

@ -30,7 +30,7 @@
#Whether mimicubes spawns should be restricted solely to the end city structure or to whatever biome is specified in their respective biome config.
mimicubeSpawnInEndCity = true
#Whether mimicream can be used to duplicate items.
mimicreamRepair = true
mimicreamRepair = false
#Blacklist for items that mimicream cannot make a copy of. Ex: "minecraft:stone_sword", "alexsmobs:blood_sprayer"
mimicreamBlacklist = ["alexsmobs:blood_sprayer", "alexsmobs:hemolymph_blaster"]
#Whether wild raccoons steal food from chests.
@ -110,7 +110,7 @@
#Whether seagulls should steal food out of players' hotbar slots.
seagullStealing = true
#List of items that seagulls cannot take from players.
seagullStealingBlacklist = []
seagullStealingBlacklist = ["solonion:lunchbag", "solonion:lunchbox", "solonion:golden_lunchbox"]
#Whether the Clinging Potion effect should flip the screen. Warning: may cause nausea.
clingingFlipEffect = false
#Percent chance of getting Pigshoes from Piglin Bartering. Set to zero to disable.

View File

@ -0,0 +1,123 @@
# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1
#
general {
# If the Attributes GUI is available.
# Client-authoritative.
# Default: true
B:"Enable Attributes GUI"=true
# If description tooltips will be added to potion items.
# Client-authoritative.
# Default: true
B:"Enable Potion Tooltips"=true
# A list of attributes that will be hidden from the Attributes GUI. Client-authoritative.
# This is useful for attributes that are not meant to be visible to players, such as those used by Apothic Attributes itself.
# This config supports the following input formats:
# - ResourceLocation strings, such as minecraft:generic.max_health, used to block specific attributes.
# - Namespaced wildcards, such as apothic_attributes:*, used to block all attributes in a namespace.
# - Negation entries, such as !apothic_attributes:elytra_flight, which will un-block a specific attribute that would otherwise be blocked by a wildcard.
# Note:
# The list is processed in order. Place negation entries at the end of the list to ensure they take precedence.
#
# Default: [neoforge:nametag_distance], [neoforge:creative_flight], [apothic_attributes:elytra_flight], [apothic_attributes:ghost_health]
S:"Hidden Attributes" <
neoforge:nametag_distance
neoforge:creative_flight
apothic_attributes:elytra_flight
apothic_attributes:ghost_health
>
}
effects {
# The value (per-level) of the Experience Gained attribute modifier provided by Ancient Knowledge.
# Synced.
# Default: 4.0; Range: [1.0 ~ 1024.0]
S:"Ancient Knowledge Multiplier"=4.0
}
client {
# The anchor point for this element.
# Default: top_right
S:"GUI Button Offset Anchor Point"=top_right
# The X offset for this element.
# Default: -3; Range: [-1000 ~ 1000]
I:"GUI Button Offset X Offset"=-3
# The Y Offset for this element.
# Default: 3; Range: [-1000 ~ 1000]
I:"GUI Button Offset Y Offset"=12
}
combat_rules {
# The protection damage reduction formula.
# Computed after Prot Pierce and Prot Shred are applied.
# Arguments:
# 'protPoints' - The number of protection points the user has after reductions.
# Output:
# The percentage of damage taken after protection has been applied, from 0 (no damage taken) to 1 (full damage taken).
# Reference:
# See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions.
#
# Default: 1 - min(0.025 * protPoints, 0.85)
S:"Protection Formula"=1 - min(0.025 * protPoints, 0.85)
# The a-value formula, which computes an intermediate used in the armor formula.
# Arguments:
# 'damage' - The damage of the incoming attack.
# Output:
# The a-value, which will be supplied as an argument to the armor formula.
# Reference:
# See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions.
#
# Default: if(damage < 20, 10, 10 + (damage - 20) / 2)
S:"A-Value Formula"=if(damage < 20, 10, 10 + (damage - 20) / 2)
# The armor damage reduction formula.
# Computed after Armor Pierce and Armor Shred are applied.
# Arguments:
# 'a' - The a-value computed by the a-value formula.
# 'damage' - The damage of the incoming attack.
# 'armor' - The armor value of the user after reductions.
# 'toughness' - The armor toughness value of the user.
# Output:
# The percentage of damage taken after armor has been applied, from 0 (no damage taken) to 1 (full damage taken).
# Reference:
# See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions.
# Note:
# The vanilla formula is: 1 - min(max(armor - damage / (2 + toughness / 4), armor / 5), 20) / 25
#
# Default: a / (a + armor)
S:"Armor Formula"=a / (a + armor)
# The armor toughness formula.
# This is used to determine how armor toughness impacts enemy Armor Pierce / Armor Shred.
# Arguments:
# 'damage' - The damage of the incoming attack.
# 'armor' - The armor value of the user after reductions.
# 'toughness' - The armor toughness value of the user.
# Output:
# The percentage by which enemy armor pierce/shred will be reduced, from 0 (no change) to 1 (preventing it completely).
# Reference:
# See https://github.com/ezylang/EvalEx#usage-examples for how to write expressions.
#
# Default: min(toughness * 0.02, 0.6)
S:"Armor Toughness Formula"=min(toughness * 0.02, 0.6)
# The factor by which negative armor values will increase incoming damage.
# Each point of negative armor will increase incoming damage by this factor.
# A value of 0.015 means that 1 point of negative armor will increase incoming damage by 1.5%.
# Note:
# Negative armor is typically only encountered when the attacker has more armor pen than the defender has armor.
#
# Default: 0.015; Range: [0.0 ~ 1.0]
S:"Negative Armor Factor"=0.015
}

View File

@ -0,0 +1,20 @@
# File Specification: https://gist.github.com/Shadows-of-Fire/88ac714a758636c57a52e32ace5474c1
# Apotheosis Enchantment Module Config
client {
# If enchanted book metadata (treasure, tradeable, etc) are shown in the tooltip.
# Default: true
B:"Show Enchanted Book Metadata"=true
# The 1/n chance that a sculkshelf plays a sound, per client tick. Set to 0 to disable.
# Default: 200; Range: [0 ~ 32767]
I:"Sculkshelf Noise Chance"=200
# If enchantment descriptions are shown inline in item tooltips.
# Translations for vanilla enchantments require the 'Enchantment Descriptions' mod.
# Default: false
B:"Enable Inlined Enchantment Descriptions"=false
}

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@
#The name of the modpack
modpackName = "Banana"
#The version of the modpack
modpackVersion = "1.15"
modpackVersion = "2.0"
#Use the metadata.json to determine the modpack version
#ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING
useMetadata = false

View File

@ -0,0 +1,198 @@
[time]
#Determines which method is used to set day and night speed.
#RATIO: Uses daySpeed and nightSpeed settings.
#MINUTES: Uses daySpeedMinutes and nightSpeedMinutes settings.
#REALTIME: Sets day and night to 12 real-world hours each.
#Allowed Values: RATIO, MINUTES, REALTIME
speedMethod = "RATIO"
#The speed at which time passes during the day.
#Day is defined as any time between dayStart (see below) and nightStart (see below) the next day.
#This is the RATIO of time passing relative to vanilla.
#Vanilla speed: 1.0
#Range: 0.0 ~ 24000.0
daySpeed = 1.0
#The speed at which time passes during the night.
#Night is defined as any time between dayStart (see below) and nightStart (see below).
#This is the RATIO of time passing relative to vanilla.
#Vanilla speed: 1.0
#Range: 0.0 ~ 24000.0
nightSpeed = 1.0
#An alternative way to set day speed. This setting is mutually exclusive with daySpeed.
#If both are set, speedMethod (see above) determines which setting is used.
#This setting defines the length of the day in real-world minutes.
#Vanilla length: 10.0 minutes
#Range: 0.1 ~ 10000.0
daySpeedMinutes = 10.0
#An alternative way to set night speed. This setting is mutually exclusive with nightSpeed.
#If both are set, speedMethod (see above) determines which setting is used.
#This setting defines the length of the night in real-world minutes.
#Vanilla length: 10.0 minutes
#Range: 0.1 ~ 10000.0
nightSpeedMinutes = 10.0
#The time to start day. This is configurable within the time the sun appears and day starts.
#Default: 23500
#Range: 22300.0 ~ 24000.0
dayStart = 23500.0
#The time to start night. This is configurable within the time sunset starts and night starts.
#Default: 12500
#Range: 12000.0 ~ 13000.0
nightStart = 12500.0
#Enabling this will allow the setting of an infinite amount of time speeds defined as pairs in the form:
#(currentTick, desiredSpeed)
#where between each value bezier spline interpolation is performed for smooth transitioning
#The two default pairs at 0 and 24000 are necessary as they act as bounds. However
#The time speed value for each of them can be freely modified
enableInterpolatedTime = false
#The value that determines the smoothing factor in the interpolation algorithm.
#A high value will make the interpolation softer and curvier
#A low value will make the interpolation closer to a piecewise function
#Range: 0.0 ~ 10.0
interpolatedTimeSmoothingFactor = 0.25
#These are the pairs that define what speed time should run at, at the specified day/night tick
#The two default pairs need to exist, but their time speed values can be modified
interpolatedTimeList = ["0,1.0", "24000,1.0"]
[time.effects]
#When applied, this effect syncs the passage of weather with the current speed of time.
#I.e., as time moves faster, rain stops faster. Clear weather is not affected.
#When set to SLEEPING, this effect only applies when at least one player is sleeping in a dimension.
#Note: On NeoForge 1.21.1+ this is already handled by the platform. SLEEPING will still work as intended.
#Note: This setting is not applicable if game rule doWeatherCycle is false.
#Allowed Values: NEVER, ALWAYS, SLEEPING
weatherEffect = "SLEEPING"
#When applied, this effect syncs the random tick speed with the current speed of time, forcing
#crop, tree, and grass growth to occur at baseRandomTickSpeed multiplied by the current time-speed.
#When set to SLEEPING, randomTickSpeed is set to baseRandomTickSpeed unless at least one player is sleeping in a dimension.
#More information on the effects of random tick speed can be found here: https://minecraft.wiki/w/Tick#Random_tick
#WARNING: This setting overwrites the randomTickSpeed game rule. To modify the base random tick speed,
#use the baseRandomTickSpeed setting instead of changing the game rule directly.
#Note: On NeoForge 1.21.1+ this is already handled by the platform. SLEEPING will still work as intended.
#This effect has a minimum randomTickSpeed of 1 if time speed is less than 1.0.
#Allowed Values: NEVER, ALWAYS, SLEEPING
randomTickEffect = "SLEEPING"
#The base random tick speed used by the randomTickEffect time effect.
#Range: > 0
baseRandomTickSpeed = 3
#When applied, this effect progresses potion effects to match the rate of the current time-speed.
#This effect does not apply if time speed is 1.0 or less.
#THIS MAY HAVE A NEGATIVE IMPACT ON PERFORMANCE IN SERVERS WITH MANY PLAYERS.
#When set to ALWAYS, this effect applies to all players in the dimension, day or night.
#When set to SLEEPING, this effect only applies to players who are sleeping.
#Note: On NeoForge 1.21.1+ this is already handled by the platform. SLEEPING will still work as intended.
#Allowed Values: NEVER, ALWAYS, SLEEPING
potionEffect = "NEVER"
#When applied, this effect progresses player hunger effects to match the rate of the current time-speed.
#This results in faster healing when food level is full, and faster harm when food level is too low.
#This effect does not apply if time speed is 1.0 or less.
#When set to ALWAYS, this effect applies to all players in the dimension, day or night. Not recommended on higher difficulty settings
#When set to SLEEPING, this effect only applies to players who are sleeping.
#Allowed Values: NEVER, ALWAYS, SLEEPING
hungerEffect = "NEVER"
#When applied, this effect progresses block entities like furnaces, hoppers, and spawners to match the rate of the current time-speed.
#WARNING: This time-effect has a significant impact on performance.
#This effect does not apply if time speed is 1.0 or less.
#When set to SLEEPING, this effect only applies when at least one player is sleeping in a dimension.
#Note: On NeoForge 1.21.1+ this is already handled by the platform. SLEEPING will still work as intended.
#Allowed Values: NEVER, ALWAYS, SLEEPING
blockEntityEffect = "NEVER"
[sleep]
#Enables or disables the sleep feature of this mod. Enabling this setting will modify the vanilla sleep functionality
#and may conflict with other sleep mods. If disabled, all settings in the sleep section will not apply.
enableSleepFeature = true
### THIS SETTING DEFINES THE SLEEP TIME-SPEED IN SINGLE-PLAYER GAMES ###
#The maximum speed at which time passes when all players are sleeping.
#A value of 110 is nearly equal to the time it takes to sleep in vanilla.
#Range: 0.0 ~ 24000.0
sleepSpeedMax = 110.0
#The minimum speed at which time passes when only 1 player is sleeping in a full server.
#Range: 0.0 ~ 24000.0
sleepSpeedMin = 1.0
#The speed at which time passes when all players are sleeping.
#Set to -1 to disable this feature (sleepSpeedMax will be used when all players are sleeping).
#Range: -1.0 ~ 24000.0
sleepSpeedAll = -1.0
#This parameter defines the curvature of the interpolation function that translates the sleeping player percentage into time-speed.
#The function used is a Normalized Tunable Sigmoid Function.
#A value of 0.5 represents a linear relationship.
#Smaller values bend the curve toward the X axis, while greater values bend it toward the Y axis.
#This graph may be used as a reference for tuning the curve: https://www.desmos.com/calculator/w8gntxzfow
#Credit to Dino Dini for the function: https://dinodini.wordpress.com/2010/04/05/normalized-tunable-sigmoid-functions/
#Credit to SmoothSleep for the idea: https://www.spigotmc.org/resources/smoothsleep.32043/
#Range: 0.0 ~ 1.0
sleepSpeedCurve = 0.2
#Set to 'true' for the weather to clear when players wake up in the morning as it does in vanilla.
#Set to 'false' to force weather to pass naturally. Adds realism when accelerateWeather is enabled.
#Note: This setting is ignored if game rule doWeatherCycle is false.
clearWeatherOnWake = false
#When true, players are allowed to sleep at all times of day in dimensions controlled by Better Days.
#Note: Other mods may override this ability.
allowDaySleep = false
#When true, a clock is displayed in the sleep interface.
displayBedClock = true
#The ratio of players in a dimension that must be sleeping to skip to morning.
#A value of 1 means all players must be sleeping, 0.5 means half the players must be sleeping, etc.
#A value of 0 effectively disables this feature.
#Range: 0.0 ~ 1.0
ratioPlayersForSleep = 0.0
#This section defines settings for notification messages.
#All messages support Minecraft formatting codes (https://minecraft.wiki/w/Formatting_codes).
#All messages have variables that can be inserted using the following format: ${variableName}
#Any message can be disabled by setting it to an empty string.
#The type option controls where the message appears:
# SYSTEM: Appears as a message in the chat. (e.g., "Respawn point set")
# GAME_INFO: Game information that appears above the hotbar (e.g., "You may not rest now, the bed is too far away").
#The target option controls to whom the message is sent:
# ALL: Sends the message to all players on the server.
# DIMENSION: Sends the message to all players in the current dimension.
# SLEEPING: Sends the message to all players in the current dimension who are sleeping.
[sleep.messages]
#This message is sent after a sleep cycle has completed.
[sleep.messages.morning]
#Available variables:
#
#sleepingPlayers -> the number of players in the current dimension who were sleeping.
#totalPlayers -> the number of players in the current dimension (spectators are not counted).
#sleepingPercentage -> the percentage of players in the current dimension who are sleeping (does not include % symbol).
message = "§e§oTempus fugit!"
#Sets where this message appears.
#Allowed Values: SYSTEM, GAME_INFO
type = "GAME_INFO"
#Sets to whom this message is sent.
#A target of 'SLEEPING' will send the message to all players who just woke up.
#Allowed Values: ALL, DIMENSION, SLEEPING
target = "DIMENSION"
#This message is sent when a player enters their bed.
[sleep.messages.enterBed]
#Available variables:
#player -> the player who started sleeping.
#sleepingPlayers -> the number of players in the current dimension who are sleeping.
#totalPlayers -> the number of players in the current dimension (spectators are not counted).
#sleepingPercentage -> the percentage of players in the current dimension who are sleeping (does not include % symbol).
message = "${player} is now sleeping. [${sleepingPlayers}/${totalPlayers}]"
#Sets where this message appears.
#Allowed Values: SYSTEM, GAME_INFO
type = "GAME_INFO"
#Sets to whom this message is sent.
#
#Allowed Values: ALL, DIMENSION, SLEEPING
target = "DIMENSION"
#This message is sent when a player leaves their bed (without being woken up naturally by morning).
[sleep.messages.leaveBed]
#Available variables:
#player -> the player who left their bed.
#sleepingPlayers -> the number of players in the current dimension who are sleeping.
#totalPlayers -> the number of players in the current dimension (spectators are not counted).
#sleepingPercentage -> the percentage of players in the current dimension who are sleeping (does not include % symbol).
message = "${player} has left their bed. [${sleepingPlayers}/${totalPlayers}]"
#Sets where this message appears.
#Allowed Values: SYSTEM, GAME_INFO
type = "GAME_INFO"
#Sets to whom this message is sent.
#
#Allowed Values: ALL, DIMENSION, SLEEPING
target = "DIMENSION"

22
config/brutalbosses.json Normal file
View File

@ -0,0 +1,22 @@
{
"printChestLoottable": {
"desc:": "Prints the chest loottable on opening and on spawn and logs the Loottables which do not have a boss assigned of structures to the latest.log. Useful to find the table used by a dungeon chest, only works if the chest is not opened yet: default:false",
"printChestLoottable": false
},
"damageMultiplier": {
"desc:": "Global difficulty multiplier, affects damage of all bosses, default:1.0",
"damageMultiplier": 1.0
},
"healthMultiplier": {
"desc:": "Global difficulty multiplier, affects health of all bosses, default:1.0",
"healthMultiplier": 2.0
},
"globalBossSpawnChance": {
"desc:": "Global boss spawn chance, determines the chance per treasure chest spawn at which a boss can appear in a structure. Chance X in 100, default = 30",
"globalBossSpawnChance": 5
},
"minDistance": {
"desc:": "Minimum distance in blocks between spawning, is not 100% guranteed compares last 20 spawns. default = 100",
"minDistance": 100
}
}

13
config/darkness.json5 Normal file
View File

@ -0,0 +1,13 @@
{
"darkOverworld": true,
"darkNether": false,
"darkEnd": false,
"darkDefault": true,
"darkSkyless": true,
"darkNetherFog": 0.5,
"darkEndFog": 0.0,
"blockLightOnly": false,
"ignoreMoonPhase": false,
"moonPhaseStyle": "DEFAULT",
"requireMod": true
}

View File

@ -59,13 +59,11 @@ key_vivecraft.key.quickcommand10:key.keyboard.unknown:
key_vivecraft.key.quickcommand11:key.keyboard.unknown:
key_vivecraft.key.quickcommand12:key.keyboard.unknown:
key_vivecraft.key.toggleWalkUp:key.keyboard.unknown:
key_lambdynlights.key.toggle_fps_dynamic_lighting:key.keyboard.unknown:
key_key.modernfix.config:key.keyboard.unknown:
key_iris.keybind.reload:key.keyboard.unknown:
key_iris.keybind.toggleShaders:key.keyboard.unknown:
key_iris.keybind.reload:key.keyboard.end:
key_iris.keybind.toggleShaders:key.keyboard.home:
key_iris.keybind.shaderPackSelection:key.keyboard.unknown:
key_iris.keybind.wireframe:key.keyboard.unknown:
key_key.exposure.camera_controls:key.keyboard.unknown:
key_supplementaries.keybind.quiver:key.keyboard.unknown:
key_quark.keybind.autorun:key.keyboard.unknown:
key_quark.keybind.back:key.mouse.4:
@ -98,10 +96,12 @@ key_quark.keybind.lock_rotation:key.keyboard.unknown:
key_quark.keybind.narrator_readout:key.keyboard.unknown:
key_quark.keybind.narrator_full_readout:key.keyboard.unknown:
key_quark.keybind.variant_selector:key.keyboard.r:
key_key.corpse.death_history:key.keyboard.unknown:
key_key.astikorcartsredux.action:key.keyboard.r:
key_key.astikorcartsredux.slow:key.keyboard.z:
key_accessories.key.open_accessories_screen:key.keyboard.unknown:
key_key.dynamic_fps.toggle_forced:key.keyboard.unknown:
key_key.dynamic_fps.toggle_disabled:key.keyboard.unknown:
key_key.toms_storage.open_terminal:key.keyboard.b:
key_key.push_to_talk:key.keyboard.v:
key_key.whisper:key.keyboard.unknown:
key_key.mute_microphone:key.keyboard.unknown:
@ -113,24 +113,26 @@ key_key.voice_chat_group:key.keyboard.unknown:
key_key.voice_chat_toggle_recording:key.keyboard.unknown:
key_key.voice_chat_adjust_volumes:key.keyboard.unknown:
key_key.trade_cycling.cycle_trades:key.keyboard.unknown:
key_key.punchy.open_main_menu:key.keyboard.f8:
key_key.punchy.inspect:key.keyboard.i:
key_key.weaponmaster_ydm.opengui:key.keyboard.unknown:
key_keybind.advancedperipherals.description:key.keyboard.left.control:
key_key.tinyredstone.rotation_lock:key.keyboard.left.alt:
key_create_mobile_packages.keyinfo.open_portable_stock_ticker:key.keyboard.g:
key_create_mobile_packages.keyinfo.open_player_networks_screen:key.keyboard.unknown:
key_key.sophisticatedcore.sort:key.mouse.middle:
key_key.sophisticatedcore.transfer_to_storage:key.keyboard.left.bracket:
key_key.sophisticatedcore.transfer_to_inventory:key.keyboard.right.bracket:
key_key.sophisticatedcore.transfer_to_storage:key.keyboard.unknown:
key_key.sophisticatedcore.transfer_to_inventory:key.keyboard.unknown:
key_placebo.toggleTrails:key.keyboard.keypad.9:
key_placebo.toggleWings:key.keyboard.keypad.8:
key_key.sophisticatedbackpacks.open_backpack:key.keyboard.b:
key_key.sophisticatedbackpacks.inventory_interaction:key.keyboard.c:
key_key.sophisticatedbackpacks.tool_swap:key.keyboard.unknown:
key_key.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT
key_key.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT
key_key.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown:
key_key.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown:
key_key.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown:
key_key.carry.desc:key.keyboard.unknown:
key_key.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown:
key_key.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown:
key_key.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT
key_key.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT
key_key.structurize.teleport:key.keyboard.unknown:
key_key.structurize.move_forward:key.keyboard.up:
key_key.structurize.move_back:key.keyboard.down:
@ -142,6 +144,12 @@ key_key.structurize.rotate_cw:key.keyboard.right:SHIFT
key_key.structurize.rotate_ccw:key.keyboard.left:SHIFT
key_key.structurize.mirror:key.keyboard.m:
key_key.structurize.place:key.keyboard.enter:
key_key.moreoverlays.lightoverlay.desc:key.keyboard.f7:
key_key.moreoverlays.chunkbounds.desc:key.keyboard.f9:
key_key.effortlessbuilding.open_radial_menu:key.keyboard.left.alt:
key_key.effortlessbuilding.open_modifiers_screen:key.keyboard.keypad.add:
key_key.effortlessbuilding.undo.desc:key.keyboard.z:
key_key.effortlessbuilding.redo.desc:key.keyboard.y:
key_key.do_a_barrel_roll.toggle_enabled:key.keyboard.unknown:
key_key.do_a_barrel_roll.toggle_thrust:key.keyboard.unknown:
key_key.do_a_barrel_roll.open_config:key.keyboard.unknown:
@ -172,14 +180,16 @@ key_key.cpm.qa_13:key.keyboard.unknown:
key_key.cpm.qa_14:key.keyboard.unknown:
key_key.cpm.qa_15:key.keyboard.unknown:
key_key.cpm.qa_16:key.keyboard.unknown:
key_key.ezactions.open:key.keyboard.grave.accent:
key_key.ezactions.open_editor:key.keyboard.unknown:
key_key.freecam.toggle:key.keyboard.unknown:
key_key.freecam.playerControl:key.keyboard.unknown:
key_key.freecam.tripodReset:key.keyboard.unknown:
key_key.freecam.configGui:key.keyboard.unknown:
key_key.minecolonies.toggle_goggles:key.keyboard.unknown:
key_key.ponder.ponder:key.keyboard.w:
key_key.silentgear.cycle.back:key.keyboard.unknown:
key_key.silentgear.cycle.next:key.keyboard.unknown:
key_key.aileron.smokestack_boost:key.keyboard.space:
key_key.silentgear.cycle.back:key.keyboard.z:
key_key.silentgear.cycle.next:key.keyboard.x:
key_key.silentgear.displayItemProperties:key.keyboard.left.control:
key_key.silentgear.displayTraitDescriptions:key.keyboard.left.shift:
key_key.silentgear.displayItemConstruction:key.keyboard.left.alt:
@ -191,6 +201,10 @@ key_create_tweaked_controllers.keybind.mouse_reset:key.keyboard.r:
key_create_tweaked_controllers.keybind.controller_exit:key.keyboard.tab:
key_key.createbigcannons.pitch_mode:key.keyboard.unknown:
key_key.createbigcannons.fire_controlled_cannon:key.mouse.left:
key_key.sophisticateditemactions.item_highlight:key.keyboard.semicolon:
key_key.sophisticateditemactions.deposit_item:key.keyboard.apostrophe:SHIFT
key_key.sophisticateditemactions.restock_item:key.keyboard.apostrophe:
key_key.incapacitated.giveup:key.keyboard.delete:CONTROL
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
key_key.jei.focusSearch:key.keyboard.f:CONTROL
key_key.jei.previousPage:key.keyboard.unknown:
@ -222,57 +236,39 @@ key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
key_key.jei.closeRecipeGui:key.keyboard.escape:
key_key.jei.copy.recipe.id:key.keyboard.unknown:
key_key.solonion.open_food_book:key.keyboard.unknown:
key_key.minecolonies_tweaks.resourcescroll_book:key.keyboard.unknown:
key_keybinds.bettercombat.feint:key.keyboard.unknown:
key_keybinds.bettercombat.toggle_mine_with_weapons:key.keyboard.unknown:
key_key.open_menu:key.keyboard.grave.accent:
key_treechop.key.toggle_chopping:key.keyboard.unknown:
key_treechop.key.cycle_sneak_behavior:key.keyboard.unknown:
key_treechop.key.open_settings_overlay:key.keyboard.unknown:
key_simulated.keyinfo.rotate_mode:key.keyboard.tab:
key_simulated.keyinfo.scroll_up:key.keyboard.unknown:
key_simulated.keyinfo.scroll_down:key.keyboard.unknown:
key_crashutils.openscreen:key.keyboard.u:CONTROL
key_crashutils.copycontainer:key.keyboard.unknown:
key_crashutils.slottooltips:key.keyboard.unknown:
key_key.immersivemc.backpack:key.keyboard.f23:
key_key.immersivemc.config:key.keyboard.unknown:
key_key.immersivemc.ranged_grab:key.keyboard.f24:
key_key.deeperdarker.boost:key.keyboard.unknown:
key_key.deeperdarker.transmit:key.keyboard.unknown:
key_key.wands.palette_menu:key.keyboard.j:
key_key.wands.wand_invert:key.keyboard.i:
key_key.wands.wand_menu:key.keyboard.y:
key_key.wands.wand_action:key.keyboard.h:
key_key.wands.wand_orientation:key.keyboard.x:
key_key.wands.wand_palette_mode:key.keyboard.p:
key_key.wands.pin:key.keyboard.g:
key_key.wands.area_diagonal_spread:key.keyboard.comma:
key_key.wands.cycle_palette:key.keyboard.n:
key_key.wands.wand_undo:key.keyboard.u:
key_key.wands.n_inc:key.keyboard.up:
key_key.wands.n_dec:key.keyboard.down:
key_key.wands.wand_fill_circle:key.keyboard.unknown:
key_key.wands.wand_rotate:key.keyboard.r:
key_key.wands.m_inc:key.keyboard.right:
key_key.wands.clear_wand:key.keyboard.c:ALT
key_key.wands.wand_mode:key.keyboard.x:
key_key.wands.inc_sel_block:key.keyboard.z:
key_key.wands.toggle_stair_slab:key.keyboard.period:
key_key.wands.m_dec:key.keyboard.left:
key_key.observable.profile:key.keyboard.unknown:
key_create_radar.key.binocular.use:key.keyboard.v:
key_create_radar.key.binocular.fire:key.mouse.left:
key_chunkloaders.keys.open_screen:key.keyboard.unknown:
key_options.narrator:key.keyboard.unknown:
key_key.kubejs.kubedex:key.keyboard.unknown:
key_key.cbbees.start_action:key.keyboard.r:
key_key.cbbees.stop_action:key.keyboard.backspace:
key_key.cbbees.open_schematic_browser:key.keyboard.b:
key_key.cbbees.rotate_preview:key.keyboard.comma:
key_key.cbbees.mirror_preview:key.keyboard.period:
key_key.cbbees.drone_view:key.keyboard.v:
key_key.cbbees.program_action:key.keyboard.p:
key_key.cbbees.schematic_modifier:key.keyboard.left.alt:
key_key.cbbees.free_aim:key.keyboard.left.control:
key_key.pingwheel.ping_location:key.mouse.5:
key_key.pingwheel.open_settings:key.keyboard.unknown:
key_create.keyinfo.toolmenu:key.keyboard.left.alt:
key_create.keyinfo.toolbelt:key.keyboard.left.alt:
key_create.keyinfo.rotate_menu:key.keyboard.unknown:
key_create.keyinfo.shift_modifier:key.keyboard.left.shift:
key_create.keyinfo.ctrl_modifier:key.keyboard.left.control:
key_create.keyinfo.alt_modifier:key.keyboard.left.alt:
key_dndesires.keyinfo.saw_active:key.keyboard.left.alt:
key_dndesires.keyinfo.drill_active:key.keyboard.left.alt:
key_key.tracks.open_tuning:key.keyboard.j:
key_key.aeroworks.joystick.free_camera:key.keyboard.left.shift:
key_key.pipeorgans.midi_config:key.keyboard.unknown:
key_key.journeymap.minimap_preset:key.keyboard.backslash:
key_key.journeymap.toggle_entity_names:key.keyboard.g:
key_key.journeymap.toggle_render_waypoints_map:key.keyboard.unknown:
@ -285,7 +281,7 @@ key_key.journeymap.fullscreen.east:key.keyboard.right:
key_key.journeymap.zoom_out:key.keyboard.minus:
key_key.journeymap.create_waypoint:key.keyboard.unknown:
key_key.journeymap.fullscreen.disable_buttons:key.keyboard.unknown:
key_key.journeymap.minimap_type:key.keyboard.left.bracket:
key_key.journeymap.minimap_type:key.keyboard.unknown:
key_key.journeymap.fullscreen_create_waypoint:key.keyboard.b:
key_key.journeymap.fullscreen.west:key.keyboard.left:
key_key.journeymap.toggle_waypoints:key.keyboard.unknown:
@ -302,6 +298,7 @@ key_powergrid.keyinfo.delete_area:key.keyboard.d:
key_powergrid.keyinfo.pick_component:key.keyboard.s:
key_powergrid.keyinfo.switch_layer:key.keyboard.x:
key_key.guideme.guide:key.keyboard.g:
key_key.creategbd.beam_reactor_toggle:key.keyboard.r:
key_key.jade.config:key.keyboard.keypad.0:
key_key.jade.show_overlay:key.keyboard.keypad.1:
key_key.jade.toggle_liquid:key.keyboard.keypad.2:
@ -309,15 +306,6 @@ key_key.jade.show_recipes:key.keyboard.keypad.3:
key_key.jade.show_uses:key.keyboard.keypad.4:
key_key.jade.narrate:key.keyboard.keypad.5:
key_key.jade.show_details:key.keyboard.left.shift:
key_key.ae2.mouse_wheel_item_modifier:key.keyboard.left.shift:
key_key.ae2.part_placement_opposite:key.keyboard.left.control:
key_key.ae2.portable_item_cell:key.keyboard.unknown:
key_key.ae2.portable_fluid_cell:key.keyboard.unknown:
key_key.ae2.wireless_terminal:key.keyboard.unknown:
key_key.beltborne_lanterns.open_config:key.keyboard.unknown:
key_key.beltborne_lanterns.toggle_debug:key.keyboard.unknown:
key_key.beltborne_lanterns.open_debug:key.keyboard.unknown:
key_key.beltborne_lanterns.toggle_lantern:key.keyboard.unknown:
key_legendarytooltips.key.scrollTooltips:key.keyboard.left.shift:
key_key.parcool.Enable:key.keyboard.p:CONTROL
key_key.parcool.Crawl:key.keyboard.c:
@ -335,6 +323,39 @@ key_key.parcool.openSetting:key.keyboard.p:ALT
key_key.parcool.QuickTurn:key.keyboard.unknown:
key_key.parcool.Flipping:key.keyboard.unknown:
key_key.parcool.HangDown:key.mouse.right:
key_key.ponder.ponder:key.keyboard.w:
key_create.keyinfo.toolmenu:key.keyboard.left.alt:
key_create.keyinfo.toolbelt:key.keyboard.left.alt:
key_create.keyinfo.rotate_menu:key.keyboard.unknown:
key_create.keyinfo.shift_modifier:key.keyboard.left.shift:
key_create.keyinfo.ctrl_modifier:key.keyboard.left.control:
key_create.keyinfo.alt_modifier:key.keyboard.left.alt:
key_dndesires.keyinfo.saw_active:key.keyboard.left.alt:
key_dndesires.keyinfo.drill_active:key.keyboard.left.alt:
key_framedblocks.key.update_cull:key.keyboard.f9:
key_framedblocks.key.wipe_cache:key.keyboard.unknown:
key_key.analogaudio.switch_input_mode:key.keyboard.left.alt:
key_key.aero_cam_sync.toggle:key.keyboard.i:
key_key.aero_cam_sync.open_config:key.keyboard.unknown:
key_key.climbable_ropes.lock_rope_camera:key.keyboard.left.alt:
key_key.tracks.open_tuning:key.keyboard.j:
key_key.pipeorgans.midi_config:key.keyboard.unknown:
key_petrolpark.key.tube.build:key.keyboard.enter:
key_petrolpark.key.tube.delete_control_point:key.keyboard.backspace:
key_petrolpark.key.tube.add_control_point_after:key.keyboard.equal:
key_petrolpark.key.tube.add_control_point_before:key.keyboard.minus:
key_petrolpark.key.tube.cancel:key.keyboard.x:
key_petrolpark.key.hotbar.10:key.keyboard.0:
key_petrolpark.key.hotbar.11:key.keyboard.minus:
key_petrolpark.key.hotbar.12:key.keyboard.equal:
key_petrolpark.key.hotbar.13:key.keyboard.unknown:
key_petrolpark.key.hotbar.14:key.keyboard.unknown:
key_petrolpark.key.hotbar.15:key.keyboard.unknown:
key_petrolpark.key.hotbar.16:key.keyboard.unknown:
key_petrolpark.key.hotbar.17:key.keyboard.unknown:
key_key.aeroworks.joystick.free_camera:key.keyboard.left.shift:
key_key.createrailgrinding.rail_mount_override:key.keyboard.unknown:
key_key.createrailgrinding.grind_crouch_accelerate_override:key.keyboard.unknown:
key_key.presencefootsteps.settings:key.keyboard.f10:
key_key.pickup.item:key.keyboard.unknown:
key_key.entityculling.toggle:key.keyboard.unknown:

View File

@ -0,0 +1,106 @@
version:3955
ao:true
biomeBlendRadius:2
enableVsync:true
entityDistanceScaling:1.0
entityShadows:true
forceUnicodeFont:false
japaneseGlyphVariants:false
fov:0.5
fovEffectScale:1.0
darknessEffectScale:1.0
glintSpeed:0.5
glintStrength:0.75
prioritizeChunkUpdates:0
fullscreen:true
gamma:0.0
graphicsMode:1
guiScale:2
maxFps:120
mipmapLevels:4
narrator:0
particles:0
reducedDebugInfo:false
renderClouds:"true"
renderDistance:8
simulationDistance:8
screenEffectScale:1.0
soundDevice:""
autoJump:false
operatorItemsTab:false
autoSuggestions:true
chatColors:true
chatLinks:true
chatLinksPrompt:true
discrete_mouse_scroll:false
invertYMouse:false
realmsNotifications:true
showSubtitles:false
directionalAudio:false
touchscreen:false
bobView:true
toggleCrouch:false
toggleSprint:false
darkMojangStudiosBackground:false
hideLightningFlashes:false
hideSplashTexts:false
mouseSensitivity:0.5
damageTiltStrength:1.0
highContrast:false
narratorHotkey:true
resourcePacks:["vanilla","mod/punchy:resourcepacks/punchy","fabric","mod_resources","moonlight:merged_pack","mod/analogaudio:resourcepacks/3d_cassettes","mod/towntalk:respack","mod/simplylight:optional_fullblock_ctm","file/cubic-sun-moon-v1.8.5.zip","file/Midnighttiggers-FCT-Default_1.20_V8.zip","file/Nautilus3D-V2.2.zip","file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip","file/Comforts Modernized - V1.1.zip","file/[1.5] Enhanced Boss Bars.zip","file/Create Style Interface 1.21.zip","file/Computer Craft Recreated v1.2.zip","file/CreateSophStorage.zip","file/CreateSophBackpacks.zip","file/HyperPunchy-v2.5+.zip","file/Refined Buckets 2.4.1.zip","file/Refined Сreate Buckets PV.zip","file/Bray\u0027s Zombie Overhaul v1.4.zip","file/Torches-Reimagined_v1.8.zip","file/crops-3d(2).zip","file/Fresh Flowers and Plants.zip"]
incompatibleResourcePacks:[]
lastServer:
lang:en_us
chatVisibility:0
chatOpacity:1.0
chatLineSpacing:0.0
textBackgroundOpacity:0.5
backgroundForChatOnly:true
hideServerAddress:false
advancedItemTooltips:false
pauseOnLostFocus:true
overrideWidth:0
overrideHeight:0
chatHeightFocused:1.0
chatDelay:0.0
chatHeightUnfocused:0.4375
chatScale:1.0
chatWidth:1.0
notificationDisplayTime:1.0
useNativeTransport:true
mainHand:"right"
attackIndicator:1
tutorialStep:none
mouseWheelSensitivity:1.0
rawMouseInput:true
glDebugVerbosity:1
skipMultiplayerWarning:false
hideMatchedNames:true
joinedFirstServer:false
hideBundleTutorial:false
syncChunkWrites:false
showAutosaveIndicator:true
allowServerListing:true
onlyShowSecureChat:false
panoramaScrollSpeed:1.0
telemetryOptInExtra:false
onboardAccessibility:false
menuBackgroundBlurriness:5
soundCategory_master:1.0
soundCategory_music:0.0
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0
soundCategory_hostile:1.0
soundCategory_neutral:1.0
soundCategory_player:1.0
soundCategory_ambient:1.0
soundCategory_voice:1.0
modelPart_cape:true
modelPart_jacket:true
modelPart_left_sleeve:true
modelPart_right_sleeve:true
modelPart_left_pants_leg:true
modelPart_right_pants_leg:true
modelPart_hat:true

View File

@ -0,0 +1,177 @@
{
"__comment": "For help with the config refer to https://github.com/Flemmli97/Flan/wiki/Config",
"configVersion": 7,
"startingBlocks": 500,
"maxClaimBlocks": 5000,
"ticksForNextBlock": 600,
"minClaimsize": 100,
"defaultClaimDepth": 10,
"subClaimsInheritParentDepth": true,
"maxClaims": -1,
"defaultClaimName": "",
"defaultEnterMessage": "",
"defaultLeaveMessage": "",
"noSpawnClaim": false,
"claimingCooldown": 0,
"blacklistedWorlds": [],
"worldWhitelist": false,
"claimingItem": "minecraft:golden_hoe",
"claimingNBT": {},
"inspectionItem": "unify:gold_rod",
"inspectionNBT": {},
"main3dClaims": true,
"minHeight3d": 10,
"nearbyClaimsToolDisplay": 24,
"claimDisplayTime": 600,
"particleDisplay": false,
"claimDisplayActionBar": false,
"permissionLevel": 2,
"autoClaimStructures": false,
"ftbChunksCheck": true,
"gomlReservedCheck": true,
"mineColoniesCheck": true,
"buySellHandler": {
"buyType": "MONEY",
"buyValue": -1.0,
"buyItems": [],
"sellType": "MONEY",
"sellValue": -1.0,
"sellItems": []
},
"maxBuyBlocks": -1,
"currencyType": "",
"lenientBlockEntityCheck": false,
"breakBlockBlacklist": [
"universal_graves:grave",
"yigd:grave"
],
"interactBlockBlacklist": [
"universal_graves:grave",
"yigd:grave",
"waystones",
"universal_shops:trade_block"
],
"breakBlockEntityTagBlacklist": [],
"interactBlockEntityTagBlacklist": [
"IsDeathChest",
"gunpowder.owner",
"shop-activated"
],
"ignoredEntities": [
"corpse:corpse"
],
"entityTagIgnore": [
"graves.marker"
],
"ignoredProjectileTypes": [],
"legacyOverrides": [
"@c:wrenches-flan:interact_block",
"appliedenergistics2:nether_quartz_wrench-flan:interact_block",
"appliedenergistics2:certus_quartz_wrench-flan:interact_block"
],
"dropTicks": 6000,
"inactivityTimeDays": -1,
"inactivityBlocksMax": 2000,
"deletePlayerFile": false,
"bannedDeletionTime": 30,
"offlineProtectActivation": -1,
"dynmapIntegration": false,
"bluemapIntegration": false,
"enableLogs": false,
"defaultGroups": {
"Visitor": {
"flan:door": true,
"flan:button_lever": true,
"flan:pressure_plate": true,
"flan:enchantment": true,
"flan:trapdoor": true,
"flan:fence_gate": true,
"flan:portal": true,
"flan:enderchest": true,
"flan:bed": true,
"flan:itemframe_rotate": true,
"flan:trading": true
},
"Co-Owner": {
"flan:armorstand": true,
"flan:enderman": true,
"flan:sculk": true,
"flan:snow_golem": true,
"flan:break": true,
"flan:hurt_player": true,
"flan:pickup": true,
"flan:lightning": true,
"flan:enderchest": true,
"flan:can_stay": true,
"flan:portal": true,
"flan:hurt_animal": true,
"flan:explosions": true,
"flan:fake_player": true,
"flan:endcrystal_place": true,
"flan:drop": true,
"flan:claim_message": true,
"flan:teleport": true,
"flan:interact_sign": true,
"flan:fence_gate": true,
"flan:chorus_fruit": true,
"flan:xp": true,
"flan:hurt_named": true,
"flan:animal_interact": true,
"flan:enchantment": true,
"flan:no_hunger": true,
"flan:interact_block": true,
"flan:wither": true,
"flan:bed": true,
"flan:trading": true,
"flan:create_contraption": true,
"flan:archeology": true,
"flan:edit_claim": true,
"flan:projectiles": true,
"flan:button_lever": true,
"flan:edit_perms": true,
"flan:open_container": true,
"flan:boat": true,
"flan:lectern_take": true,
"flan:water_border": true,
"flan:pressure_plate": true,
"flan:noteblock": true,
"flan:place": true,
"flan:trample": true,
"flan:wind_charge": true,
"flan:ender_pearl": true,
"flan:flight": true,
"flan:edit_potions": true,
"flan:target_block": true,
"flan:break_non_living": true,
"flan:fire_spread": true,
"flan:anvil": true,
"flan:vehicle_pass": true,
"flan:door": true,
"flan:disable_monster_spawn": true,
"flan:may_flight": true,
"flan:jukebox": true,
"flan:disable_mob_spawn": true,
"flan:player_mob_spawn": true,
"flan:minecart": true,
"flan:raid": true,
"flan:piston_border": true,
"flan:beacon": true,
"flan:trapdoor": true,
"flan:lock_items": true,
"flan:redstone": true,
"flan:bucket": true,
"flan:itemframe_rotate": true
}
},
"globalDefaultPerms": {
"*": {
"flan:disable_monster_spawn": "ALLFALSE",
"flan:edit_potions": "ALLFALSE",
"flan:flight": "ALLTRUE",
"flan:lock_items": "ALLTRUE",
"flan:may_flight": "ALLFALSE",
"flan:no_hunger": "ALLFALSE",
"flan:teleport": "ALLFALSE"
}
}
}

View File

@ -0,0 +1,20 @@
#If this is set to true you get an obituary after you died
enable_obituary = true
#The blocks that can be replaced with a grave
#If it starts with '#' it is a tag
replaceable_blocks = ["#gravestone:grave_replaceable"]
#If this is set to true the obituary will be taken out of your inventory when you break the grave
remove_obituary = true
#If this is set to true only the player that owns the grave and admins can break the grave
only_owners_can_break = false
#If this is set to true the ghost of the dead player will be spawned when the grave is broken
spawn_ghost = false
#If this is set to true the ghost player will defend the player
friendly_ghost = true
#If this is set to true you get your items back into your inventory by sneaking on the grave
sneak_pickup = true
#If this is set to true you get your items sorted back into your inventory by breaking the grave
break_pickup = true
#If this is set to true the grave will replace other blocks if there is no free space above
#Note that this might cause issues with other mods or multiblock structures - This option is not recommended and subject to change
strict_placement = false

View File

@ -1,45 +0,0 @@
[animations]
#Choose your preferred animation speed (0.5-1.5)
# Default: 1.0
# Range: 0.5 ~ 1.5
animationSpeed = 1.0
#Switch speed (0-10)
# Default: 0.018
# Range: 0.0 ~ 10.0
switchSpeed = 0.018
#Enable or disable swimming animation
enableSwimmingAnimation = true
#Swing animation speed (6-12)
# Default: 9
# Range: 6 ~ 12
swingSpeed = 9
#Enable or disable climb and crawl animation
enableClimbAndCrawlAnimation = true
#Enable or disable punching animation
enablePunchingAnimation = true
[positions]
#Viewmodel X Offset
# Default: 0.0
# Range: -10.0 ~ 10.0
viewmodelXOffset = 0.0
#Viewmodel Y Offset
# Default: 0.0
# Range: -10.0 ~ 10.0
viewmodelYOffset = 0.0
#Viewmodel Z Offset
# Default: 0.0
# Range: -10.0 ~ 10.0
viewmodelZOffset = 0.0
[misc]
#Enable MB3D compatibility mode
mb3DCompat = false
[modRenderExclusions]
#Mod IDs that should be excluded from custom rendering (entire mod).
excludedModIds = ["pointblank", "jeg", "cataclysm", "silentgear", "comforts", "copycats"]
#Specific item IDs to exclude from custom rendering (e.g. 'modid:itemname').
excludedItemIds = ["create:linked_controller", "create_tweaked_controllers:create_tweaked_controller"]
#Skips the blockItem renderer, useful especially for create items because they're already 3D.
renderBlockAsItem = ["create:cogwheel", "create:large_cogwheel", "create:shaft", "create:gearbox", "create:vertical_gearbox", "create:clutch", "create:gearshift", "create:encased_chain_drive", "create:adjustable_chain_gearshift", "create:belt_connector", "create:chain_conveyor", "create:creative_motor", "create:water_wheel", "create:large_water_wheel", "create:nozzle", "create:turntable", "create:hand_crank", "create:millstone", "create:crushing_wheel", "create:mechanical_press", "create:mechanical_mixer", "create:empty_blaze_burner", "create:blaze_burner", "create:depot", "create:weighted_ejector", "create:speedometer", "create:stressometer", "create:wooden_bracket", "create:metal_bracket", "create:schematicannon", "create:fluid_pipe", "create:mechanical_pump", "create:smart_fluid_pipe", "create:fluid_valve", "create:copper_valve_handle", "create:hose_pulley", "create:portable_fluid_interface", "create:steam_engine", "create:gantry_carriage", "create:gantry_shaft", "create:windmill_bearing", "create:mechanical_bearing", "create:clockwork_bearing", "create:rope_pulley", "create:elevator_pulley", "create:cart_assembler", "create:sticker", "create:contraption_controls", "create:mechanical_drill", "create:mechanical_saw", "create:deployer", "create:portable_storage_interface", "create:mechanical_harvester", "create:mechanical_plough", "create:mechanical_roller", "create:mechanical_crafter", "create:sequenced_gearshift", "create:flywheel", "create:rotation_speed_controller", "create:mechanical_arm", "create:controls", "create:andesite_funnel", "create:brass_funnel", "create:andesite_tunnel", "create:brass_tunnel", "create:package_frogport", "create:factory_gauge", "create:display_board", "create:peculiar_bell", "create:haunted_bell", "create:brown_toolbox", "create:clipboard"]

37
config/incapacitated.json Normal file
View File

@ -0,0 +1,37 @@
{
"info": "For documentation on what each item does, see the readme file on github: https://github.com/CartoonishVillain/Incapacitated",
"merciful": 1,
"canBreakOrInteractWithBlocks": false,
"canJumpWhileDown": false,
"hunter": 2,
"slow": true,
"weakened": true,
"regenerating": true,
"unlimitedDowns": false,
"downLogging": false,
"reviveMessage": true,
"downTicks": 2000,
"reviveTicks": 200,
"downCounter": 3,
"someInstantKills": true,
"globalIncapMessage": true,
"globalReviveMessage": true,
"useSecondsForRevive": false,
"healPercentageOfMaxHealth": true,
"reviveHealth": 0.2,
"reviveHunger": -1,
"reviveSaturation": -1.0,
"shouldDownTimeReset": false,
"shouldDisableFallFlying": false,
"shouldDieOnTimeout": true,
"shouldDieOnOverkillDamage": true,
"shouldBlameIncapacitations": true,
"shouldBlameRevives": true,
"incapEffectData": [
],
"reviveEffectData": [],
"DANGERDisableGiveUp": false,
"DANGERDisableIncapPlayerDamage": false,
"DANGERManipulateGoalToAvoidDownPlayers": false,
"DANGERFullServerKill": false
}

View File

@ -0,0 +1,99 @@
{
// -----------------------------------------------------------
// Item Obliterator by ElocinDev
// -----------------------------------------------------------
//
// How to add items?
// - They are json strings, so you need to separate each
// entry with a comma, except the last
// - If you start an entry with !, it will be treated as a regular expression
// Example: "!minecraft:.*_sword" to disable all swords
//
// -----------------------------------------------------------
// Do not touch this
"configVersion": 2,
// -----------------------------------------------------------
// Items here will be unusable completely
// Example: minecraft:diamond
"blacklisted_items": [
"dndesires:fluid_hatch",
"silentgems:teleporter_linker",
"silentgems:teleporter_anchor",
"silentgems:ruby_teleporter",
"silentgems:carnelian_teleporter",
"silentgems:topaz_teleporter",
"silentgems:citrine_teleporter",
"silentgems:heliodor_teleporter",
"silentgems:moldavite_teleporter",
"silentgems:peridot_teleporter",
"silentgems:turquoise_teleporter",
"silentgems:kyanite_teleporter",
"silentgems:sapphire_teleporter",
"silentgems:iolite_teleporter",
"silentgems:alexandrite_teleporter",
"silentgems:ammolite_teleporter",
"silentgems:rose_quartz_teleporter",
"silentgems:black_diamond_teleporter",
"silentgems:white_diamond_teleporter",
"silentgems:garnet_teleporter",
"silentgems:aquamarine_teleporter",
"silentgems:tanzanite_teleporter",
"silentgems:opal_teleporter",
"silentgems:pearl_teleporter",
"silentgems:ruby_redstone_teleporter",
"silentgems:carnelian_redstone_teleporter",
"silentgems:topaz_redstone_teleporter",
"silentgems:citrine_redstone_teleporter",
"silentgems:heliodor_redstone_teleporter",
"silentgems:moldavite_redstone_teleporter",
"silentgems:peridot_redstone_teleporter",
"silentgems:turquoise_redstone_teleporter",
"silentgems:kyanite_redstone_teleporter",
"silentgems:sapphire_redstone_teleporter",
"silentgems:iolite_redstone_teleporter",
"silentgems:alexandrite_redstone_teleporter",
"silentgems:ammolite_redstone_teleporter",
"silentgems:rose_quartz_redstone_teleporter",
"silentgems:black_diamond_redstone_teleporter",
"silentgems:white_diamond_redstone_teleporter",
"silentgems:garnet_redstone_teleporter",
"silentgems:aquamarine_redstone_teleporter",
"silentgems:tanzanite_redstone_teleporter",
"silentgems:opal_redstone_teleporter",
"silentgems:pearl_redstone_teleporter",
"siletgear:diamond_shard",
"functionalstorage:ender_drawer"
],
// -----------------------------------------------------------
// Removes an item if it contains certain nbt tag. If the whole entry (or expression) is present, the item gets removed.
// Use with caution! This is a very expensive operation and can cause lag if you have a lot of items blacklisted.
//
// Example to disable a regeneration potion: Potion:"minecraft:regeneration"
//
// You can also use regular expressions by starting the value with !
"blacklisted_nbt": [],
// -----------------------------------------------------------
// Items here will not be able to be right-clicked (Interact)
// Example: minecraft:apple
"only_disable_interactions": [
],
// -----------------------------------------------------------
// Items here will not be able to be used to attack
// Example: minecraft:diamond_sword
"only_disable_attacks": [
],
// -----------------------------------------------------------
// Items here will get their recipes disabled
// Keep in mind this already is applied to blacklisted items
"only_disable_recipes": [
],
// -----------------------------------------------------------
// If true, the mod will use a hashset to handle the blacklisted items
// This is a more optimized approach only if you have a lot of items blacklisted (20 or more is recommended)
// If you just have a small amount of items blacklisted, keep this false
//
// [!] Enabling this will disable all regular expressions
// [!] Does not apply to NBT, only item blacklist / interaction / attack
"use_hashmap_optimizations": false
}

View File

@ -19,7 +19,7 @@
#Should citizen name tags be rendered? [Default: true]
alwaysrendernametag = true
#Should workers work during the rain? [Default: false]
workersalwaysworkinrain = false
workersalwaysworkinrain = true
#Chance for the Miner to get an ore when mining cobblestone or stone (by default, can be expanded with datapacks to other materials). This is a percentage. (To change which ores the Miner can find, see "List of Lucky Ores".) [Default: 1, min: 0, max: 100]
# Default: 1
# Range: 0 ~ 100
@ -27,21 +27,21 @@
#The minimum level a Town Hall has to be to allow teleportation to allied colonies. [Default: 3, min: 0, max: 5]
# Default: 3
# Range: 0 ~ 5
minthleveltoteleport = 3
minthleveltoteleport = 5
#Food consumption modifier. [Default: 1.0, min: 0.1, max: 100.0]
# Default: 1.0
# Range: 0.1 ~ 100.0
foodmodifier = 1.0
foodmodifier = 0.7
#How common diseases are. 1 = Very common, 100 = extremely rare. [Default: 5, min: 1, max: 100]
# Default: 5
# Range: 1 ~ 100
diseasemodifier = 5
diseasemodifier = 10
#If part of the colony is loaded by an owner/officer, should the colony be kept loaded? (Set how many chunks are loaded with the "Colony Chunk Loading Strictness" option.) [Default: true]
forceloadcolony = true
#Set how long chunks stay loaded after player leaves, does not persist through restarts. Default: 10min [Default: 10, min: 1, max: 1440]
# Default: 10
# Range: 1 ~ 1440
loadtime = 60
loadtime = 15
#This controls how many chunks are loaded with the "Chunk Load Colony" option. The higher this value, the fewer chunks will be loaded. (The innermost chunks will be loaded first.) 1 = load all claimed chunks. [Default: 3, min: 1, max: 15]
# Default: 3
# Range: 1 ~ 15
@ -96,11 +96,11 @@
#minecolonies.config.minColonyDistance.comment [Default: 8, min: 1, max: 200]
# Default: 8
# Range: 1 ~ 200
minColonyDistance = 20
minColonyDistance = 32
#minecolonies.config.initialColonySize.comment [Default: 4, min: 1, max: 15]
# Default: 4
# Range: 1 ~ 15
initialColonySize = 6
initialColonySize = 5
#Max distance (in blocks) from world spawn for a colony. [Default: 30000, min: 1000, max: 2147483647]
# Default: 30000
# Range: > 1000
@ -150,7 +150,7 @@
#All permission configuration options
[permissions]
#Should colony protection be enabled? [Default: true]
enablecolonyprotection = false
enablecolonyprotection = true
#Independent from the colony protection, should explosions be turned off inside colonies? DAMAGE_NOTHING prevents explosions completely. DAMAGE_PLAYERS, allows explosions to damage players and hostile mobs, but not blocks or neutral or friendly mobs. DAMAGE_ENTITIES allows damage to all entities. DAMAGE_EVERYTHING allows explosions to damage entities and blocks. [Default: DAMAGE_ENTITIES, values: DAMAGE_NOTHING, DAMAGE_PLAYERS, DAMAGE_ENTITIES, DAMAGE_EVERYTHING]
#Allowed Values: DAMAGE_NOTHING, DAMAGE_PLAYERS, DAMAGE_ENTITIES, DAMAGE_EVERYTHING
turnoffexplosionsincolonies = "DAMAGE_ENTITIES"

View File

@ -0,0 +1,7 @@
[buildings]
customCraftingModules = []
[worldGens]
# Default: 1.0
# Range: 0.0 ~ 1.0
emptyColoniesGenerationChance = 0.0

View File

@ -120,10 +120,10 @@
Stools = true
"Sturdy Stone" = true
Thatch = true
"Variant Bookshelves" = true
"Variant Chests" = true
"Variant Furnaces" = true
"Variant Ladders" = true
"Variant Bookshelves" = false
"Variant Chests" = false
"Variant Furnaces" = false
"Variant Ladders" = false
"Vertical Planks" = true
"Vertical Slabs" = true
"Wooden Posts" = true

View File

@ -1,90 +1,141 @@
{
"schema_version": "2",
"default_packs": [
"vanilla",
"fabric",
"mod_resources",
"moonlight:merged_pack",
"continuity:default",
"mod/towntalk:respack",
"mod/simplylight:optional_fullblock_ctm",
"file/cubic-sun-moon-v1.8.5.zip",
"file/Midnighttiggers-FCT-Default_1.20_V8.zip",
"file/Nautilus3D-V2.2.zip",
"file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip",
"file/Comforts Modernized - V1.1.zip",
"file/[1.5] Enhanced Boss Bars.zip",
"file/Create Style Interface 1.21.zip",
"file/Computer Craft Recreated v1.2.zip",
"file/CreateSophStorage.zip",
"file/CreateSophBackpacks.zip"
],
"pack_overrides": {
// The title and description are overridden for the vanilla assets pack
"vanilla": {
"title": "\"Vanilla Assets\"",
"description": "\"Resource pack from Minecraft\"",
"default_position": "BOTTOM",
"required": true
},
"file/[1.5] Enhanced Boss Bars.zip": {
"title": "\"Enhanced Boss Bars\"",
"force_compatible": true,
"required": true
},
"file/Midnighttiggers-FCT-Default_1.20_V8.zip": {
"title": "\"Midnighttiggers FCT (Connected Textures)\"",
"force_compatible": true,
"required": true
},
"mod/simplylight:optional_fullblock_ctm": {
"force_compatible": true,
"required": true
},
"continuity:default":{
"force_compatible": true,
"required": true
},
"file/Computer Craft Recreated v1.2.zip": {
"title": "\"Computer Craft Recreated\"",
"force_compatible": true,
"required": true
},
"file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip":{
"title": "\"Fresh Moves\"",
"force_compatible": true,
"required": true
},
"file/Create Style Interface 1.21.zip":{
"title": "\"Create Style Interface\"",
"force_compatible": true,
"required": true
},
"file/CreateSophStorage.zip":{
"title": "\"Create Sophisticated Storage\"",
"force_compatible": true,
"required": true
},
"file/CreateSophBackpacks.zip":{
"title": "\"Create Sophisticated Backpacks\"",
"force_compatible": true,
"required": true
},
"file/Nautilus3D-V2.2.zip":{
"title": "\"Nautilus 3D\"",
"force_compatible": true,
"default_position": "BOTTOM",
"required": true
},
"file/cubic-sun-moon-v1.8.5.zip":{
"title": "\"Cubic Sun & Moon\"",
"force_compatible": true,
"required": true
},
"file/Comforts Modernized - V1.1.zip":{
"title": "\"Comforts Modernized\"",
"force_compatible": true,
"required": true
"schema_version": "2",
"default_packs": [
"vanilla",
"mod/punchy:resourcepacks/punchy",
"fabric",
"mod_resources",
"moonlight:merged_pack",
"mod/analogaudio:resourcepacks/3d_cassettes",
"continuity:default",
"mod/towntalk:respack",
"mod/simplylight:optional_fullblock_ctm",
"file/cubic-sun-moon-v1.8.5.zip",
"file/Midnighttiggers-FCT-Default_1.20_V8.zip",
"file/Nautilus3D-V2.2.zip",
"file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip",
"file/Comforts Modernized - V1.1.zip",
"file/[1.5] Enhanced Boss Bars.zip",
"file/Create Style Interface 1.21.zip",
"file/Computer Craft Recreated v1.2.zip",
"file/CreateSophStorage.zip",
"file/CreateSophBackpacks.zip",
"file/HyperPunchy-v2.5+.zip",
"file/Refined Buckets 2.4.1.zip",
"file/Refined Сreate Buckets PV.zip",
"file/Bray's Zombie Overhaul v1.4.zip",
"file/Torches-Reimagined_v1.8.zip",
"file/crops-3d(2).zip",
"file/Fresh Flowers and Plants.zip"
],
"pack_overrides": {
"vanilla": {
"title": "\"Vanilla Assets\"",
"description": "\"Resource pack from Minecraft\"",
"default_position": "BOTTOM",
"required": true
},
"mod/analogaudio:resourcepacks/3d_cassettes": {
"required": true
},
"file/[1.5] Enhanced Boss Bars.zip": {
"title": "\"Enhanced Boss Bars\"",
"force_compatible": true,
"required": true
},
"file/Midnighttiggers-FCT-Default_1.20_V8.zip": {
"title": "\"Midnighttiggers FCT (Connected Textures)\"",
"force_compatible": true,
"required": true
},
"mod/simplylight:optional_fullblock_ctm": {
"force_compatible": true,
"required": true
},
"continuity:default": {
"force_compatible": true,
"required": true
},
"file/Computer Craft Recreated v1.2.zip": {
"title": "\"Computer Craft Recreated\"",
"force_compatible": true,
"required": true
},
"file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip": {
"title": "\"Fresh Moves\"",
"force_compatible": true,
"required": true
},
"file/Create Style Interface 1.21.zip": {
"title": "\"Create Style Interface\"",
"force_compatible": true,
"required": true
},
"file/CreateSophStorage.zip": {
"title": "\"Create Sophisticated Storage\"",
"force_compatible": true,
"required": true
},
"file/CreateSophBackpacks.zip": {
"title": "\"Create Sophisticated Backpacks\"",
"force_compatible": true,
"required": true
},
"file/Nautilus3D-V2.2.zip": {
"title": "\"Nautilus 3D\"",
"force_compatible": true,
"default_position": "BOTTOM",
"required": true
},
"file/cubic-sun-moon-v1.8.5.zip": {
"title": "\"Cubic Sun & Moon\"",
"force_compatible": true,
"required": true
},
"file/Comforts Modernized - V1.1.zip": {
"title": "\"Comforts Modernized\"",
"force_compatible": true,
"required": true
},
"file/HyperPunchy-v2.5+.zip": {
"title": "\"Hyper Punchy\"",
"force_compatible": true,
"required": true
},
"file/Refined Buckets 2.4.1.zip": {
"title": "\"Refined Buckets\"",
"force_compatible": true,
"required": true
},
"file/Refined Сreate Buckets PV.zip": {
"title": "\"Refined Create Buckets\"",
"force_compatible": true,
"required": true
},
"file/Bray's Zombie Overhaul v1.4.zip": {
"title": "\"\u00A76Bray's Zombie Overhaul\"",
"force_compatible": true,
"required": true
},
"file/Torches-Reimagined_v1.8.zip": {
"title": "\"\u00A7eTorches Reimagined\"",
"force_compatible": true,
"required": true
},
"file/crops-3d(2).zip": {
"title": "\"3D Crops\"",
"force_compatible": true,
"required": true
},
"file/REVIVED_Farmer's Delight_crops_3D_R1.5.2-universal.zip": {
"title": "\"Farmer's Delight 3D crops\"",
"force_compatible": true,
"required": true
},
"file/Fresh Flowers and Plants.zip": {
"title": "\"Fresh Flowers and Plants\"",
"force_compatible": true,
"required": true
}
}
}
}

View File

@ -64,15 +64,15 @@
#Changes require a restart!
[nerfed_items]
#Enable this feature. If false, the other settings in this group are ignored.
enabled = false
enabled = true
#Multiplies max durability by this value. If the result would be zero, a value of 1 is assigned.
# Default: 0.05
# Range: 0.0 ~ 1.0
durability_multiplier = 0.05
durability_multiplier = 0.8
#Multiplies harvest speed by this value.
# Default: 0.5
# Range: 0.0 ~ 1.0
harvest_speed_multiplier = 0.5
harvest_speed_multiplier = 0.9
#These items will have reduced durability
items = ["diamond_axe", "iron_axe", "golden_axe", "stone_axe", "wooden_axe", "diamond_hoe", "iron_hoe", "golden_hoe", "stone_hoe", "wooden_hoe", "diamond_pickaxe", "iron_pickaxe", "golden_pickaxe", "stone_pickaxe", "wooden_pickaxe", "diamond_shovel", "iron_shovel", "golden_shovel", "stone_shovel", "wooden_shovel", "diamond_sword", "iron_sword", "golden_sword", "stone_sword", "wooden_sword"]
@ -84,7 +84,7 @@
#A value less than 1 will reduce property values, a value greater than 1 will increase property values.
# Default: 0.8
# Range: 0.0 ~ 2.0
property_multiplier = 0.8
property_multiplier = 0.85
#Settings for gear (tools, weapons, and armor)
[gear]
@ -161,7 +161,7 @@
#The median (most common, average) grade that a material grader with tier 1 catalyst will produce.
#Higher tier catalysts will increase the median by one grade per tier past 1 (if 1 = C, 2 = B, etc.)
#Allowed Values: NONE, E, D, C, B, A, S, SS, SSS, MAX
median_grade = "C"
median_grade = "B"
#The standard deviation of grades the material grader will produce.
#Grades are normally distributed, with the median grade being at the center of the bell curve.
#Larger numbers will make both higher and lower grades more common.
@ -176,19 +176,19 @@
[salvager]
#If enabled, the salvager will automatically break down any parts returned by a gear item into their component materials.
#Otherwise, the parts are returned and can be optionally salvaged individually.
break_down_parts_with_gear = false
break_down_parts_with_gear = true
[salvager.part_loss_rate]
#Minimum rate of part loss when salvaging items. 0 = no loss, 1 = complete loss.
#Rate depends on remaining durability.
# Default: 0.0
# Range: 0.0 ~ 1.0
min = 0.2
min = 0.3
#Maximum rate of part loss when salvaging items. 0 = no loss, 1 = complete loss.
#Rate depends on remaining durability.
# Default: 0.5
# Range: 0.0 ~ 1.0
max = 0.8
max = 0.9
#Settings for the starlight charger
[starlight_charger]

View File

@ -9,7 +9,7 @@
// example background
// you can also specify multiple images from which a random one will be picked
// "image": ["stellarview.png", "another.png", "yet_another.png"],
"image": "stellarview.png",
"image": "bg.png",
// "display_conditions": [
// // a list of conditions, when any of the conditions is met, the element will be rendered
// // the condition result can be negated with "negate": true

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

View File

@ -0,0 +1,12 @@
#Only enable if you want to test the experimental backup system.
enabled = true
#Defines the backup type.
#- FULL_BACKUPS - every backup is a full backup.
#- INCREMENTAL - backup only files changed since the last backup
#- DIFFERENTIAL - backup only files changed since the last full backup
#Allowed Values: FULL_BACKUPS, INCREMENTAL, DIFFERENTIAL
backupType = "INCREMENTAL"
#The max amount of backup chains to keep.
# Default: 10
# Range: 1 ~ 32767
backupChainsToKeep = 10

View File

@ -0,0 +1,90 @@
#If set false, no backups are being made.
enabled = true
#Experimental setting available, look at 'simplebackups-common-experimental.toml' to help testing
#Defines the backup type.
#- FULL_BACKUPS - always creates full backups
#- MODIFIED_SINCE_LAST - only saves the files which changed since last (partial) backup !!! You need to adjust fullBackupTimer properly, otherwise you may lose a lot of your backup (or use the experimental setting) !!!
#- MODIFIED_SINCE_FULL - saves all files which changed after the last full backup
#Allowed Values: FULL_BACKUPS, MODIFIED_SINCE_LAST, MODIFIED_SINCE_FULL
backupType = "FULL_BACKUPS"
#Should a save-all be forced before backup?
saveAll = true
#Should log lines written to logs/latest.log during backup be stored inside the backup archive as latest.log?
captureLatestLog = true
#How often should a full backup be created if only modified files should be saved? This creates a full backup when x minutes are over and the next backup needs to be done. Once a year is default.
# Default: 525960
# Range: 1 ~ 5259600
fullBackupTimer = 525960
#Experimental setting available, look at 'simplebackups-common-experimental.toml' to help testing
#The max amount of backup files to keep.
# Default: 10
# Range: 1 ~ 32767
backupsToKeep = 10
#The time between two backups in minutes
#5 = each 5 minutes
#60 = each hour
#1440 = each day
# Default: 120
# Range: 1 ~ 32767
timer = 180
#Compression level:
# 0 = no compression (low CPU usage, larger files)
# 9 = maximum compression (high CPU usage, smaller files)
# -1 = default; balances speed and compression (recommended)
# Default: -1
# Range: -1 ~ 9
compressionLevel = -1
#Should message be sent when backup is in the making?
sendMessages = true
#The max size of storage the backup folder. If it takes more storage, old files will be deleted.
#Needs to be written as <number><space><storage type>
#Valid storage types: B, KB, MB, GB, TB
maxDiskSize = "30 GB"
#Used to define the output path.
outputPath = "simplebackups"
#Create backups, even if nobody is online
noPlayerBackups = false
#How many backups should be created after the last player left? Set to 0 to disable.
# Default: 1
# Range: > 0
noPlayerBackupCount = 1
#The time between two backups when no player is online. 0 means the same as the "timer" setting.
# Default: 0
# Range: > 0
noPlayerBackupTimer = 0
#Should sub-directories be generated for each world?
#Keep in mind that all configs above, including backupsToKeep and maxDiskSize, will be calculated for each sub directory.
createSubDirs = true
#Use an internal tick counter instead of the real world time. The value of the timer will be converted to ticks. When the timer is over, the backup will be created.
#Keep in mind that lagging servers will result in larger gaps between two backups, e.g. 10 FPS in average will result in double the time set between backups.
useTickCounter = false
#WARNING This configuration should stay as default if backups are not monitored properly.
[error_handling]
#I/O Errors will be collected and print into the chat. The mod tries to complete the backup with as many files as possible. Otherwise, it will abort after the first error.
collectErrors = true
#If collectErrors is 'false', backups with errors will be deleted immediately to prevent deleting valid backups.
deleteUnfinishedBackup = true
#WARNING Please check your configuration before using permanently.
#The backup system will ignore these paths and files.
[to_ignore]
#All directories that should be excluded from backups
#Format: Enter paths relative to the world directory (e.g., 'logs', 'data/cache')
#All files within these directories will also be excluded
ignored_paths = []
#Specific files that should be excluded from backups
#Format: Enter complete file paths relative to the world directory (e.g., 'level.dat_old', 'stats/player.json')
#Use this for individual files rather than entire directories
ignored_files = []
#Regular expression pattern to exclude matching files from backups
#All files with paths matching this pattern will be skipped
#Example: '.*\.temp$' excludes all files ending with .temp
#Leave empty to disable regex-based file exclusion
ignored_files_regex = ""
[mod_compat]
#Should backup notifications be sent to Discord by using mc2discord? (needs to be installed)
mc2discord = true
#Should only worlds be backed up that are marked as favorite by Cherished Worlds mod?
onlyFavorites = false

16
config/starterkit.json5 Normal file
View File

@ -0,0 +1,16 @@
{
// When multiple starter kits are added via /starterkit add, there are two ways to distribute them. With this enabled, one is chosen at random. When disabled, players can choose one on first join.
"randomizeMultipleKitsToggle": true,
// Whether items that existed in the inventory, such as books added by other mods, should be added back to the inventory after the kit was set. If disabled, they'll be removed. You can still manually set them via the kit.
"addExistingItemsAfterKitSet": false,
// If potion/mob effect functionality should be enabled. This means that when creating a kit via /sk (add/set), it also saves the active effects the player has. And when handing out the starter kits, it adds the effects to new players.
"usePotionEffectsInStarterKit": true,
// If kit names should be formatted. Each word will be capitalized.
"formatKitNames": true,
// The text used above the kit choice screen, or if the mod is not installed in the chat. %s will be replaced with the player's name.
"chooseKitText": "%s, you can choose a starter kit!",
// Whether an announcement should be broadcasted to the server whenever a new player makes a kit choice. 'randomizeMultipleKitsToggle' must be disabled, and there must be at least 2 starter kits available.
"announcePlayerKitChoiceInDedicatedServer": true,
// Whether the starter kit should be re-set after the '/ftbteamislands create' command from FTB Team Islands. Does nothing when it's not installed.
"enableFTBIslandCreateCompatibility": true
}

View File

@ -0,0 +1 @@
Survive longer by defeating your enemies from a distance.

View File

@ -0,0 +1 @@
Worn by many adventurers over the years. A good pair of boots, the ability to defend yourself and enough food for a few days.

View File

@ -0,0 +1 @@
There's no need to punch a tree, use an axe instead!

View File

@ -0,0 +1 @@
Has a good mix of potions, useful in many scenarios.

View File

@ -0,0 +1,42 @@
'head' : '',
'chest' : '',
'legs' : '',
'feet' : '',
'offhand' : '',
0 : '{count:1,id:"minecraft:stone_sword"}',
1 : '{components:{"minecraft:container":[{item:{count:8,id:"minecraft:bread"},slot:0},{item:{count:8,id:"minecraft:apple"},slot:1},{item:{count:4,id:"minecraft:cooked_beef"},slot:2},{item:{count:4,id:"minecraft:carrot"},slot:3}]},count:1,id:"solonion:lunchbag"}',
2 : '{components:{"minecraft:potion_contents":{potion:"minecraft:water"},"thirst:purity":3},count:16,id:"minecraft:potion"}',
3 : '{count:1,id:"minecraft:torch"}',
4 : '',
5 : '',
6 : '',
7 : '',
8 : '{components:{"akashictome:tool_content":[{components:{"akashictome:defined_mod":"solonion"},count:1,id:"solonion:food_book"},{components:{"akashictome:custom_tome_name":{"translate":"item.akashictome.tome"},"akashictome:defined_mod":"silentgear","akashictome:is_morphed":1b,"akashictome:og_display_name":{"translate":"item.silentgear.material_book"},"akashictome:tool_content":[{components:{"akashictome:defined_mod":"solonion"},count:1,id:"solonion:food_book"},{components:{"akashictome:defined_mod":"alexsmobs"},count:1,id:"alexsmobs:animal_dictionary"},{components:{"akashictome:defined_mod":"cosmeticarmoursmod","patchouli:book":"cosmeticarmoursmod:cosmeticarmours_book"},count:1,id:"patchouli:guide_book"},{components:{"akashictome:defined_mod":"parcool"},count:1,id:"parcool:parcool_guide"}],"minecraft:custom_name":{"extra":[" (",{"color":"green","text":"Material Book"},")"],"translate":"item.akashictome.tome"}},count:1,id:"silentgear:material_book"},{components:{"akashictome:defined_mod":"alexsmobs"},count:1,id:"alexsmobs:animal_dictionary"},{components:{"akashictome:defined_mod":"cosmeticarmoursmod","patchouli:book":"cosmeticarmoursmod:cosmeticarmours_book"},count:1,id:"patchouli:guide_book"},{components:{"akashictome:defined_mod":"parcool"},count:1,id:"parcool:parcool_guide"}]},count:1,id:"akashictome:tome"}',
9 : '',
10 : '',
11 : '',
12 : '',
13 : '',
14 : '',
15 : '',
16 : '',
17 : '',
18 : '',
19 : '',
20 : '',
21 : '',
22 : '',
23 : '',
24 : '',
25 : '',
26 : '',
27 : '',
28 : '',
29 : '',
30 : '',
31 : '',
32 : '',
33 : '',
34 : '',
35 : '',
'effects' : 'minecraft:regeneration;lvl:1;duration:6000',

View File

@ -0,0 +1,42 @@
'head' : '{count:1,id:"minecraft:leather_helmet"}',
'chest' : '',
'legs' : '',
'feet' : '{count:1,id:"minecraft:leather_boots"}',
'offhand' : '',
0 : '{count:1,id:"minecraft:bow",components:{"minecraft:enchantments":{levels:{"minecraft:power":1}}}}',
1 : '',
2 : '',
3 : '',
4 : '',
5 : '',
6 : '',
7 : '{count:6,id:"minecraft:baked_potato"}',
8 : '{count:32,id:"minecraft:arrow"}',
9 : '',
10 : '',
11 : '',
12 : '',
13 : '',
14 : '',
15 : '',
16 : '',
17 : '',
18 : '',
19 : '',
20 : '',
21 : '',
22 : '',
23 : '',
24 : '',
25 : '',
26 : '',
27 : '',
28 : '',
29 : '',
30 : '',
31 : '',
32 : '',
33 : '',
34 : '',
35 : '',
'effects' : '',

View File

@ -0,0 +1,42 @@
'head' : '',
'chest' : '',
'legs' : '',
'feet' : '{count:1,id:"minecraft:leather_boots"}',
'offhand' : '{count:1,id:"minecraft:shield"}',
0 : '{count:1,id:"minecraft:wooden_sword"}',
1 : '{count:9,id:"minecraft:bread"}',
2 : '',
3 : '',
4 : '',
5 : '',
6 : '',
7 : '',
8 : '',
9 : '',
10 : '',
11 : '',
12 : '',
13 : '',
14 : '',
15 : '',
16 : '',
17 : '',
18 : '',
19 : '',
20 : '',
21 : '',
22 : '',
23 : '',
24 : '',
25 : '',
26 : '',
27 : '',
28 : '',
29 : '',
30 : '',
31 : '',
32 : '',
33 : '',
34 : '',
35 : '',
'effects' : '',

View File

@ -0,0 +1,42 @@
'head' : '',
'chest' : '',
'legs' : '',
'feet' : '{count:1,id:"minecraft:iron_boots"}',
'offhand' : '{count:4,id:"minecraft:oak_sapling"}',
0 : '{count:1,id:"minecraft:iron_axe",components:{"minecraft:enchantments":{levels:{"minecraft:efficiency":1}}}}',
1 : '',
2 : '',
3 : '',
4 : '',
5 : '',
6 : '',
7 : '',
8 : '{count:8,id:"minecraft:cooked_beef"}',
9 : '',
10 : '',
11 : '',
12 : '',
13 : '',
14 : '',
15 : '',
16 : '',
17 : '',
18 : '',
19 : '',
20 : '',
21 : '',
22 : '',
23 : '',
24 : '',
25 : '',
26 : '',
27 : '',
28 : '',
29 : '',
30 : '',
31 : '',
32 : '',
33 : '',
34 : '',
35 : '',
'effects' : '',

View File

@ -0,0 +1,42 @@
'head' : '',
'chest' : '',
'legs' : '',
'feet' : '{count:1,id:"minecraft:golden_boots"}',
'offhand' : '',
0 : '{count:1,id:"minecraft:stick"}',
1 : '{count:16,id:"minecraft:apple"}',
2 : '',
3 : '{count:1,id:"minecraft:splash_potion",components:{"minecraft:potion_contents":{potion:"minecraft:strong_swiftness"}}}',
4 : '{count:1,id:"minecraft:splash_potion",components:{"minecraft:potion_contents":{potion:"minecraft:strong_healing"}}}',
5 : '',
6 : '{count:1,id:"minecraft:splash_potion",components:{"minecraft:potion_contents":{potion:"minecraft:strong_poison"}}}',
7 : '{count:1,id:"minecraft:splash_potion",components:{"minecraft:potion_contents":{potion:"minecraft:strong_harming"}}}',
8 : '{count:1,id:"minecraft:splash_potion",components:{"minecraft:potion_contents":{potion:"minecraft:strong_harming"}}}',
9 : '',
10 : '',
11 : '',
12 : '',
13 : '',
14 : '',
15 : '',
16 : '',
17 : '',
18 : '',
19 : '',
20 : '',
21 : '',
22 : '',
23 : '',
24 : '',
25 : '',
26 : '',
27 : '',
28 : '',
29 : '',
30 : '',
31 : '',
32 : '',
33 : '',
34 : '',
35 : '',
'effects' : '',

60
config/tectonic.json Normal file
View File

@ -0,0 +1,60 @@
{
"__notice": "Tectonic has a config screen that explains every setting if you go to the in-game mod menu! You can also find config info here -> https://github.com/Apollounknowndev/tectonic/wiki/Config",
"biomes": {
"temperature_multiplier": 1.0,
"temperature_offset": 0.0,
"temperature_scale": 0.23,
"vegetation_multiplier": 1.0,
"vegetation_offset": 0.0,
"vegetation_scale": 0.23
},
"caves": {
"carvers_enabled": true,
"cheese_additive": 0.27,
"cheese_enabled": true,
"depth_cutoff_size": 0.2,
"depth_cutoff_start": 0.2,
"noodle_additive": -0.075,
"noodle_enabled": true,
"ore_fix": true,
"spaghetti_enabled": true
},
"continents": {
"continents_scale": 0.11,
"erosion_scale": 0.23,
"flat_terrain_skew": 0.1,
"jungle_pillars": true,
"ocean_offset": -0.7,
"ridge_scale": 0.25,
"river_ice": false,
"river_lanterns": true,
"rolling_hills": true,
"underground_rivers": true
},
"experimental": {},
"general": {
"mod_enabled": true,
"snow_start_offset": 128
},
"global_terrain": {
"elevation_boost": 0.1,
"lava_tunnels": true,
"max_y": 640,
"min_y": -80,
"ultrasmooth": false,
"vertical_scale": 2.0
},
"islands": {
"enabled": true,
"noise_multiplier": 1.0,
"noise_offset": 0.0,
"noise_scale": 0.1
},
"minor_version": 1,
"oceans": {
"deep_ocean_depth": -0.45,
"monument_offset": -30,
"ocean_depth": -0.22,
"remove_frozen_ocean_ice": false
}
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
// priority: 0
ServerEvents.recipes((event) => {
event.remove({ type: "createsifter:sifting" });
});

View File

@ -1,13 +0,0 @@
ServerEvents.recipes((event) => {
event.shaped(
Item.of('minecraft:chest', 1),
[
'WWW',
'W W',
'WWW'
],
{
W: '#minecraft:planks'
}
)
})

BIN
modpack-scripts.jar Normal file

Binary file not shown.

View File

@ -0,0 +1,13 @@
name = "Advancement Frames"
filename = "advancementframes-1.21-2.2.10-neoforge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/zUBn5hHr/versions/Tr5hm3zL/advancementframes-1.21-2.2.10-neoforge.jar"
hash-format = "sha512"
hash = "b2842d77e1423fd5c844589b003ee0fee7e49b055f5dc9d6b3abea83c39d338d291f8f2576f2d38029d33913e1a284b3b05d80cbc8481e82b595269f6b40b2d8"
[update]
[update.modrinth]
mod-id = "zUBn5hHr"
version = "Tr5hm3zL"

View File

@ -0,0 +1,13 @@
name = "Aeronautics Camera Sync"
filename = "aero_cam_sync-1.3.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/ZGxtWu73/versions/hq6ftJOH/aero_cam_sync-1.3.1.jar"
hash-format = "sha512"
hash = "986889550d5fadc85bba320734b1e58d6c99db2b7664e6802d2cfe6ba3a297f2eb0391768acbf7529776406ca8df679ed5160f14e8fd2db9ef5541c014c91520"
[update]
[update.modrinth]
mod-id = "ZGxtWu73"
version = "hq6ftJOH"

View File

@ -1,13 +0,0 @@
name = "Almost Unified"
filename = "almostunified-neoforge-1.21.1-1.4.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/sdaSaQEz/versions/vvzNMESp/almostunified-neoforge-1.21.1-1.4.1.jar"
hash-format = "sha512"
hash = "cb96a81a3bd4291113655097f66f5b0944b0fcf049bac663b0116b639b0989dbf5701d3ffa191df2735bd9af18bd66bca5e206bd2367b2b2dd143ee989284a81"
[update]
[update.modrinth]
mod-id = "sdaSaQEz"
version = "vvzNMESp"

View File

@ -1,13 +1,13 @@
name = "Analog Audio"
filename = "Analog-Audio-0.1.0-beta.6-hotfix1.jar"
filename = "Analog-Audio-0.1.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/iMAVG2nH/versions/8LlwOXTT/Analog-Audio-0.1.0-beta.6-hotfix1.jar"
url = "https://cdn.modrinth.com/data/iMAVG2nH/versions/UlajPCS1/Analog-Audio-0.1.0.jar"
hash-format = "sha512"
hash = "2e086993ca407e403dbc948091b8f9ab34693456a874cc9f8edebf9215629e7c3c29c932b38e2990f0b30bb31ce12885f9edaa480b70d26aab8783628a5d9027"
hash = "e282c1b9887e61863f04ad6eab8d7e1a8fe0e51cdbe3978197f9b875ca567d247cae7506d9b7e7f3f47170eac5142331459a36b8f045ff8215433f0360dde496"
[update]
[update.modrinth]
mod-id = "iMAVG2nH"
version = "8LlwOXTT"
version = "UlajPCS1"

View File

@ -1,13 +1,13 @@
name = "Apothic Enchanting"
filename = "ApothicEnchanting-1.21.1-1.5.2.jar"
filename = "ApothicEnchanting-1.21.1-1.5.3.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "aad9bb6b4e5ba7ea85af4d143467b99f0ed022fc"
hash = "751276a13db49a5f2202e50715b8864f5ae40cb6"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 7659120
file-id = 8107222
project-id = 1063926

View File

@ -0,0 +1,13 @@
name = "AsyncParticles"
filename = "AsyncParticles-21.1.0b-beta.1+1.21.1.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/c3onkd5k/versions/qmJ9MXgo/AsyncParticles-21.1.0b-beta.1%2B1.21.1.jar"
hash-format = "sha512"
hash = "eeef9f13bf7a38c1df16832f1b9fc8d860e6315a4d1b6bd2565d6bc4d42f885fcde6df67021ef3e09e769cf9beb2e0c932d5e29f9be8a9997c63994932cefa17"
[update]
[update.modrinth]
mod-id = "c3onkd5k"
version = "qmJ9MXgo"

View File

@ -0,0 +1,13 @@
name = "Bamboo Everything"
filename = "bambooeverything-neoforge-21.1.2+mc1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/cpRkny9R/versions/l401evM2/bambooeverything-neoforge-21.1.2%2Bmc1.21.1.jar"
hash-format = "sha512"
hash = "2ad9cf471d6a5b774ea65e1341058ac6c913e4c4d6f66d7bc736af7d7831c088a810bac473cf75fe752057eb40ebfd49b7ab120ad0888c45fe850fed267af01e"
[update]
[update.modrinth]
mod-id = "cpRkny9R"
version = "l401evM2"

View File

@ -1,13 +0,0 @@
name = "Beltborne Lanterns: Accessories Layer"
filename = "bl_accessories_layer-1.2.2-neoforge+1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/geZ7ilkE/versions/217aqMLc/bl_accessories_layer-1.2.2-neoforge%2B1.21.1.jar"
hash-format = "sha512"
hash = "cfee104af6e496689805aa31eb2540df2c2da653cc269217d279a862d441bb60d000f950974a55078f815cc5bced054ed448fa04acf2dc0af964532b579d09ad"
[update]
[update.modrinth]
mod-id = "geZ7ilkE"
version = "217aqMLc"

View File

@ -1,13 +0,0 @@
name = "Beltborne Lanterns"
filename = "beltborne_lanterns-1.2.5-neoforge+1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/NUFDZAKS/versions/6pbCx85r/beltborne_lanterns-1.2.5-neoforge%2B1.21.1.jar"
hash-format = "sha512"
hash = "a540eefcdd340cde918a814c55e6f245f46ded7d7ee3b565a7a62b54cc8e27a073baf6b7a0b6c62b95ea5b4632202370617e18e2d15064e0000f6df296c1a9ba"
[update]
[update.modrinth]
mod-id = "NUFDZAKS"
version = "6pbCx85r"

View File

@ -1,13 +0,0 @@
name = "Better chunk loading[Forge/Fabric]"
filename = "betterchunkloading-1.21-5.4.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "848d47200e760cfa566e476257ff863de30d7f8f"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 6210181
project-id = 899487

View File

@ -1,18 +0,0 @@
name = "Better Clouds"
filename = "better-clouds-1.7.20-alpha+1.21.1-neoforge.rev.4c611d9.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/5srFLIaK/versions/ucwzanPQ/better-clouds-1.7.20-alpha%2B1.21.1-neoforge.rev.4c611d9.jar"
hash-format = "sha512"
hash = "42237971ef5e56cc56db54f61ffa5d52261f1f645bdffb643475069a484eca7c345865056f61323113387c675d7ad965508bf0e56087d88ec0f505d60f2e4bfc"
[update]
[update.modrinth]
mod-id = "5srFLIaK"
version = "ucwzanPQ"
[option]
optional=true
default=true
description="Better clouds"

View File

@ -0,0 +1,13 @@
name = "Brewin' And Chewin'"
filename = "BrewinAndChewin-neoforge-4.4.2+1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/hIu9KJTT/versions/CKLYp96Y/BrewinAndChewin-neoforge-4.4.2%2B1.21.1.jar"
hash-format = "sha512"
hash = "ca6db594cc244307041b9f896956ad7dcba4727c62609a30aef9f913f5513238b7c898ecc39d4599385bdd177dea5c5de3149da34ab086217a307ab3f3e5aa06"
[update]
[update.modrinth]
mod-id = "hIu9KJTT"
version = "CKLYp96Y"

View File

@ -0,0 +1,13 @@
name = "Brutal Bosses - Custom Bosses[Forge/Fabric]"
filename = "brutalbosses-1.21.1-8.6.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "47154ce207ca3bbcfba1bf56c6d2d6a58511a102"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 7662187
project-id = 557999

View File

@ -1,13 +0,0 @@
name = "Building Wands"
filename = "BuildingWands-neoforge-MC1.21.1-3.0.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/XkisZUfp/versions/7RSaftu7/BuildingWands-neoforge-MC1.21.1-3.0.4.jar"
hash-format = "sha512"
hash = "0b475ee827e3869b9c1feacc101e1901c056c11df1eed6d48fdab54f0f2d8d7ad2a6cc9bc141127e035f4f522a5e345916bbcfcf5c1cb9b71c392b7278790990"
[update]
[update.modrinth]
mod-id = "XkisZUfp"
version = "7RSaftu7"

View File

@ -0,0 +1,13 @@
name = "Concurrent Chunk Management Engine (NeoForge)"
filename = "c2me-neoforge-mc1.21.1-0.3.0+alpha.0.93.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/COlSi5iR/versions/KmfiVd28/c2me-neoforge-mc1.21.1-0.3.0%2Balpha.0.93.jar"
hash-format = "sha512"
hash = "7dbb5cabc4669b900c570547fc636ce77b24e08451f4c699db76ec9ed3c805a256323862d7823e7d8c5acd10baa15e83c27dae3384ed5ea765f7e883a41f6045"
[update]
[update.modrinth]
mod-id = "COlSi5iR"
version = "KmfiVd28"

View File

@ -0,0 +1,13 @@
name = "CalcMod: NeoForged"
filename = "calcmod-neoforged-1.4.2+neoforge.1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/7uxk5PIo/versions/M1zFfB1p/calcmod-neoforged-1.4.2%2Bneoforge.1.21.1.jar"
hash-format = "sha512"
hash = "b4451ba2bd9a1ec29a5bea8a57792d7a79a9ada6ec52cb614ef0bed59515fc944376d44a7a7e3f3de1a246eff80aa673ad218a712b7d7837fc52d9c00ff0c595"
[update]
[update.modrinth]
mod-id = "7uxk5PIo"
version = "M1zFfB1p"

View File

@ -1,13 +0,0 @@
name = "Camera Overhaul"
filename = "CameraOverhaul-v2.0.6-neoforge+mc[1.21.0-1.21.1].jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/m0oRwcZx/versions/zTY9SqFy/CameraOverhaul-v2.0.6-neoforge%2Bmc%5B1.21.0-1.21.1%5D.jar"
hash-format = "sha512"
hash = "b193e28a07e807edd86120fde6edadbc0e845d53f7cf8c00e8e660f90f9a8b8673e7fcb2797cb8131add9a9f3632d52ce5b71f93b46cb2b3d4b3dd4ec313fb4a"
[update]
[update.modrinth]
mod-id = "m0oRwcZx"
version = "zTY9SqFy"

13
mods/cc-cbc.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "CC:CBC"
filename = "cc-cbc-v1.1.1-1.21.1-neoforge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/zA9Klldw/versions/naLCoIB4/cc-cbc-v1.1.1-1.21.1-neoforge.jar"
hash-format = "sha512"
hash = "0bb9959fc21c940e307430225bcf8f3878092dbacb073b16f6e47c06057ea5b67bb2ce4a2f9bc8d4acd5784061e7212267c7eeb3b02eaecbded1234b4cc284a5"
[update]
[update.modrinth]
mod-id = "zA9Klldw"
version = "naLCoIB4"

View File

@ -0,0 +1,13 @@
name = "Create: Colorful Catalysts"
filename = "colorful_catalysts-1.3.3-H1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/3ADr1McV/versions/m4g3OOTn/colorful_catalysts-1.3.3-H1.jar"
hash-format = "sha512"
hash = "951443d4035b1d8b1b26826bdca67c23008194507a79320d305fbd82e6a85c6835a12179f2c7b7c04fbb1775718e1e7ed7130f4a56558e50ba079a52e42bf5fc"
[update]
[update.modrinth]
mod-id = "3ADr1McV"
version = "m4g3OOTn"

View File

@ -1,13 +1,13 @@
name = "Colorwheel"
filename = "colorwheel-neoforge-1.2.6+mc1.21.1.jar"
filename = "colorwheel-neoforge-1.2.8+mc1.21.1.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/BzHgFoGz/versions/HOqMxRV9/colorwheel-neoforge-1.2.6%2Bmc1.21.1.jar"
url = "https://cdn.modrinth.com/data/BzHgFoGz/versions/OmizNLia/colorwheel-neoforge-1.2.8%2Bmc1.21.1.jar"
hash-format = "sha512"
hash = "56db620d4c2573ac6415e96f23fe188225d3c461b4d65db64113681986c6a45f118e6c2ea71de6d2eebb0e08a8530cb456ecb038547ecf92759139c286b63818"
hash = "ef1eec8e9347299d59465e935221cfbc3df8f63d4f76792016ef36ae5d779695fe5bf98c0f339e9013d1362341d53ae68bd61177c8d4703224492e097490bf76"
[update]
[update.modrinth]
mod-id = "BzHgFoGz"
version = "HOqMxRV9"
version = "OmizNLia"

View File

@ -1,13 +0,0 @@
name = "Cool Rain Reforged"
filename = "coolrain-1.21.1-NeoForge-1.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/IgftU6Mn/versions/8UlyMRh2/coolrain-1.21.1-NeoForge-1.0.1.jar"
hash-format = "sha512"
hash = "bfd5e797ec4584db7df08671cb5510b1ca41bf97df8302dc0c4344978c4453b4000c68d7f1fe8b0a09003528f04186a767f5e573918ab14a57c01adb658b8580"
[update]
[update.modrinth]
mod-id = "IgftU6Mn"
version = "8UlyMRh2"

13
mods/coolrain.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Cool Rain"
filename = "coolrain-1.4.0-1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/iDyqnQLT/versions/i2dHlstR/coolrain-1.4.0-1.21.1.jar"
hash-format = "sha512"
hash = "b633504f970a4170622d8f29904ca0a26eae3daa64472561922f93514fdb08bb6a98ffe99cdef7590daa8b11d99cf397f7138fb8ef218cdd82beba4b186b9854"
[update]
[update.modrinth]
mod-id = "iDyqnQLT"
version = "i2dHlstR"

13
mods/corn-delight.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Corn Delight"
filename = "corn_delight-1.2.10-1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/uxLAKWU8/versions/JtT5ioNz/corn_delight-1.2.10-1.21.1.jar"
hash-format = "sha512"
hash = "75a5a95874b218942820ffc1e17663ff2e8053916233e4975c92457271cf603a80228798cb1b9d1400e1db175031ef92695fa1de9e66497cb8bb5d32b6cb03a6"
[update]
[update.modrinth]
mod-id = "uxLAKWU8"
version = "JtT5ioNz"

View File

@ -1,13 +0,0 @@
name = "Corpse x Curios API Compat"
filename = "corpsecurioscompat-1.21.1-NeoForge-4.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/pJGcKPh1/versions/Ix4uAd2i/corpsecurioscompat-1.21.1-NeoForge-4.0.1.jar"
hash-format = "sha512"
hash = "3a75b28b4bf25d775c399c8b5eff1f186020957332f3698d4e313cd0c0785c8b5814ca7fd7194e8b938e276073bab99e8d22aa2c5c10ca78763945db825059fe"
[update]
[update.modrinth]
mod-id = "pJGcKPh1"
version = "Ix4uAd2i"

View File

@ -1,13 +0,0 @@
name = "Corpse"
filename = "corpse-neoforge-1.21.1-1.1.13.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/WrpuIfhw/versions/Zwf8nv8y/corpse-neoforge-1.21.1-1.1.13.jar"
hash-format = "sha512"
hash = "473aafd82008c1e041e3b4a5a177507d555c8bc9dd1f121f252f1e81bc0c69c79a91cb64be0df343babcb3d4db76efbaa7aa2adaeaae29337808a368bc290ad0"
[update]
[update.modrinth]
mod-id = "WrpuIfhw"
version = "Zwf8nv8y"

View File

@ -0,0 +1,13 @@
name = "Crash Assistant"
filename = "CrashAssistant-neoforge-1.20.6-1.21.4-1.11.9.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/ix1qq8Ux/versions/APbTyOXD/CrashAssistant-neoforge-1.20.6-1.21.4-1.11.9.jar"
hash-format = "sha512"
hash = "98ebb5428c704b72008ccdc87104a97a68a0dcef892b3c3dc43a3fde925a3bb34737d48fb453561cb734bf032f5bf59d77d67a51844d1c73f54391104ae9b312"
[update]
[update.modrinth]
mod-id = "ix1qq8Ux"
version = "APbTyOXD"

View File

@ -0,0 +1,13 @@
name = "Crash Utilities"
filename = "crashutilities-9.0.4.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "5117a448b0611f60fbe743a4a631e431dd31740e"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 5993450
project-id = 371813

View File

@ -1,13 +1,13 @@
name = "Climbable Ropes for Create Aeronautics"
filename = "climbable_ropes-1.9.0.jar"
filename = "climbable_ropes-2.0.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/jImqv1M5/versions/TRzJg2Zx/climbable_ropes-1.9.0.jar"
url = "https://cdn.modrinth.com/data/jImqv1M5/versions/fuTkkHyC/climbable_ropes-2.0.0.jar"
hash-format = "sha512"
hash = "8da82323d3e6e052715862e7b73d7064de5ee0a0b51aaa3bbe5dbe06e008316924d463b1cb257b35c76cb1cc28fee9a9099cf549a670666fdfe6a0399391afa2"
hash = "d851799161affb818fc379babb8cea1a14dc8898bbb7dc6905cf2c9d729daf3fca8bbc580a9087ce551c414b23b7f836a0984bf78c2e233c3b689c4f90f964c8"
[update]
[update.modrinth]
mod-id = "jImqv1M5"
version = "TRzJg2Zx"
version = "fuTkkHyC"

View File

@ -1,13 +1,13 @@
name = "Create: Connected"
filename = "create_connected-1.1.16-mc1.21.1.jar"
filename = "create_connected-1.2.0-mc1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Vg5TIO6d/versions/EHyCRpCV/create_connected-1.1.16-mc1.21.1.jar"
url = "https://cdn.modrinth.com/data/Vg5TIO6d/versions/tSy3IGxT/create_connected-1.2.0-mc1.21.1.jar"
hash-format = "sha512"
hash = "75feee95543d8b4e077ff40d5abd39a7a14035c1ebce7cfa4875df909de77c52137217a5de49a4ef5127a7e9c615232e15b9299d49cb56f08e4128dcfc07b94e"
hash = "c1666d531d4535e94a950f8b85dc31ebe1b9b4be0be12b18eeae8e3a4de5163416f898f21ce939f6cbbf8439749aaa7e270697fe6295c0e207f8a831999f3eea"
[update]
[update.modrinth]
mod-id = "Vg5TIO6d"
version = "EHyCRpCV"
version = "tSy3IGxT"

View File

@ -0,0 +1,13 @@
name = "Create Deep Seas"
filename = "create_submarine-2.0.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/mva5q4qZ/versions/vt1MWc6K/create_submarine-2.0.3.jar"
hash-format = "sha512"
hash = "ff8df5428ef298b5f2a087102d2e5ffad64a941d24c85568124064093adcb8400625633e35de0491b793bad39c80ce591d2f4fa1f13350aa5c73d8bbe3181212"
[update]
[update.modrinth]
mod-id = "mva5q4qZ"
version = "vt1MWc6K"

View File

@ -1,13 +1,13 @@
name = "Create: Diesel Generators"
filename = "createdieselgenerators-1.21.1-1.3.11.jar"
filename = "createdieselgenerators-1.21.1-1.3.12.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/ZM3tt6p1/versions/uxgzKkcD/createdieselgenerators-1.21.1-1.3.11.jar"
url = "https://cdn.modrinth.com/data/ZM3tt6p1/versions/3PddTDD8/createdieselgenerators-1.21.1-1.3.12.jar"
hash-format = "sha512"
hash = "f17dab936aa29a8a3583e2813a995ed080f28d9955f1644d2888d9b40a9d43e7224ae024b2161698ca6bf94dfbf026db74d688baf8ecda5479e120d36d14efed"
hash = "3e15e80ed69d3367fedc4b3a572d383ad3cf67909f0ce578fefaa6d1fe19d1f049a6be4e9645dfd6a8008b62fe41d295a3051b8876310d433d0cb66141d73bd6"
[update]
[update.modrinth]
mod-id = "ZM3tt6p1"
version = "uxgzKkcD"
version = "3PddTDD8"

View File

@ -0,0 +1,13 @@
name = "Create: Dynamic Lights"
filename = "create-dyn-light-forge-1.21.1-2.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/evMQRxqV/versions/ltFc9AWJ/create-dyn-light-forge-1.21.1-2.0.1.jar"
hash-format = "sha512"
hash = "253b04afbfdf4863b1f4bcafa0cf5ba806c82faf81497e6b69833d4f4edefda5f32f10a8bc3f70e6ea5e46fd69c545ec26d321cbda8077846cfaeae584d2ded1"
[update]
[update.modrinth]
mod-id = "evMQRxqV"
version = "ltFc9AWJ"

View File

@ -1,13 +1,13 @@
name = "Create Encased"
filename = "Create Encased-1.21.1-1.8-ht2.jar"
filename = "Create Encased-1.21.1-1.8.1-ht1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/hSSqdyU1/versions/sjCAxK2s/Create%20Encased-1.21.1-1.8-ht2.jar"
url = "https://cdn.modrinth.com/data/hSSqdyU1/versions/3sUW27Ho/Create%20Encased-1.21.1-1.8.1-ht1.jar"
hash-format = "sha512"
hash = "5a390e43fd0ef0cedf277ca985199bcd7dd3f83ce3a132774436808191ef24611541c3349ddbea7c82a5a3cde11ed87c72173a46498c7555947436b51894f24e"
hash = "9c4927dd65546a9b0700dc8547a71115dec56d32edb0c5f2fe38440408db33afa00313eb4d02ad3332d3fe269aae9e485bf3eda3a602821cb0a41ebeec16283a"
[update]
[update.modrinth]
mod-id = "hSSqdyU1"
version = "sjCAxK2s"
version = "3sUW27Ho"

View File

@ -0,0 +1,13 @@
name = "Create: Let The Adventure Begin"
filename = "create_ltab-4.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/fUa6OtBG/versions/oPEFIAt3/create_ltab-4.0.1.jar"
hash-format = "sha512"
hash = "ff5ab8d72ad0cb1adb00daad7c0d37e7ae03c4d0e2f3d11b3ed78aa62baa8334fa2fbcf4bc7719ad76f67ae4c74a2254537c5d3a0d9e2f3e8b15c01a9c9d0265"
[update]
[update.modrinth]
mod-id = "fUa6OtBG"
version = "oPEFIAt3"

View File

@ -1,13 +1,13 @@
name = "Create: Power Loader"
filename = "create_power_loader-2.0.4-mc1.21.1.jar"
filename = "create_power_loader-2.0.5-mc1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/wPQ6GgFE/versions/MX6Eqw1t/create_power_loader-2.0.4-mc1.21.1.jar"
url = "https://cdn.modrinth.com/data/wPQ6GgFE/versions/3Y4r0ItR/create_power_loader-2.0.5-mc1.21.1.jar"
hash-format = "sha512"
hash = "599c0b65ec63202d23b3c61965b3e3267e7c31eeeb094b55c1c5bbf171002f740c3cbf54e8d6097537fd049f0a6bd7c54d534dbfcc336353d9f72e47e8a241a8"
hash = "e4f06cfe79eafa538a2edf45d0b173051475f2a20d6c2352668f6980f4433078f2cdd8ffdd047984c30dfd903142ea37eadde48ff71a3892f18154662f20eb57"
[update]
[update.modrinth]
mod-id = "wPQ6GgFE"
version = "MX6Eqw1t"
version = "3Y4r0ItR"

View File

@ -0,0 +1,13 @@
name = "Create: Prismatic Shine"
filename = "createprism-1.2.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/udEtt0b2/versions/gKqw2akx/createprism-1.2.2.jar"
hash-format = "sha512"
hash = "a86c44ac55e562687c798245175858a9921db928cf3b56d7f72e8917fe52448b382bb957f54c2bc05a72eaebaf434c46be7b61386a65cec58f5eb39f94f650e4"
[update]
[update.modrinth]
mod-id = "udEtt0b2"
version = "gKqw2akx"

View File

@ -1,13 +1,13 @@
name = "Create: Radars"
filename = "create_radar-0.4.8-1.21.1.jar"
filename = "create_radar-0.4.9.2-1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/BLu2Yqfq/versions/3MbtX7qD/create_radar-0.4.8-1.21.1.jar"
url = "https://cdn.modrinth.com/data/BLu2Yqfq/versions/vz0tPRci/create_radar-0.4.9.2-1.21.1.jar"
hash-format = "sha512"
hash = "d739365d6d46cd7ced5a4731b2c424c1d0585ad5201b7ca7b5be488c7edf3ac51b67091bb61c121e4836b10959cf5733c017fa3a979ef89d0f8a872f4eca8441"
hash = "ce61bd7d38ac3176d0d78def7f795001baa16b893b1607d4f6621a4b9053923cba90e474547d6e4f831d33162dfa97b418505013d5d8ce56b51087289cf852ea"
[update]
[update.modrinth]
mod-id = "BLu2Yqfq"
version = "3MbtX7qD"
version = "vz0tPRci"

View File

@ -0,0 +1,13 @@
name = "Create: Train Track Rail Grinding"
filename = "createrailgrinding-1.1.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/ix2S0LbR/versions/BmJzz9l6/createrailgrinding-1.1.2.jar"
hash-format = "sha512"
hash = "995d3bce94bc08c469cd76ec592dd0de8dc6922eb2f47bdde15027ab93719ab7d0086729ed84329ee3a797941da4a1698159809e4005d6a595123b79d08a08b3"
[update]
[update.modrinth]
mod-id = "ix2S0LbR"
version = "BmJzz9l6"

View File

@ -0,0 +1,13 @@
name = "Create Sable Dynamic Lights"
filename = "create-dyn-light-2.3.1-sodium-sable.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/eIsyUZG3/versions/sKw2ERw2/create-dyn-light-2.3.1-sodium-sable.jar"
hash-format = "sha512"
hash = "3df01541b913b596d175f8504412ad64d0252d8551a8f68f5481e921365ce5e5e5285a1c21e21adaa014c8b63ab085ae5ae6eb2cb04f76c0d7dbc34d8f58a668"
[update]
[update.modrinth]
mod-id = "eIsyUZG3"
version = "sKw2ERw2"

View File

@ -1,13 +0,0 @@
name = "Create/Sable LambDynamicLights"
filename = "Create_Sable_LambDynamicLights_2.4.1.jar"
side = "client"
[download]
hash-format = "sha1"
hash = "dfe9e97a36415e752e3888909d081e092a3fd02a"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 8017496
project-id = 1529865

View File

@ -1,13 +1,13 @@
name = "CreativeCore"
filename = "CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar"
filename = "CreativeCore_NEOFORGE_v2.13.39_mc1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/OsZiaDHq/versions/ObUu8hxJ/CreativeCore_NEOFORGE_v2.13.38_mc1.21.1.jar"
url = "https://cdn.modrinth.com/data/OsZiaDHq/versions/vp5wWD4w/CreativeCore_NEOFORGE_v2.13.39_mc1.21.1.jar"
hash-format = "sha512"
hash = "33ecac767a2ff2bcec96a0a1d2126f2344a82b59b7b4981695e5e2347c465f5c2004e9386a33c84ec0143d36dde50efc0afe7aa262b9a6b927910cdea064c428"
hash = "84028ded75bb832dc70b0590e47e4785b9c0e95d7ee839825192954980caf8449bf9943665af9b5f007cec9ea454074c5dd632e3b4a20a7399740b1f1e4d3c44"
[update]
[update.modrinth]
mod-id = "OsZiaDHq"
version = "ObUu8hxJ"
version = "vp5wWD4w"

View File

@ -1,13 +1,13 @@
name = "Cristel Lib"
filename = "cristellib-neoforge-1.21.1-3.0.3.jar"
filename = "cristellib-neoforge-1.21.1-3.1.5.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/cl223EMc/versions/JiCAbUWP/cristellib-neoforge-1.21.1-3.0.3.jar"
url = "https://cdn.modrinth.com/data/cl223EMc/versions/JbGjwnV6/cristellib-neoforge-1.21.1-3.1.5.jar"
hash-format = "sha512"
hash = "b1408d22adeb6d113ddaba0c5d1f24aa5193d565f4f94dae6b81867f17859f2204c438d26977625aaed614c58fbf08860195154a179c9fb62798d2d629a07877"
hash = "34ff78dc84dcac723d5a08a49b4c92a93820afc3b59dda13724a2ca29b97ea1c8315f50ae8793de9598ad5ddf3a8e5fdb329e22642051d8a3dd271fad472dd93"
[update]
[update.modrinth]
mod-id = "cl223EMc"
version = "JiCAbUWP"
version = "JbGjwnV6"

View File

@ -0,0 +1,13 @@
name = "ChoiceTheorem's Overhauled Village"
filename = "[Neoforge]ctov-3.6.3.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/fgmhI8kH/versions/ztzRUnQ7/%5BNeoforge%5Dctov-3.6.3.jar"
hash-format = "sha512"
hash = "174125e619f935ca016efaf7d6794edc57fae39ca02295ce63618ae2b286535e4da2084fd7f0ff9506c32c0ea35ceb68659bd646f65e6fbadfdb8fda299dc832"
[update]
[update.modrinth]
mod-id = "fgmhI8kH"
version = "ztzRUnQ7"

View File

@ -1,13 +1,13 @@
name = "Customizable Player Models"
filename = "CustomPlayerModels-1.21-0.6.25a.jar"
filename = "CustomPlayerModels-1.21-0.6.26a.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/h1E7sQNL/versions/P9MI3qCj/CustomPlayerModels-1.21-0.6.25a.jar"
url = "https://cdn.modrinth.com/data/h1E7sQNL/versions/WTq2BBDV/CustomPlayerModels-1.21-0.6.26a.jar"
hash-format = "sha512"
hash = "14e1495c9713263c28ca5d1466910b0196e8304b8901e66e558bb9bd5d6ac3023f6a62921206d10377346945d1813b48d48f3255ad01f8fd624176f34b7460af"
hash = "181e7d9cd2892ec791658383ae8b6a96f5afe89c4726c764342ff6623ebcad3a3880e329fab9a1e7642ccd08c8f6398ef64195783090c667bbc41137218474d1"
[update]
[update.modrinth]
mod-id = "h1E7sQNL"
version = "P9MI3qCj"
version = "WTq2BBDV"

View File

@ -1,13 +0,0 @@
name = "Dawn of Time"
filename = "dawnoftimebuilder-neoforge-1.21.1-1.6.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/RgWXq0La/versions/fo9df0lp/dawnoftimebuilder-neoforge-1.21.1-1.6.6.jar"
hash-format = "sha512"
hash = "8e516ed24a8be8982bd0dd7ac1bb0eba7c56768cc525ccd9842701467b3acbc6ae1b5a848b86bb6534f83afc038cf89636747c46db6516d1db0773decc98252f"
[update]
[update.modrinth]
mod-id = "RgWXq0La"
version = "fo9df0lp"

View File

@ -0,0 +1,13 @@
name = "Dismount Entity"
filename = "dismountentity-1.21.1-3.6.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/H7N61Wcl/versions/PVx8sPK6/dismountentity-1.21.1-3.6.jar"
hash-format = "sha512"
hash = "390c03a2ce2644abfa95645b9395cd472ae32ead35f206ce763b32ab21691f9fb090ab8c3edc4a522ebbdbb450b27b8987e658ac8b76d464f8a687529467cc98"
[update]
[update.modrinth]
mod-id = "H7N61Wcl"
version = "PVx8sPK6"

View File

@ -0,0 +1,13 @@
name = "Do a Barrel Roll"
filename = "do_a_barrel_roll-neoforge-3.7.3+1.21.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/6FtRfnLg/versions/Zj604q5O/do_a_barrel_roll-neoforge-3.7.3%2B1.21.jar"
hash-format = "sha512"
hash = "dc4a76eacc44b17c444368fdf012c5b06cd9f88463f562cc1d275e2b4e8e15b5f141373fc65de9b56167355d7a406b1dbee691b6cf20a4026b61faadb1d93c17"
[update]
[update.modrinth]
mod-id = "6FtRfnLg"
version = "Zj604q5O"

View File

@ -1,13 +1,13 @@
name = "Drive-By-Wire With Sable"
filename = "drivebywire-0.2.8.jar"
filename = "drivebywire-0.2.9.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "672b180c809ced7b08c1e076d683058838818356"
hash = "73bb355605640b506b7eb67ef5e4bb0053fc16dd"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 8060911
file-id = 8101676
project-id = 1520378

View File

@ -1,13 +0,0 @@
name = "Dynamic View and Simulation Distances"
filename = "dynview-1.21-4.0.jar"
side = "server"
[download]
hash-format = "sha1"
hash = "8fa1d09a85cab699b4473dba000f383f957529df"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 5570957
project-id = 366140

View File

@ -1,13 +0,0 @@
name = "Echo Chest"
filename = "EchoChest-v21.1.1-1.21.1-NeoForge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/m3pkVbY8/versions/S5sNyRsY/EchoChest-v21.1.1-1.21.1-NeoForge.jar"
hash-format = "sha512"
hash = "7ccc61351d06ea353b3adfc8b0ab15107cc272508d3d17ce07dd665836da9bda66782aabcd2784bef07e75875ec9664dbd0c60be5b00e67a5190539b9a6fd052"
[update]
[update.modrinth]
mod-id = "m3pkVbY8"
version = "S5sNyRsY"

13
mods/ecologics.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Ecologics"
filename = "ecologics-1.21.1-2.3.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/NCKpPR0Z/versions/ml3dpcRE/ecologics-1.21.1-2.3.6.jar"
hash-format = "sha512"
hash = "2531acfb397d3d2a30a9fff0ae882f3b5c3c6801e766f565bbc23302b02317ed8911147b8a31e8605316c20d572bbb9f34227eb4b0c4e768589c08a27d123126"
[update]
[update.modrinth]
mod-id = "NCKpPR0Z"
version = "ml3dpcRE"

13
mods/elytra-slot.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Elytra Slot"
filename = "elytraslot-neoforge-9.0.2+1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/mSQF1NpT/versions/RX6A02W1/elytraslot-neoforge-9.0.2%2B1.21.1.jar"
hash-format = "sha512"
hash = "257af1e8de11634c561e617ac64ce2c452aebd86bd0a6ba2c4d164cee9746a30c093aa5e913d553b34ae4c235d5b17b40e5f95db18f2fea8f6e6361bd405d819"
[update]
[update.modrinth]
mod-id = "mSQF1NpT"
version = "RX6A02W1"

View File

@ -0,0 +1,13 @@
name = "EnhancedVisuals"
filename = "EnhancedVisuals_NEOFORGE_v1.8.28_mc1.21.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/KjL0jE2w/versions/n5jo1niI/EnhancedVisuals_NEOFORGE_v1.8.28_mc1.21.1.jar"
hash-format = "sha512"
hash = "7b01c9ebc19ccfdf8b3ddff604c172ec9106541261df396fd74cbbe9fff3a5466f34da98dfcde493001a4bf6174764df9d7e68b67ad3c0b312bfed2f2940c844"
[update]
[update.modrinth]
mod-id = "KjL0jE2w"
version = "n5jo1niI"

View File

@ -0,0 +1,13 @@
name = "Explorer's Compass"
filename = "ExplorersCompass-1.21.1-3.4.0-neoforge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/RV1qfVQ8/versions/hIJ2Ev1Q/ExplorersCompass-1.21.1-3.4.0-neoforge.jar"
hash-format = "sha512"
hash = "a1b2e385aaacb547763441fc23e9a33a0b1d67bd32094cd605ded3fbdd1c7a0e5fc4520fdfa090c29d2d3384b685e3ead91b32d20030e45632c94145ee3ec668"
[update]
[update.modrinth]
mod-id = "RV1qfVQ8"
version = "hIJ2Ev1Q"

View File

@ -0,0 +1,13 @@
name = "Explosive Enhancement"
filename = "explosive-enhancement-1.3.2-1.21-1.21.1.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/OSQ8mw2r/versions/LEeJnb8j/explosive-enhancement-1.3.2-1.21-1.21.1.jar"
hash-format = "sha512"
hash = "57692e93c1c8b331884c63e213e3dac5cb19ce2f3bf818f6db1c2cbcdff1d1b8a5ea107f01c6bca79882962df6cf8332a96c5e1adda864345371faff7a6d747a"
[update]
[update.modrinth]
mod-id = "OSQ8mw2r"
version = "LEeJnb8j"

View File

@ -1,13 +0,0 @@
name = "Exposure: Polaroid"
filename = "exposure_polaroid-neoforge-1.21.1-1.1.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/WEWiqYkW/versions/lNMKoZrI/exposure_polaroid-neoforge-1.21.1-1.1.4.jar"
hash-format = "sha512"
hash = "f53a59729dfb0c78347ec2b2bd030cb23f038cc8b23c56b3cd9f4704ab4b6a54e82a5a348e501e5d0fd47387b68bbccd641becff9d5db9b0b9b6f84da6ca38a3"
[update]
[update.modrinth]
mod-id = "WEWiqYkW"
version = "lNMKoZrI"

View File

@ -1,13 +0,0 @@
name = "Exposure"
filename = "exposure-neoforge-1.21.1-1.9.16.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/hB899VmG/versions/OJ3DFzQc/exposure-neoforge-1.21.1-1.9.16.jar"
hash-format = "sha512"
hash = "8c72cb320cde5aa13af31329d0c27000e16e451ccedba6b72da26d12ed28f61054414b2f914cc7e78954fe770ba42cdd5d81388421ac3d973cf7196734aaa0fc"
[update]
[update.modrinth]
mod-id = "hB899VmG"
version = "OJ3DFzQc"

13
mods/ez-actions.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "EZ Actions"
filename = "ezactions-neoforge-1.21.1-2.0.3.5.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/gJiy6dk4/versions/z7npcqAM/ezactions-neoforge-1.21.1-2.0.3.5.jar"
hash-format = "sha512"
hash = "669ba403fe827463b8507853acba2c2c17b044cde754a5565c03d088b561ed10ebc74b76a5987c6c1143d57c0a1b7d721e6b7394829cde18dcc5946fe425c6f3"
[update]
[update.modrinth]
mod-id = "gJiy6dk4"
version = "z7npcqAM"

View File

@ -1,13 +0,0 @@
name = "Falling Leaves (NeoForge/Forge)"
filename = "fallingleaves-1.21.1-2.5.1.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/2JAUNCL4/versions/PVzaPLSv/fallingleaves-1.21.1-2.5.1.jar"
hash-format = "sha512"
hash = "9cc6ec387bce1a68f07b08bf1a2a65dc49ad409070f8cf58147d3cdbb9b82300d4a7184e01cf58a82886fb57156e6875b2cf7c4abb15335f8fd15be1de58400f"
[update]
[update.modrinth]
mod-id = "2JAUNCL4"
version = "PVzaPLSv"

13
mods/fastfurnace.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "FastFurnace"
filename = "FastFurnace-1.21.1-9.0.1.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "acdcdc7c61b49b3b04490fce9843dcf8b531dfc3"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 6751551
project-id = 299540

Some files were not shown because too many files have changed in this diff Show More