Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 30413c231a | |||
| 7843367627 | |||
| 4041e58c68 | |||
| 8942065ac8 | |||
| 76c5eac7af | |||
| a9fcedd1d1 | |||
| a0f70abcc3 | |||
| a3fe337571 | |||
| ffc450a3c7 | |||
| 0a3b19f405 | |||
| 19c1d5e3c4 | |||
| 665be27643 | |||
| 2e2cc74f13 | |||
| b3d77bb68b | |||
| 681637a6f7 | |||
| 59f952a651 | |||
| 47d9d9f4b7 | |||
| 137a148ad0 | |||
| ed797467c3 | |||
| e3ffcec7ce | |||
| 56cb513c43 | |||
| a7e1956915 | |||
| 2201199a9b | |||
| 542bb918ce | |||
| 744006e695 | |||
| a983b098f0 | |||
| 5cfc01a795 | |||
| deba073339 | |||
| c1c44d75c6 | |||
| 4795a0b3c0 | |||
| 164d191371 | |||
| 0569562319 | |||
| 55c86cb25e | |||
| 05f0e59efd | |||
| ff38f396aa | |||
| 1cf4dbe5d4 |
@ -1,18 +0,0 @@
|
|||||||
#Config to adjust general mod settings
|
|
||||||
[General]
|
|
||||||
#Enables the debug mode. Only enable it if needed.
|
|
||||||
enableDebugMode = false
|
|
||||||
|
|
||||||
[Core]
|
|
||||||
#Enables initial cooldown on peripheral initialization
|
|
||||||
isInitialCooldownEnabled = true
|
|
||||||
#Determinates initial cooldown sensitive level, values lower then this value will not trigger initial cooldown
|
|
||||||
# Default: 6000
|
|
||||||
# Range: > 0
|
|
||||||
initialCooldownSensitiveLevel = 6000
|
|
||||||
|
|
||||||
[Unsafe]
|
|
||||||
#By setting this value to true, I understand all operations below are danger to my adventure, and if they caused unexpected behavior in my world, I will not consider it as AP's liability
|
|
||||||
enableUnsafe = false
|
|
||||||
#Ignore turtle peripheral item's NBT when equipping. **YOU WILL LOSE ALL NBT ON THE ITEM**
|
|
||||||
ignoreTurtlePeripheralItemNBT = false
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
#Config for metaphysics
|
|
||||||
[Metaphysics]
|
|
||||||
#Defines energy to fuel rate
|
|
||||||
# Default: 575
|
|
||||||
# Range: > 575
|
|
||||||
energyToFuelRate = 575
|
|
||||||
enableWeakAutomataCore = true
|
|
||||||
enableEndAutomataCore = true
|
|
||||||
enableHusbandryAutomataCore = true
|
|
||||||
#Defines max warp point stored in warp core. Mostly need to not allow NBT overflow error
|
|
||||||
# Default: 64
|
|
||||||
# Range: > 1
|
|
||||||
endAutomataCoreWarpPointLimit = 64
|
|
||||||
#Chance that overpowered automata will break after rotation cycle
|
|
||||||
# Default: 0.002
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
overpoweredAutomataBreakChance = 0.002
|
|
||||||
# Default: 2
|
|
||||||
# Range: 1 ~ 64
|
|
||||||
tier1AutomataCoreInteractionRadius = 2
|
|
||||||
# Default: 2
|
|
||||||
# Range: 1 ~ 32
|
|
||||||
tier1AutomataCoreMaxFuelConsumptionRate = 2
|
|
||||||
# Default: 4
|
|
||||||
# Range: 1 ~ 64
|
|
||||||
tier2AutomataCoreInteractionRadius = 4
|
|
||||||
# Default: 3
|
|
||||||
# Range: 1 ~ 32
|
|
||||||
tier2AutomataCoreMaxFuelConsumptionRate = 3
|
|
||||||
# Default: 4
|
|
||||||
# Range: 1 ~ 64
|
|
||||||
overpoweredTier1AutomataCoreInteractionRadius = 4
|
|
||||||
# Default: 3
|
|
||||||
# Range: 1 ~ 32
|
|
||||||
overpoweredTier1AutomataCoreMaxFuelConsumptionRate = 3
|
|
||||||
# Default: 6
|
|
||||||
# Range: 1 ~ 64
|
|
||||||
overpoweredTier2AutomataCoreInteractionRadius = 6
|
|
||||||
# Default: 4
|
|
||||||
# Range: 1 ~ 32
|
|
||||||
overpoweredTier2AutomataCoreMaxFuelConsumptionRate = 4
|
|
||||||
@ -1,217 +0,0 @@
|
|||||||
#Peripherals config
|
|
||||||
[Peripherals]
|
|
||||||
|
|
||||||
[Peripherals.Player_Detector]
|
|
||||||
#Enable the Player Detector or not.
|
|
||||||
enablePlayerDetector = true
|
|
||||||
#The max range of the player detector functions. If anyone use a higher range, the detector will use this max range. -1 for unlimited
|
|
||||||
# Default: -1
|
|
||||||
# Range: > -1
|
|
||||||
playerDetMaxRange = -1
|
|
||||||
#Activates the "getPlayerPos" function of the Player Detector
|
|
||||||
enablePlayerPosFunction = true
|
|
||||||
#Returns a play in any function even when they are in spectator
|
|
||||||
showSpectators = true
|
|
||||||
#Adds more information to `getPlayerPos` of the Player Detector. Like rotation and dimension
|
|
||||||
morePlayerInformation = true
|
|
||||||
#If true, the player detector can observe players which aren't in the same dimension as the detector itself. `playerDetMaxRange` needs to be infinite(-1) for it to work.
|
|
||||||
chatBoxMultiDimensional = true
|
|
||||||
#If true, add random error to `getPlayerPos` player position that varies based on how far the player is from the detector. Prevents getting the exact position of players far from the detector.
|
|
||||||
enablePlayerPosRandomError = false
|
|
||||||
#The maximum amount of error (in blocks) that can be applied to each axis of the player's position.
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 0
|
|
||||||
playerPosRandomErrorAmount = 1000
|
|
||||||
#If random error is enabled: this is the maximum range at which an exact player position is returned, before random error starts to be applied.
|
|
||||||
# Default: 100
|
|
||||||
# Range: > 0
|
|
||||||
playerPosPreciseMaxRange = 100
|
|
||||||
|
|
||||||
[Peripherals.Energy_Detector]
|
|
||||||
#Enable the Energy Detector or not.
|
|
||||||
enableEnergyDetector = true
|
|
||||||
#Defines the maximum energy flow of the energy detector.
|
|
||||||
# Default: 2147483647
|
|
||||||
# Range: > 1
|
|
||||||
energyDetectorMaxFlow = 2147483647
|
|
||||||
|
|
||||||
[Peripherals.NBT_Storage]
|
|
||||||
#Enable the nbt storage block or not
|
|
||||||
enableNBTStorage = true
|
|
||||||
#Defines max nbt string length that can be stored in nbt storage
|
|
||||||
# Default: 1048576
|
|
||||||
# Range: > 0
|
|
||||||
nbtStorageMaxSize = 1048576
|
|
||||||
|
|
||||||
[Peripherals.Chunky_Turtle]
|
|
||||||
#Enable the Chunky Turtle or not.
|
|
||||||
enableChunkyTurtle = true
|
|
||||||
#Time in seconds, while loaded chunk can be consider as valid without touch
|
|
||||||
# Default: 600
|
|
||||||
# Range: > 60
|
|
||||||
chunkLoadValidTime = 600
|
|
||||||
#Radius in chunks a single chunky turtle will load. The default value (0) only loads the chunk the turtle is in, 1 would also load the 8 surrounding chunks (9 in total) and so on
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 16
|
|
||||||
chunkyTurtleRadius = 0
|
|
||||||
|
|
||||||
[Peripherals.Chat_Box]
|
|
||||||
#Enable the Chat Box or not.
|
|
||||||
enableChatBox = true
|
|
||||||
#Defines default chatbox prefix
|
|
||||||
defaultChatBoxPrefix = "AP"
|
|
||||||
#Defines the maximal range of the chat box in blocks. -1 for infinite. If the range is not -1, players in other dimensions won't able to receive messages
|
|
||||||
# Default: -1
|
|
||||||
# Range: -1 ~ 30000000
|
|
||||||
chatBoxMaxRange = -1
|
|
||||||
#Defines the maximal number of characters in a message. Depending on the modpack and server, too large messages can't unexpectedly disconnect players
|
|
||||||
# Default: 1024
|
|
||||||
# Range: 0 ~ 8192
|
|
||||||
chatBoxMessageSize = 1024
|
|
||||||
#If true, the chat box is able to send messages to other dimensions than its own
|
|
||||||
chatBoxMultiDimensional = true
|
|
||||||
#If true, the chat box cannot use 'run_command' action
|
|
||||||
chatBoxPreventRunCommand = false
|
|
||||||
#If true, the chat box will wrap and execute 'run_command' or 'suggest_command' action with zero permission, in order to prevent operators accidently run dangerous commands.
|
|
||||||
chatBoxWrapCommand = true
|
|
||||||
#These commands below will not be able to send by 'run_command' or 'suggest_command' action. It will match as prefix if starts with '/', other wise use regex pattern
|
|
||||||
chatBoxBannedCommands = ["/execute", "/op", "/deop", "/gamemode", "/gamerule", "/stop", "/give", "/fill", "/setblock", "/summon", "/whitelist", "^/ban-(?:ip)?\\s*", "^/pardon-(?:ip)?\\s*", "^/save-(?:on|off)\\s*"]
|
|
||||||
|
|
||||||
[Peripherals.ME_Bridge]
|
|
||||||
#Enable the Me Bridge or not.
|
|
||||||
enableMeBridge = true
|
|
||||||
#Power consumption per tick.
|
|
||||||
# Default: 10
|
|
||||||
# Range: > 0
|
|
||||||
mePowerConsumption = 10
|
|
||||||
|
|
||||||
[Peripherals.RS_Bridge]
|
|
||||||
#Enable the Rs Bridge or not.
|
|
||||||
enableRsBridge = true
|
|
||||||
#Power consumption per tick.
|
|
||||||
# Default: 10
|
|
||||||
# Range: > 0
|
|
||||||
rsPowerConsumption = 10
|
|
||||||
|
|
||||||
[Peripherals.Environment_Detector]
|
|
||||||
#Enable the Environment Detector or not.
|
|
||||||
enableEnvironmentDetector = true
|
|
||||||
|
|
||||||
[Peripherals.AR_Controller]
|
|
||||||
#Enable the AR goggles or not.
|
|
||||||
enableARGoggles = true
|
|
||||||
|
|
||||||
[Peripherals.Inventory_Manager]
|
|
||||||
#Enable the inventory manager or not.
|
|
||||||
enableInventoryManager = true
|
|
||||||
|
|
||||||
[Peripherals.Redstone_Integrator]
|
|
||||||
#Enable the redstone integrator or not.
|
|
||||||
enableRedstoneIntegrator = true
|
|
||||||
|
|
||||||
[Peripherals.Block_Reader]
|
|
||||||
#Enable the block reader or not.
|
|
||||||
enableBlockReader = true
|
|
||||||
|
|
||||||
[Peripherals.Geo_Scanner]
|
|
||||||
#Enable the geo scanner or not.
|
|
||||||
enableGeoScanner = true
|
|
||||||
|
|
||||||
[Peripherals.Colony_Integrator]
|
|
||||||
#Enable the colony integrator or not.
|
|
||||||
enableColonyIntegrator = true
|
|
||||||
|
|
||||||
[Peripherals.Compass_Turtle]
|
|
||||||
#Enable the compass turtle or not.
|
|
||||||
enableCompassTurtle = true
|
|
||||||
#The maximum distance the compass can locate accurately with in each axis.
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 8
|
|
||||||
compassAccurePlaceRadius = 3
|
|
||||||
#The free distance the compass can locate accurately with in each axis.
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 4
|
|
||||||
compassAccurePlaceFreeRadius = 1
|
|
||||||
|
|
||||||
[Peripherals.Powered_Peripherals]
|
|
||||||
#Enable RF storage for peripherals, that could use it
|
|
||||||
enablePoweredPeripherals = false
|
|
||||||
#Defines max energy storage in any powered peripheral
|
|
||||||
# Default: 100000000
|
|
||||||
# Range: > 1000000
|
|
||||||
poweredPeripheralMaxEnergyStored = 100000000
|
|
||||||
|
|
||||||
[Peripherals.Pocket_Peripherals]
|
|
||||||
#If true, pockets will have infinite fuel
|
|
||||||
disablePocketFuelConsumption = true
|
|
||||||
|
|
||||||
[Peripherals.Operations]
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 0
|
|
||||||
digCooldown = 1000
|
|
||||||
# Default: 1
|
|
||||||
# Range: > 0
|
|
||||||
digCost = 1
|
|
||||||
# Default: 5000
|
|
||||||
# Range: > 0
|
|
||||||
useOnBlockCooldown = 5000
|
|
||||||
# Default: 1
|
|
||||||
# Range: > 0
|
|
||||||
useOnBlockCost = 1
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 0
|
|
||||||
suckCooldown = 1000
|
|
||||||
# Default: 1
|
|
||||||
# Range: > 0
|
|
||||||
suckCost = 1
|
|
||||||
# Default: 2500
|
|
||||||
# Range: > 0
|
|
||||||
useOnAnimalCooldown = 2500
|
|
||||||
# Default: 10
|
|
||||||
# Range: > 0
|
|
||||||
useOnAnimalCost = 10
|
|
||||||
# Default: 50000
|
|
||||||
# Range: > 0
|
|
||||||
captureAnimalCooldown = 50000
|
|
||||||
# Default: 100
|
|
||||||
# Range: > 0
|
|
||||||
captureAnimalCost = 100
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 0
|
|
||||||
warpCooldown = 1000
|
|
||||||
# Default: 1
|
|
||||||
# Range: > 0
|
|
||||||
warpCost = 1
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 0
|
|
||||||
accurePlaceCooldown = 1000
|
|
||||||
# Default: 1
|
|
||||||
# Range: > 0
|
|
||||||
accurePlaceCost = 1
|
|
||||||
# Default: 2000
|
|
||||||
# Range: > 0
|
|
||||||
scanBlocksCooldown = 2000
|
|
||||||
# Default: 8
|
|
||||||
# Range: > 1
|
|
||||||
scanBlocksMaxFreeRadius = 8
|
|
||||||
# Default: 16
|
|
||||||
# Range: > 1
|
|
||||||
scanBlocksMaxCostRadius = 16
|
|
||||||
# Default: 0.17
|
|
||||||
# Range: 0.1 ~ 1.7976931348623157E308
|
|
||||||
scanBlocksExtraBlockCost = 0.17
|
|
||||||
# Default: 2000
|
|
||||||
# Range: > 0
|
|
||||||
scanEntitiesCooldown = 2000
|
|
||||||
# Default: 8
|
|
||||||
# Range: > 1
|
|
||||||
scanEntitiesMaxFreeRadius = 8
|
|
||||||
# Default: 16
|
|
||||||
# Range: > 1
|
|
||||||
scanEntitiesMaxCostRadius = 16
|
|
||||||
# Default: 0.17
|
|
||||||
# Range: 0.1 ~ 1.7976931348623157E308
|
|
||||||
scanEntitiesExtraBlockCost = 0.17
|
|
||||||
# Default: 100
|
|
||||||
# Range: > 0
|
|
||||||
chatMessageCooldown = 100
|
|
||||||
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
#Config to adjust world settings
|
#Config to adjust world settings
|
||||||
[World]
|
[World]
|
||||||
#Enable the villager structures for the computer scientist.
|
#Enable the villager structures for the computer scientist.
|
||||||
@ -5,8 +6,8 @@
|
|||||||
#Gives the ap documentation to new players.
|
#Gives the ap documentation to new players.
|
||||||
givePlayerBookOnJoin = false
|
givePlayerBookOnJoin = false
|
||||||
#The weight of the villager structures.
|
#The weight of the villager structures.
|
||||||
# Default: 10
|
#Range: 0 ~ 16000
|
||||||
# Range: 0 ~ 16000
|
|
||||||
villagerStructureWeight = 10
|
villagerStructureWeight = 10
|
||||||
#Enable new wandering trader trades.
|
#Enable new wandering trader trades.
|
||||||
enableWanderingTraderTrades = true
|
enableWanderingTraderTrades = true
|
||||||
|
|
||||||
|
|||||||
20
config/NoChatReports/NCR-Client.json
Normal file
20
config/NoChatReports/NCR-Client.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"defaultSigningMode": "PROMPT",
|
||||||
|
"enableMod": true,
|
||||||
|
"showNCRButton": false,
|
||||||
|
"showReloadButton": false,
|
||||||
|
"verifiedIconEnabled": true,
|
||||||
|
"showServerSafety": false,
|
||||||
|
"hideInsecureMessageIndicators": true,
|
||||||
|
"hideModifiedMessageIndicators": true,
|
||||||
|
"hideSystemMessageIndicators": true,
|
||||||
|
"hideWarningToast": true,
|
||||||
|
"hideSigningRequestMessage": false,
|
||||||
|
"alwaysHideReportButton": false,
|
||||||
|
"skipRealmsWarning": false,
|
||||||
|
"disableTelemetry": true,
|
||||||
|
"removeTelemetryButton": false,
|
||||||
|
"demandOnServer": false,
|
||||||
|
"verifiedIconOffsetX": 0,
|
||||||
|
"verifiedIconOffsetY": 0
|
||||||
|
}
|
||||||
75
config/advancementplaques-common.toml
Normal file
75
config/advancementplaques-common.toml
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
|
||||||
|
#Client Configuration
|
||||||
|
[client]
|
||||||
|
|
||||||
|
[client.visual_options]
|
||||||
|
# If plaques should show on the top of the screen.
|
||||||
|
on_top = true
|
||||||
|
# The distance from the top or bottom of the screen, in pixels.
|
||||||
|
#Range: 8 ~ 256
|
||||||
|
distance = 16
|
||||||
|
# The horizontal offset from the center, in pixels.
|
||||||
|
#Range: -256 ~ 256
|
||||||
|
horizontal_offset = 0
|
||||||
|
# Hide waila/hwyla/jade popups while plaques are showing.
|
||||||
|
hide_waila = true
|
||||||
|
# If plaques should show for task advancements (normal advancements).
|
||||||
|
tasks = true
|
||||||
|
# If plaques should show for goal advancements (medium-difficulty advancements).
|
||||||
|
goals = true
|
||||||
|
# If plaques should show for challenge advancements (high-difficulty advancements).
|
||||||
|
challenges = true
|
||||||
|
# Text color to use for plaque titles (like "Advancement made!"). Can be entered as an 8-digit hex color code #AARRGGBB for convenience. If Prism library is installed, any Prism color definition is supported.
|
||||||
|
title_color = "#FF332200"
|
||||||
|
# Text color to use for advancement names on plaques. Can be entered as an 8-digit hex color code #AARRGGBB for convenience. If Prism library is installed, any Prism color definition is supported.
|
||||||
|
name_color = "#FFFFFFFF"
|
||||||
|
|
||||||
|
[client.duration_options]
|
||||||
|
# Duration of the shiny effect fade in for tasks.
|
||||||
|
#Range: 0.1 ~ 3.0
|
||||||
|
task_effect_fadein = 0.5
|
||||||
|
# Duration of the shiny effect fade out for tasks.
|
||||||
|
#Range: 0.1 ~ 3.0
|
||||||
|
task_effect_fadeout = 1.5
|
||||||
|
# Duration of the plaques for tasks (minus the effect fade in/out durations).
|
||||||
|
#Range: 2.0 ~ 10.0
|
||||||
|
task_duration = 7.0
|
||||||
|
# Duration of the shiny effect fade in for goals.
|
||||||
|
#Range: 0.1 ~ 3.0
|
||||||
|
goal_effect_fadein = 0.5
|
||||||
|
# Duration of the shiny effect fade out for goals.
|
||||||
|
#Range: 0.1 ~ 3.0
|
||||||
|
goal_effect_fadeout = 1.5
|
||||||
|
# Duration of the plaques for goals (minus the effect fade in/out durations).
|
||||||
|
#Range: 2.0 ~ 10.0
|
||||||
|
goal_duration = 7.0
|
||||||
|
# Duration of the shiny effect fade in for challenges.
|
||||||
|
#Range: 0.1 ~ 3.0
|
||||||
|
challenge_effect_fadein = 1.25
|
||||||
|
# Duration of the shiny effect fade out for challenges.
|
||||||
|
#Range: 0.1 ~ 3.0
|
||||||
|
challenge_effect_fadeout = 1.5
|
||||||
|
# Duration of the plaques for challenges (minus the effect fade in/out durations).
|
||||||
|
#Range: 2.0 ~ 10.0
|
||||||
|
challenge_duration = 7.0
|
||||||
|
|
||||||
|
[client.functionality_options]
|
||||||
|
# Blacklist of advancements to never show plaques for. Takes precedence over whitelist if they conflict.
|
||||||
|
# Options:
|
||||||
|
# Advancement ID (eg. "minecraft:adventure/adventuring_time")
|
||||||
|
# Mod ID (Omit the colon, eg. "minecraft")
|
||||||
|
# Advancement Category (End with a /, eg. "minecraft:story/")
|
||||||
|
blacklist = []
|
||||||
|
# Whitelist of advancements to show plaques for. Leave empty to display for all.
|
||||||
|
# Same options available as blacklist.
|
||||||
|
whitelist = []
|
||||||
|
# Volume of task sounds. Set to 0 to mute.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
task_volume = 1.0
|
||||||
|
# Volume of goal sounds. Set to 0 to mute.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
goal_volume = 1.0
|
||||||
|
# Volume of challenge sounds. Set to 0 to mute.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
challenge_volume = 1.0
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,123 +0,0 @@
|
|||||||
# 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
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
# 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
9
config/armorstatues-client.toml
Normal file
9
config/armorstatues-client.toml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#Do not check if the client has the necessary permission level for executing the '/data' command when trying to edit an armor stand. Useful when the current server is using custom permissions handling.
|
||||||
|
override_client_permissions_check = true
|
||||||
|
#The delay in ticks for sending queued client commands for editing armor stands to the server. Increase this values if commands are sent too quickly and the server fails to process all of them.
|
||||||
|
#Range: > 20
|
||||||
|
client_command_delay = 20
|
||||||
|
#Allows for using this mod on a server without it (like a vanilla server) when the Vanilla Tweaks Armor Statues data pack is installed without the need for being a server operator.
|
||||||
|
#Download the Vanilla Tweaks Armor Statues data pack from here: https://vanillatweaks.net/
|
||||||
|
use_vanilla_tweaks_triggers = false
|
||||||
|
|
||||||
74
config/ars_nouveau-common.toml
Normal file
74
config/ars_nouveau-common.toml
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
|
||||||
|
#General settings
|
||||||
|
[general]
|
||||||
|
#Dimensions where hostile mobs will not spawn. Ex: ["minecraft:overworld", "undergarden:undergarden"]. . Run /forge dimensions for a list.
|
||||||
|
dimensionBlacklist = []
|
||||||
|
#Spawn a book in the players inventory on login
|
||||||
|
spawnBook = false
|
||||||
|
#How much mana whirlisprigs consume per generation
|
||||||
|
#Range: 0 ~ 10000
|
||||||
|
sylphManaCost = 250
|
||||||
|
#How much progress whirlisprigs must accumulate before creating resources
|
||||||
|
#Range: 0 ~ 10000
|
||||||
|
whirlisprigProgress = 250
|
||||||
|
#Should the Wilden Hunter attack animals?
|
||||||
|
hunterHuntsAnimals = false
|
||||||
|
#Should the Wilden Stalker attack animals?
|
||||||
|
stalkerHuntsAnimals = false
|
||||||
|
#Should the Wilden Defender attack animals?
|
||||||
|
defenderHuntsAnimals = false
|
||||||
|
#Should the Wilden Chimera dive bomb destroy blocks?
|
||||||
|
destructiveDiveBomb = true
|
||||||
|
#Archwood forest spawn weight
|
||||||
|
#Range: > 0
|
||||||
|
archwoodForest = 2
|
||||||
|
#How many inventories can lectern support per bookwyrm
|
||||||
|
#Range: > 1
|
||||||
|
bookwyrmLimit = 8
|
||||||
|
|
||||||
|
[drygmy_production]
|
||||||
|
#How much source drygmys consume per generation
|
||||||
|
#Range: 0 ~ 10000
|
||||||
|
drygmyManaCost = 1000
|
||||||
|
#How many channels must occur before a drygmy produces loot
|
||||||
|
#Range: 0 ~ 300
|
||||||
|
drygmyMaxProgress = 20
|
||||||
|
#Bonus number of items a drygmy produces per unique mob
|
||||||
|
#Range: 0 ~ 300
|
||||||
|
drygmyUniqueBonus = 2
|
||||||
|
#Base number of items a drygmy produces per cycle before bonuses.
|
||||||
|
#Range: > -2147483648
|
||||||
|
drygmyBaseItems = 1
|
||||||
|
#Max Bonus number of items a drygmy produces from nearby entities. Each entity equals 1 item.
|
||||||
|
#Range: 0 ~ 300
|
||||||
|
drygmyQuantityCap = 5
|
||||||
|
|
||||||
|
#Items
|
||||||
|
[item]
|
||||||
|
#Spawn Caster Tomes in Dungeon Loot?
|
||||||
|
spawnTomes = true
|
||||||
|
#How much mana the Ring of Jumping consumes per jump
|
||||||
|
#Range: 0 ~ 10000
|
||||||
|
jumpRingCost = 30
|
||||||
|
|
||||||
|
#Blocks
|
||||||
|
[block]
|
||||||
|
#How much potion a melder takes from each input jar. 100 = 1 potion
|
||||||
|
#Range: > 100
|
||||||
|
melderInputCost = 200
|
||||||
|
#How much potion a melder outputs per cycle. 100 = 1 potion
|
||||||
|
#Range: > 100
|
||||||
|
melderOutput = 100
|
||||||
|
#How much source a melder takes per cycle
|
||||||
|
#Range: > 0
|
||||||
|
melderSourceCost = 300
|
||||||
|
#The max potion level the enchanted flask can grant. This isnt needed unless you have an infinite potion leveling exploit.
|
||||||
|
#Range: > 2
|
||||||
|
enchantedFlaskCap = 255
|
||||||
|
|
||||||
|
#Debug
|
||||||
|
[debug]
|
||||||
|
#Max number of log events to keep on entities. Lowering this number may make it difficult to debug why your entities are stuck.
|
||||||
|
#Range: > 0
|
||||||
|
maxLogEvents = 100
|
||||||
|
|
||||||
57
config/ars_nouveau-server.toml
Normal file
57
config/ars_nouveau-server.toml
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
|
||||||
|
#Mana
|
||||||
|
[mana]
|
||||||
|
#Base mana regen in seconds
|
||||||
|
#Range: > 0
|
||||||
|
baseRegen = 5
|
||||||
|
#Base max mana
|
||||||
|
#Range: > 0
|
||||||
|
baseMax = 100
|
||||||
|
#How often max and regen will be calculated, in ticks. NOTE: Having the base mana regen AT LEAST this value is recommended.
|
||||||
|
#Range: 1 ~ 20
|
||||||
|
updateInterval = 5
|
||||||
|
#Max mana bonus per glyph
|
||||||
|
#Range: > 0
|
||||||
|
glyphmax = 15
|
||||||
|
#Max mana bonus for tier of book
|
||||||
|
#Range: > 0
|
||||||
|
tierMax = 50
|
||||||
|
#Mana regen bonus for tier of book
|
||||||
|
#Range: > 0
|
||||||
|
tierRegen = 1
|
||||||
|
#Mana Boost value per level
|
||||||
|
#Range: > 0
|
||||||
|
manaBoost = 25
|
||||||
|
#(enchantment) Mana regen per second per level
|
||||||
|
#Range: > 0
|
||||||
|
manaRegenEnchantment = 2
|
||||||
|
#Regen bonus per glyph
|
||||||
|
#Range: 0.0 ~ 2.147483647E9
|
||||||
|
glyphRegen = 0.33
|
||||||
|
#Regen bonus per potion level
|
||||||
|
#Range: > 0
|
||||||
|
potionRegen = 10
|
||||||
|
|
||||||
|
[spell_casting]
|
||||||
|
#Enforce augment cap on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
|
||||||
|
enforceCapOnCast = true
|
||||||
|
#Enforce glyph per spell limit on casting? Turn this off if you are a pack maker and want to create more powerful items than players.
|
||||||
|
enforceGlyphLimitOnCast = true
|
||||||
|
|
||||||
|
[item]
|
||||||
|
#Cost per glyph in a codex
|
||||||
|
#Range: > 0
|
||||||
|
codexCost = 10
|
||||||
|
|
||||||
|
[warp_portals]
|
||||||
|
#Enable warp portals?
|
||||||
|
enableWarpPortals = true
|
||||||
|
|
||||||
|
#Beta Features
|
||||||
|
[beta]
|
||||||
|
#Allow crafting infinite spells. This is a beta feature and may cause crashes.
|
||||||
|
infiniteSpells = false
|
||||||
|
#Limits the crafting infinite spells beta, set a cap to the number of additional glyphs. This is a beta feature and may cause crashes.
|
||||||
|
#Range: 10 ~ 1000
|
||||||
|
infiniteSpellLimit = 30
|
||||||
|
|
||||||
4
config/backupbeds-common.toml
Normal file
4
config/backupbeds-common.toml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#The maximum amount of backup beds tracked by the server for each player.
|
||||||
|
#Range: 0 ~ 100
|
||||||
|
backup_bed_track_count = 3
|
||||||
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
#General settings
|
|
||||||
[general]
|
|
||||||
#modpackProjectID is now deprecated and will be removed soon
|
|
||||||
# Default: 0
|
|
||||||
# Range: > 0
|
|
||||||
modpackProjectID = 0
|
|
||||||
#The name of the modpack
|
|
||||||
modpackName = "Banana"
|
|
||||||
#The version of the modpack
|
|
||||||
modpackVersion = "2.0"
|
|
||||||
#Use the metadata.json to determine the modpack version
|
|
||||||
#ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING
|
|
||||||
useMetadata = false
|
|
||||||
@ -1,198 +0,0 @@
|
|||||||
[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"
|
|
||||||
6
config/biomesize.json
Normal file
6
config/biomesize.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"biomeSizeModifier": {
|
||||||
|
"desc:": "Biome size modifier, added to the vanilla biome size. Vanilla value:0, recommended range: [-8;8]: default:-2",
|
||||||
|
"biomeSizeModifier": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
name = "bluemap-spohisticatedbackpacks"
|
||||||
|
filename = "SophisticatedBackpacks.Bluemap.zip"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://github.com/TyBraniff/Bluemap-x-SophisticatedBackpacks/releases/download/v1.0.0/SophisticatedBackpacks.Bluemap.zip"
|
||||||
|
hash-format = "sha256"
|
||||||
|
hash = "88dc40a8137c246d30f5226e413385bcd9f83159aa99d24ef7e5ad3f6264684a"
|
||||||
7
config/bluemap/packs/bluemap-visualworkbench.pw.toml
Normal file
7
config/bluemap/packs/bluemap-visualworkbench.pw.toml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
name = "bluemap-visualworkbench"
|
||||||
|
filename = "VisualWorkbench.Bluemap.zip"
|
||||||
|
side = "server"
|
||||||
|
[download]
|
||||||
|
url = "https://github.com/TyBraniff/Bluemap-x-VisualWorkbench/releases/download/1.0.0/VisualWorkbench.Bluemap.zip"
|
||||||
|
hash-format = "sha256"
|
||||||
|
hash = "2c2a0667fb863fef85c225d9e3b59daedf35b652d6d162b2a4928fcd7d6dd631"
|
||||||
13
config/bluemap/packs/bluemap-x-rechiseled.pw.toml
Normal file
13
config/bluemap/packs/bluemap-x-rechiseled.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Bluemap x Rechiseled"
|
||||||
|
filename = "Bluemap-x-Rechiseled-1.1.zip"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/KdxJ8UiH/versions/nO2LQYcz/Bluemap-x-Rechiseled-1.1.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "4070da002279ead629543a865bf32f8915dae0edbdc2532ec2a35798653bdf88ceaceecca23ef430c6bf673e5a94c992f2443fcd0510101a6942c1a3aaf2dff8"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "KdxJ8UiH"
|
||||||
|
version = "nO2LQYcz"
|
||||||
13
config/bluemap/packs/bluemap-x-sophisticatedstorage.pw.toml
Normal file
13
config/bluemap/packs/bluemap-x-sophisticatedstorage.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Bluemap x SophisticatedStorage"
|
||||||
|
filename = "SophisticatedStorage.Bluemap.zip"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/RL733VYx/versions/8SvqCLPg/SophisticatedStorage.Bluemap.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "3f63050fc2445fa0237c323caefdba51c02175f7689cf444d814c9cf2c339df09f67770ffff57f161895af7e2d66e015ff12601d36795e821d3f83404dec47d9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "RL733VYx"
|
||||||
|
version = "8SvqCLPg"
|
||||||
8
config/bluemap/packs/bluemapmodelloaders.pw.toml
Normal file
8
config/bluemap/packs/bluemapmodelloaders.pw.toml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
name = "BlueMapModelLoaders"
|
||||||
|
filename = "BlueMapModelLoaders-0.3.1.jar"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://github.com/Uiniel/BlueMapModelLoaders/releases/download/v0.3.1/BlueMapModelLoaders-0.3.1.jar"
|
||||||
|
hash-format = "sha256"
|
||||||
|
hash = "253500c9720f96f920f26d6f2dd9a0b5571e9805f75517048219f59f0baf0bc9"
|
||||||
13
config/bluemap/packs/diagonal-suite-bluemap-compat.pw.toml
Normal file
13
config/bluemap/packs/diagonal-suite-bluemap-compat.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Diagonal Suite Bluemap Compat"
|
||||||
|
filename = "DiagonalSuiteBluemapCompat.zip"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/oP2tLqEb/versions/m3OG0THo/DiagonalSuiteBluemapCompat.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "75cf0ddf9bfaef37c63ea92b60a901cb66a84939a49ea56ae79b8efa3cbcb9d4a10041e8e2119ec4ab924addf94076e36c795184f84c05ce349e6246e72977a5"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "oP2tLqEb"
|
||||||
|
version = "m3OG0THo"
|
||||||
13
config/bluemap/packs/diagonal-windows-bluemap-pack.pw.toml
Normal file
13
config/bluemap/packs/diagonal-windows-bluemap-pack.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Diagonal Windows BlueMap Pack"
|
||||||
|
filename = "DiagonalWindowsBluemapPack1.0.zip"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "1968dec47a55b327702d80bc2b1a94ab2cc3976d"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 5540959
|
||||||
|
project-id = 1065756
|
||||||
8
config/bluemap/packs/minecolonies-bluemap.pw.toml
Normal file
8
config/bluemap/packs/minecolonies-bluemap.pw.toml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
name = "Minecolonies-bluemap"
|
||||||
|
filename = "Minecolonies.bluemap.zip"
|
||||||
|
side = "server"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://github.com/TyBraniff/Bluemap-x-Minecolonies/releases/download/Release/Minecolonies.bluemap.zip"
|
||||||
|
hash-format = "sha256"
|
||||||
|
hash = "2b9a46e9150f8161fee6cf9dc9e93df6e9014433d2a40d403562aef6b14e4330"
|
||||||
@ -1,25 +0,0 @@
|
|||||||
#Scale for screen shake effects
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
screenShakeScale = 1.0
|
|
||||||
#Max amount of sources that can contribute to screen shaking, adjustable for performance and preference reasons. 0 will disable the addition of shake sources
|
|
||||||
# Default: 256
|
|
||||||
# Range: > 0
|
|
||||||
maxScreenShakers = 256
|
|
||||||
#Determines if the experimental settings screen should be disabled
|
|
||||||
disableExperimentalSettingsScreen = true
|
|
||||||
#If no Slabfish hats should render at all, including on other players
|
|
||||||
disableSlabfishHats = false
|
|
||||||
#Whether the Slabfish Plush Campaign button should appear on the title screen. Ends May 11th.
|
|
||||||
disableSlabfishPlushCampaign = true
|
|
||||||
|
|
||||||
#Slabfish patron hat settings.
|
|
||||||
[slabfishSettings]
|
|
||||||
#If the slabfish hat should be enabled
|
|
||||||
enabled = true
|
|
||||||
#If the slabfish hat's backpack should be enabled
|
|
||||||
backpackEnabled = true
|
|
||||||
#If the slabfish hat's sweater should be enabled
|
|
||||||
sweaterEnabled = true
|
|
||||||
#If the slabfish hat's custom type should be enabled. If false, the default swamp slabfish appears
|
|
||||||
typeEnabled = true
|
|
||||||
@ -1,22 +0,0 @@
|
|||||||
{
|
|
||||||
"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
|
|
||||||
}
|
|
||||||
}
|
|
||||||
27
config/buddingcrystals-common.toml
Normal file
27
config/buddingcrystals-common.toml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
[crystals]
|
||||||
|
#Allow crafting of budding Amethyst block
|
||||||
|
enable_crafting_budding_amethyst = true
|
||||||
|
#Allow crafting of budding Prismarine block
|
||||||
|
enable_crafting_budding_prismarine = true
|
||||||
|
#Allow crafting of budding Diamond block
|
||||||
|
enable_crafting_budding_diamond = false
|
||||||
|
#Allow crafting of budding Nether Quartz block
|
||||||
|
enable_crafting_budding_nether_quartz = true
|
||||||
|
#Allow crafting of budding Salt block
|
||||||
|
enable_crafting_budding_salt = false
|
||||||
|
#Allow crafting of budding Lapis Lazuli block
|
||||||
|
enable_crafting_budding_lapis_lazuli = true
|
||||||
|
#Allow crafting of budding Certus Quartz block
|
||||||
|
enable_crafting_budding_certus_quartz = false
|
||||||
|
#Allow crafting of budding Fluorite block
|
||||||
|
enable_crafting_budding_fluorite = true
|
||||||
|
#Allow crafting of budding Redstone block
|
||||||
|
enable_crafting_budding_redstone = true
|
||||||
|
#Allow crafting of budding Emerald block
|
||||||
|
enable_crafting_budding_emerald = false
|
||||||
|
#Allow crafting of budding Glowstone block
|
||||||
|
enable_crafting_budding_glowstone = true
|
||||||
|
#Allow crafting of budding Fluix block
|
||||||
|
enable_crafting_budding_fluix = false
|
||||||
|
|
||||||
12
config/canary.properties
Normal file
12
config/canary.properties
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# This is the configuration file for Canary.
|
||||||
|
# This file exists for debugging purposes and should not be configured otherwise.
|
||||||
|
# Before configuring anything, take a backup of the worlds that will be opened.
|
||||||
|
#
|
||||||
|
# You can find information on editing this file and all the available options here:
|
||||||
|
# https://github.com/AbdElAziz333/Canary/wiki/Configuration-File
|
||||||
|
#
|
||||||
|
# By default, this file will be empty except for this notice.
|
||||||
|
|
||||||
|
# Fix little tiles
|
||||||
|
mixin.shapes.specialized_shapes = false
|
||||||
|
mixin.entity.collisions = false
|
||||||
81
config/carryon-common.toml
Normal file
81
config/carryon-common.toml
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
|
||||||
|
[settings]
|
||||||
|
#General Settings
|
||||||
|
#Maximum distance from where Blocks and Entities can be picked up
|
||||||
|
#Range: 0.0 ~ 1.7976931348623157E308
|
||||||
|
maxDistance = 2.5
|
||||||
|
#Max width of entities that can be picked up in survival mode
|
||||||
|
#Range: 0.0 ~ 10.0
|
||||||
|
maxEntityWidth = 1.5
|
||||||
|
#Max height of entities that can be picked up in survival mode
|
||||||
|
#Range: 0.0 ~ 10.0
|
||||||
|
maxEntityHeight = 1.9
|
||||||
|
#Slowness multiplier for blocks
|
||||||
|
#Range: 0.0 ~ 1.7976931348623157E308
|
||||||
|
blockSlownessMultiplier = 2.0
|
||||||
|
#Slowness multiplier for entities
|
||||||
|
#Range: 0.0 ~ 1.7976931348623157E308
|
||||||
|
entitySlownessMultiplier = 1.5
|
||||||
|
#Maximum stack limit for entities
|
||||||
|
#Range: > 1
|
||||||
|
maxEntityStackLimit = 3
|
||||||
|
#More complex Tile Entities slow down the player more
|
||||||
|
heavyTiles = true
|
||||||
|
#Allow all blocks to be picked up, not just Tile Entites. White/Blacklist will still be respected.
|
||||||
|
pickupAllBlocks = false
|
||||||
|
#Whether Blocks and Entities slow the creative player down when carried
|
||||||
|
slownessInCreative = true
|
||||||
|
#Whether hostile mobs should be able to picked up in survival mode
|
||||||
|
pickupHostileMobs = false
|
||||||
|
#Larger Entities slow down the player more
|
||||||
|
heavyEntities = true
|
||||||
|
#Allow babies to be carried even when adult mob is blacklisted (or not whitelisted)
|
||||||
|
allowBabies = false
|
||||||
|
#Use Whitelist instead of Blacklist for Blocks
|
||||||
|
useWhitelistBlocks = true
|
||||||
|
#Use Whitelist instead of Blacklist for Entities
|
||||||
|
useWhitelistEntities = false
|
||||||
|
#Use Whitelist instead of Blacklist for Stacking
|
||||||
|
useWhitelistStacking = false
|
||||||
|
#Whether the player can hit blocks and entities while carrying or not
|
||||||
|
hitWhileCarrying = false
|
||||||
|
#Whether the player drops the carried object when hit or not
|
||||||
|
dropCarriedWhenHit = true
|
||||||
|
#Use custom Pickup Scripts. Having this set to false, will not allow you to run scripts, but will increase your performance
|
||||||
|
useScripts = false
|
||||||
|
#Allows entities to be stacked on top of each other
|
||||||
|
stackableEntities = true
|
||||||
|
#Whether entities' size matters when stacking or not. This means that larger entities cannot be stacked on smaller ones
|
||||||
|
entitySizeMattersStacking = false
|
||||||
|
#Usually all the block state information is retained when placing a block that was picked up. But some information is changed to a modified property, like rotation or orientation. In this list, add additional properties that should NOT be saved and instead be updated when placed. Format: modid:block[propertyname]. Note: You don't need to add an entry for every subtype of a same block. For example, we only add an entry for one type of slab, but the change is applied to all slabs.
|
||||||
|
placementStateExceptions = ["minecraft:chest[type]", "minecraft:stone_button[face]", "minecraft:vine[north,east,south,west,up]", "minecraft:creeper_head[rotation]", "minecraft:glow_lichen[north,east,south,west,up,down]", "minecraft:oak_sign[rotation]", "minecraft:oak_trapdoor[half]"]
|
||||||
|
#Whether Players can be picked up. Creative players can't be picked up in Survival Mode
|
||||||
|
pickupPlayers = true
|
||||||
|
#Whether players in Survival Mode can pick up unbreakable blocks. Creative players always can.
|
||||||
|
pickupUnbreakableBlocks = false
|
||||||
|
|
||||||
|
[whitelist]
|
||||||
|
#Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config
|
||||||
|
#Entities that CAN be picked up (useWhitelistEntities must be true)
|
||||||
|
allowedEntities = []
|
||||||
|
#Blocks that CAN be picked up (useWhitelistBlocks must be true)
|
||||||
|
allowedBlocks = ["#forge:chests", "#c:chests", "#c:shulker_boxes", "#c:wooden_barrels", "#forge:barrels", "#forge:boxes/shulker", "minecraft:budding_amethyst", "minecraft:spawner", "minecraft:crafting_table", "sophisticatedstorage:shulker_box", "sophisticatedstorage:copper_shulker_box", "sophisticatedstorage:iron_shulker_box", "sophisticatedstorage:gold_shulker_box", "sophisticatedstorage:diamond_shulker_box", "sophisticatedstorage:netherite_shulker_box", "sophisticatedbackpacks:backpack", "functionalstorage:*"]
|
||||||
|
#Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true)
|
||||||
|
allowedStacking = []
|
||||||
|
|
||||||
|
[blacklist]
|
||||||
|
#Blacklist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config
|
||||||
|
#Blocks that cannot be picked up
|
||||||
|
forbiddenTiles = ["#forge:immovable", "#forge:relocation_not_supported", "minecraft:end_portal", "minecraft:piston_head", "minecraft:end_gateway", "minecraft:tall_grass", "minecraft:large_fern", "minecraft:peony", "minecraft:rose_bush", "minecraft:lilac", "minecraft:sunflower", "minecraft:*_bed", "minecraft:*_door", "minecraft:big_dripleaf_stem", "minecraft:waterlily", "minecraft:cake", "minecraft:nether_portal", "minecraft:tall_seagrass", "animania:block_trough", "animania:block_invisiblock", "colossalchests:*", "ic2:*", "bigreactors:*", "forestry:*", "tconstruct:*", "rustic:*", "botania:*", "astralsorcery:*", "quark:colored_bed_*", "immersiveengineering:*", "embers:block_furnace", "embers:ember_bore", "embers:ember_activator", "embers:mixer", "embers:heat_coil", "embers:large_tank", "embers:crystal_cell", "embers:alchemy_pedestal", "embers:boiler", "embers:combustor", "embers:catalzyer", "embers:field_chart", "embers:inferno_forge", "storagedrawers:framingtable", "skyresources:*", "lootbags:*", "exsartagine:*", "aquamunda:tank", "opencomputers:*", "malisisdoors:*", "industrialforegoing:*", "minecolonies:*", "thaumcraft:pillar*", "thaumcraft:infernal_furnace", "thaumcraft:placeholder*", "thaumcraft:infusion_matrix", "thaumcraft:golem_builder", "thaumcraft:thaumatorium*", "magneticraft:oil_heater", "magneticraft:solar_panel", "magneticraft:steam_engine", "magneticraft:shelving_unit", "magneticraft:grinder", "magneticraft:sieve", "magneticraft:solar_tower", "magneticraft:solar_mirror", "magneticraft:container", "magneticraft:pumpjack", "magneticraft:solar_panel", "magneticraft:refinery", "magneticraft:oil_heater", "magneticraft:hydraulic_press", "magneticraft:multiblock_gap", "refinedstorage:*", "mcmultipart:*", "enderstorage:*", "betterstorage:*", "practicallogistics2:*", "wearablebackpacks:*", "rftools:screen", "rftools:creative_screen", "create:*", "magic_doorknob:*", "iceandfire:*", "ftbquests:*", "waystones:*", "contact:*", "framedblocks:*", "securitycraft:*", "forgemultipartcbe:*", "integrateddynamics:cable", "mekanismgenerators:wind_generator", "cookingforblockheads:cabinet", "cookingforblockheads:corner", "cookingforblockheads:counter", "cookingforblockheads:oven", "cookingforblockheads:toaster", "cookingforblockheads:milk_jar", "cookingforblockheads:cow_jar", "cookingforblockheads:fruit_basket", "cookingforblockheads:cooking_table", "cookingforblockheads:fridge", "cookingforblockheads:sink", "powah:*", "advancementtrophies:trophy", "mekanismgenerators:heat_generator", "mna:filler_block"]
|
||||||
|
#Entities that cannot be picked up
|
||||||
|
forbiddenEntities = ["minecraft:end_crystal", "minecraft:ender_dragon", "minecraft:horse", "minecraft:ghast", "minecraft:shulker", "minecraft:leash_knot", "minecraft:armor_stand", "minecraft:item_frame", "minecraft:painting", "minecraft:shulker_bullet", "animania:hamster", "animania:ferret*", "animania:hedgehog*", "animania:cart", "animania:wagon", "mynko:*", "pixelmon:*", "mocreatures:*", "quark:totem", "vehicle:*", "securitycraft:*", "taterzens:npc", "easy_npc:*", "bodiesbodies:dead_body", "minecraft:villager", "minecraft:cow", "minecolonies:citizen", "minecolonies:*", "minecolonies:visitor", "guardvillagers:guard", "immersive_machinery:*", "immersive_aircraft:*", "immersive_paintings:*", "astikorcarts:*"]
|
||||||
|
#Entities that cannot have other entities stacked on top of them
|
||||||
|
forbiddenStacking = ["minecraft:horse"]
|
||||||
|
|
||||||
|
[customPickupConditions]
|
||||||
|
#Custom Pickup Conditions. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Custom-Pickup-Condition-Config
|
||||||
|
#Custom Pickup Conditions for Blocks
|
||||||
|
customPickupConditionsBlocks = []
|
||||||
|
#Custom Pickup Conditions for Entities
|
||||||
|
customPickupConditionsEntities = []
|
||||||
|
|
||||||
@ -1,35 +1,33 @@
|
|||||||
#How many marks you can draw with a single chalk. Default: 64
|
#How many marks you can draw with a single chalk. Default: 64
|
||||||
# Default: 64
|
#Range: > 0
|
||||||
# Range: > 0
|
ChalkUses = 128
|
||||||
ChalkDurability = 128
|
|
||||||
#How much light glowing mark produces. Default: 5
|
#How much light glowing mark produces. Default: 5
|
||||||
# Default: 5
|
#Range: 0 ~ 15
|
||||||
# Range: 0 ~ 15
|
GlowingMarkLightLevel = 7
|
||||||
GlowingMarkLightLevel = 6
|
|
||||||
#Controls whether glowing should be enabled in Chalk Box.
|
#Controls whether glowing should be enabled in Chalk Box.
|
||||||
#If disabled - you will not be able to draw glowing marks with chalk box.
|
#If disabled - you will not be able to draw glowing marks with chalk box.
|
||||||
#Default: true
|
#Default: true
|
||||||
ChalkBoxGlowingEnabled = true
|
ChalkBoxGlowingEnabled = true
|
||||||
#How many glowing uses one glowing item will give.
|
#How many glowing uses one glowing item will give.
|
||||||
#Default: 8
|
#Default: 8
|
||||||
# Default: 8
|
#Range: 1 ~ 9999
|
||||||
# Range: 1 ~ 9999
|
ChalkBoxGlowingItemUses = 16
|
||||||
ChalkBoxAmountPerGlowingItem = 8
|
#If enabled, Chalks (and Chalk Boxes) will generate in Dungeons, Abandoned Mineshafts, Planes and Savanna villages, Cartographer houses
|
||||||
#If enabled, Chalks (and Chalk Boxes) will generate in Dungeons, Abandoned Mineshafts, Villages (Planes and Savanna), Cartographer village houses
|
|
||||||
#Default: true
|
#Default: true
|
||||||
GenerateChalkInLootChests = true
|
ShouldGenerateInChests = true
|
||||||
|
|
||||||
#Enable/disable symbols and location of the advancement that will unlock that symbol. (Empty = available from the start)
|
#Enable/disable symbols and location of the advancement that will unlock that symbol. (Empty = always unlocked)
|
||||||
[Symbols]
|
[Symbols]
|
||||||
CrossEnabled = true
|
CrossEnabled = true
|
||||||
CrossUnlockAdvancement = ""
|
CrossUnlockAdvancement = ""
|
||||||
HeartEnabled = true
|
CheckEnabled = true
|
||||||
HeartUnlockAdvancement = "minecraft:husbandry/tame_an_animal"
|
CheckUnlockAdvancement = ""
|
||||||
HouseEnabled = true
|
HouseEnabled = true
|
||||||
HouseUnlockAdvancement = "chalk:adventure/home_is_where_the_bed_is"
|
HouseUnlockAdvancement = "chalk:adventure/sleep_three_times_in_one_place"
|
||||||
PickaxeEnabled = true
|
PickaxeEnabled = true
|
||||||
PickaxeUnlockAdvancement = "minecraft:story/iron_tools"
|
PickaxeUnlockAdvancement = "minecraft:story/iron_tools"
|
||||||
SkullEnabled = true
|
SkullEnabled = true
|
||||||
SkullUnlockAdvancement = "chalk:adventure/bound_by_bone"
|
SkullUnlockAdvancement = "chalk:adventure/get_skeleton_skull"
|
||||||
CheckEnabled = true
|
HeartEnabled = true
|
||||||
CheckUnlockAdvancement = ""
|
HeartUnlockAdvancement = "minecraft:husbandry/tame_an_animal"
|
||||||
|
|
||||||
|
|||||||
46
config/cobblegenrandomizer-common.toml
Normal file
46
config/cobblegenrandomizer-common.toml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
|
||||||
|
#General settings
|
||||||
|
[general]
|
||||||
|
#Use config instead of datapack
|
||||||
|
use_config = true
|
||||||
|
|
||||||
|
#List settings
|
||||||
|
#Syntax: ["modid:block|weight"]
|
||||||
|
#Example: ["minecraft:stone|2","minecraft:dirt|1"]
|
||||||
|
#Forge tags are supported
|
||||||
|
[general.lists]
|
||||||
|
#Cobble gen
|
||||||
|
block_list_cobble = ["minecraft:cobblestone"]
|
||||||
|
#Stone gen
|
||||||
|
block_list_stone = ["minecraft:stone"]
|
||||||
|
#Basalt gen
|
||||||
|
block_list_basalt = ["minecraft:basalt"]
|
||||||
|
|
||||||
|
#Custom settings
|
||||||
|
[general.lists.custom]
|
||||||
|
#Custom generators
|
||||||
|
#Syntax: [gen]
|
||||||
|
#Gen: [type, block, list]
|
||||||
|
#Type: cobblestone, stone
|
||||||
|
#Block: resource location of the block below the generated block
|
||||||
|
#List: see List settings
|
||||||
|
#Examples:
|
||||||
|
#custom_generators = [
|
||||||
|
# ["cobblestone", "minecraft:diamond_block", ["minecraft:diamond_block"]],
|
||||||
|
# ["cobblestone", "minecraft:dirt", ["forge:dirt"]],
|
||||||
|
# ["cobblestone", "minecraft:white_wool", ["minecraft:wool"]]]
|
||||||
|
custom_generators = [
|
||||||
|
["cobblestone", "minecraft:coal_block", ["minecraft:blackstone"]],
|
||||||
|
["stone", "minecraft:coal_block", ["minecraft:blackstone|100","minecraft:glided_blackstone|5"]],
|
||||||
|
["cobblestone", "minecraft:quartz_block", ["minecraft:granite"]],
|
||||||
|
["stone", "minecraft:quartz_block", ["minecraft:granite"]],
|
||||||
|
["cobblestone", "minecraft:polished_deepslate", ["minecraft:cobbled_deepslate"]],
|
||||||
|
["stone", "minecraft:polished_deepslate", ["minecraft:deepslate"]],
|
||||||
|
["cobblestone", "create:limestone", ["minecraft:calcite"]],
|
||||||
|
["stone", "create:limestone", ["minecraft:calcite"]],
|
||||||
|
["cobblestone", "minecraft:calcite", ["minecraft:diorite"]],
|
||||||
|
["stone", "minecraft:calcite", ["minecraft:diorite"]],
|
||||||
|
["cobblestone", "minecraft:diorite", ["minecraft:andesite"]],
|
||||||
|
["stone", "minecraft:diorite", ["minecraft:andesite"]]
|
||||||
|
]
|
||||||
|
|
||||||
@ -21,17 +21,11 @@
|
|||||||
},
|
},
|
||||||
"disconnectTimeout": {
|
"disconnectTimeout": {
|
||||||
"desc:": "Set the ingame disconnect timeout for disconnecting players. Default = 60sec",
|
"desc:": "Set the ingame disconnect timeout for disconnecting players. Default = 60sec",
|
||||||
"disconnectTimeout": 120
|
"disconnectTimeout": 300
|
||||||
},
|
},
|
||||||
"packetHistoryMinutes": {
|
"packetHistoryMinutes": {
|
||||||
"desc:": "Set the amount of minutes for which network packet history data is saved. Default = 5 minutes",
|
"desc:": "Set the amount of minutes for which network packet history data is saved. Default = 5 minutes",
|
||||||
"packetHistoryMinutes": 5
|
"packetHistoryMinutes": 10
|
||||||
},
|
|
||||||
"malformedtraffic": {
|
|
||||||
"desc:": "Detection and blocking of malformed and/or malicious traffic",
|
|
||||||
"enabled": true,
|
|
||||||
"proxies:": "Add your proxy IP to the whitelist below, if you're using one(e.g. velocity) to avoid blocking the proxy's ip. Format: [\"127.0.0.1\", \"128.0.01\"] without the \\ ",
|
|
||||||
"proxywhitelist": []
|
|
||||||
},
|
},
|
||||||
"showFullResourceLocationException": {
|
"showFullResourceLocationException": {
|
||||||
"desc:": "Enable to see the full log output for all resource location exceptions. Default = false",
|
"desc:": "Enable to see the full log output for all resource location exceptions. Default = false",
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"hiddenMods": [],
|
|
||||||
"globalModAliases": {
|
|
||||||
"cloth_config": "cloth-config2",
|
|
||||||
"playeranimator": "player-animator"
|
|
||||||
},
|
|
||||||
"enableMixinSafeguard": false
|
|
||||||
}
|
|
||||||
@ -1,36 +0,0 @@
|
|||||||
#The time (in real life days) deaths get stored
|
|
||||||
#-1 for infinite storage
|
|
||||||
#0 for not storing deaths at all
|
|
||||||
# Default: -1
|
|
||||||
# Range: > -1
|
|
||||||
death_storage_duration = -1
|
|
||||||
|
|
||||||
[corpse]
|
|
||||||
#The time passed (in ticks) after a corpse turns into a skeleton
|
|
||||||
# Default: 72000
|
|
||||||
# Range: > 0
|
|
||||||
skeleton_time = 72000
|
|
||||||
#If the corpse should lie on its face
|
|
||||||
lie_on_face = false
|
|
||||||
#If the corpse should wear the players equipment
|
|
||||||
show_equipment = true
|
|
||||||
#If the corpse should fall into the void
|
|
||||||
fall_into_void = false
|
|
||||||
#If the corpse should get removed when in lava
|
|
||||||
lava_damage = false
|
|
||||||
|
|
||||||
[corpse.access]
|
|
||||||
#If only the owner of the corpse can access the inventory
|
|
||||||
only_owner = true
|
|
||||||
#If everybody can access the corpse in the skeleton stage (Only if only_owner_access is set to true)
|
|
||||||
skeleton = true
|
|
||||||
|
|
||||||
[corpse.despawn]
|
|
||||||
#The time passed (in ticks) after a corpse despawns (only if empty)
|
|
||||||
# Default: 600
|
|
||||||
# Range: > 20
|
|
||||||
time = 600
|
|
||||||
#The time passed (in ticks) after a corpse despawns even if its not empty (-1 = never)
|
|
||||||
# Default: -1
|
|
||||||
# Range: > -1
|
|
||||||
force_time = -1
|
|
||||||
10
config/cosmeticarmorreworked-common.toml
Normal file
10
config/cosmeticarmorreworked-common.toml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
#These settings affects both server and client
|
||||||
|
[Common]
|
||||||
|
#Whether or not to keep items in cosmetic armor slots in the event of player death
|
||||||
|
CosArmorKeepThroughDeath = false
|
||||||
|
#Whether or not to disable the RecipeBook in the CosmeticArmorInventory
|
||||||
|
CosArmorDisableRecipeBook = false
|
||||||
|
#Whether or not to disable the coshat command
|
||||||
|
CosArmorDisableCosHatCommand = false
|
||||||
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"editorLastVersion": "0.6.25a",
|
|
||||||
"editorRecentProjects": [],
|
|
||||||
"titleScreenButton": false,
|
|
||||||
"serverSettings": {},
|
|
||||||
"keybinds": {}
|
|
||||||
}
|
|
||||||
@ -1,379 +0,0 @@
|
|||||||
|
|
||||||
#General settings of Crash Assistant mod.
|
|
||||||
[general]
|
|
||||||
#Link which will be opened in browser on request_help_button pressed.
|
|
||||||
#If equals CHANGE_ME, will open Forge/NeoForge/Fabric/Quilt discord link. Names of communities/channels also will be used not from config, but according to this link.
|
|
||||||
#Must start with 'https://' or 'www.'
|
|
||||||
help_link = "CHANGE_ME"
|
|
||||||
#With this option, you can select the formulation of the GUI (e.g., in the help buttons, title).
|
|
||||||
#Currently supported:
|
|
||||||
# - DISCORD: Uses terminology like 'join the Discord' and 'post in #channel'.
|
|
||||||
# - GITHUB: Uses terminology like 'visit the GitHub' and 'post into a new issue'.
|
|
||||||
formulation_type = "GITHUB"
|
|
||||||
#Anyways log will be uploaded to mclo.gs, but with this option you can wrap link to gnomebot.dev for better formatting.
|
|
||||||
#If help_link equals 'CHANGE_ME', this value will be ignored and gnomebot.dev used.
|
|
||||||
#Supported values: mclo.gs / gnomebot.dev
|
|
||||||
upload_to = "gnomebot.dev"
|
|
||||||
#Show gui on minecraft crashed on modloading and FML error screen displayed.
|
|
||||||
show_on_fml_error_screen = true
|
|
||||||
#Close old CrashAssistantApp if it's still running when starting a new instance of Minecraft, to avoid confusing player with window from old crash.
|
|
||||||
kill_old_app = true
|
|
||||||
#If options.txt doesn't exist, the default language will be used.
|
|
||||||
default_lang = "en_us"
|
|
||||||
#By default, crash assistant will get the value for the current language from the overrides folder, then from the jar.
|
|
||||||
#By changing this option, it will first try to get it from the current overrides, then (if no override exists for this language)
|
|
||||||
#from the override for the language specified here, and only then from the jar language.
|
|
||||||
#Use "NONE" to disable this feature. Or language key, like "en_us" to enable it.
|
|
||||||
priority_lang_for_overrides = "NONE"
|
|
||||||
#By changing this value you can disable creating "crash_assistant_localization_overrides" folder and placing "README.md" file there.
|
|
||||||
generate_localization_overrides_folder_with_readme = true
|
|
||||||
#By default our process is scanning for terminated processes(they can appear with delay) and after finish of scan enabling upload buttons.
|
|
||||||
#This option can prevent this and enable individual upload buttons immediately after crash.
|
|
||||||
#However can confuse users and make them clicking individual upload buttons instead of Upload All Button.
|
|
||||||
prevent_upload_buttons_delay = false
|
|
||||||
#Before uploading the first log, requires the user to accept the privacy policy.
|
|
||||||
#Disabling this option may be illegal in some countries if you are modpack creator. Disable at your own risk.
|
|
||||||
enable_privacy_policy_acceptance = true
|
|
||||||
#Unfortunately mclogs censoring ip-like versions as has no way to determine if it's version or IP.
|
|
||||||
#This will prevent this by replacing dot's in them to dot-like symbol.
|
|
||||||
#Anti censoring only versions, IP's are kept censored.
|
|
||||||
enable_mclogs_anti_ip_like_version_censorer = true
|
|
||||||
#Prevents creating "crash_assistant" folder in the logs folder.
|
|
||||||
#So this option prevents our app logging at all.
|
|
||||||
#HIGHLY UNRECOMMENDED to disable! Contains many useful info.
|
|
||||||
prevent_generating_crash_assistant_app_logs = false
|
|
||||||
#Generates "logs/stderr_stream.log" with stderr stream.
|
|
||||||
#Since many launchers are not saving this info, which is extremely helpful for debugging some crashes.
|
|
||||||
#As only where crash reason is present. Keeps original stream untouched, just logs it to a file.
|
|
||||||
generate_own_launcher_log = true
|
|
||||||
#If true, Crash Assistant will pop up even if the presence of win_event log is the only sign of a crash.
|
|
||||||
#Can be false positive for some users, since they can have some unrelated spam in the windows event error log.
|
|
||||||
win_event_is_crash = false
|
|
||||||
#Here you can change priority for logs.
|
|
||||||
#For example if you want crash report to be shown earlier than latest.log in the available logs list.
|
|
||||||
#Supported values: https://github.com/KostromDan/Crash-Assistant/blob/1.19-1.20.1/app/src/main/java/dev/kostromdan/mods/crash_assistant/app/logs_analyser/LogType.java
|
|
||||||
#Usage: ["CRASH_REPORT", "LOG"]
|
|
||||||
logs_priority_overrides = []
|
|
||||||
#List of blacklisted log files (checked with startswith()). This files won't show in GUI logs list.
|
|
||||||
blacklisted_logs = []
|
|
||||||
|
|
||||||
#A simplified GUI that hides the logs list until the user opts into Expert Mode.
|
|
||||||
[simple_mode]
|
|
||||||
#If enabled, the GUI starts in simple mode with logs hidden and a single "Show Logs (Expert Mode)" button.
|
|
||||||
#Disabled by default.
|
|
||||||
enabled = false
|
|
||||||
#If true, modpack creators always see the Expert Mode with logs visible, even if simple mode is enabled.
|
|
||||||
prevent_for_modpack_creators = true
|
|
||||||
#If true, hides the mod list changes section while simple mode is active.
|
|
||||||
hide_modlist_section = false
|
|
||||||
|
|
||||||
#Here you can change text of lang placeHolders.
|
|
||||||
#Also you can change any text in lang files.
|
|
||||||
#You don't need to modify jar. You can change it in config/crash_assistant/lang. For more info read README.md file located where.
|
|
||||||
[text]
|
|
||||||
#$CONFIG.text.support_name$ in lang files will be replaced with this value.
|
|
||||||
#For example this placeHolder used in: "Request help in the $CONFIG.text.support_name$"
|
|
||||||
#Recommended values: "Modpack-X Discord", "Modpack-X GitHub repository", etc.
|
|
||||||
support_name = "PodKos"
|
|
||||||
#$CONFIG.text.support_place$ in lang files will be replaced with this value.
|
|
||||||
#Recommended values: "#support channel".
|
|
||||||
#In case of formulation type `GITHUB` won't be used.
|
|
||||||
support_place = "#example channel"
|
|
||||||
#$CONFIG.text.modpack_name$ in lang files will be replaced with this value.
|
|
||||||
#For example this placeHolder used in: "Oops, $CONFIG.text.modpack_name$ crashed!"
|
|
||||||
#Supports Better Compatibility Checker integration. You can use $BCC.modpackName$, $BCC.modpackVersion$, etc and it will be replaced with value from BCC config.
|
|
||||||
modpack_name = "Banana"
|
|
||||||
|
|
||||||
#Settings of message generated by Upload all button
|
|
||||||
[generated_message]
|
|
||||||
#Add prefix before filename.
|
|
||||||
#This can prevent too small, hard to hit on mobile links.
|
|
||||||
#Recommended values: "### ".
|
|
||||||
prefix = "### "
|
|
||||||
#Separator between logs.
|
|
||||||
#If you want vertical logs, use "\n$PREFIX$".
|
|
||||||
logs_separator = " | "
|
|
||||||
#Adds line in log list about this Intel processor can be corrupted.
|
|
||||||
intel_corrupted_notification = true
|
|
||||||
#Adds line in log list about piracy/offline mode or if check failed.
|
|
||||||
piracy_notification = true
|
|
||||||
#If the modpack is created for a non-English-speaking audience, сhange this to the language the modpack is designed for.
|
|
||||||
#This lang will be used only for generating message by "Upload all..." button.Do not modify this value if there's a chance that the generated message will be sent to English-speaking communities.
|
|
||||||
generated_msg_lang = "en_us"
|
|
||||||
#This text will be under "$CONFIG.text.modpack_name$ crashed!" in generated message by Upload all button.
|
|
||||||
#You can include:
|
|
||||||
# * some form, which users should fill out.
|
|
||||||
# * additional information like Minecraft version, etc.
|
|
||||||
text_under_crashed = ""
|
|
||||||
#With this option you can notify user about something related with posting generated message.
|
|
||||||
#For example if they need to fill some option from "text_under_crashed", etc.
|
|
||||||
#Supports html formatting, placeholders.
|
|
||||||
#Leave empty to prevent showing this warning message.
|
|
||||||
warning_after_upload_all_button_press = ""
|
|
||||||
#Puts problematic frame from hs_err to message.
|
|
||||||
put_problematic_frame_to_message = true
|
|
||||||
#Puts analysis result(names of crash reasons) to message, instead of just count.
|
|
||||||
put_analysis_result_to_message = true
|
|
||||||
#Color modified mods count/analysis in msg with ANSI.
|
|
||||||
#Can be needed to be disabled if issues are reported to something not supporting ANSI codeblocks, like GitHub.
|
|
||||||
#If you disable this option, you may also want to remove "ansi" from "generated_message.ansi_block_pattern".
|
|
||||||
color_message = true
|
|
||||||
#Structure of the generated message.
|
|
||||||
#Variables:
|
|
||||||
#$HEADER$ - Title and upload link
|
|
||||||
#$TEXT_UNDER_CRASHED$ - Custom text from config
|
|
||||||
#$PREFIX$ - The prefix string
|
|
||||||
#$LOGS$ - The joined logs
|
|
||||||
#$PROBLEMATIC_FRAME$ - hs_err frame
|
|
||||||
#$ANALYSIS_RESULT$ - Analysis results
|
|
||||||
#$MODLIST_DIFF$ - Modlist changes
|
|
||||||
message_structure = "$HEADER$$TEXT_UNDER_CRASHED$$PREFIX$$LOGS$\n$PROBLEMATIC_FRAME$$ANALYSIS_RESULT$$MODLIST_DIFF$"
|
|
||||||
#Pattern for a single log line.
|
|
||||||
#Variables: $LOG_NAME$, $FILE_NAME$, $LINK$.
|
|
||||||
log_line_pattern = "$LOG_NAME$[$FILE_NAME$](<$LINK$>)"
|
|
||||||
#Pattern for a split log line (too large for single upload).
|
|
||||||
#Variables: $LOG_NAME$, $FILE_NAME$, $LINK_FIRST_LINES$, $LINK_LAST_LINES$, $TOO_BIG_REASONS$.
|
|
||||||
log_line_split_pattern = "$LOG_NAME$[$FILE_NAME$ <TOLOWER>$MSG_LANG.gui.split_log_dialog_head$</TOLOWER>](<$LINK_FIRST_LINES$>) / [<TOLOWER>$MSG_LANG.gui.split_log_dialog_tail$</TOLOWER>](<$LINK_LAST_LINES$>) $TOO_BIG_REASONS$"
|
|
||||||
#Pattern for ModList Diff and Analysis Results blocks.
|
|
||||||
#Variables: $PREFIX$, $HEADER$, $CONTENT$.
|
|
||||||
#If 'color_message' is false, remove 'ansi'.
|
|
||||||
ansi_block_pattern = "$PREFIX$$HEADER$\n```ansi\n$CONTENT$\n```"
|
|
||||||
#Pattern for formatting the problematic frame from hs_err.
|
|
||||||
#Variables: $CONTENT$
|
|
||||||
problematic_frame_pattern = "```java\n$CONTENT$\n```"
|
|
||||||
#Pattern for simple link notifications (e.g. Intel fix, Piracy check, KubeJS scripts).
|
|
||||||
#Variables: $TEXT$, $LINK$
|
|
||||||
link_notification_pattern = "[$TEXT$](<$LINK$>)"
|
|
||||||
#Pattern for the header of the modlist diff block (containing the link).
|
|
||||||
#Variables: $PART1$ (text before link), $PART2$ (text after link), $LINK$.
|
|
||||||
modlist_header_pattern = "[$PART1$](<$LINK$>)$PART2$"
|
|
||||||
|
|
||||||
#Settings of links copied by Upload and copy link buttons
|
|
||||||
[copied_links]
|
|
||||||
#With this option, you can customize how single links from individual upload buttons are copied, there
|
|
||||||
#log of small size was uploaded to a single link.
|
|
||||||
#For example, leave just $LINK$ to copy just link.
|
|
||||||
single_link = "$LOG_NAME$$FILE_NAME$: $LINK$"
|
|
||||||
#With this option, you can customize how links from individual upload buttons are copied, there
|
|
||||||
#log was split to the 2 parts (head and tail, due to too large size for single upload), but user only decided to copy only one of them (not message with both).
|
|
||||||
single_link_split = "$LOG_NAME$$FILE_NAME$($HEAD_OR_TAIL$): $LINK$ $TOO_BIG_REASONS$"
|
|
||||||
#With this option, you can customize how links from individual upload buttons are copied, there
|
|
||||||
#log was split to the 2 parts (head and tail, due to too large size for single upload), but user decided to copy message with both.
|
|
||||||
both_links_split = "$LOG_NAME$[$FILE_NAME$ <TOLOWER>$MSG_LANG.gui.split_log_dialog_head$</TOLOWER>](<$LINK_FIRST_LINES$>) / [<TOLOWER>$MSG_LANG.gui.split_log_dialog_tail$</TOLOWER>](<$LINK_LAST_LINES$>) $TOO_BIG_REASONS$"
|
|
||||||
#If enabled, disables the head/tail selection dialog for split logs on individual uploads and always copies message with both links.
|
|
||||||
skip_split_dialog = false
|
|
||||||
|
|
||||||
#Settings of modlist feature.
|
|
||||||
#Adds in generated msg block about which mods modpack user added/removed/updated.
|
|
||||||
#Also you can see diff by running '/crash_assistant modlist diff' command.
|
|
||||||
[modpack_modlist]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
#nicknames of players, who considered as modpack creator.
|
|
||||||
#Only this players can overwrite modlist.json
|
|
||||||
#If this feature is enabled and this array is empty, will be appended with nickname of current player.
|
|
||||||
#-----------------------------------------------------------------------------------------------------
|
|
||||||
#Warning! This is not displayed anywhere, it's just tech param used for modlist feature to work correctly.
|
|
||||||
#Here must be actual nicknames of people who work with the modpack and publishing releases!
|
|
||||||
#-----------------------------------------------------------------------------------------------------
|
|
||||||
modpack_creators = ["materus"]
|
|
||||||
#If enabled, modlist.json will be overwritten on every launch(first tick of TitleScreen),
|
|
||||||
#then game is launched by modpack creator.
|
|
||||||
#So you won't forget to save it before publishing.
|
|
||||||
#If you want to save manually: disable this and use '/crash_assistant modlist save' command.
|
|
||||||
auto_update = true
|
|
||||||
#If enabled, will add resourcepacks to modlist.json
|
|
||||||
#After filename where will be ' (resourcepack)' suffix.
|
|
||||||
add_resourcepacks = false
|
|
||||||
#If enabled, will add datapacks to modlist.json
|
|
||||||
#After filename where will be ' (datapacks)' suffix.
|
|
||||||
add_datapacks = false
|
|
||||||
#If enabled, will add modloader jar name to modlist, to easily track if user changed version of modloader.
|
|
||||||
add_modloader_jar_name = true
|
|
||||||
#If enabled, will add generated modlist.txt, with names of all mods / modids / mixin configs / jarjar mods info to logs.
|
|
||||||
add_modlist_txt_as_log = true
|
|
||||||
|
|
||||||
#Settings of too many changes warning feature.
|
|
||||||
#Notifies end users of the modpack and saying they made too many changes to the modpack.
|
|
||||||
#Not displayed to the modpack creators.
|
|
||||||
[too_many_changes_warning]
|
|
||||||
#Set to the positive integer to enable feature. Set to negative integer to disable.
|
|
||||||
#How many changes end user should make for warning to be displayed.
|
|
||||||
count = -1
|
|
||||||
#With this option, you can select the formulation of this warning, currently supported:
|
|
||||||
# - NOTIFY: Just saying to the end user that what they made many changes and adding random mods or clicking
|
|
||||||
#the "Update All" button is not a good idea without proper testing. It is expected to crash.
|
|
||||||
# - DROP_SUPPORT: Saying what you are not providing support for that amount of changes, suggesting the end user to
|
|
||||||
#re-install modpack or they are on their own with that amount of changes.
|
|
||||||
formulation_type = "NOTIFY"
|
|
||||||
|
|
||||||
#Settings of analysis feature.
|
|
||||||
#Analysing logs for most common reasons of crashes and displaying recommendations with fixes.
|
|
||||||
[analysis]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
#By default if CA work in modpack mode and ran by the end user it won't display analysis if it blames mod which was part of original modpack.
|
|
||||||
#And will blame only mods which were added/updated by end users. By enabling this option you can bypass this and it will blame any mods.
|
|
||||||
trigger_on_original_modpack_mods = false
|
|
||||||
#Delay in seconds for the OK button when a crash reason is shown for the first time.
|
|
||||||
#Helps to ensure the user reads the recommendation.
|
|
||||||
#Set to 0 or -1 to disable the delay.
|
|
||||||
first_show_delay = -1
|
|
||||||
#Here you can disable some Analysis by class names.
|
|
||||||
#List of them can be found here: dev.kostromdan.mods.crash_assistant.app.logs_analyser.crash_reasons
|
|
||||||
#For example "Create6Addons"
|
|
||||||
blacklisted_reasons = []
|
|
||||||
|
|
||||||
#Settings of analysis tools feature.
|
|
||||||
#Here you can enable or disable showing some analysis tools for end user.
|
|
||||||
[analysis_tools]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
#Here you can disable some Analysis tools by class names.
|
|
||||||
#List of them can be found here: dev.kostromdan.mods.crash_assistant.app.gui.analysis
|
|
||||||
#For example "MCreatorModDetectorGUI"
|
|
||||||
blacklisted_tools = []
|
|
||||||
|
|
||||||
#Settings of '/crash_assistant crash' command feature.
|
|
||||||
[crash_command]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
#To ensure the user really wants to crash the game, the command needs to be run again within this amount of seconds.
|
|
||||||
#Set to <= 0 to disable the confirmation.
|
|
||||||
seconds = 10
|
|
||||||
|
|
||||||
#Settings of notifying about intel corrupted processors.
|
|
||||||
[intel_corrupted]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
|
|
||||||
#Settings of notifying about piracy/offline mode.
|
|
||||||
[piracy]
|
|
||||||
#Enable feature.
|
|
||||||
#Note: This option is ignored if general.help_link is default (CHANGE_ME).
|
|
||||||
#Notifies if in your community (Discord/GitHub) piracy is not supported. Recommended to enable for modpacks.
|
|
||||||
enabled = false
|
|
||||||
#Delay in seconds for the OK button when piracy warning is shown.
|
|
||||||
#Set to 0 or -1 to disable the delay.
|
|
||||||
delay = 10
|
|
||||||
|
|
||||||
[greeting]
|
|
||||||
#You don't need to touch this option.
|
|
||||||
#On first world join of modpack creator if set to false shows greeting, then self enables.
|
|
||||||
shown_greeting = false
|
|
||||||
|
|
||||||
#Settings of scripting feature.
|
|
||||||
#Allows you to add custom scripts for log analysis.
|
|
||||||
#Scripts should be placed in config/crash_assistant/scripts/log_analysis folder.
|
|
||||||
[scripts]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
#Enable Scripts IDE in the GUI.
|
|
||||||
ide_enabled = true
|
|
||||||
#By changing this value you can disable creating "scripts" folder and placing example scripts there.
|
|
||||||
generate_scripts_folder_with_example = true
|
|
||||||
#If enabled, "logs/crash_assistant/startup_scripts.log" is added to the logs list only when it contains [ERROR].
|
|
||||||
#If it has no errors, its contents are written into "crash_assistant_app.log" instead.
|
|
||||||
#If app logging is disabled, the startup scripts log is kept as a separate log file.
|
|
||||||
attach_startup_scripts_log_only_on_error = true
|
|
||||||
|
|
||||||
#You can customise GUI with this options.
|
|
||||||
[gui_customisation]
|
|
||||||
#Name of a FlatLaf IntelliJ Themes file in config/crash_assistant folder or core theme name.
|
|
||||||
#If file doesn't exist and no core theme matches, themes will be disabled and Standard Swing look and feel used.
|
|
||||||
#Supported core themes: 'FlatLightLaf', 'FlatDarkLaf', 'FlatIntelliJLaf', 'FlatDarculaLaf', 'FlatMacLightLaf', 'FlatMacDarkLaf'.
|
|
||||||
#Supports any IntelliJ Theme file with '.theme.json' extension.
|
|
||||||
#If you prefer standard Swing look and feel, use 'Swing'.
|
|
||||||
#Look out our guide about theme support: https://github.com/KostromDan/Crash-Assistant/blob/pages/guides/Theme%20Support/Getting%20Started.md
|
|
||||||
theme_file_name = "FlatDarculaLaf"
|
|
||||||
#Will hide Upload All Button from GUI.
|
|
||||||
disable_upload_all_button = false
|
|
||||||
#Append comment text with notice about sending screenshot of this gui tells nothing to modpack creators.
|
|
||||||
show_dont_send_screenshot_of_gui_notice = true
|
|
||||||
#Animate border to request user attention even more.
|
|
||||||
screenshot_of_gui_notice_animated_border = true
|
|
||||||
#You can make Upload All Button bigger/smaller to request user attention.
|
|
||||||
#Default Swing font size is 12, Default for this button in crash assistant is 16.
|
|
||||||
#Not recommended to set it more than 16, as it will affect the increase of GUI size because all text won't fit.
|
|
||||||
upload_all_button_font_size = 16
|
|
||||||
#Same as upload_all_button_font_size, but for Request Help button.
|
|
||||||
request_help_button_font_size = 16
|
|
||||||
#Same as upload_all_button_font_size, but for the Simple Mode toggle button.
|
|
||||||
simple_mode_button_font_size = 16
|
|
||||||
#You can change Upload All Button color to request user attention.
|
|
||||||
#format is "R_G_B", range is 0-255, for example "255_0_0" is red color. Use "default" to use default swing color.
|
|
||||||
#Default for this button is "0_178_0" (dark green color).
|
|
||||||
upload_all_button_foreground_color = "0_178_0"
|
|
||||||
#Same as upload_all_button_foreground_color, but for Request Help button.
|
|
||||||
#Default for this button is "0_0_178" (dark blue color).
|
|
||||||
request_help_button_foreground_color = "0_0_178"
|
|
||||||
#Same as upload_all_button_foreground_color, but for the Simple Mode toggle button.
|
|
||||||
simple_mode_button_foreground_color = "0_0_178"
|
|
||||||
#Same as upload_all_button_font_size, but for Auto-Fix button (in integrated GPU warning).
|
|
||||||
auto_fix_button_font_size = 16
|
|
||||||
#Same as upload_all_button_foreground_color, but for Auto-Fix button (in integrated GPU warning).
|
|
||||||
#Default for this button is "0_178_0" (dark green color).
|
|
||||||
auto_fix_button_foreground_color = "0_178_0"
|
|
||||||
#Same as upload_all_button_foreground_color, but for the Yes button in the privacy policy acceptance dialog.
|
|
||||||
#Default for this button is "0_178_0" (dark green color).
|
|
||||||
privacy_policy_yes_button_foreground_color = "0_178_0"
|
|
||||||
#Same as upload_all_button_foreground_color, but for the No button in the privacy policy acceptance dialog.
|
|
||||||
#Default for this button is "255_0_0" (red color).
|
|
||||||
privacy_policy_no_button_foreground_color = "255_0_0"
|
|
||||||
#Color of the animated border for the screenshot notice.
|
|
||||||
#format is "R_G_B", range is 0-255, for example "255_0_0" is red color.
|
|
||||||
#Default for this is "255_0_0" (red color).
|
|
||||||
screenshot_of_gui_notice_animated_border_color = "255_0_0"
|
|
||||||
#Color of the text for the screenshot notice (inside the animated border).
|
|
||||||
#format is "R_G_B", range is 0-255, for example "255_0_0" is red color.
|
|
||||||
#Default for this is "255_0_0" (red color).
|
|
||||||
screenshot_of_gui_notice_text_color = "255_0_0"
|
|
||||||
#Color of the button blinking on success action (e.g. upload all finished).
|
|
||||||
#format is "R_G_B", range is 0-255.
|
|
||||||
#Default is "100_255_100" (light green).
|
|
||||||
blinking_button_success_color = "100_255_100"
|
|
||||||
#Color of the button blinking on attention request (e.g. click on link in description).
|
|
||||||
#format is "R_G_B", range is 0-255.
|
|
||||||
#Default is "100_100_255" (light blue).
|
|
||||||
blinking_button_attention_color = "100_100_255"
|
|
||||||
#Color of the button blinking on error (e.g. failed upload).
|
|
||||||
#format is "R_G_B", range is 0-255.
|
|
||||||
#Default is "255_100_100" (light red).
|
|
||||||
blinking_button_error_color = "255_100_100"
|
|
||||||
#Path to a modpack logo to display in the top of the GUI.
|
|
||||||
#Path is relative to the Minecraft instance folder. Leave empty to disable.
|
|
||||||
#WARNING: use only '/' path separator. '\' will corrupt config!
|
|
||||||
modpack_logo_path = ""
|
|
||||||
#If true, the logo will be larger, Replacing a some of `don't send screenshot` notice.
|
|
||||||
#If false, it will be smaller and logo will be end right where the `don't send screenshot` notice starts.
|
|
||||||
#You should try both, but most likely:
|
|
||||||
#- If you have some long text in the discord/github name, you will love the small one.
|
|
||||||
#- If the text is short, you will love the large one.
|
|
||||||
modpack_logo_large_mode = false
|
|
||||||
#Limit modpack logo height. Default is -1, which means it's calculated automatically.
|
|
||||||
#By default, this should not be needed. But if you have heavily customized GUI or using
|
|
||||||
#a rectangle logo instead of square, you may want to decrease its size, so this option could be needed in such case.
|
|
||||||
limit_modpack_logo_height = -1
|
|
||||||
#This option would be needed only if you limited modpack logo height.
|
|
||||||
#Otherwise, the logo will consume all available horizontal space.
|
|
||||||
#If true, the logo will be centered. If false, it will be aligned to the top.
|
|
||||||
modpack_logo_aligned_center = true
|
|
||||||
|
|
||||||
#Checks crash_assistant compatibility with other incompatible mods.
|
|
||||||
#Highly unrecommended to disable!
|
|
||||||
[compatibility]
|
|
||||||
#Enable feature.
|
|
||||||
enabled = true
|
|
||||||
|
|
||||||
#Options to help debug the Crash Assistant.
|
|
||||||
[debug]
|
|
||||||
#Debug option to crash immediately after Crash Assistant launched its process to conveniently debug it, configure it without need to manually crash.
|
|
||||||
crash_after_init = false
|
|
||||||
|
|
||||||
#Options to configure patches made by Crash Assistant.
|
|
||||||
[patches]
|
|
||||||
#Fixes vanilla crash MC-307905 during crash report generation when StackTraceElement#getFileName() returns null.
|
|
||||||
#Without this fix, crash report generation itself crashes under some rare conditions, preventing the original crash report from being created.
|
|
||||||
#This patch does not change the report contents; it only allows the crash report to be generated successfully.
|
|
||||||
MC307905 = true
|
|
||||||
|
|
||||||
@ -1,147 +0,0 @@
|
|||||||
#.
|
|
||||||
#Client-only settings - If you're looking for general settings, look inside your worlds serverconfig folder!
|
|
||||||
[client]
|
|
||||||
#.
|
|
||||||
#Show item descriptions on Shift and controls on Ctrl.
|
|
||||||
enableTooltips = true
|
|
||||||
#.
|
|
||||||
#Display a tooltip when looking at overstressed components.
|
|
||||||
enableOverstressedTooltip = true
|
|
||||||
#.
|
|
||||||
#Log a stack-trace when rendering issues happen within a moving contraption.
|
|
||||||
explainRenderErrors = false
|
|
||||||
#.
|
|
||||||
#Higher density means more spawned particles.
|
|
||||||
# Default: 0.5
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
fanParticleDensity = 0.5
|
|
||||||
#.
|
|
||||||
#[in Blocks]
|
|
||||||
#Maximum Distance to the player at which items in Blocks' filter slots will be displayed
|
|
||||||
# Default: 10.0
|
|
||||||
# Range: 1.0 ~ 3.4028234663852886E38
|
|
||||||
filterItemRenderDistance = 10.0
|
|
||||||
#.
|
|
||||||
#Choose the menu row that the Create config button appears on in the main menu
|
|
||||||
#Set to 0 to disable the button altogether
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 4
|
|
||||||
mainMenuConfigButtonRow = 3
|
|
||||||
#.
|
|
||||||
#Offset the Create config button in the main menu by this many pixels on the X axis
|
|
||||||
#The sign (-/+) of this value determines what side of the row the button appears on (left/right)
|
|
||||||
# Default: -4
|
|
||||||
# Range: > -2147483648
|
|
||||||
mainMenuConfigButtonOffsetX = -4
|
|
||||||
#.
|
|
||||||
#Choose the menu row that the Create config button appears on in the in-game menu
|
|
||||||
#Set to 0 to disable the button altogether
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 5
|
|
||||||
ingameMenuConfigButtonRow = 3
|
|
||||||
#.
|
|
||||||
#Offset the Create config button in the in-game menu by this many pixels on the X axis
|
|
||||||
#The sign (-/+) of this value determines what side of the row the button appears on (left/right)
|
|
||||||
# Default: -4
|
|
||||||
# Range: > -2147483648
|
|
||||||
ingameMenuConfigButtonOffsetX = -4
|
|
||||||
#.
|
|
||||||
#Setting this to true will prevent Create from sending you a warning when playing with Fabulous graphics enabled
|
|
||||||
ignoreFabulousWarning = false
|
|
||||||
#.
|
|
||||||
#Disable to prevent being rotated while seated on a Moving Contraption
|
|
||||||
rotateWhenSeated = true
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Configure your vision range when submerged in Create's custom fluids
|
|
||||||
[client.fluidFogSettings]
|
|
||||||
#.
|
|
||||||
#The vision range through honey will be multiplied by this factor
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.125 ~ 256.0
|
|
||||||
honey = 1.0
|
|
||||||
#.
|
|
||||||
#The vision range though chocolate will be multiplied by this factor
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.125 ~ 256.0
|
|
||||||
chocolate = 1.0
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Settings for the Goggle Overlay
|
|
||||||
[client.goggleOverlay]
|
|
||||||
#.
|
|
||||||
#Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay
|
|
||||||
# Default: 20
|
|
||||||
# Range: > -2147483648
|
|
||||||
overlayOffsetX = 20
|
|
||||||
#.
|
|
||||||
#Offset the overlay from goggle- and hover- information by this many pixels on the respective axis; Use /create overlay
|
|
||||||
# Default: 0
|
|
||||||
# Range: > -2147483648
|
|
||||||
overlayOffsetY = 0
|
|
||||||
#.
|
|
||||||
#Enable this to use your custom colors for the Goggle- and Hover- Overlay
|
|
||||||
customColorsOverlay = false
|
|
||||||
#.
|
|
||||||
#The custom background color to use for the Goggle- and Hover- Overlays, if enabled
|
|
||||||
#[in Hex: #AaRrGgBb]
|
|
||||||
#[@cui:IntDisplay:#]
|
|
||||||
# Default: -267386864
|
|
||||||
# Range: > -2147483648
|
|
||||||
customBackgroundOverlay = -267386864
|
|
||||||
#.
|
|
||||||
#The custom top color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled
|
|
||||||
#[in Hex: #AaRrGgBb]
|
|
||||||
#[@cui:IntDisplay:#]
|
|
||||||
# Default: 1347420415
|
|
||||||
# Range: > -2147483648
|
|
||||||
customBorderTopOverlay = 1347420415
|
|
||||||
#.
|
|
||||||
#The custom bot color of the border gradient to use for the Goggle- and Hover- Overlays, if enabled
|
|
||||||
#[in Hex: #AaRrGgBb]
|
|
||||||
#[@cui:IntDisplay:#]
|
|
||||||
# Default: 1344798847
|
|
||||||
# Range: > -2147483648
|
|
||||||
customBorderBotOverlay = 1344798847
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Sound settings
|
|
||||||
[client.sound]
|
|
||||||
#.
|
|
||||||
#Make cogs rumble and machines clatter.
|
|
||||||
enableAmbientSounds = true
|
|
||||||
#.
|
|
||||||
#Maximum volume modifier of Ambient noise
|
|
||||||
# Default: 0.10000000149011612
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
ambientVolumeCap = 0.10000000149011612
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Mod Integration and Recipe Viewer
|
|
||||||
[client.recipeViewerIntegration]
|
|
||||||
#.
|
|
||||||
#How Recipe Viewer search should interact with Stock Keepers
|
|
||||||
#Allowed Values: SYNC_BOTH, SYNC_FROM_JEI, SYNC_FROM_STOCK_KEEPER, NONE
|
|
||||||
syncRecipeViewerSearch = "SYNC_BOTH"
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Railway related settings
|
|
||||||
[client.trains]
|
|
||||||
#.
|
|
||||||
#How far away the Camera should zoom when seated on a train
|
|
||||||
# Default: 3.0
|
|
||||||
# Range: 0.0 ~ 3.4028234663852886E38
|
|
||||||
mountedZoomMultiplier = 3.0
|
|
||||||
#.
|
|
||||||
#Display nodes and edges of a Railway Network while f3 debug mode is active
|
|
||||||
showTrackGraphOnF3 = false
|
|
||||||
#.
|
|
||||||
#Additionally display materials of a Rail Network while f3 debug mode is active
|
|
||||||
showExtendedTrackGraphOnF3 = false
|
|
||||||
#.
|
|
||||||
#Display Track Networks and Trains on supported map mods
|
|
||||||
showTrainMapOverlay = true
|
|
||||||
#.
|
|
||||||
#Track Network Color on maps
|
|
||||||
#Allowed Values: RED, GREY, WHITE
|
|
||||||
trainMapColorTheme = "RED"
|
|
||||||
@ -1,193 +0,0 @@
|
|||||||
#.
|
|
||||||
#Parameters and abilities of kinetic mechanisms
|
|
||||||
[kinetics]
|
|
||||||
#.
|
|
||||||
#.
|
|
||||||
#Whether Deployer-killed entities should drop experience.
|
|
||||||
deployerKillDropXp = true
|
|
||||||
#.
|
|
||||||
#Scale for experience dropped from Deployer-killed entities.
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
deployerKillXpScale = 1.0
|
|
||||||
#.
|
|
||||||
#Whether Deployer-mined blocks should drop experience.
|
|
||||||
deployerMineDropXp = true
|
|
||||||
#.
|
|
||||||
#Scale for experience dropped from Deployer-mined blocks.
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
deployerMineXpScale = 1.0
|
|
||||||
#.
|
|
||||||
#Whether Deployers collect dropped experience as Nuggets of Experience.
|
|
||||||
deployerCollectXp = true
|
|
||||||
#.
|
|
||||||
#Whether the Mending enchantment applies to Deployer-held items (Needs deployerCollectXp = true).
|
|
||||||
deployerMendItem = true
|
|
||||||
#.
|
|
||||||
#Whether Deployers can perform sweep attacks.
|
|
||||||
deployerSweepAttack = true
|
|
||||||
#.
|
|
||||||
#Whether Crushing Wheel-killed entities should drop experience.
|
|
||||||
crushingWheelKillDropXp = true
|
|
||||||
#.
|
|
||||||
#Probability of Crushing Wheel-killed entities dropping experience.
|
|
||||||
# Default: 0.30000001192092896
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
crushingWheelKillDropXpChance = 0.30000001192092896
|
|
||||||
#.
|
|
||||||
#Scale for experience dropped from Crushing Wheel-killed entities.
|
|
||||||
# Default: 0.3400000035762787
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
crushingWheelKillDropXpScale = 0.3400000035762787
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Fine tune the kinetic stats of individual components
|
|
||||||
[kinetics.stressValues.v1]
|
|
||||||
|
|
||||||
#.
|
|
||||||
#.
|
|
||||||
#[in Stress Units]
|
|
||||||
#Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives.
|
|
||||||
[kinetics.stressValues.v1.impact]
|
|
||||||
mechanical_grindstone = 4.0
|
|
||||||
grindstone_drain = 4.0
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Parameters and abilities of fluids and fluid operating components
|
|
||||||
[kinetics.fluids]
|
|
||||||
#.
|
|
||||||
#.
|
|
||||||
#Whether Liquid Experience will vaporize into Experience Orbs upon placement.
|
|
||||||
experienceVaporizeOnPlacement = true
|
|
||||||
#.
|
|
||||||
#The amount of liquid a Printer can hold (mB).
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
# Default: 4000
|
|
||||||
# Range: > 1000
|
|
||||||
printerFluidCapacity = 8000
|
|
||||||
#.
|
|
||||||
#If the printing of Written Books function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enableWrittenBookPrinting = true
|
|
||||||
#.
|
|
||||||
#If the printing of Enchanted Books function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enableEnchantedBookPrinting = true
|
|
||||||
#.
|
|
||||||
#If the printing of Create's copiable items function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enableCreateCopiableItemPrinting = true
|
|
||||||
#.
|
|
||||||
#If the changing package patterns function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enablePackagePatternPrinting = true
|
|
||||||
#.
|
|
||||||
#If the assigning package addresses function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enablePackageAddressPrinting = true
|
|
||||||
#.
|
|
||||||
#If the assigning custom names function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enableCustomNamePrinting = true
|
|
||||||
#.
|
|
||||||
#If the printing banner patterns function of Printers should be enabled.
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
enableBannerPatternPrinting = true
|
|
||||||
#.
|
|
||||||
#Whether printing custom names (displayed in italics) should instead print as as item names (displayed in non-italics).
|
|
||||||
printingCustomNameAsItemName = false
|
|
||||||
#.
|
|
||||||
#The generation change when copying Written Books; a value of 1 will prevent copying copy of copy
|
|
||||||
# Default: -3
|
|
||||||
# Range: -3 ~ 1
|
|
||||||
printingGenerationChange = -3
|
|
||||||
#.
|
|
||||||
#The cost multiplier of printing Enchanted Books.
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.009999999776482582 ~ 100.0
|
|
||||||
printingEnchantedBookCostMultiplier = 1.0
|
|
||||||
#.
|
|
||||||
#Whether the Printer denylist prevents Enchanted Books from being copied.Setting this to false allows copying Enchanted Books without denied enchantments
|
|
||||||
printingEnchantedBookDenylistStopCopying = true
|
|
||||||
#.
|
|
||||||
#The amount of liquid a Blaze Enchanter can hold (mB).
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
# Default: 4000
|
|
||||||
# Range: > 1000
|
|
||||||
blazeEnchanterFluidCapacity = 8000
|
|
||||||
#.
|
|
||||||
#The amount of liquid a Blaze Forger can hold (mB).
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
# Default: 4000
|
|
||||||
# Range: > 1000
|
|
||||||
blazeForgerFluidCapacity = 8000
|
|
||||||
#.
|
|
||||||
#The amount of liquid an Experience Lantern can hold (mB).
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 100
|
|
||||||
experienceLanternFluidCapacity = 1000
|
|
||||||
#.
|
|
||||||
#The amount of experience an Experience Lantern can drain from player per 0.5 ticks (mB).
|
|
||||||
# Default: 50
|
|
||||||
# Range: > 1
|
|
||||||
experienceLanternDrainRate = 50
|
|
||||||
#.
|
|
||||||
#Whether the Experience Lantern will pull in experience orbs from nearby.
|
|
||||||
experienceLanternPullToggle = true
|
|
||||||
#.
|
|
||||||
#The range at which experience orbs will be pulled into the lantern.
|
|
||||||
# Default: 10
|
|
||||||
# Range: > 0
|
|
||||||
experienceLanternPullRadius = 10
|
|
||||||
#.
|
|
||||||
#Modifier for the amount of force with which to pull the experience orbs.
|
|
||||||
# Default: 0.07500000298023224
|
|
||||||
# Range: 0.0 ~ 0.5
|
|
||||||
experienceLanternPullForceMultiplier = 0.07500000298023224
|
|
||||||
#.
|
|
||||||
#Whether the Experience Lantern will drain experience from nearby Touhou Little Maid's maids (requires TLM mod).
|
|
||||||
experienceLanternDrainMaidExperience = true
|
|
||||||
#.
|
|
||||||
#The amount of liquid a Grindstone Drain can hold (mB).
|
|
||||||
#[@cui:RequiresReload:server]
|
|
||||||
# Default: 1000
|
|
||||||
# Range: > 5000
|
|
||||||
mechanicalGrindstoneFluidCapacity = 5000
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Parameters and abilities of enchantment operating components
|
|
||||||
[kinetics.enchantments]
|
|
||||||
#.
|
|
||||||
#.
|
|
||||||
#The max experience level a Blaze Enchanter can use in Regular Enchanting
|
|
||||||
# Default: 30
|
|
||||||
# Range: > 0
|
|
||||||
blazeEnchanterMaxEnchantLevel = 60
|
|
||||||
#.
|
|
||||||
#The max experience level a Blaze Enchanter can use in Super Enchanting
|
|
||||||
# Default: 60
|
|
||||||
# Range: > 0
|
|
||||||
blazeEnchanterMaxSuperEnchantLevel = 120
|
|
||||||
#.
|
|
||||||
#Max enchantment level in Super Enchanting will be extended by this value
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 255
|
|
||||||
enchantmentMaxLevelExtension = 5
|
|
||||||
#.
|
|
||||||
#If Super Enchanting and Super Forging ignores enchantment compatibility
|
|
||||||
ignoreEnchantmentCompatibility = true
|
|
||||||
#.
|
|
||||||
#If Enchantment splitting respects over-capped level
|
|
||||||
splitEnchantmentRespectLevelExtension = true
|
|
||||||
|
|
||||||
#.
|
|
||||||
#Parameters and abilities of processing mechanisms and appliances
|
|
||||||
[kinetics.processing]
|
|
||||||
#.
|
|
||||||
#.
|
|
||||||
#Probability of natural lightning strikes transforming Blocks of Experience.
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
regularLightningStrikeTransformXpBlockChance = 1.0
|
|
||||||
@ -1,26 +0,0 @@
|
|||||||
["Configs for Create: Tweaked Controllers"]
|
|
||||||
#Wether or not to use custom axis/button mappings, default is false
|
|
||||||
use_custom_mappings = false
|
|
||||||
#Does the mouse cursor focus key acts as toggle instead of hold, default is false
|
|
||||||
toggle_mouse_focus = false
|
|
||||||
#Does the mouse cursor inputs are automatically reset when the controller item is put down, default is true
|
|
||||||
auto_reset_mouse_focus = true
|
|
||||||
#Row of the Controller Settings button in the main menu, default is 2
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 4
|
|
||||||
config_button_main_menu_row = 1
|
|
||||||
#X Offset of the Controller Settings button in the main menu, default is 4
|
|
||||||
# Default: 4
|
|
||||||
# Range: > -2147483648
|
|
||||||
config_button_main_menu_offset = 4
|
|
||||||
#Row of the Controller Settings button in the ingame pause menu, default is 3
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 5
|
|
||||||
config_button_ingame_menu_row = 3
|
|
||||||
#X Offset of the Controller Settings button in the ingame pause menu, default is 4
|
|
||||||
# Default: 4
|
|
||||||
# Range: > -2147483648
|
|
||||||
config_button_main_ingame_offset = 4
|
|
||||||
#What is the layout used for the display controller in the config menus, default is XBOX
|
|
||||||
#Allowed Values: XBOX, NINTENDO, PLAYSTATION
|
|
||||||
controller_layout_type = "XBOX"
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"darkOverworld": true,
|
|
||||||
"darkNether": false,
|
|
||||||
"darkEnd": false,
|
|
||||||
"darkDefault": true,
|
|
||||||
"darkSkyless": true,
|
|
||||||
"darkNetherFog": 0.5,
|
|
||||||
"darkEndFog": 0.0,
|
|
||||||
"blockLightOnly": false,
|
|
||||||
"ignoreMoonPhase": false,
|
|
||||||
"moonPhaseStyle": "DEFAULT",
|
|
||||||
"requireMod": true
|
|
||||||
}
|
|
||||||
@ -3,3 +3,4 @@
|
|||||||
defaultDifficulty = "HARD"
|
defaultDifficulty = "HARD"
|
||||||
#Set to true if the difficulty for new world's should be locked to the specific default. This cannot be unlocked by players without external tools! Probably a bad idea. I don't recommend. Why am I adding this option?
|
#Set to true if the difficulty for new world's should be locked to the specific default. This cannot be unlocked by players without external tools! Probably a bad idea. I don't recommend. Why am I adding this option?
|
||||||
lockDifficulty = false
|
lockDifficulty = false
|
||||||
|
|
||||||
|
|||||||
@ -1,361 +1,351 @@
|
|||||||
key_key.attack:key.mouse.left:
|
key_key.keybindbundles.open_radial_menu:key.keyboard.grave.accent:NONE
|
||||||
key_key.use:key.mouse.right:
|
key_key.keybindbundles.open_screen:key.keyboard.unknown:NONE
|
||||||
key_key.forward:key.keyboard.w:
|
key_key.attack:key.mouse.left:NONE
|
||||||
key_key.left:key.keyboard.a:
|
key_key.use:key.mouse.right:NONE
|
||||||
key_key.back:key.keyboard.s:
|
key_key.forward:key.keyboard.w:NONE
|
||||||
key_key.right:key.keyboard.d:
|
key_key.left:key.keyboard.a:NONE
|
||||||
key_key.jump:key.keyboard.space:
|
key_key.back:key.keyboard.s:NONE
|
||||||
key_key.sneak:key.keyboard.left.shift:
|
key_key.right:key.keyboard.d:NONE
|
||||||
key_key.sprint:key.keyboard.left.control:
|
key_key.jump:key.keyboard.space:NONE
|
||||||
key_key.drop:key.keyboard.q:
|
key_key.sneak:key.keyboard.left.shift:NONE
|
||||||
key_key.inventory:key.keyboard.e:
|
key_key.sprint:key.keyboard.left.control:NONE
|
||||||
key_key.chat:key.keyboard.t:
|
key_key.drop:key.keyboard.q:NONE
|
||||||
key_key.playerlist:key.keyboard.tab:
|
key_key.inventory:key.keyboard.e:NONE
|
||||||
key_key.pickItem:key.mouse.middle:
|
key_key.chat:key.keyboard.t:NONE
|
||||||
key_key.command:key.keyboard.slash:
|
key_key.playerlist:key.keyboard.tab:NONE
|
||||||
key_key.socialInteractions:key.keyboard.unknown:
|
key_key.pickItem:key.mouse.middle:NONE
|
||||||
key_key.screenshot:key.keyboard.f2:
|
key_key.command:key.keyboard.slash:NONE
|
||||||
key_key.togglePerspective:key.keyboard.f5:
|
key_key.socialInteractions:key.keyboard.p:NONE
|
||||||
key_key.smoothCamera:key.keyboard.unknown:
|
key_key.screenshot:key.keyboard.f2:NONE
|
||||||
key_key.fullscreen:key.keyboard.f11:
|
key_key.togglePerspective:key.keyboard.f5:NONE
|
||||||
key_key.spectatorOutlines:key.keyboard.unknown:
|
key_key.smoothCamera:key.keyboard.unknown:NONE
|
||||||
key_key.swapOffhand:key.keyboard.f:
|
key_key.fullscreen:key.keyboard.f11:NONE
|
||||||
key_key.saveToolbarActivator:key.keyboard.unknown:
|
key_key.spectatorOutlines:key.keyboard.unknown:NONE
|
||||||
key_key.loadToolbarActivator:key.keyboard.x:
|
key_key.swapOffhand:key.keyboard.f:NONE
|
||||||
key_key.advancements:key.keyboard.unknown:
|
key_key.saveToolbarActivator:key.keyboard.c:NONE
|
||||||
key_key.hotbar.1:key.keyboard.1:
|
key_key.loadToolbarActivator:key.keyboard.x:NONE
|
||||||
key_key.hotbar.2:key.keyboard.2:
|
key_key.advancements:key.keyboard.l:NONE
|
||||||
key_key.hotbar.3:key.keyboard.3:
|
key_key.hotbar.1:key.keyboard.1:NONE
|
||||||
key_key.hotbar.4:key.keyboard.4:
|
key_key.hotbar.2:key.keyboard.2:NONE
|
||||||
key_key.hotbar.5:key.keyboard.5:
|
key_key.hotbar.3:key.keyboard.3:NONE
|
||||||
key_key.hotbar.6:key.keyboard.6:
|
key_key.hotbar.4:key.keyboard.4:NONE
|
||||||
key_key.hotbar.7:key.keyboard.7:
|
key_key.hotbar.5:key.keyboard.5:NONE
|
||||||
key_key.hotbar.8:key.keyboard.8:
|
key_key.hotbar.6:key.keyboard.6:NONE
|
||||||
key_key.hotbar.9:key.keyboard.9:
|
key_key.hotbar.7:key.keyboard.7:NONE
|
||||||
key_vivecraft.key.rotateLeft:key.keyboard.unknown:
|
key_key.hotbar.8:key.keyboard.8:NONE
|
||||||
key_vivecraft.key.rotateRight:key.keyboard.unknown:
|
key_key.hotbar.9:key.keyboard.9:NONE
|
||||||
key_vivecraft.key.teleport:key.keyboard.unknown:
|
key_key.entityculling.toggle:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.teleportFallback:key.keyboard.unknown:
|
key_key.mimi.midi.gui.filecaster:key.keyboard.period:NONE
|
||||||
key_vivecraft.key.toggleMovement:key.keyboard.unknown:
|
key_key.mimi.midi.gui.transmitter:key.keyboard.comma:NONE
|
||||||
key_vivecraft.key.quickTorch:key.keyboard.unknown:
|
key_key.mimi.midi.gui.settings:key.keyboard.home:NONE
|
||||||
key_vivecraft.key.quickSwap:key.keyboard.unknown:
|
key_key.mimi.midi.alloff:key.keyboard.end:NONE
|
||||||
key_vivecraft.key.swapMirrorView:key.keyboard.unknown:
|
key_key.mimi.midi.gui.main:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.exportWorld:key.keyboard.unknown:
|
key_key.mimi.midi.gui.off:key.keyboard.k:NONE
|
||||||
key_vivecraft.key.moveThirdPersonCam:key.keyboard.unknown:
|
key_key.mimi.midi.gui.seat:key.keyboard.l:NONE
|
||||||
key_vivecraft.key.togglePlayerList:key.keyboard.unknown:
|
key_key.modernfix.config:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.toggleHandheldCam:key.keyboard.unknown:
|
key_key.exposure.camera_controls:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickHandheldCam:key.keyboard.unknown:
|
key_info.structure_gel.building_tool.undo:key.keyboard.z:CONTROL
|
||||||
key_vivecraft.key.toggleKeyboard:key.keyboard.unknown:
|
key_info.structure_gel.building_tool.redo:key.keyboard.y:CONTROL
|
||||||
key_vivecraft.key.quickcommand1:key.keyboard.unknown:
|
key_key.structure_gel.open_building_tool_gui:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand2:key.keyboard.unknown:
|
key_iris.keybind.reload:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand3:key.keyboard.unknown:
|
key_iris.keybind.toggleShaders:key.keyboard.k:NONE
|
||||||
key_vivecraft.key.quickcommand4:key.keyboard.unknown:
|
key_iris.keybind.shaderPackSelection:key.keyboard.o:NONE
|
||||||
key_vivecraft.key.quickcommand5:key.keyboard.unknown:
|
key_key.dynamic_fps.toggle_forced:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand6:key.keyboard.unknown:
|
key_key.dynamic_fps.toggle_disabled:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand7:key.keyboard.unknown:
|
key_key.push_to_talk:key.keyboard.v:NONE
|
||||||
key_vivecraft.key.quickcommand8:key.keyboard.unknown:
|
key_key.whisper:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand9:key.keyboard.unknown:
|
key_key.mute_microphone:key.keyboard.m:NONE
|
||||||
key_vivecraft.key.quickcommand10:key.keyboard.unknown:
|
key_key.disable_voice_chat:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand11:key.keyboard.unknown:
|
key_key.hide_icons:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.quickcommand12:key.keyboard.unknown:
|
key_key.voice_chat:key.keyboard.unknown:NONE
|
||||||
key_vivecraft.key.toggleWalkUp:key.keyboard.unknown:
|
key_key.voice_chat_settings:key.keyboard.unknown:NONE
|
||||||
key_key.modernfix.config:key.keyboard.unknown:
|
key_key.voice_chat_group:key.keyboard.g:NONE
|
||||||
key_iris.keybind.reload:key.keyboard.end:
|
key_key.voice_chat_toggle_recording:key.keyboard.unknown:NONE
|
||||||
key_iris.keybind.toggleShaders:key.keyboard.home:
|
key_key.voice_chat_adjust_volumes:key.keyboard.unknown:NONE
|
||||||
key_iris.keybind.shaderPackSelection:key.keyboard.unknown:
|
key_key.trade_cycling.cycle_trades:key.keyboard.unknown:NONE
|
||||||
key_iris.keybind.wireframe:key.keyboard.unknown:
|
key_key.shouldersurfing.adjust_camera_left:key.keyboard.left:NONE
|
||||||
key_supplementaries.keybind.quiver:key.keyboard.unknown:
|
key_key.shouldersurfing.adjust_camera_right:key.keyboard.right:NONE
|
||||||
key_quark.keybind.autorun:key.keyboard.unknown:
|
key_key.shouldersurfing.adjust_camera_in:key.keyboard.up:NONE
|
||||||
key_quark.keybind.back:key.mouse.4:
|
key_key.shouldersurfing.adjust_camera_out:key.keyboard.down:NONE
|
||||||
key_quark.keybind.camera_mode:key.keyboard.f12:
|
key_key.shouldersurfing.adjust_camera_up:key.keyboard.page.up:NONE
|
||||||
key_quark.keybind.transfer_insert:key.keyboard.unknown:
|
key_key.shouldersurfing.adjust_camera_down:key.keyboard.page.down:NONE
|
||||||
key_quark.keybind.transfer_extract:key.keyboard.unknown:
|
key_key.shouldersurfing.swap_shoulder:key.keyboard.o:NONE
|
||||||
key_quark.keybind.shift_lock:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_first_person:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.no:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_third_person_front:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.yes:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_third_person_back:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.wave:key.keyboard.unknown:
|
key_key.shouldersurfing.free_look:key.keyboard.left.alt:NONE
|
||||||
key_quark.emote.salute:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_camera_coupling:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.cheer:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_x_offset_presets:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.clap:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_y_offset_presets:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.think:key.keyboard.unknown:
|
key_key.shouldersurfing.toggle_z_offset_presets:key.keyboard.unknown:NONE
|
||||||
key_quark.emote.point:key.keyboard.unknown:
|
key_key.astikorcarts.desc:key.keyboard.r:NONE
|
||||||
key_quark.emote.shrug:key.keyboard.unknown:
|
key_key.securitycraft.cameraZoomIn:key.keyboard.equal:NONE
|
||||||
key_quark.emote.headbang:key.keyboard.unknown:
|
key_key.securitycraft.cameraZoomOut:key.keyboard.minus:NONE
|
||||||
key_quark.emote.weep:key.keyboard.unknown:
|
key_key.securitycraft.cameraEmitRedstone:key.keyboard.r:NONE
|
||||||
key_quark.emote.facepalm:key.keyboard.unknown:
|
key_key.securitycraft.cameraActivateNightVision:key.keyboard.unknown:NONE
|
||||||
key_quark.keybind.patreon_emote.dance:key.keyboard.unknown:
|
key_key.securitycraft.setDefaultViewingDirection:key.keyboard.u:NONE
|
||||||
key_quark.keybind.patreon_emote.tpose:key.keyboard.unknown:
|
key_key.structurize.teleport:key.keyboard.unknown:NONE
|
||||||
key_quark.keybind.patreon_emote.dab:key.keyboard.unknown:
|
key_key.structurize.move_forward:key.keyboard.up:NONE
|
||||||
key_quark.keybind.patreon_emote.jet:key.keyboard.unknown:
|
key_key.structurize.move_back:key.keyboard.down:NONE
|
||||||
key_quark.keybind.patreon_emote.exorcist:key.keyboard.unknown:
|
key_key.structurize.move_left:key.keyboard.left:NONE
|
||||||
key_quark.keybind.patreon_emote.zombie:key.keyboard.unknown:
|
key_key.structurize.move_right:key.keyboard.right:NONE
|
||||||
key_quark.keybind.change_hotbar:key.keyboard.unknown:
|
key_key.structurize.move_up:key.keyboard.keypad.add:NONE
|
||||||
key_quark.keybind.sort_player:key.keyboard.unknown:
|
key_key.structurize.move_down:key.keyboard.keypad.subtract:NONE
|
||||||
key_quark.keybind.sort_container:key.keyboard.unknown:
|
|
||||||
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.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:
|
|
||||||
key_key.disable_voice_chat:key.keyboard.unknown:
|
|
||||||
key_key.hide_icons:key.keyboard.unknown:
|
|
||||||
key_key.voice_chat:key.keyboard.unknown:
|
|
||||||
key_key.voice_chat_settings:key.keyboard.unknown:
|
|
||||||
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.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_5: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:
|
|
||||||
key_key.structurize.move_left:key.keyboard.left:
|
|
||||||
key_key.structurize.move_right:key.keyboard.right:
|
|
||||||
key_key.structurize.move_up:key.keyboard.keypad.add:
|
|
||||||
key_key.structurize.move_down:key.keyboard.keypad.subtract:
|
|
||||||
key_key.structurize.rotate_cw:key.keyboard.right:SHIFT
|
key_key.structurize.rotate_cw:key.keyboard.right:SHIFT
|
||||||
key_key.structurize.rotate_ccw:key.keyboard.left:SHIFT
|
key_key.structurize.rotate_ccw:key.keyboard.left:SHIFT
|
||||||
key_key.structurize.mirror:key.keyboard.m:
|
key_key.structurize.mirror:key.keyboard.m:NONE
|
||||||
key_key.structurize.place:key.keyboard.enter:
|
key_key.structurize.place:key.keyboard.enter:NONE
|
||||||
key_key.moreoverlays.lightoverlay.desc:key.keyboard.f7:
|
key_cos.key.opencosarmorinventory:key.keyboard.unknown:NONE
|
||||||
key_key.moreoverlays.chunkbounds.desc:key.keyboard.f9:
|
key_key.inventoryessentials.single_transfer:key.mouse.left:CONTROL
|
||||||
key_key.effortlessbuilding.open_radial_menu:key.keyboard.left.alt:
|
key_key.inventoryessentials.screen_bulk_drop:key.mouse.left:SHIFT
|
||||||
key_key.effortlessbuilding.open_modifiers_screen:key.keyboard.keypad.add:
|
key_keybind.advancedperipherals.description:key.keyboard.left.control:NONE
|
||||||
key_key.effortlessbuilding.undo.desc:key.keyboard.z:
|
key_key.tinyredstone.rotation_lock:key.keyboard.left.alt:NONE
|
||||||
key_key.effortlessbuilding.redo.desc:key.keyboard.y:
|
key_placebo.toggleTrails:key.keyboard.keypad.9:NONE
|
||||||
key_key.do_a_barrel_roll.toggle_enabled:key.keyboard.unknown:
|
key_placebo.toggleWings:key.keyboard.keypad.8:NONE
|
||||||
key_key.do_a_barrel_roll.toggle_thrust:key.keyboard.unknown:
|
key_keybind.sophisticatedbackpacks.open_backpack:key.keyboard.b:NONE
|
||||||
key_key.do_a_barrel_roll.open_config:key.keyboard.unknown:
|
key_keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c:NONE
|
||||||
key_key.do_a_barrel_roll.pitch_up:key.keyboard.unknown:
|
key_keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown:NONE
|
||||||
key_key.do_a_barrel_roll.pitch_down:key.keyboard.unknown:
|
key_keybind.sophisticatedbackpacks.sort:key.mouse.middle:NONE
|
||||||
key_key.do_a_barrel_roll.yaw_left:key.keyboard.a:
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT
|
||||||
key_key.do_a_barrel_roll.yaw_right:key.keyboard.d:
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT
|
||||||
key_key.do_a_barrel_roll.roll_left:key.keyboard.unknown:
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown:NONE
|
||||||
key_key.do_a_barrel_roll.roll_right:key.keyboard.unknown:
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown:NONE
|
||||||
key_key.do_a_barrel_roll.thrust_forward:key.keyboard.w:
|
key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown:NONE
|
||||||
key_key.do_a_barrel_roll.thrust_backward:key.keyboard.unknown:
|
key_key.carry.desc:key.keyboard.left.shift:NONE
|
||||||
key_keyinfo.copycats.fill_copycat:key.keyboard.left.alt:
|
key_key.vanillazoom.togglezoom.desc:key.keyboard.left.alt:NONE
|
||||||
key_key.cpm.gestureMenu:key.keyboard.unknown:
|
key_keyinfo.copycats.fill_copycat:key.keyboard.left.alt:NONE
|
||||||
key_key.cpm.renderToggle:key.keyboard.unknown:
|
key_key.azurelib.reload:key.keyboard.r:NONE
|
||||||
key_key.cpm.qa_1:key.keyboard.unknown:
|
key_key.azurelib.scope:key.keyboard.left.alt:NONE
|
||||||
key_key.cpm.qa_2:key.keyboard.unknown:
|
key_key.azurelib.fire:key.keyboard.unknown:NONE
|
||||||
key_key.cpm.qa_3:key.keyboard.unknown:
|
key_key.freecam.toggle:key.keyboard.f4:NONE
|
||||||
key_key.cpm.qa_4:key.keyboard.unknown:
|
key_key.freecam.playerControl:key.keyboard.unknown:NONE
|
||||||
key_key.cpm.qa_5:key.keyboard.unknown:
|
key_key.freecam.tripodReset:key.keyboard.unknown:NONE
|
||||||
key_key.cpm.qa_6:key.keyboard.unknown:
|
key_key.freecam.configGui:key.keyboard.unknown:NONE
|
||||||
key_key.cpm.qa_7:key.keyboard.unknown:
|
key_key.minecolonies.toggle_goggles:key.keyboard.unknown:NONE
|
||||||
key_key.cpm.qa_8:key.keyboard.unknown:
|
key_key.rotateup:key.keyboard.up:NONE
|
||||||
key_key.cpm.qa_9:key.keyboard.unknown:
|
key_key.rotatedown:key.keyboard.down:NONE
|
||||||
key_key.cpm.qa_10:key.keyboard.unknown:
|
key_key.rotateright:key.keyboard.right:NONE
|
||||||
key_key.cpm.qa_11:key.keyboard.unknown:
|
key_key.rotateleft:key.keyboard.left:NONE
|
||||||
key_key.cpm.qa_12:key.keyboard.unknown:
|
key_key.little.mirror:key.keyboard.g:NONE
|
||||||
key_key.cpm.qa_13:key.keyboard.unknown:
|
key_key.little.mark:key.keyboard.m:NONE
|
||||||
key_key.cpm.qa_14:key.keyboard.unknown:
|
key_key.little.config.item:key.keyboard.c:NONE
|
||||||
key_key.cpm.qa_15:key.keyboard.unknown:
|
key_key.little.undo:key.keyboard.z:CONTROL
|
||||||
key_key.cpm.qa_16:key.keyboard.unknown:
|
key_key.little.redo:key.keyboard.y:CONTROL
|
||||||
key_key.ezactions.open:key.keyboard.grave.accent:
|
key_ponder.keyinfo.ponder:key.keyboard.w:NONE
|
||||||
key_key.ezactions.open_editor:key.keyboard.unknown:
|
key_key.effortlessbuilding.mode.desc:key.keyboard.left.alt:NONE
|
||||||
key_key.freecam.toggle:key.keyboard.unknown:
|
key_key.effortlessbuilding.hud.desc:key.keyboard.keypad.add:NONE
|
||||||
key_key.freecam.playerControl:key.keyboard.unknown:
|
key_key.effortlessbuilding.undo.desc:key.keyboard.z:CONTROL
|
||||||
key_key.freecam.tripodReset:key.keyboard.unknown:
|
key_key.effortlessbuilding.redo.desc:key.keyboard.y:CONTROL
|
||||||
key_key.freecam.configGui:key.keyboard.unknown:
|
key_key.effortlessbuilding.previous_build_mode.desc:key.keyboard.unknown:NONE
|
||||||
key_key.minecolonies.toggle_goggles:key.keyboard.unknown:
|
key_key.effortlessbuilding.disable_build_mode_toggle.desc:key.keyboard.unknown:NONE
|
||||||
key_key.aileron.smokestack_boost:key.keyboard.space:
|
key_key.shetiphiancore.tool.next:key.keyboard.page.up:NONE
|
||||||
key_key.silentgear.cycle.back:key.keyboard.z:
|
key_key.shetiphiancore.tool.previous:key.keyboard.page.down:NONE
|
||||||
key_key.silentgear.cycle.next:key.keyboard.x:
|
key_key.do_a_barrel_roll.toggle_enabled:key.keyboard.i:NONE
|
||||||
key_key.silentgear.displayItemProperties:key.keyboard.left.control:
|
key_key.do_a_barrel_roll.toggle_thrust:key.keyboard.unknown:NONE
|
||||||
key_key.silentgear.displayTraitDescriptions:key.keyboard.left.shift:
|
key_key.do_a_barrel_roll.open_config:key.keyboard.unknown:NONE
|
||||||
key_key.silentgear.displayItemConstruction:key.keyboard.left.alt:
|
key_key.do_a_barrel_roll.pitch_up:key.keyboard.unknown:NONE
|
||||||
key_key.silentgear.openItem:key.keyboard.x:
|
key_key.do_a_barrel_roll.pitch_down:key.keyboard.unknown:NONE
|
||||||
key_key.jetpack.toggle_active.description:key.keyboard.g:
|
key_key.do_a_barrel_roll.yaw_left:key.keyboard.a:NONE
|
||||||
key_key.jetpack.toggle_hover.description:key.keyboard.unknown:
|
key_key.do_a_barrel_roll.yaw_right:key.keyboard.d:NONE
|
||||||
key_create_tweaked_controllers.keybind.mouse_focus:key.keyboard.left.alt:
|
key_key.do_a_barrel_roll.roll_left:key.keyboard.unknown:NONE
|
||||||
key_create_tweaked_controllers.keybind.mouse_reset:key.keyboard.r:
|
key_key.do_a_barrel_roll.roll_right:key.keyboard.unknown:NONE
|
||||||
key_create_tweaked_controllers.keybind.controller_exit:key.keyboard.tab:
|
key_key.do_a_barrel_roll.thrust_forward:key.keyboard.w:NONE
|
||||||
key_key.createbigcannons.pitch_mode:key.keyboard.unknown:
|
key_key.do_a_barrel_roll.thrust_backward:key.keyboard.unknown:NONE
|
||||||
key_key.createbigcannons.fire_controlled_cannon:key.mouse.left:
|
key_key.curios.open.desc:key.keyboard.g:NONE
|
||||||
key_key.sophisticateditemactions.item_highlight:key.keyboard.semicolon:
|
key_create_tweaked_controllers.keybind.mouse_focus:key.keyboard.left.alt:NONE
|
||||||
key_key.sophisticateditemactions.deposit_item:key.keyboard.apostrophe:SHIFT
|
key_create_tweaked_controllers.keybind.mouse_reset:key.keyboard.r:NONE
|
||||||
key_key.sophisticateditemactions.restock_item:key.keyboard.apostrophe:
|
key_create_tweaked_controllers.keybind.controller_exit:key.keyboard.tab:NONE
|
||||||
key_key.incapacitated.giveup:key.keyboard.delete:CONTROL
|
key_key.createbigcannons.pitch_mode:key.keyboard.c:NONE
|
||||||
|
key_key.createbigcannons.fire_controlled_cannon:key.mouse.left:NONE
|
||||||
|
key_key.toggleVisualItemContents:key.keyboard.unknown:NONE
|
||||||
|
key_key.toggleSelectedItemTooltips:key.keyboard.unknown:NONE
|
||||||
|
key_key.toggleCarriedItemTooltips:key.keyboard.unknown:NONE
|
||||||
|
key_key.cycleLeft:key.keyboard.g:NONE
|
||||||
|
key_key.cycleRight:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.showRecipe:key.keyboard.r:NONE
|
||||||
|
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
|
||||||
|
key_key.jei.showUses2:key.mouse.right:NONE
|
||||||
|
key_key.jei.cheatItemStack2:key.mouse.middle:NONE
|
||||||
|
key_key.jei.copy.recipe.id:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.nextRecipePage:key.keyboard.page.down:NONE
|
||||||
|
key_key.jei.nextPage:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.clearSearchBar:key.mouse.right:NONE
|
||||||
|
key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT
|
||||||
|
key_key.jei.previousSearch:key.keyboard.up:NONE
|
||||||
|
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
|
||||||
|
key_key.jei.toggleEditMode:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.bookmark:key.keyboard.a:NONE
|
||||||
|
key_key.jei.showRecipe2:key.mouse.left:NONE
|
||||||
|
key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL
|
||||||
|
key_key.jei.nextSearch:key.keyboard.down:NONE
|
||||||
|
key_key.jei.showUses:key.keyboard.u:NONE
|
||||||
|
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
|
||||||
|
key_key.jei.cheatOneItem2:key.mouse.right:NONE
|
||||||
|
key_key.jei.previousRecipePage:key.keyboard.page.up:NONE
|
||||||
|
key_key.jei.cheatOneItem:key.mouse.left:NONE
|
||||||
|
key_key.jei.recipeBack:key.keyboard.backspace:NONE
|
||||||
|
key_key.jei.previousPage:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
|
||||||
|
key_key.jei.toggleCheatMode:key.keyboard.unknown:NONE
|
||||||
|
key_key.jei.closeRecipeGui:key.keyboard.escape:NONE
|
||||||
|
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
|
||||||
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
|
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
|
||||||
key_key.jei.focusSearch:key.keyboard.f:CONTROL
|
key_key.jei.focusSearch:key.keyboard.f:CONTROL
|
||||||
key_key.jei.previousPage:key.keyboard.unknown:
|
|
||||||
key_key.jei.nextPage:key.keyboard.unknown:
|
|
||||||
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown:
|
|
||||||
key_key.jei.bookmark:key.keyboard.a:
|
|
||||||
key_key.jei.showRecipe:key.keyboard.r:
|
|
||||||
key_key.jei.showRecipe2:key.mouse.left:
|
|
||||||
key_key.jei.showUses:key.keyboard.u:
|
|
||||||
key_key.jei.showUses2:key.mouse.right:
|
|
||||||
key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT
|
|
||||||
key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL
|
|
||||||
key_key.jei.clearSearchBar:key.mouse.right:
|
|
||||||
key_key.jei.previousSearch:key.keyboard.up:
|
|
||||||
key_key.jei.nextSearch:key.keyboard.down:
|
|
||||||
key_key.jei.toggleCheatMode:key.keyboard.unknown:
|
|
||||||
key_key.jei.cheatOneItem:key.mouse.left:
|
|
||||||
key_key.jei.cheatOneItem2:key.mouse.right:
|
|
||||||
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
|
|
||||||
key_key.jei.cheatItemStack2:key.mouse.middle:
|
|
||||||
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
|
|
||||||
key_key.jei.toggleEditMode:key.keyboard.unknown:
|
|
||||||
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
|
|
||||||
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
|
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
|
||||||
key_key.jei.recipeBack:key.keyboard.backspace:
|
key_key.ntgl.reload:key.keyboard.r:NONE
|
||||||
key_key.jei.previousRecipePage:key.keyboard.page.up:
|
key_key.ntgl.unload:key.keyboard.u:NONE
|
||||||
key_key.jei.nextRecipePage:key.keyboard.page.down:
|
key_key.ntgl.attachments:key.keyboard.z:NONE
|
||||||
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
|
key_key.ntgl.inspect:key.keyboard.i:NONE
|
||||||
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
|
key_key.ntgl.fire_select:key.keyboard.unknown:NONE
|
||||||
key_key.jei.closeRecipeGui:key.keyboard.escape:
|
key_key.ntgl.ammo_select:key.keyboard.unknown:NONE
|
||||||
key_key.jei.copy.recipe.id:key.keyboard.unknown:
|
key_key.ntgl.melee:key.keyboard.v:NONE
|
||||||
key_key.solonion.open_food_book:key.keyboard.unknown:
|
key_key.cofh.mode_change_increment:key.keyboard.v:NONE
|
||||||
key_key.minecolonies_tweaks.resourcescroll_book:key.keyboard.unknown:
|
key_key.cofh.mode_change_decrement:key.keyboard.unknown:NONE
|
||||||
key_treechop.key.toggle_chopping:key.keyboard.unknown:
|
key_key.crystalix.cycle_shadeless:key.keyboard.z:NONE
|
||||||
key_treechop.key.cycle_sneak_behavior:key.keyboard.unknown:
|
key_key.crystalix.cycle_reinforced:key.keyboard.x:NONE
|
||||||
key_treechop.key.open_settings_overlay:key.keyboard.unknown:
|
key_key.crystalix.cycle_light:key.keyboard.c:NONE
|
||||||
key_simulated.keyinfo.rotate_mode:key.keyboard.tab:
|
key_key.crystalix.cycle_ghost:key.keyboard.v:NONE
|
||||||
key_simulated.keyinfo.scroll_up:key.keyboard.unknown:
|
key_key.minecolonies_tweaks.resourcescroll_book:key.keyboard.unknown:NONE
|
||||||
key_simulated.keyinfo.scroll_down:key.keyboard.unknown:
|
key_keybinds.bettercombat.feint:key.keyboard.unknown:NONE
|
||||||
key_crashutils.openscreen:key.keyboard.u:CONTROL
|
key_keybinds.bettercombat.toggle_mine_with_weapons:key.keyboard.unknown:NONE
|
||||||
key_crashutils.copycontainer:key.keyboard.unknown:
|
key_treechop.key.toggle_chopping:key.keyboard.unknown:NONE
|
||||||
key_crashutils.slottooltips:key.keyboard.unknown:
|
key_treechop.key.toggle_felling:key.keyboard.unknown:NONE
|
||||||
key_key.immersivemc.backpack:key.keyboard.f23:
|
key_treechop.key.cycle_sneak_behavior:key.keyboard.unknown:NONE
|
||||||
key_key.immersivemc.config:key.keyboard.unknown:
|
key_treechop.key.open_settings_overlay:key.keyboard.unknown:NONE
|
||||||
key_key.immersivemc.ranged_grab:key.keyboard.f24:
|
key_key.ars_nouveau.open_book:key.keyboard.c:NONE
|
||||||
key_key.deeperdarker.boost:key.keyboard.unknown:
|
key_key.ars_nouveau.selection_hud:key.keyboard.v:NONE
|
||||||
key_key.deeperdarker.transmit:key.keyboard.unknown:
|
key_key.ars_nouveau.next_slot:key.keyboard.x:NONE
|
||||||
key_key.observable.profile:key.keyboard.unknown:
|
key_key.ars_nouveau.previous_slot:key.keyboard.z:NONE
|
||||||
key_create_radar.key.binocular.use:key.keyboard.v:
|
key_key.ars_nouveau.head_curio_hotkey:key.keyboard.g:NONE
|
||||||
key_create_radar.key.binocular.fire:key.mouse.left:
|
key_key.ars_nouveau.qc1:key.keyboard.unknown:NONE
|
||||||
key_chunkloaders.keys.open_screen:key.keyboard.unknown:
|
key_key.ars_nouveau.qc2:key.keyboard.unknown:NONE
|
||||||
key_options.narrator:key.keyboard.unknown:
|
key_key.ars_nouveau.qc3:key.keyboard.unknown:NONE
|
||||||
key_key.kubejs.kubedex:key.keyboard.unknown:
|
key_key.ars_nouveau.qc4:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.start_action:key.keyboard.r:
|
key_key.ars_nouveau.qc5:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.stop_action:key.keyboard.backspace:
|
key_key.ars_nouveau.qc6:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.open_schematic_browser:key.keyboard.b:
|
key_key.ars_nouveau.qc7:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.rotate_preview:key.keyboard.comma:
|
key_key.ars_nouveau.qc8:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.mirror_preview:key.keyboard.period:
|
key_key.ars_nouveau.qc9:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.drone_view:key.keyboard.v:
|
key_key.ars_nouveau.qc10:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.program_action:key.keyboard.p:
|
key_key.ars_nouveau.familiar_toggle:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.schematic_modifier:key.keyboard.left.alt:
|
key_key.ars_elemental.open_pouch:key.keyboard.unknown:NONE
|
||||||
key_key.cbbees.free_aim:key.keyboard.left.control:
|
key_key.immersive_aircraft.fallback_control_left:key.keyboard.unknown:NONE
|
||||||
key_key.pingwheel.ping_location:key.mouse.5:
|
key_key.immersive_aircraft.fallback_control_right:key.keyboard.unknown:NONE
|
||||||
key_key.pingwheel.open_settings:key.keyboard.unknown:
|
key_key.immersive_aircraft.fallback_control_forward:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.minimap_preset:key.keyboard.backslash:
|
key_key.immersive_aircraft.fallback_control_backward:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.toggle_entity_names:key.keyboard.g:
|
key_key.immersive_aircraft.fallback_control_up:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.toggle_render_waypoints_map:key.keyboard.unknown:
|
key_key.immersive_aircraft.fallback_control_down:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.fullscreen.south:key.keyboard.down:
|
key_key.immersive_aircraft.fallback_control_pull:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.zoom_in:key.keyboard.equal:
|
key_key.immersive_aircraft.fallback_control_push:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.fullscreen.north:key.keyboard.up:
|
key_key.immersive_aircraft.fallback_use:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.fullscreen_waypoints:key.keyboard.unknown:
|
key_key.immersive_aircraft.dismount:key.keyboard.r:NONE
|
||||||
key_key.journeymap.toggle_render_waypoints_world:key.keyboard.unknown:
|
key_key.immersive_aircraft.boost:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.fullscreen.east:key.keyboard.right:
|
key_key.immersive_machinery.horn:key.keyboard.h:NONE
|
||||||
key_key.journeymap.zoom_out:key.keyboard.minus:
|
key_railways.keyinfo.bogey_menu:key.keyboard.left.alt:NONE
|
||||||
key_key.journeymap.create_waypoint:key.keyboard.unknown:
|
key_railways.keyinfo.cycle_menu:key.keyboard.left.alt:NONE
|
||||||
key_key.journeymap.fullscreen.disable_buttons:key.keyboard.unknown:
|
key_key.lightoverlay.enable_overlay:key.keyboard.f7:NONE
|
||||||
key_key.journeymap.minimap_type:key.keyboard.unknown:
|
key_chunkloaders.keys.open_screen:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.fullscreen_create_waypoint:key.keyboard.b:
|
key_key.smallships.ship_sail:key.keyboard.r:NONE
|
||||||
key_key.journeymap.fullscreen.west:key.keyboard.left:
|
key_keybind.sophisticatedstorage.sort:key.mouse.middle:NONE
|
||||||
key_key.journeymap.toggle_waypoints:key.keyboard.unknown:
|
key_ping-wheel.key.ping-location:key.mouse.5:NONE
|
||||||
key_key.journeymap.fullscreen_chat_position:key.keyboard.c:
|
key_ping-wheel.key.open-settings:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.map_toggle_alt:key.keyboard.j:
|
key_ping-wheel.key.name-labels:key.keyboard.left.alt:NONE
|
||||||
key_key.journeymap.toggle_render_waypoints:key.keyboard.unknown:
|
key_create.keyinfo.toolmenu:key.keyboard.left.alt:NONE
|
||||||
|
key_create.keyinfo.toolbelt:key.keyboard.left.alt:NONE
|
||||||
|
key_create.keyinfo.rotate_menu:key.keyboard.unknown:NONE
|
||||||
|
key_framedblocks.key.update_cull:key.keyboard.f9:NONE
|
||||||
|
key_framedblocks.key.wipe_cache:key.keyboard.unknown:NONE
|
||||||
|
key_key.pipeorgans.midi_config:key.keyboard.semicolon:NONE
|
||||||
|
key_petrolpark.key.tube.build:key.keyboard.enter:NONE
|
||||||
|
key_petrolpark.key.tube.delete_control_point:key.keyboard.backspace:NONE
|
||||||
|
key_petrolpark.key.tube.add_control_point_after:key.keyboard.equal:NONE
|
||||||
|
key_petrolpark.key.tube.add_control_point_before:key.keyboard.minus:NONE
|
||||||
|
key_petrolpark.key.tube.cancel:key.keyboard.x:NONE
|
||||||
|
key_key.journeymap.zoom_in:key.keyboard.equal:NONE
|
||||||
|
key_key.journeymap.zoom_out:key.keyboard.minus:NONE
|
||||||
|
key_key.journeymap.minimap_type:key.keyboard.left.bracket:NONE
|
||||||
|
key_key.journeymap.minimap_preset:key.keyboard.backslash:NONE
|
||||||
|
key_key.journeymap.create_waypoint:key.keyboard.unknown:NONE
|
||||||
|
key_key.journeymap.toggle_waypoints:key.keyboard.z:NONE
|
||||||
|
key_key.journeymap.fullscreen_create_waypoint:key.keyboard.b:NONE
|
||||||
|
key_key.journeymap.fullscreen_chat_position:key.keyboard.c:NONE
|
||||||
|
key_key.journeymap.map_toggle_alt:key.keyboard.j:NONE
|
||||||
|
key_key.journeymap.fullscreen_waypoints:key.keyboard.unknown:NONE
|
||||||
key_key.journeymap.minimap_toggle_alt:key.keyboard.j:CONTROL
|
key_key.journeymap.minimap_toggle_alt:key.keyboard.j:CONTROL
|
||||||
key_key.journeymap.fullscreen_options:key.keyboard.o:
|
key_key.journeymap.fullscreen_options:key.keyboard.o:NONE
|
||||||
key_key.journeymap.fullscreen_follow_player:key.keyboard.f:
|
key_key.journeymap.fullscreen.north:key.keyboard.up:NONE
|
||||||
key_key.configured.open_mod_list:key.keyboard.unknown:
|
key_key.journeymap.fullscreen.south:key.keyboard.down:NONE
|
||||||
key_powergrid.keyinfo.rotate_component:key.keyboard.r:
|
key_key.journeymap.fullscreen.east:key.keyboard.right:NONE
|
||||||
key_powergrid.keyinfo.place_trace:key.keyboard.t:
|
key_key.journeymap.fullscreen.west:key.keyboard.left:NONE
|
||||||
key_powergrid.keyinfo.delete_area:key.keyboard.d:
|
key_key.journeymap.fullscreen.disable_buttons:key.keyboard.h:NONE
|
||||||
key_powergrid.keyinfo.pick_component:key.keyboard.s:
|
key_key.configured.open_mod_list:key.keyboard.unknown:NONE
|
||||||
key_powergrid.keyinfo.switch_layer:key.keyboard.x:
|
key_key.endergetic.booflo_slam:key.keyboard.x:NONE
|
||||||
key_key.guideme.guide:key.keyboard.g:
|
key_tfmg.keyinfo.transmission_shift_up:key.keyboard.v:NONE
|
||||||
key_key.creategbd.beam_reactor_toggle:key.keyboard.r:
|
key_tfmg.keyinfo.transmission_shift_down:key.keyboard.c:NONE
|
||||||
key_key.jade.config:key.keyboard.keypad.0:
|
key_tfmg.keyinfo.custom_button:key.keyboard.b:NONE
|
||||||
key_key.jade.show_overlay:key.keyboard.keypad.1:
|
key_tfmg.keyinfo.engine_start:key.keyboard.i:NONE
|
||||||
key_key.jade.toggle_liquid:key.keyboard.keypad.2:
|
key_key.creategbd.beam_reactor_toggle:key.keyboard.r:NONE
|
||||||
key_key.jade.show_recipes:key.keyboard.keypad.3:
|
key_quark.keybind.autorun:key.keyboard.unknown:NONE
|
||||||
key_key.jade.show_uses:key.keyboard.keypad.4:
|
key_quark.keybind.back:key.mouse.4:NONE
|
||||||
key_key.jade.narrate:key.keyboard.keypad.5:
|
key_quark.keybind.camera_mode:key.keyboard.f12:NONE
|
||||||
key_key.jade.show_details:key.keyboard.left.shift:
|
key_quark.keybind.transfer_insert:key.keyboard.unknown:NONE
|
||||||
key_legendarytooltips.key.scrollTooltips:key.keyboard.left.shift:
|
key_quark.keybind.transfer_extract:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.shift_lock:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.no:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.yes:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.wave:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.salute:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.cheer:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.clap:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.think:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.point:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.shrug:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.headbang:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.weep:key.keyboard.unknown:NONE
|
||||||
|
key_quark.emote.facepalm:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.patreon_emote.dance:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.patreon_emote.tpose:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.patreon_emote.dab:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.patreon_emote.jet:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.patreon_emote.exorcist:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.patreon_emote.zombie:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.change_hotbar:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.sort_player:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.sort_container:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.lock_rotation:key.keyboard.k:NONE
|
||||||
|
key_quark.keybind.narrator_readout:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.narrator_full_readout:key.keyboard.unknown:NONE
|
||||||
|
key_quark.keybind.variant_selector:key.keyboard.r:NONE
|
||||||
|
key_supplementaries.keybind.quiver:key.keyboard.v:NONE
|
||||||
|
key_key.jade.config:key.keyboard.keypad.0:NONE
|
||||||
|
key_key.jade.show_overlay:key.keyboard.keypad.1:NONE
|
||||||
|
key_key.jade.toggle_liquid:key.keyboard.keypad.2:NONE
|
||||||
|
key_key.jade.show_recipes:key.keyboard.keypad.3:NONE
|
||||||
|
key_key.jade.show_uses:key.keyboard.keypad.4:NONE
|
||||||
|
key_key.jade.narrate:key.keyboard.keypad.5:NONE
|
||||||
|
key_key.jade.show_details:key.keyboard.left.shift:NONE
|
||||||
|
key_key.create_sa.flying:key.keyboard.space:NONE
|
||||||
|
key_key.create_sa.increase_reach:key.keyboard.up:NONE
|
||||||
|
key_key.create_sa.decrease_reach:key.keyboard.down:NONE
|
||||||
key_key.parcool.Enable:key.keyboard.p:CONTROL
|
key_key.parcool.Enable:key.keyboard.p:CONTROL
|
||||||
key_key.parcool.Crawl:key.keyboard.c:
|
key_key.parcool.Crawl:key.keyboard.c:NONE
|
||||||
key_key.parcool.ClingToCliff:key.mouse.right:
|
key_key.parcool.ClingToCliff:key.mouse.right:NONE
|
||||||
key_key.parcool.Breakfall:key.keyboard.r:
|
key_key.parcool.Breakfall:key.keyboard.r:NONE
|
||||||
key_key.parcool.FastRun:key.keyboard.left.control:
|
key_key.parcool.FastRun:key.keyboard.left.control:NONE
|
||||||
key_key.parcool.Dodge:key.keyboard.r:
|
key_key.parcool.Dodge:key.keyboard.r:NONE
|
||||||
key_key.parcool.RideZipline:key.mouse.right:
|
key_key.parcool.RideZipline:key.mouse.right:NONE
|
||||||
key_key.parcool.WallSlide:key.mouse.right:
|
key_key.parcool.WallSlide:key.mouse.right:NONE
|
||||||
key_key.parcool.WallJump:key.keyboard.space:
|
key_key.parcool.WallJump:key.keyboard.space:NONE
|
||||||
key_key.parcool.Vault:key.mouse.right:
|
key_key.parcool.Vault:key.mouse.right:NONE
|
||||||
key_key.parcool.HorizontalWallRun:key.keyboard.r:
|
key_key.parcool.HorizontalWallRun:key.keyboard.r:NONE
|
||||||
key_key.parcool.HideInBlock:key.keyboard.c:
|
key_key.parcool.HideInBlock:key.keyboard.c:NONE
|
||||||
key_key.parcool.openSetting:key.keyboard.p:ALT
|
key_key.parcool.openSetting:key.keyboard.p:ALT
|
||||||
key_key.parcool.QuickTurn:key.keyboard.unknown:
|
key_key.parcool.QuickTurn:key.keyboard.unknown:NONE
|
||||||
key_key.parcool.Flipping:key.keyboard.unknown:
|
key_key.parcool.Flipping:key.keyboard.unknown:NONE
|
||||||
key_key.parcool.HangDown:key.mouse.right:
|
key_key.parcool.HangDown:key.mouse.right:NONE
|
||||||
key_key.ponder.ponder:key.keyboard.w:
|
key_key.kawaiidishes.tail_wag:key.keyboard.z:NONE
|
||||||
key_create.keyinfo.toolmenu:key.keyboard.left.alt:
|
key_key.presencefootsteps.settings:key.keyboard.f10:NONE
|
||||||
key_create.keyinfo.toolbelt:key.keyboard.left.alt:
|
key_key.craftpresence.config_keycode.name:key.keyboard.unknown:NONE
|
||||||
key_create.keyinfo.rotate_menu:key.keyboard.unknown:
|
key_key.pickup.item:key.keyboard.unknown:NONE
|
||||||
key_create.keyinfo.shift_modifier:key.keyboard.left.shift:
|
key_key.createrailwaysnavigator.route_overlay_options:key.keyboard.r:NONE
|
||||||
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:
|
|
||||||
|
|||||||
@ -1,64 +1,59 @@
|
|||||||
version:3955
|
version:3465
|
||||||
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
|
autoJump:false
|
||||||
operatorItemsTab:false
|
operatorItemsTab:false
|
||||||
autoSuggestions:true
|
autoSuggestions:true
|
||||||
chatColors:true
|
chatColors:true
|
||||||
chatLinks:true
|
chatLinks:true
|
||||||
chatLinksPrompt:true
|
chatLinksPrompt:true
|
||||||
|
enableVsync:true
|
||||||
|
entityShadows:true
|
||||||
|
forceUnicodeFont:false
|
||||||
discrete_mouse_scroll:false
|
discrete_mouse_scroll:false
|
||||||
invertYMouse:false
|
invertYMouse:false
|
||||||
realmsNotifications:true
|
realmsNotifications:true
|
||||||
|
reducedDebugInfo:false
|
||||||
showSubtitles:false
|
showSubtitles:false
|
||||||
directionalAudio:false
|
directionalAudio:false
|
||||||
touchscreen:false
|
touchscreen:false
|
||||||
|
fullscreen:true
|
||||||
bobView:true
|
bobView:true
|
||||||
toggleCrouch:false
|
toggleCrouch:false
|
||||||
toggleSprint:false
|
toggleSprint:false
|
||||||
darkMojangStudiosBackground:false
|
darkMojangStudiosBackground:false
|
||||||
hideLightningFlashes:false
|
hideLightningFlashes:false
|
||||||
hideSplashTexts:false
|
|
||||||
mouseSensitivity:0.5
|
mouseSensitivity:0.5
|
||||||
|
fov:0.0
|
||||||
|
screenEffectScale:1.0
|
||||||
|
fovEffectScale:1.0
|
||||||
|
darknessEffectScale:1.0
|
||||||
|
glintSpeed:0.5
|
||||||
|
glintStrength:0.75
|
||||||
damageTiltStrength:1.0
|
damageTiltStrength:1.0
|
||||||
highContrast:false
|
highContrast:false
|
||||||
narratorHotkey:true
|
gamma:0.5
|
||||||
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_Create_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"]
|
renderDistance:12
|
||||||
incompatibleResourcePacks:[]
|
simulationDistance:12
|
||||||
lastServer:
|
entityDistanceScaling:5.0
|
||||||
|
guiScale:2
|
||||||
|
particles:0
|
||||||
|
maxFps:120
|
||||||
|
graphicsMode:1
|
||||||
|
ao:true
|
||||||
|
prioritizeChunkUpdates:0
|
||||||
|
biomeBlendRadius:2
|
||||||
|
renderClouds:"true"
|
||||||
|
resourcePacks:["vanilla","mod_resources","jaopca:inmemory","builtin/towntalk","-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip","Better+Lanterns+v1.2(mc-1.20.1).zip","Create Computers 1.2.1 - 1.20.1 Resource Pack Only.zip","Create Immersive Aircraft Warship ResoucePack v1.2.zip","Create Immersive Aircrafts Resource Pack 1.20.1 - 2.0.zip","Created+Pretty+Pipes1.0+FIXED.zip","FreshAnimations_v1.9.2.zip","KatusCarpets_Alternate1-20.zip","Midnighttiggers-FCT-Default_1.20_V7.zip","Moonlight Mods Dynamic Assets","Recolourful Containers 2.1.1 (1.19.4+).zip","[1.4.1] Enhanced Boss Bars.zip","crops-3d(2).zip","cubic-sun-moon-v1.8.3a.zip","fabric","§9RAY\u0027s §f3D §6Ladders§8§o§k.zip","§9RAY\u0027s §f3D §6Rails§8§o§k.zip","FA+All_Extensions-v1.4.zip","builtin/add_pack_finders_test","Create_Ultra_v1.0.zip","FMRP 1.6.3 Beta.zip","Low Fire.zip"]
|
||||||
|
incompatibleResourcePacks:["builtin/towntalk","Created+Pretty+Pipes1.0+FIXED.zip","KatusCarpets_Alternate1-20.zip","Midnighttiggers-FCT-Default_1.20_V7.zip","Recolourful Containers 2.1.1 (1.19.4+).zip","crops-3d(2).zip","§9RAY\u0027s §f3D §6Ladders§8§o§k.zip","§9RAY\u0027s §f3D §6Rails§8§o§k.zip","FMRP 1.6.3 Beta.zip"]
|
||||||
|
lastServer:10.0.0.2
|
||||||
lang:en_us
|
lang:en_us
|
||||||
|
soundDevice:""
|
||||||
chatVisibility:0
|
chatVisibility:0
|
||||||
chatOpacity:1.0
|
chatOpacity:1.0
|
||||||
chatLineSpacing:0.0
|
chatLineSpacing:0.0
|
||||||
textBackgroundOpacity:0.5
|
textBackgroundOpacity:0.5
|
||||||
backgroundForChatOnly:true
|
backgroundForChatOnly:true
|
||||||
hideServerAddress:false
|
hideServerAddress:false
|
||||||
advancedItemTooltips:false
|
advancedItemTooltips:true
|
||||||
pauseOnLostFocus:true
|
pauseOnLostFocus:true
|
||||||
overrideWidth:0
|
overrideWidth:0
|
||||||
overrideHeight:0
|
overrideHeight:0
|
||||||
@ -68,16 +63,19 @@ chatHeightUnfocused:0.4375
|
|||||||
chatScale:1.0
|
chatScale:1.0
|
||||||
chatWidth:1.0
|
chatWidth:1.0
|
||||||
notificationDisplayTime:1.0
|
notificationDisplayTime:1.0
|
||||||
|
mipmapLevels:4
|
||||||
useNativeTransport:true
|
useNativeTransport:true
|
||||||
mainHand:"right"
|
mainHand:"right"
|
||||||
attackIndicator:1
|
attackIndicator:1
|
||||||
|
narrator:0
|
||||||
tutorialStep:none
|
tutorialStep:none
|
||||||
mouseWheelSensitivity:1.0
|
mouseWheelSensitivity:1.0
|
||||||
rawMouseInput:true
|
rawMouseInput:true
|
||||||
glDebugVerbosity:1
|
glDebugVerbosity:1
|
||||||
skipMultiplayerWarning:false
|
skipMultiplayerWarning:true
|
||||||
|
skipRealms32bitWarning:false
|
||||||
hideMatchedNames:true
|
hideMatchedNames:true
|
||||||
joinedFirstServer:false
|
joinedFirstServer:true
|
||||||
hideBundleTutorial:false
|
hideBundleTutorial:false
|
||||||
syncChunkWrites:false
|
syncChunkWrites:false
|
||||||
showAutosaveIndicator:true
|
showAutosaveIndicator:true
|
||||||
@ -86,7 +84,6 @@ onlyShowSecureChat:false
|
|||||||
panoramaScrollSpeed:1.0
|
panoramaScrollSpeed:1.0
|
||||||
telemetryOptInExtra:false
|
telemetryOptInExtra:false
|
||||||
onboardAccessibility:false
|
onboardAccessibility:false
|
||||||
menuBackgroundBlurriness:5
|
|
||||||
soundCategory_master:1.0
|
soundCategory_master:1.0
|
||||||
soundCategory_music:0.0
|
soundCategory_music:0.0
|
||||||
soundCategory_record:1.0
|
soundCategory_record:1.0
|
||||||
|
|||||||
62
config/do_a_barrel_roll-client.json
Normal file
62
config/do_a_barrel_roll-client.json
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
"format_version_do_not_edit": 2,
|
||||||
|
"general": {
|
||||||
|
"mod_enabled": true,
|
||||||
|
"controls": {
|
||||||
|
"switch_roll_and_yaw": false,
|
||||||
|
"invert_pitch": false,
|
||||||
|
"momentum_based_mouse": false,
|
||||||
|
"momentum_mouse_deadzone": 0.2,
|
||||||
|
"show_momentum_widget": true,
|
||||||
|
"activation_behaviour": "VANILLA",
|
||||||
|
"disable_when_submerged": true
|
||||||
|
},
|
||||||
|
"hud": {
|
||||||
|
"show_horizon": true
|
||||||
|
},
|
||||||
|
"banking": {
|
||||||
|
"enable_banking": true,
|
||||||
|
"banking_strength": 20.0,
|
||||||
|
"simulate_control_surface_efficacy": false
|
||||||
|
},
|
||||||
|
"thrust": {
|
||||||
|
"enable_thrust": false,
|
||||||
|
"max_thrust": 2.0,
|
||||||
|
"thrust_acceleration": 0.1,
|
||||||
|
"thrust_particles": true
|
||||||
|
},
|
||||||
|
"misc": {
|
||||||
|
"enable_easter_eggs": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sensitivity": {
|
||||||
|
"smoothing": {
|
||||||
|
"smoothing_enabled": true,
|
||||||
|
"smoothing_pitch": 1.0,
|
||||||
|
"smoothing_yaw": 0.4,
|
||||||
|
"smoothing_roll": 1.0
|
||||||
|
},
|
||||||
|
"camera_smoothing": {
|
||||||
|
"pitch": 1.0,
|
||||||
|
"yaw": 2.5,
|
||||||
|
"roll": 1.0
|
||||||
|
},
|
||||||
|
"desktop": {
|
||||||
|
"pitch": 1.0,
|
||||||
|
"yaw": 0.4,
|
||||||
|
"roll": 1.0
|
||||||
|
},
|
||||||
|
"controller": {
|
||||||
|
"pitch": 1.0,
|
||||||
|
"yaw": 0.4,
|
||||||
|
"roll": 1.0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"advanced": {
|
||||||
|
"banking_x_formula": "sin($roll * TO_RAD) * cos($pitch * TO_RAD) * 10 * $banking_strength",
|
||||||
|
"banking_y_formula": "(-1 + cos($roll * TO_RAD)) * cos($pitch * TO_RAD) * 10 * $banking_strength",
|
||||||
|
"elevator_efficacy_formula": "$velocity_x * $look_x + $velocity_y * $look_y + $velocity_z * $look_z",
|
||||||
|
"aileron_efficacy_formula": "$velocity_x * $look_x + $velocity_y * $look_y + $velocity_z * $look_z",
|
||||||
|
"rudder_efficacy_formula": "$velocity_x * $look_x + $velocity_y * $look_y + $velocity_z * $look_z"
|
||||||
|
}
|
||||||
|
}
|
||||||
18
config/dusk.json
Normal file
18
config/dusk.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"nightSpawnMod": {
|
||||||
|
"desc:": "Percentage of how many more monster can appear at night, default: 30",
|
||||||
|
"nightSpawnMod": 30
|
||||||
|
},
|
||||||
|
"baseMonsterCap": {
|
||||||
|
"desc:": "Base monster cap to act upon, this is the value it'll increase from/reduce to at the start/end of the night. Increase this to see more monsters in the world, default(Vanilla): 70",
|
||||||
|
"baseMonsterCap": 100
|
||||||
|
},
|
||||||
|
"minSleepTime": {
|
||||||
|
"desc:": "Min time required to sleep, vanilla min time:12500, Midnight is 18000",
|
||||||
|
"minSleepTime": 13000
|
||||||
|
},
|
||||||
|
"disableSleep": {
|
||||||
|
"desc:": "Disable sleeping?, default: false",
|
||||||
|
"disableSleep": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"minChunkViewDist": {
|
|
||||||
"desc:": "The minimum chunk view distance allowed to use. Default: 10, minimum 3, maximum 200",
|
|
||||||
"minChunkViewDist": 6
|
|
||||||
},
|
|
||||||
"maxChunkViewDist": {
|
|
||||||
"desc:": "The maximum chunk view distance allowed to use. Set to the max a player could benefit from. Default: 10, minimum 3, maximum 200",
|
|
||||||
"maxChunkViewDist": 12
|
|
||||||
},
|
|
||||||
"meanAvgTickTime": {
|
|
||||||
"desc:": "The average tick time to stabilize the distances around. Setting it higher than 50ms is not advised, as after 50ms the TPS will go below 20. Default: 45ms, min: 10, max:100",
|
|
||||||
"meanAvgTickTime": 45
|
|
||||||
},
|
|
||||||
"viewDistanceUpdateRate": {
|
|
||||||
"desc:": "The change frequency of distances in seconds. Default: 30, min:1, max:1000",
|
|
||||||
"viewDistanceUpdateRate": 60
|
|
||||||
},
|
|
||||||
"minSimulationDist": {
|
|
||||||
"desc:": "The minimum simulation distance allowed to use. Default: 4, minimum 1, maximum 200",
|
|
||||||
"minSimulationDist": 4
|
|
||||||
},
|
|
||||||
"maxSimulationDist": {
|
|
||||||
"desc:": "The maximum simulation distance allowed to use. Default: 10, minimum 1, maximum 200",
|
|
||||||
"maxSimulationDist": 8
|
|
||||||
},
|
|
||||||
"adjustSimulationDistance": {
|
|
||||||
"desc:": "Enables automatic simulation distance adjustment. Default: true",
|
|
||||||
"adjustSimulationDistance": true
|
|
||||||
},
|
|
||||||
"logMessages": {
|
|
||||||
"desc:": "Whether to output log messages for actions done. This can be helpful to balance the other settings nicely. Default = false",
|
|
||||||
"logMessages": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"priority": 2,
|
|
||||||
"attacker": "#enhancedai:config/can_attack_villagers",
|
|
||||||
"target": "minecraft:villager",
|
|
||||||
"chance": 0.5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"priority": 2,
|
|
||||||
"attacker": "#enhancedai:config/can_attack_iron_golem",
|
|
||||||
"target": "minecraft:iron_golem",
|
|
||||||
"chance": 0.5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"priority": 1,
|
|
||||||
"attacker": "#enhancedai:config/hostile_horses",
|
|
||||||
"target": "minecraft:player",
|
|
||||||
"add_attack_goal": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
@ -1,34 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"id": "minecraft:shield",
|
|
||||||
"value": 0.2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:wooden_shield",
|
|
||||||
"value": 0.1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:stone_shield",
|
|
||||||
"value": 0.15
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:iron_shield",
|
|
||||||
"value": 0.2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:golden_shield",
|
|
||||||
"value": 0.1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:diamond_shield",
|
|
||||||
"value": 0.3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:netherite_shield",
|
|
||||||
"value": 0.35
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "shieldsplus:copper_shield",
|
|
||||||
"value": 0.15
|
|
||||||
}
|
|
||||||
]
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,22 +0,0 @@
|
|||||||
[Client]
|
|
||||||
# When looking at an Entangled Block, should its bound block be highlighted?
|
|
||||||
# Allowed values: true, false - Default: true
|
|
||||||
renderBlockHighlight = true
|
|
||||||
|
|
||||||
# Should the block rendered inside entangled blocks rotate?
|
|
||||||
# Allowed values: true, false - Default: true
|
|
||||||
rotateRenderedBlock = true
|
|
||||||
|
|
||||||
[General]
|
|
||||||
# Can entangled blocks be bound between different dimensions? Previously bound entangled blocks won't be affected.
|
|
||||||
# Allowed values: true, false - Default: true
|
|
||||||
allowDimensional = false
|
|
||||||
|
|
||||||
# What is the max range in which entangled blocks can be bound? Only affects blocks in the same dimension. -1 for infinite range. Previously bound entangled blocks won't be affected.
|
|
||||||
# Allowed range: -1 ~ 2147483647 - Default: -1
|
|
||||||
maxDistance = 64
|
|
||||||
|
|
||||||
# Should the `entangled:invalid_targets` tag be treated as a whitelist rather than a blacklist? If true, entangled blocks can only be bound to blocks in the tag.
|
|
||||||
# Allowed values: true, false - Default: false
|
|
||||||
useWhitelist = false
|
|
||||||
|
|
||||||
@ -1,177 +0,0 @@
|
|||||||
{
|
|
||||||
"__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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
#Select the backend to use. Set to "DEFAULT" to let Flywheel decide.
|
|
||||||
backend = "colorwheel:instancing"
|
|
||||||
#Enable or disable instance update limiting with distance.
|
|
||||||
limitUpdates = true
|
|
||||||
#The number of worker threads to use. Set to -1 to let Flywheel decide. Set to 0 to disable parallelism. Requires a game restart to take effect.
|
|
||||||
# Default: -1
|
|
||||||
# Range: -1 ~ 32
|
|
||||||
workerThreads = -1
|
|
||||||
|
|
||||||
#Config options for Flywheel's built-in backends.
|
|
||||||
[flw_backends]
|
|
||||||
#How smooth Flywheel's shader-based lighting should be. May have a large performance impact.
|
|
||||||
#Allowed Values: FLAT, TRI_LINEAR, SMOOTH, SMOOTH_INNER_FACE_CORRECTED
|
|
||||||
lightSmoothness = "SMOOTH"
|
|
||||||
@ -1,32 +0,0 @@
|
|||||||
#Disables File Watcher. Used to automatically update config if its file has been modified.
|
|
||||||
disableConfigWatcher = false
|
|
||||||
#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them.
|
|
||||||
earlyWindowControl = true
|
|
||||||
#Max threads for early initialization parallelism, -1 is based on processor count
|
|
||||||
maxThreads = -1
|
|
||||||
#Enable NeoForge global version checking
|
|
||||||
versionCheck = false
|
|
||||||
#Default config path for servers
|
|
||||||
defaultConfigPath = "defaultconfigs"
|
|
||||||
#Disables Optimized DFU client-side - already disabled on servers
|
|
||||||
disableOptimizedDFU = true
|
|
||||||
#Early window provider
|
|
||||||
earlyWindowProvider = "SimpleCustomEarlyLoading"
|
|
||||||
#Early window width
|
|
||||||
earlyWindowWidth = 854
|
|
||||||
#Early window height
|
|
||||||
earlyWindowHeight = 480
|
|
||||||
#Early window framebuffer scale
|
|
||||||
earlyWindowFBScale = 1
|
|
||||||
#Early window starts maximized
|
|
||||||
earlyWindowMaximized = false
|
|
||||||
#Skip specific GL versions, may help with buggy graphics card drivers
|
|
||||||
earlyWindowSkipGLVersions = []
|
|
||||||
#Squir?
|
|
||||||
earlyWindowSquir = false
|
|
||||||
#Define dependency overrides below
|
|
||||||
#Dependency overrides can be used to forcibly remove a dependency constraint from a mod or to force a mod to load AFTER another mod
|
|
||||||
#Using dependency overrides can cause issues. Use at your own risk.
|
|
||||||
#Example dependency override for the mod with the id 'targetMod': dependency constraints (incompatibility clauses or restrictive version ranges) against mod 'dep1' are removed, and the mod will now load after the mod 'dep2'
|
|
||||||
#dependencyOverrides.targetMod = ["-dep1", "+dep2"]
|
|
||||||
dependencyOverrides = {}
|
|
||||||
@ -1,82 +0,0 @@
|
|||||||
{
|
|
||||||
"crouchMode": "SWAP_ALL",
|
|
||||||
"doVRControllerRumble": true,
|
|
||||||
"returnItemsWhenLeavingImmersives": true,
|
|
||||||
"disableImmersiveMCOutsideVR": true,
|
|
||||||
"bagColor": 11901820,
|
|
||||||
"rightClickChestInteractions": false,
|
|
||||||
"autoCenterFurnaceImmersive": false,
|
|
||||||
"autoCenterBrewingStandImmersive": false,
|
|
||||||
"bagMode": "BUNDLE",
|
|
||||||
"placementGuideMode": "CUBE",
|
|
||||||
"spinSomeImmersiveOutputs": true,
|
|
||||||
"rightClickImmersiveInteractionsInVR": false,
|
|
||||||
"compatFor3dResourcePacks": false,
|
|
||||||
"itemGuideSize": 1.0,
|
|
||||||
"itemGuideSelectedSize": 1.0,
|
|
||||||
"itemGuidePreset": "GRAY",
|
|
||||||
"itemGuidePrideFlag": "PRIDE",
|
|
||||||
"colorPresetAlpha": 127,
|
|
||||||
"colorPresetSelectedAlpha": 207,
|
|
||||||
"colorPresetRangedGrabSize": 255,
|
|
||||||
"multiColorPresetTransitionTimeMS": 5000,
|
|
||||||
"itemGuideCustomColorData": {
|
|
||||||
"colors": [
|
|
||||||
1670089611
|
|
||||||
],
|
|
||||||
"selectedColors": [
|
|
||||||
2143667653
|
|
||||||
],
|
|
||||||
"rangedGrabColors": [
|
|
||||||
2143667653
|
|
||||||
],
|
|
||||||
"transitionTimeMS": 5000
|
|
||||||
},
|
|
||||||
"disableVanillaInteractionsForSupportedImmersives": false,
|
|
||||||
"reachBehindBagMode": "BEHIND_BACK",
|
|
||||||
"textScale": 1.0,
|
|
||||||
"swapBagHand": false,
|
|
||||||
"useGrabBeaconInVR": true,
|
|
||||||
"useGrindMotionGrindstoneInVR": true,
|
|
||||||
"dontAutoStepOnImmersiveBlocksInVR": true,
|
|
||||||
"requireTriggerForBagOpen": true,
|
|
||||||
"clientConfigVersion": 4,
|
|
||||||
"useAnvilImmersive": true,
|
|
||||||
"useBrewingStandImmersive": true,
|
|
||||||
"useChestImmersive": true,
|
|
||||||
"useCraftingTableImmersive": true,
|
|
||||||
"useFurnaceImmersive": true,
|
|
||||||
"useJukeboxImmersive": true,
|
|
||||||
"useRangedGrabImmersive": true,
|
|
||||||
"useButtonImmersive": true,
|
|
||||||
"useEnchantingTableImmersive": true,
|
|
||||||
"useCampfireImmersive": true,
|
|
||||||
"useLeverImmersive": true,
|
|
||||||
"useBagImmersive": true,
|
|
||||||
"useRepeaterImmersive": true,
|
|
||||||
"useDoorImmersive": true,
|
|
||||||
"useTrapdoorImmersive": true,
|
|
||||||
"allowPetting": true,
|
|
||||||
"useArmorImmersive": true,
|
|
||||||
"useFeedingAnimalsImmersive": true,
|
|
||||||
"useShulkerImmersive": true,
|
|
||||||
"allowPettingAnythingLiving": false,
|
|
||||||
"rangedGrabRange": 8,
|
|
||||||
"useBeaconImmersive": true,
|
|
||||||
"useBarrelImmersive": true,
|
|
||||||
"useThrowingImmersive": true,
|
|
||||||
"allowThrowingBeyondVanillaMaxRange": true,
|
|
||||||
"useHopperImmersive": true,
|
|
||||||
"useSmithingTableImmersive": true,
|
|
||||||
"useChiseledBookshelfImmersive": true,
|
|
||||||
"useWrittenBookImmersive": true,
|
|
||||||
"useCauldronImmersive": true,
|
|
||||||
"useIronFurnacesFurnaceImmersive": true,
|
|
||||||
"useTinkersConstructCraftingStationImmersive": true,
|
|
||||||
"useLecternImmersive": true,
|
|
||||||
"useBucketAndBottleImmersive": true,
|
|
||||||
"useApotheosisEnchantmentTableImmersive": true,
|
|
||||||
"useApotheosisSalvagingTableImmersive": true,
|
|
||||||
"useGrindstoneImmersive": true,
|
|
||||||
"commonConfigVersion": 3
|
|
||||||
}
|
|
||||||
@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"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": false,
|
|
||||||
"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
|
|
||||||
}
|
|
||||||
@ -16,54 +16,8 @@
|
|||||||
// Items here will be unusable completely
|
// Items here will be unusable completely
|
||||||
// Example: minecraft:diamond
|
// Example: minecraft:diamond
|
||||||
"blacklisted_items": [
|
"blacklisted_items": [
|
||||||
"dndesires:fluid_hatch",
|
"!chipped:.*pointed_dripstone",
|
||||||
"silentgems:teleporter_linker",
|
"ars_nouveau:stable_warp_scroll"
|
||||||
"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.
|
// Removes an item if it contains certain nbt tag. If the whole entry (or expression) is present, the item gets removed.
|
||||||
@ -96,4 +50,4 @@
|
|||||||
// [!] Enabling this will disable all regular expressions
|
// [!] Enabling this will disable all regular expressions
|
||||||
// [!] Does not apply to NBT, only item blacklist / interaction / attack
|
// [!] Does not apply to NBT, only item blacklist / interaction / attack
|
||||||
"use_hashmap_optimizations": false
|
"use_hashmap_optimizations": false
|
||||||
}
|
}
|
||||||
25
config/kawaii-dishes-common.toml
Normal file
25
config/kawaii-dishes-common.toml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
["Common Configs for Kawaii Dishes"]
|
||||||
|
#Define if the Kawaii Effect can send messages to local players
|
||||||
|
canSendMessage = false
|
||||||
|
#Set the chance to message the player
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
chanceToMessage = 2.5E-4
|
||||||
|
#Sets the messages that are sent to the player
|
||||||
|
messages = ["You look so kawaii !!", "OuO", "Cute <3", "You look nice today", "Hi Cutie !", "Hey sweetie!"]
|
||||||
|
#Should the mobs spawn with the maid dresses
|
||||||
|
shouldSpawn = true
|
||||||
|
#Sets the chance for mobs to spawn with maid dresses
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
chanceToSpawn = 0.005
|
||||||
|
#Sets the chance for mobs that spawn with maid dresses to drop them
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
chanceToDrop = 0.10
|
||||||
|
#Should the add item trades for villagers
|
||||||
|
villagerTrades = false
|
||||||
|
#Should the add item trades for wandering traders
|
||||||
|
wanderingTraderTrades = true
|
||||||
|
#Structure generation weights for the village houses
|
||||||
|
#Range: 0 ~ 450
|
||||||
|
villageStructWeight = 25
|
||||||
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
# This is the configuration file for Lithium.
|
|
||||||
#
|
|
||||||
# You can find information on editing this file and all the available options here:
|
|
||||||
# https://github.com/CaffeineMC/lithium-fabric/wiki/Configuration-File
|
|
||||||
#
|
|
||||||
# By default, this file will be empty except for this notice.
|
|
||||||
mixin.world.chunk_ticking.random_block_ticking=false
|
|
||||||
mixin.world.inline_block_access=false
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"logbegone": {
|
|
||||||
"phrases": [
|
|
||||||
"Saving sub-levels for level",
|
|
||||||
"Channels "
|
|
||||||
],
|
|
||||||
"regex": [
|
|
||||||
".*Saving sub-levels for level.*",
|
|
||||||
"Channels "
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
15
config/mimi-common.toml
Normal file
15
config/mimi-common.toml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
["World Generation"]
|
||||||
|
#Toggles whether Instrumentalist shops should generate in villages.
|
||||||
|
enableInstrumentalistShop = true
|
||||||
|
#Comma-separated list of mobs that can be given instruments to hold.
|
||||||
|
allowedInstrumentMobs = "minecraft:zombie,minecraft:husk,minecraft:skeleton,minecraft:stray,minecraft:wither_skeleton"
|
||||||
|
#Toggles wheter to give players the MIMI Guide Book on first join.
|
||||||
|
doGiveBookOnFirstJoin = false
|
||||||
|
|
||||||
|
[Other]
|
||||||
|
#Toggles whether MIMI should log when the server fails to timely execute a MIDI command which usually just indiciates server performance trouble.
|
||||||
|
doLogMidiTaskErrors = true
|
||||||
|
#The number of milliseconds a MIDI thread task should wait before timing out. Longer times may reduce instances of tasks failing but also reduce responsiveness of Transmitters.
|
||||||
|
midiTaskTimeoutMillis = 15000
|
||||||
|
|
||||||
@ -1,189 +0,0 @@
|
|||||||
#All configuration items related to the core gameplay
|
|
||||||
[gameplay]
|
|
||||||
#Amount of initial citizens. [Default: 4, min: 1, max: 10]
|
|
||||||
# Default: 4
|
|
||||||
# Range: 1 ~ 10
|
|
||||||
initialcitizenamount = 4
|
|
||||||
#Should players be able to place an infinite amount of supply camps/ships? [Default: false]
|
|
||||||
allowinfinitesupplychests = false
|
|
||||||
#Should players be allowed to abandon their colony to create a new one easily? Note: This is buggy! [Default: false]
|
|
||||||
allowinfinitecolonies = false
|
|
||||||
#Should colonies in other dimensions be allowed? [Default: true]
|
|
||||||
allowotherdimcolonies = true
|
|
||||||
#Max citizens in one colony. [Default: 250, min: 25, max: 500]
|
|
||||||
# Default: 250
|
|
||||||
# Range: 25 ~ 500
|
|
||||||
maxcitizenpercolony = 300
|
|
||||||
#Should development features be enabled (might be buggy)? [Default: false]
|
|
||||||
enableindevelopmentfeatures = false
|
|
||||||
#Should citizen name tags be rendered? [Default: true]
|
|
||||||
alwaysrendernametag = true
|
|
||||||
#Should workers work during the rain? [Default: 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
|
|
||||||
luckyblockchance = 1
|
|
||||||
#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 = 5
|
|
||||||
#Food consumption modifier. [Default: 1.0, min: 0.1, max: 100.0]
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.1 ~ 100.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 = 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 = 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
|
|
||||||
colonyloadstrictness = 3
|
|
||||||
#Max log count in one tree for the Forester to check during their tree search. [Default: 400, min: 1, max: 1000]
|
|
||||||
# Default: 400
|
|
||||||
# Range: 1 ~ 1000
|
|
||||||
maxtreesize = 400
|
|
||||||
#Disables supply camp placing restrictions, intended for skyworlds and similar [Default: false]
|
|
||||||
nosupplyplacementrestrictions = false
|
|
||||||
#Raiders will spawn in the sky if this is enabled [Default: false]
|
|
||||||
skyraiders = false
|
|
||||||
|
|
||||||
#All configurations related to the research system
|
|
||||||
[research]
|
|
||||||
#Allows automatic and (near) instant completion of research for players in creative mode. If false, creative players will still be able to begin researches, but will have normal progress rates. [Default: true]
|
|
||||||
researchcreativecompletion = true
|
|
||||||
#Significantly increases the amount of information related to research datapacks that is logged during the world load. [Default: false]
|
|
||||||
researchdebuglog = false
|
|
||||||
#A list of items to charge players when undoing an already-completed research.
|
|
||||||
researchresetcost = ["minecolonies:ancienttome:1"]
|
|
||||||
|
|
||||||
#All configurations related to the MineColonies commands
|
|
||||||
[commands]
|
|
||||||
#Should players be allowed to use the /mc rtp command? [Default: false]
|
|
||||||
canplayerusertpcommand = false
|
|
||||||
#Should players be allowed to use the /mc colony teleport command? [Default: false]
|
|
||||||
canplayerusecolonytpcommand = false
|
|
||||||
#Can players teleport to allied colonies? [Default: true]
|
|
||||||
canplayeruseallytownhallteleport = true
|
|
||||||
#Should players be allowed to use the /mc home command? Note: Only owners of the colony can use this command. [Default: false]
|
|
||||||
canplayerusehometpcommand = false
|
|
||||||
#Should players be allowed to use the /mc colony info command? [Default: true]
|
|
||||||
canplayeruseshowcolonyinfocommand = true
|
|
||||||
#Should players be allowed to use the /mc citizens kill command? [Default: false]
|
|
||||||
canplayerusekillcitizenscommand = false
|
|
||||||
#Should players be allowed to use the /mc citizens modify command? [Default: false]
|
|
||||||
canplayerusemodifycitizenscommand = false
|
|
||||||
#Should players be allowed to use the /mc colony addOfficer command? [Default: true]
|
|
||||||
canplayeruseaddofficercommand = true
|
|
||||||
#Should players be allowed to use the /mc colony delete command? [Default: false]
|
|
||||||
canplayerusedeletecolonycommand = false
|
|
||||||
#Should players be allowed to use the /mc colony requestsystem-reset command? [Default: false]
|
|
||||||
canplayeruseresetcommand = false
|
|
||||||
|
|
||||||
#All configuration related to colony claims
|
|
||||||
[claims]
|
|
||||||
#minecolonies.config.maxColonySize.comment [Default: 20, min: 1, max: 250]
|
|
||||||
# Default: 20
|
|
||||||
# Range: 1 ~ 250
|
|
||||||
maxColonySize = 200
|
|
||||||
#minecolonies.config.minColonyDistance.comment [Default: 8, min: 1, max: 200]
|
|
||||||
# Default: 8
|
|
||||||
# Range: 1 ~ 200
|
|
||||||
minColonyDistance = 32
|
|
||||||
#minecolonies.config.initialColonySize.comment [Default: 4, min: 1, max: 15]
|
|
||||||
# Default: 4
|
|
||||||
# Range: 1 ~ 15
|
|
||||||
initialColonySize = 5
|
|
||||||
#Max distance (in blocks) from world spawn for a colony. [Default: 30000, min: 1000, max: 2147483647]
|
|
||||||
# Default: 30000
|
|
||||||
# Range: > 1000
|
|
||||||
maxdistancefromworldspawn = 2147483647
|
|
||||||
#Min distance (in blocks) from world spawn for a colony. [Default: 0, min: 0, max: 1000]
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
mindistancefromworldspawn = 100
|
|
||||||
|
|
||||||
#All configuration items related to the combat elements of MineColonies
|
|
||||||
[combat]
|
|
||||||
#minecolonies.config.dobarbariansspawn.comment [Default: true]
|
|
||||||
dobarbariansspawn = true
|
|
||||||
#minecolonies.config.barbarianhordedifficulty.comment [Default: 5, min: 0, max: 10]
|
|
||||||
# Default: 5
|
|
||||||
# Range: 0 ~ 10
|
|
||||||
barbarianhordedifficulty = 7
|
|
||||||
#minecolonies.config.maxBarbarianSize.comment [Default: 80, min: 6, max: 400]
|
|
||||||
# Default: 80
|
|
||||||
# Range: 6 ~ 400
|
|
||||||
maxBarbarianSize = 80
|
|
||||||
#minecolonies.config.dobarbariansbreakthroughwalls.comment [Default: true]
|
|
||||||
dobarbariansbreakthroughwalls = false
|
|
||||||
#The average number of nights between raids. [Default: 14, min: 1, max: 50]
|
|
||||||
# Default: 14
|
|
||||||
# Range: 1 ~ 50
|
|
||||||
averagenumberofnightsbetweenraids = 20
|
|
||||||
#The minimum number of nights between raids. [Default: 10, min: 1, max: 30]
|
|
||||||
# Default: 10
|
|
||||||
# Range: 1 ~ 30
|
|
||||||
minimumnumberofnightsbetweenraids = 10
|
|
||||||
#Should mobs attack citizens? [Default: true]
|
|
||||||
mobattackcitizens = true
|
|
||||||
#minecolonies.config.shouldraiderbreakdoors.comment [Default: true]
|
|
||||||
shouldraiderbreakdoors = true
|
|
||||||
#Attack damage multiplier for Guards. [Default: 1.0, min: 0.1, max: 15.0]
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.1 ~ 15.0
|
|
||||||
guardDamageMultiplier = 1.0
|
|
||||||
#Health multiplier for all Guards. [Default: 1.0, min: 0.1, max: 5.0]
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.1 ~ 5.0
|
|
||||||
guardhealthmult = 1.0
|
|
||||||
#Turn on MineColonies PVP mode (colonies can be destroyed and griefed under certain conditions). [Default: false]
|
|
||||||
pvp_mode = false
|
|
||||||
|
|
||||||
#All permission configuration options
|
|
||||||
[permissions]
|
|
||||||
#Should colony protection be enabled? [Default: true]
|
|
||||||
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"
|
|
||||||
#Disables colony permissions if player has a given permission level. [Default: 2, min: 0, max: 4]
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 4
|
|
||||||
permissioneventbypassminpermlevel = 2
|
|
||||||
|
|
||||||
#All configuration related to mod compatibility
|
|
||||||
[compatibility]
|
|
||||||
#When loading recipes, generate audit CSV files to help debug datapacks or extra mods. [Default: false]
|
|
||||||
auditcraftingtags = false
|
|
||||||
#Enable inventory debugging. [Default: false]
|
|
||||||
debuginventories = false
|
|
||||||
#Turn this on if you're using this world for blueprint building and scanning. [Default: false]
|
|
||||||
blueprintbuildmode = false
|
|
||||||
|
|
||||||
#All configurations related to pathfinding
|
|
||||||
[pathfinding]
|
|
||||||
#Verbosity of pathfinding debug messages. [Default: 0, min: 0, max: 10]
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10
|
|
||||||
pathfindingdebugverbosity = 0
|
|
||||||
#Minimum number of consecutive rails for citizens to use them. [Default: 8, min: 5, max: 100]
|
|
||||||
# Default: 8
|
|
||||||
# Range: 5 ~ 100
|
|
||||||
minimumrailstopath = 8
|
|
||||||
#Amount of additional threads to be used for pathfinding. [Default: 1, min: 1, max: 10]
|
|
||||||
# Default: 1
|
|
||||||
# Range: 1 ~ 10
|
|
||||||
pathfindingmaxthreadcount = 1
|
|
||||||
|
|
||||||
#minecolonies.config.requestSystem.comment
|
|
||||||
[requestSystem]
|
|
||||||
#Should the request system creatively resolve (if possible) when the player is required to resolve a request? This is a debugging tool and can take a very long time to resolve a request. [Default: false]
|
|
||||||
creativeresolve = false
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
[buildings]
|
|
||||||
customCraftingModules = []
|
|
||||||
|
|
||||||
[worldGens]
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
emptyColoniesGenerationChance = 0.0
|
|
||||||
5
config/minemention/client.json5
Normal file
5
config/minemention/client.json5
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
// Sets where the default mentions should be displayed when the chat gui is open.
|
||||||
|
// Allowed values: hidden, left, right
|
||||||
|
"displayLocation": "hidden"
|
||||||
|
}
|
||||||
30
config/minemenu-common.toml
Normal file
30
config/minemenu-common.toml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
|
||||||
|
[general]
|
||||||
|
toggle = false
|
||||||
|
rightClickToEdit = true
|
||||||
|
releaseToSelect = false
|
||||||
|
menuAnimation = true
|
||||||
|
menuButtonIcon = "minecraft:stone"
|
||||||
|
|
||||||
|
[visual]
|
||||||
|
|
||||||
|
[visual.menu]
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
alpha = 153
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
red = 0
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
green = 0
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
blue = 0
|
||||||
|
|
||||||
|
[visual.select]
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
alpha = 153
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
red = 255
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
green = 0
|
||||||
|
#Range: 0 ~ 255
|
||||||
|
blue = 0
|
||||||
|
|
||||||
15
config/packetfixer.properties
Normal file
15
config/packetfixer.properties
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#Packet Fixer config file.
|
||||||
|
#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3.
|
||||||
|
#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize.
|
||||||
|
#Fri Jul 25 17:15:41 CEST 2025
|
||||||
|
chunkPacketData=2097152
|
||||||
|
varLong=10
|
||||||
|
nbtMaxSize=2097152
|
||||||
|
allSizesUnlimited=true
|
||||||
|
forceUnlimitedNbtEnabled=false
|
||||||
|
decoderSize=8388608
|
||||||
|
packetSize=1048576
|
||||||
|
stringSize=32767
|
||||||
|
timeout=300
|
||||||
|
varInt21=3
|
||||||
|
varInt=5
|
||||||
@ -1,7 +1,8 @@
|
|||||||
|
|
||||||
["Possibility_of_Actions(Some_do_not_have_to_work)"]
|
["Possibility_of_Actions(Some_do_not_have_to_work)"]
|
||||||
can_ChargeJump = false
|
|
||||||
can_BreakfallReady = true
|
can_BreakfallReady = true
|
||||||
can_CatLeap = true
|
can_CatLeap = true
|
||||||
|
can_ChargeJump = true
|
||||||
can_ClimbPoles = true
|
can_ClimbPoles = true
|
||||||
can_ClimbUp = true
|
can_ClimbUp = true
|
||||||
can_ClingToCliff = true
|
can_ClingToCliff = true
|
||||||
@ -25,7 +26,6 @@
|
|||||||
can_VerticalWallRun = true
|
can_VerticalWallRun = true
|
||||||
can_WallJump = true
|
can_WallJump = true
|
||||||
can_WallSlide = true
|
can_WallSlide = true
|
||||||
can_StartSwimByCrawl = true
|
|
||||||
|
|
||||||
[Stamina_HUD_Configuration]
|
[Stamina_HUD_Configuration]
|
||||||
#Allowed Values: Normal, Light, Hide
|
#Allowed Values: Normal, Light, Hide
|
||||||
@ -39,23 +39,17 @@
|
|||||||
hide_hud_if_stamina_infinite = true
|
hide_hud_if_stamina_infinite = true
|
||||||
#Stamina HUD shows action charge rate, cool time or etc
|
#Stamina HUD shows action charge rate, cool time or etc
|
||||||
show_action_status_bar = true
|
show_action_status_bar = true
|
||||||
#Light stamina HUD shows always
|
|
||||||
show_light_hud_always = false
|
|
||||||
#horizontal offset of normal HUD
|
#horizontal offset of normal HUD
|
||||||
# Default: 3
|
#Range: 0 ~ 100
|
||||||
# Range: 0 ~ 100
|
|
||||||
offset_h_stamina_hud = 3
|
offset_h_stamina_hud = 3
|
||||||
#vertical offset of normal HUD
|
#vertical offset of normal HUD
|
||||||
# Default: 3
|
#Range: 0 ~ 100
|
||||||
# Range: 0 ~ 100
|
|
||||||
offset_v_stamina_hud = 3
|
offset_v_stamina_hud = 3
|
||||||
#horizontal offset of light HUD
|
#horizontal offset of light HUD
|
||||||
# Default: 0
|
#Range: -100 ~ 100
|
||||||
# Range: -100 ~ 100
|
|
||||||
offset_h_light_hud = 0
|
offset_h_light_hud = 0
|
||||||
#vertical offset of light HUD
|
#vertical offset of light HUD
|
||||||
# Default: 0
|
#Range: -100 ~ 100
|
||||||
# Range: -100 ~ 100
|
|
||||||
offset_v_light_hud = 0
|
offset_v_light_hud = 0
|
||||||
|
|
||||||
[Animations]
|
[Animations]
|
||||||
@ -74,7 +68,7 @@
|
|||||||
#Enable rotation of camera by Roll
|
#Enable rotation of camera by Roll
|
||||||
enable_camera_rotation_roll = true
|
enable_camera_rotation_roll = true
|
||||||
#Enable rotation of camera by Flipping
|
#Enable rotation of camera by Flipping
|
||||||
enable_camera_rotation_flipping = false
|
enable_camera_rotation_flipping = true
|
||||||
#Enable animation of camera by Vault
|
#Enable animation of camera by Vault
|
||||||
enable_camera_animation_vault = false
|
enable_camera_animation_vault = false
|
||||||
#Enable animation of camera by Horizontal-WallRun
|
#Enable animation of camera by Horizontal-WallRun
|
||||||
@ -83,21 +77,21 @@
|
|||||||
enable_camera_animation_hang-down = true
|
enable_camera_animation_hang-down = true
|
||||||
|
|
||||||
[Animations.Animators]
|
[Animations.Animators]
|
||||||
enable_ChargeJumpAnimator = false
|
|
||||||
enable_JumpChargingAnimator = false
|
|
||||||
enable_BackwardWallJumpAnimator = true
|
enable_BackwardWallJumpAnimator = true
|
||||||
enable_CatLeapAnimator = true
|
enable_CatLeapAnimator = true
|
||||||
|
enable_ChargeJumpAnimator = true
|
||||||
enable_ClimbUpAnimator = true
|
enable_ClimbUpAnimator = true
|
||||||
enable_ClingToCliffAnimator = true
|
enable_ClingToCliffAnimator = true
|
||||||
enable_CrawlAnimator = true
|
enable_CrawlAnimator = true
|
||||||
enable_DiveAnimationHostAnimator = true
|
enable_DiveAnimationHostAnimator = true
|
||||||
enable_DiveIntoWaterAnimator = true
|
enable_DiveIntoWaterAnimator = true
|
||||||
enable_DodgeAnimator = true
|
enable_DodgeAnimator = true
|
||||||
enable_FastRunningAnimator = true
|
enable_FastRunningAnimator = false
|
||||||
enable_FastSwimAnimator = true
|
enable_FastSwimAnimator = false
|
||||||
enable_FlippingAnimator = true
|
enable_FlippingAnimator = true
|
||||||
enable_HideInBlockAnimator = true
|
enable_HideInBlockAnimator = true
|
||||||
enable_HorizontalWallRunAnimator = true
|
enable_HorizontalWallRunAnimator = true
|
||||||
|
enable_JumpChargingAnimator = false
|
||||||
enable_JumpFromBarAnimator = true
|
enable_JumpFromBarAnimator = true
|
||||||
enable_HangAnimator = true
|
enable_HangAnimator = true
|
||||||
enable_KongVaultAnimator = true
|
enable_KongVaultAnimator = true
|
||||||
@ -119,7 +113,7 @@
|
|||||||
crawl_control = "PressKey"
|
crawl_control = "PressKey"
|
||||||
#Control of Flipping
|
#Control of Flipping
|
||||||
#Allowed Values: PressRightAndLeft, TapMovementAndJump, PressFlippingKey
|
#Allowed Values: PressRightAndLeft, TapMovementAndJump, PressFlippingKey
|
||||||
flip_control = "TapMovementAndJump"
|
flip_control = "PressFlippingKey"
|
||||||
#Control of Horizontal Wall Run
|
#Control of Horizontal Wall Run
|
||||||
#Allowed Values: PressKey, Auto
|
#Allowed Values: PressKey, Auto
|
||||||
h-wall-run_control = "PressKey"
|
h-wall-run_control = "PressKey"
|
||||||
@ -148,67 +142,34 @@
|
|||||||
#enable players to do actions needing Fast-Running by sprint
|
#enable players to do actions needing Fast-Running by sprint
|
||||||
substitute_sprint = false
|
substitute_sprint = false
|
||||||
#acceptable walll angle of wall jump : `0` means you exactly opposite to wall, `180` allow you to wall jump for all angle
|
#acceptable walll angle of wall jump : `0` means you exactly opposite to wall, `180` allow you to wall jump for all angle
|
||||||
# Default: 110
|
#Range: 0 ~ 180
|
||||||
# Range: 0 ~ 180
|
|
||||||
acceptable_angle_wall_jump = 110
|
acceptable_angle_wall_jump = 110
|
||||||
#How long duration of dodge is deal as successive dodge
|
#How long duration of dodge is deal as successive dodge
|
||||||
# Default: 30
|
#Range: > 0
|
||||||
# Range: > 0
|
|
||||||
successive_dodge_cool_time = 30
|
successive_dodge_cool_time = 30
|
||||||
#Cool time of Dodge action
|
#Cool time of Dodge action
|
||||||
# Default: 11
|
#Range: > 11
|
||||||
# Range: > 11
|
|
||||||
dodge_cool_time = 11
|
dodge_cool_time = 11
|
||||||
#Max number of times of successive Dodge action
|
#Max number of times of successive Dodge action
|
||||||
# Default: 3
|
#Range: > 1
|
||||||
# Range: > 1
|
|
||||||
successive_dodge_count = 3
|
successive_dodge_count = 3
|
||||||
#Window time of just time breakfall
|
|
||||||
# Default: 5
|
|
||||||
# Range: > 0
|
|
||||||
justtime_breakfall_tick = 5
|
|
||||||
#coyote time tick (how long tick player can behave like on ground after getting off ledge
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 20
|
|
||||||
coyote_time = 3
|
|
||||||
#Lowest fall distance needed to trigger breakfall movements
|
|
||||||
# Default: 2.0
|
|
||||||
# Range: 0.0 ~ 10.0
|
|
||||||
lowest_fall_distance_for_breakfall = 2.0
|
|
||||||
#How long distance breakfall can remove damage
|
|
||||||
# Default: 6.0
|
|
||||||
# Range: 0.0 ~ 1.7976931348623157E308
|
|
||||||
max_breakfall_damage_remove_height = 6.0
|
|
||||||
#Damage reduction rate of Breakfall
|
|
||||||
# Default: 0.6
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
max_breakfall_damage_reduction_rate = 0.6
|
|
||||||
|
|
||||||
[Modifier]
|
[Modifier]
|
||||||
#How long you can do Horizontal Wall Run
|
#How long you can do Horizontal Wall Run
|
||||||
# Default: 25
|
#Range: 15 ~ 100
|
||||||
# Range: 15 ~ 100
|
|
||||||
wall-run_continuable_tick = 25
|
wall-run_continuable_tick = 25
|
||||||
#How long you can do Slide
|
#How long you can do Slide
|
||||||
# Default: 15
|
#Range: 10 ~ 60
|
||||||
# Range: 10 ~ 60
|
|
||||||
sliding_continuable_tick = 15
|
sliding_continuable_tick = 15
|
||||||
#FastRun speed modifier
|
#FastRun speed modifier
|
||||||
# Default: 2.0
|
#Range: 0.001 ~ 10.0
|
||||||
# Range: 0.001 ~ 10.0
|
|
||||||
fast-run_modifier = 2.0
|
fast-run_modifier = 2.0
|
||||||
#FastSwim speed modifier
|
#FastSwim speed modifier
|
||||||
# Default: 2.0
|
#Range: 0.001 ~ 10.0
|
||||||
# Range: 0.001 ~ 10.0
|
|
||||||
fast-swim_modifier = 2.0
|
fast-swim_modifier = 2.0
|
||||||
#Dodge speed modifier
|
#Dodge speed modifier
|
||||||
# Default: 1.0
|
#Range: 0.5 ~ 3.0
|
||||||
# Range: 0.5 ~ 3.0
|
|
||||||
dodge-speed_modifier = 1.0
|
dodge-speed_modifier = 1.0
|
||||||
#SkyDive speed decreasement rate
|
|
||||||
# Default: 0.98
|
|
||||||
# Range: 0.001 ~ 1.0
|
|
||||||
sky_dive-speed-decreasement = 0.98
|
|
||||||
|
|
||||||
[Other_Configuration]
|
[Other_Configuration]
|
||||||
#Vault Animation(Dynamic is to select animation dynamically)
|
#Vault Animation(Dynamic is to select animation dynamically)
|
||||||
@ -228,96 +189,71 @@
|
|||||||
#Enable block like rendering of zipline
|
#Enable block like rendering of zipline
|
||||||
enable_3d_render_zipline = true
|
enable_3d_render_zipline = true
|
||||||
#Notify if auto resynchronization of Limitation is executed
|
#Notify if auto resynchronization of Limitation is executed
|
||||||
notify_limitation_auto_resync = false
|
notify_limitation_auto_resync = true
|
||||||
#Whether ParCool is active
|
#Whether ParCool is active
|
||||||
parcool_activation = true
|
parcool_activation = true
|
||||||
|
|
||||||
[Stamina]
|
[Stamina]
|
||||||
|
#Allowed Values: Default, Hunger, Feathers, Paraglider, EpicFight
|
||||||
|
used_stamina = "Default"
|
||||||
#Caution : Max stamina and stamina recovery config is removed because they became attributes.
|
#Caution : Max stamina and stamina recovery config is removed because they became attributes.
|
||||||
#Allowed Values: NONE, PARCOOL, HUNGER, PARAGLIDER, EPIC_FIGHT
|
#Infinite Stamina (this needs a permission from server, even if it is on single player's game. normally permitted)
|
||||||
used_stamina = "PARCOOL"
|
#Please check 'parcool-server.toml' in 'serverconfig' directory
|
||||||
#Enable slowing down of stamina exhaustion
|
infinite_stamina = false
|
||||||
enable_stamina_exhaustion_penalty = true
|
#Infinite Stamina while player is creative mode
|
||||||
|
infinite_stamina_if_creative_mode = true
|
||||||
|
|
||||||
[Stamina.Consumption]
|
[Stamina.Consumption]
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_BreakfallReady = 0
|
stamina_consumption_of_BreakfallReady = 0
|
||||||
# Default: 200
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_CatLeap = 200
|
stamina_consumption_of_CatLeap = 200
|
||||||
# Default: 100
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ChargeJump = 100
|
stamina_consumption_of_ChargeJump = 100
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ClimbPoles = 0
|
stamina_consumption_of_ClimbPoles = 0
|
||||||
# Default: 150
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ClimbUp = 150
|
stamina_consumption_of_ClimbUp = 150
|
||||||
# Default: 2
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ClingToCliff = 2
|
stamina_consumption_of_ClingToCliff = 2
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_HideInBlock = 0
|
stamina_consumption_of_HideInBlock = 0
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Crawl = 0
|
stamina_consumption_of_Crawl = 0
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Dive = 0
|
stamina_consumption_of_Dive = 0
|
||||||
# Default: 80
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Dodge = 80
|
stamina_consumption_of_Dodge = 80
|
||||||
# Default: 2
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_FastRun = 2
|
stamina_consumption_of_FastRun = 2
|
||||||
# Default: 3
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_FastSwim = 3
|
stamina_consumption_of_FastSwim = 3
|
||||||
# Default: 80
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Flipping = 80
|
stamina_consumption_of_Flipping = 80
|
||||||
# Default: 3
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_HangDown = 3
|
stamina_consumption_of_HangDown = 3
|
||||||
# Default: 2
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_HorizontalWallRun = 2
|
stamina_consumption_of_HorizontalWallRun = 2
|
||||||
# Default: 100
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_JumpFromBar = 100
|
stamina_consumption_of_JumpFromBar = 100
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_QuickTurn = 0
|
stamina_consumption_of_QuickTurn = 0
|
||||||
# Default: 2
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_RideZipline = 2
|
stamina_consumption_of_RideZipline = 2
|
||||||
# Default: 100
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Roll = 100
|
stamina_consumption_of_Roll = 100
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_SkyDive = 0
|
stamina_consumption_of_SkyDive = 0
|
||||||
# Default: 0
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Slide = 0
|
stamina_consumption_of_Slide = 0
|
||||||
# Default: 100
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Tap = 100
|
stamina_consumption_of_Tap = 100
|
||||||
# Default: 50
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Vault = 50
|
stamina_consumption_of_Vault = 50
|
||||||
# Default: 150
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_VerticalWallRun = 150
|
stamina_consumption_of_VerticalWallRun = 150
|
||||||
# Default: 120
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_WallJump = 120
|
stamina_consumption_of_WallJump = 120
|
||||||
# Default: 8
|
#Range: 0 ~ 10000
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_WallSlide = 8
|
stamina_consumption_of_WallSlide = 8
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_StartSwimByCrawl = 0
|
|
||||||
|
|||||||
@ -1,227 +0,0 @@
|
|||||||
[Limitations]
|
|
||||||
#Whether these limitations will be imposed to players
|
|
||||||
limitation_imposed = false
|
|
||||||
|
|
||||||
[Limitations.Action_Permissions]
|
|
||||||
permit_ChargeJump = false
|
|
||||||
permit_BreakfallReady = true
|
|
||||||
permit_CatLeap = true
|
|
||||||
permit_ClimbPoles = true
|
|
||||||
permit_ClimbUp = true
|
|
||||||
permit_ClingToCliff = true
|
|
||||||
permit_HideInBlock = true
|
|
||||||
permit_Crawl = true
|
|
||||||
permit_Dive = true
|
|
||||||
permit_Dodge = true
|
|
||||||
permit_FastRun = true
|
|
||||||
permit_FastSwim = true
|
|
||||||
permit_Flipping = true
|
|
||||||
permit_HangDown = true
|
|
||||||
permit_HorizontalWallRun = true
|
|
||||||
permit_JumpFromBar = true
|
|
||||||
permit_QuickTurn = true
|
|
||||||
permit_RideZipline = true
|
|
||||||
permit_Roll = true
|
|
||||||
permit_SkyDive = true
|
|
||||||
permit_Slide = true
|
|
||||||
permit_Tap = true
|
|
||||||
permit_Vault = true
|
|
||||||
permit_VerticalWallRun = true
|
|
||||||
permit_WallJump = true
|
|
||||||
permit_WallSlide = true
|
|
||||||
permit_StartSwimByCrawl = true
|
|
||||||
|
|
||||||
[Limitations.Stamina]
|
|
||||||
#Allowed Values: NONE, PARCOOL, HUNGER, PARAGLIDER, EPIC_FIGHT
|
|
||||||
forced_stamina = "NONE"
|
|
||||||
#Permission of infinite stamina
|
|
||||||
allow_infinite_stamina = true
|
|
||||||
#Limitation of max stamina value
|
|
||||||
# Default: 2147483647
|
|
||||||
# Range: > 300
|
|
||||||
max_stamina_limit = 2147483647
|
|
||||||
#Limitation of max stamina recovery
|
|
||||||
# Default: 2147483647
|
|
||||||
# Range: > 1
|
|
||||||
max_stamina_recovery_limit = 2147483647
|
|
||||||
|
|
||||||
[Limitations.Stamina.Least_Consumption]
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_BreakfallReady = 0
|
|
||||||
# Default: 200
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_CatLeap = 200
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ChargeJump = 100
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ClimbPoles = 0
|
|
||||||
# Default: 150
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ClimbUp = 150
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_ClingToCliff = 2
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_HideInBlock = 0
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Crawl = 0
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Dive = 0
|
|
||||||
# Default: 80
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Dodge = 80
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_FastRun = 2
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_FastSwim = 3
|
|
||||||
# Default: 80
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Flipping = 80
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_HangDown = 3
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_HorizontalWallRun = 2
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_JumpFromBar = 100
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_QuickTurn = 0
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_RideZipline = 2
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Roll = 100
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_SkyDive = 0
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Slide = 0
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Tap = 100
|
|
||||||
# Default: 50
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_Vault = 50
|
|
||||||
# Default: 150
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_VerticalWallRun = 150
|
|
||||||
# Default: 120
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_WallJump = 120
|
|
||||||
# Default: 8
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_WallSlide = 8
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 10000
|
|
||||||
stamina_consumption_of_StartSwimByCrawl = 0
|
|
||||||
|
|
||||||
[Limitations.Control]
|
|
||||||
#Allow disabling cooldown of wall jump
|
|
||||||
allow_disabling_wall_jump_cooldown = true
|
|
||||||
#How long duration of dodge is deal as successive dodge
|
|
||||||
# Default: 0
|
|
||||||
# Range: > 0
|
|
||||||
least_successive_dodge_cool_time = 0
|
|
||||||
#Cool time of Dodge action
|
|
||||||
# Default: 11
|
|
||||||
# Range: > 11
|
|
||||||
least_dodge_cool_time = 11
|
|
||||||
#Max number of times of successive Dodge action
|
|
||||||
# Default: 2147483647
|
|
||||||
# Range: > 1
|
|
||||||
max_successive_dodge_count = 2147483647
|
|
||||||
#Window time of just time breakfall
|
|
||||||
# Default: 5
|
|
||||||
# Range: > 0
|
|
||||||
justtime_breakfall_tick = 5
|
|
||||||
#Max coyote time tick (how long tick player can behave like on ground after getting off ledge
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 20
|
|
||||||
max_coyote_time = 3
|
|
||||||
#Lowest fall distance needed to trigger breakfall movements
|
|
||||||
# Default: 2.0
|
|
||||||
# Range: 0.0 ~ 10.0
|
|
||||||
lowest_fall_distance_for_breakfall = 2.0
|
|
||||||
#How long breakfall can remove damage
|
|
||||||
# Default: 6.0
|
|
||||||
# Range: 0.0 ~ 1.7976931348623157E308
|
|
||||||
max_breakfall_damage_remove_height = 6.0
|
|
||||||
#Damage reduction rate of Breakfall
|
|
||||||
# Default: 0.6
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
max_breakfall_damage_reduction_rate = 0.6
|
|
||||||
|
|
||||||
[Limitations.Control.Modifier]
|
|
||||||
#How long you can do Horizontal Wall Run
|
|
||||||
# Default: 40
|
|
||||||
# Range: 15 ~ 100
|
|
||||||
wall-run_continuable_tick = 40
|
|
||||||
#How long you can do Slide
|
|
||||||
# Default: 30
|
|
||||||
# Range: 10 ~ 60
|
|
||||||
sliding_continuable_tick = 30
|
|
||||||
#FastRun speed modifier
|
|
||||||
# Default: 2.0
|
|
||||||
# Range: 0.001 ~ 10.0
|
|
||||||
max_fast-run_modifier = 2.0
|
|
||||||
#FastSwim speed modifier
|
|
||||||
# Default: 2.0
|
|
||||||
# Range: 0.001 ~ 10.0
|
|
||||||
max_fast-swim_modifier = 2.0
|
|
||||||
#Dodge speed modifier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.5 ~ 3.0
|
|
||||||
max_dodge-speed_modifier = 1.0
|
|
||||||
#SkyDive speed decrease rate
|
|
||||||
# Default: 0.98
|
|
||||||
# Range: 0.001 ~ 1.0
|
|
||||||
min_sky-dive_speed_decrease = 0.98
|
|
||||||
|
|
||||||
[Limitations.Control.Control]
|
|
||||||
#Allow disabling cooldown of wall jump
|
|
||||||
allow_disabling_wall_jump_cooldown = true
|
|
||||||
#How long duration of dodge is deal as successive dodge
|
|
||||||
# Default: 0
|
|
||||||
# Range: > 0
|
|
||||||
least_successive_dodge_cool_time = 0
|
|
||||||
#Cool time of Dodge action
|
|
||||||
# Default: 11
|
|
||||||
# Range: > 11
|
|
||||||
least_dodge_cool_time = 11
|
|
||||||
#Max number of times of successive Dodge action
|
|
||||||
# Default: 2147483647
|
|
||||||
# Range: > 1
|
|
||||||
max_successive_dodge_count = 2147483647
|
|
||||||
#Window time of just time breakfall
|
|
||||||
# Default: 5
|
|
||||||
# Range: > 0
|
|
||||||
justtime_breakfall_tick = 5
|
|
||||||
#Max coyote time tick (how long tick player can behave like on ground after getting off ledge
|
|
||||||
# Default: 3
|
|
||||||
# Range: 0 ~ 20
|
|
||||||
max_coyote_time = 3
|
|
||||||
#Lowest fall distance needed to trigger breakfall movements
|
|
||||||
# Default: 2.0
|
|
||||||
# Range: 0.0 ~ 10.0
|
|
||||||
lowest_fall_distance_for_breakfall = 2.0
|
|
||||||
#How long breakfall can remove damage
|
|
||||||
# Default: 6.0
|
|
||||||
# Range: 0.0 ~ 1.7976931348623157E308
|
|
||||||
max_breakfall_damage_remove_height = 6.0
|
|
||||||
#Damage reduction rate of Breakfall
|
|
||||||
# Default: 0.6
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
max_breakfall_damage_reduction_rate = 0.6
|
|
||||||
9
config/particle_core_config.toml
Normal file
9
config/particle_core_config.toml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Don't change this! Version used to track needed updates.
|
||||||
|
version = 0
|
||||||
|
turnOffPotionParticles = "NONE"
|
||||||
|
reduceAllChance = 0.0
|
||||||
|
reduceDecreasedChance = 0.0
|
||||||
|
disableParticles = false
|
||||||
|
byTypeReductions = {
|
||||||
|
"minecraft:smoke" = 0.1
|
||||||
|
}
|
||||||
12
config/particle_core_disabled_optimizations.json
Normal file
12
config/particle_core_disabled_optimizations.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"_Disable_Optimizations_Options": {
|
||||||
|
"ROTATION": "[Impact: Medium] Disables mixins related to vertex rotation caching (ParticleManagerRotationMixin, BillboardParticleMixin)",
|
||||||
|
"TYPE": "[Impact: Low to Medium] Disables mixins related to particle disabling and reduction (WorldRendererTypeMixin)",
|
||||||
|
"DECREASE": "[Impact: Low] Disables mixins related particle settings reduction (ALL, DECREASED, MINIMAL) (WorldRendererDecreaseMixin)",
|
||||||
|
"LIGHTMAP": "[Impact: Medium] Disables mixins related to light map caching (ParticleManagerCachedLightMixin, ParticleMixin)",
|
||||||
|
"POTION": "[Impact: Low] Disables mixins related to potion particle disabling (LivingEntityMixin)"
|
||||||
|
},
|
||||||
|
"disableOptimizations": [
|
||||||
|
"ROTATION"
|
||||||
|
]
|
||||||
|
}
|
||||||
103
config/particular-common.toml
Normal file
103
config/particular-common.toml
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
|
||||||
|
#Particular Mod Configuration
|
||||||
|
[general]
|
||||||
|
|
||||||
|
#Enable/Disable Effects
|
||||||
|
[general.enabledEffects]
|
||||||
|
#Enable water splash particles
|
||||||
|
waterSplash = false
|
||||||
|
#Enable cascade particles
|
||||||
|
cascades = true
|
||||||
|
#Enable waterfall spray particles
|
||||||
|
waterfallSpray = false
|
||||||
|
#Enable firefly particles
|
||||||
|
fireflies = true
|
||||||
|
#Enable falling leaves particles
|
||||||
|
fallingLeaves = true
|
||||||
|
#Enable cave dust particles
|
||||||
|
caveDust = true
|
||||||
|
#Enable chest bubbles
|
||||||
|
chestBubbles = true
|
||||||
|
#Enable soul sand bubbles
|
||||||
|
soulSandBubbles = true
|
||||||
|
#Enable barrel bubbles
|
||||||
|
barrelBubbles = true
|
||||||
|
#Enable popping bubbles
|
||||||
|
poppingBubbles = true
|
||||||
|
#Enable rain ripples
|
||||||
|
rainRipples = true
|
||||||
|
#Enable water drip ripples
|
||||||
|
waterDripRipples = true
|
||||||
|
#Enable cake eating particles
|
||||||
|
cakeEatingParticles = true
|
||||||
|
#Enable emissive lava drips
|
||||||
|
emissiveLavaDrips = true
|
||||||
|
|
||||||
|
#Advanced Particle Settings
|
||||||
|
[general.advancedSettings]
|
||||||
|
|
||||||
|
[general.advancedSettings.fireflySettings]
|
||||||
|
#Time when fireflies start spawning
|
||||||
|
#Range: 0 ~ 23999
|
||||||
|
startTime = 12000
|
||||||
|
#Time when fireflies stop spawning
|
||||||
|
#Range: 0 ~ 23999
|
||||||
|
endTime = 23000
|
||||||
|
#Minimum temperature for fireflies to spawn
|
||||||
|
#Range: 0.0 ~ 2.0
|
||||||
|
minTemp = 0.5
|
||||||
|
#Maximum temperature for fireflies to spawn
|
||||||
|
#Range: 0.0 ~ 2.0
|
||||||
|
maxTemp = 0.9900000095367432
|
||||||
|
#Whether fireflies can spawn in rain
|
||||||
|
canSpawnInRain = false
|
||||||
|
|
||||||
|
[general.advancedSettings.fireflySettings.frequencyModifiers]
|
||||||
|
#Daily random factors for firefly spawning
|
||||||
|
dailyRandom = [0.0, 0.0, 0.0, 0.33, 0.66, 1.0]
|
||||||
|
#Frequency modifier for grass
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
grass = 0.16666666666666666
|
||||||
|
#Frequency modifier for tall grass
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
tallGrass = 0.08333333333333333
|
||||||
|
#Frequency modifier for flowers
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
flowers = 1.0
|
||||||
|
#Frequency modifier for tall flowers
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
tallFlowers = 0.5
|
||||||
|
|
||||||
|
[general.advancedSettings.fallingLeavesSettings]
|
||||||
|
#Chance of spawning falling leaves (higher = less frequent)
|
||||||
|
#Range: > 1
|
||||||
|
spawnChance = 60
|
||||||
|
#Whether falling leaves create ripples when landing on water
|
||||||
|
spawnRipples = true
|
||||||
|
#Whether falling leaves lay flat on the ground
|
||||||
|
layFlatOnGround = true
|
||||||
|
#Whether falling leaves lay at right angles
|
||||||
|
layFlatRightAngles = false
|
||||||
|
|
||||||
|
[general.advancedSettings.caveDustSettings]
|
||||||
|
#Chance of spawning cave dust (higher = less frequent)
|
||||||
|
#Range: > 1
|
||||||
|
spawnChance = 700
|
||||||
|
#Base maximum age of cave dust particles
|
||||||
|
#Range: > 1
|
||||||
|
baseMaxAge = 200
|
||||||
|
#OwOColor of cave dust particles (RGB hex)
|
||||||
|
#Range: 0 ~ 16777215
|
||||||
|
color = 8421504
|
||||||
|
#Duration of fade effect for cave dust particles
|
||||||
|
#Range: > 0
|
||||||
|
fadeDuration = 20
|
||||||
|
#Maximum acceleration of cave dust particles
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
maxAcceleration = 0.029999999329447746
|
||||||
|
#Chance of changing acceleration for cave dust particles
|
||||||
|
#Range: > 1
|
||||||
|
accelChangeChance = 180
|
||||||
|
#Biomes where cave dust won't spawn
|
||||||
|
excludeBiomes = ["minecraft:lush_caves", "minecraft:dripstone_caves", "minecraft:deep_dark"]
|
||||||
|
|
||||||
3
config/paxi/datapack_load_order.json
Normal file
3
config/paxi/datapack_load_order.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"loadOrder": []
|
||||||
|
}
|
||||||
BIN
config/paxi/datapacks/Create Simple Storage Recipes 1.1.zip
Normal file
BIN
config/paxi/datapacks/Create Simple Storage Recipes 1.1.zip
Normal file
Binary file not shown.
@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Immersive Aircrafts - Recipes"
|
||||||
|
filename = "Create Immersive Aircrafts Datapack 1.20.1 - 1.2.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "a280b915471adf8dddb39acc9506c1c678820d3f"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 5601088
|
||||||
|
project-id = 870545
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
name = "create-immersive-aircrafts-warship-recipe"
|
||||||
|
filename = "Create Immersive Aircrafts Warship Recipe DataPack v1.0.zip"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://baka.materus.pl/materus/banana-mc/raw/branch/1.20.1/extra_files/Create%20Immersive%20Aircrafts%20Warship%20Recipe%20DataPack%20v1.0.zip"
|
||||||
|
hash-format = "sha256"
|
||||||
|
hash = "ec511627ad6f83312fbf003202ceca281a6e7104b9ac7b06e5b2b2d01cd4391f"
|
||||||
13
config/paxi/datapacks/create-let-the-adventure-begin.pw.toml
Normal file
13
config/paxi/datapacks/create-let-the-adventure-begin.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: Let The Adventure Begin"
|
||||||
|
filename = "create_ltab-3.4.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/fUa6OtBG/versions/Oc54nvt1/create_ltab-3.4.1.jar"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "6658a51f60e4638bfd2572f702d1d317e59abfe79ef54af5ddb12a2b356fbfc1d06ea3a8eeefea63174ed92b7b856288fe61a37997fef4f283894d0c550b43ec"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "fUa6OtBG"
|
||||||
|
version = "Oc54nvt1"
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
name = "Minecolonies x Macaws Paths and Pavers"
|
||||||
|
filename = "Minecolonies-x-Macaws-Paths-1.0.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/wyg1dTSn/versions/nC5oqRey/Minecolonies-x-Macaws-Paths-1.0.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "bd359bffd64a0462efffb27a189d34c7b84d3e9bfc5afd623b90d19220389ef970d51d0f63738495e43da5dc1ff6e32981266326211e10715bbad64601540fb3"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "wyg1dTSn"
|
||||||
|
version = "nC5oqRey"
|
||||||
BIN
config/paxi/datapacks/parcool-disabled-guidebook-1.20.1.zip
Normal file
BIN
config/paxi/datapacks/parcool-disabled-guidebook-1.20.1.zip
Normal file
Binary file not shown.
@ -0,0 +1,13 @@
|
|||||||
|
name = "Repurposed Structures - Bountiful Compat"
|
||||||
|
filename = "Repurposed_Structures-Bountiful_v3.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/CUfOpYVR/versions/2vRkUyMs/Repurposed_Structures-Bountiful_v3.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "8ccd86d597b50be14eb156230f73f400b7e9bc9a037684f3d476789ed08b8c066510393ade8148998c1a034b58dfd637c208993b6770b4e893921f93fe01c988"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "CUfOpYVR"
|
||||||
|
version = "2vRkUyMs"
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
name = "Repurposed Structures - Farmer's Delight Compat"
|
||||||
|
filename = "Repurposed_Structures-Farmers_Delight_v6.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/P5wB88AS/versions/DSuBmePz/Repurposed_Structures-Farmers_Delight_v6.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "6ae1085c18dc0c6213996996cc78881c930edcf5eb1d33b0a23645e2f590253f94e367ded82a7f2acda335f88868f0a589c5af60ff75921b6fa0a5f22bfeaa5e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "P5wB88AS"
|
||||||
|
version = "DSuBmePz"
|
||||||
13
config/paxi/datapacks/supplementaries-compat.pw.toml
Normal file
13
config/paxi/datapacks/supplementaries-compat.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Supplementaries Compat"
|
||||||
|
filename = "Supplementaries Compat 1.0.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "db2a9445e94043d32eb69ba0c3dcec0ff1612adb"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 6835789
|
||||||
|
project-id = 1318588
|
||||||
3
config/paxi/resourcepack_load_order.json
Normal file
3
config/paxi/resourcepack_load_order.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"loadOrder": []
|
||||||
|
}
|
||||||
BIN
config/paxi/resourcepacks/Create Simple Storage 2.1.zip
Normal file
BIN
config/paxi/resourcepacks/Create Simple Storage 2.1.zip
Normal file
Binary file not shown.
BIN
config/paxi/resourcepacks/Created Pretty Pipes1.0 FIXED.zip
Normal file
BIN
config/paxi/resourcepacks/Created Pretty Pipes1.0 FIXED.zip
Normal file
Binary file not shown.
13
config/paxi/resourcepacks/better-lanterns.pw.toml
Normal file
13
config/paxi/resourcepacks/better-lanterns.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Better Lanterns"
|
||||||
|
filename = "Better+Lanterns+v1.2(mc-1.20.1).zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/PGGrfcvL/versions/xuTH8Cj3/Better%2BLanterns%2Bv1.2%28mc-1.20.1%29.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "10e2ddfd29e4e0e5ac1fcab2672f554a67c8656b97e9cb9d90ef120fd5cfb76f616883caa7b8377d176ebcdb9a7324a3eefa35b3f40d17aa2b4f8f666fc01ec9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "PGGrfcvL"
|
||||||
|
version = "xuTH8Cj3"
|
||||||
13
config/paxi/resourcepacks/better-leaves.pw.toml
Normal file
13
config/paxi/resourcepacks/better-leaves.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Motschen's Better Leaves"
|
||||||
|
filename = "Better-Leaves-9.4.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/uvpymuxq/versions/JW14JsXq/Better-Leaves-9.4.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "d6969d044a6e48468b3637e29e0d6afa9af4618bf20bf28db7e3c588ea6bbd2f3a4cf9f154524249fe154b4ff8fb7ccc8c59099fd9ccc6d6bec714ae56ea2102"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "uvpymuxq"
|
||||||
|
version = "JW14JsXq"
|
||||||
13
config/paxi/resourcepacks/create-computercraft.pw.toml
Normal file
13
config/paxi/resourcepacks/create-computercraft.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Create: ComputerCraft"
|
||||||
|
filename = "Create Computers 1.2.1 - 1.20.1 Resource Pack Only.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/mh9nQqo4/versions/KGjoGhyf/Create%20Computers%201.2.1%20-%201.20.1%20Resource%20Pack%20Only.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "61606ef330b2ed87282fc0139e0ee64ce9021d400bce7e82493a4c1821c434fa65ef04fb5ba2df701dec52a95976fc967dc4853d63f53100c5d6ad2eadc9c9f4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "mh9nQqo4"
|
||||||
|
version = "KGjoGhyf"
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Immersive Aircrafts"
|
||||||
|
filename = "Create Immersive Aircrafts Resource Pack 1.20.1 - 2.0.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "ec0a9ed7b65989c539102ea8f54e8e7fcb46b072"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 5096356
|
||||||
|
project-id = 821020
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
name = "create-immersive-aircrafts-warship"
|
||||||
|
filename = "Create Immersive Aircraft Warship ResoucePack v1.2.zip"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://baka.materus.pl/materus/banana-mc/raw/branch/1.20.1/extra_files/Create%20Immersive%20Aircraft%20Warship%20ResoucePack%20v1.2.zip"
|
||||||
|
hash-format = "sha256"
|
||||||
|
hash = "dc15bc747c981b2eb238352681392a3e31c97a259f3748410a134c67a5db8df2"
|
||||||
13
config/paxi/resourcepacks/create-ultra-pbr.pw.toml
Normal file
13
config/paxi/resourcepacks/create-ultra-pbr.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Create Ultra"
|
||||||
|
filename = "Create_Ultra_v1.0.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/9wrMXul2/versions/TF4czhUS/Create_Ultra_v1.0.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "0d1a4c80674e397cfa4d9df9795b8ce1374234418071e30fb64da0a04bc356bf7ed0d41785d7d3e4d6e096905aaadc2ddf4da5dfbf6d2644dd399a616bde9edb"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "9wrMXul2"
|
||||||
|
version = "TF4czhUS"
|
||||||
13
config/paxi/resourcepacks/cubic-sun-moon.pw.toml
Normal file
13
config/paxi/resourcepacks/cubic-sun-moon.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Cubic Sun & Moon"
|
||||||
|
filename = "cubic-sun-moon-v1.8.4a.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/g4bSYbrU/versions/2sd99wcG/cubic-sun-moon-v1.8.4a.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "693dceb943a7e2644cab83647d04c126e8031f076961db846f686f21b5c825ff992efdecc3ad31525b7e4ad863ad4c1ffebaed6484935b961d580f59b1cb59e4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "g4bSYbrU"
|
||||||
|
version = "2sd99wcG"
|
||||||
13
config/paxi/resourcepacks/enhanced-boss-bars.pw.toml
Normal file
13
config/paxi/resourcepacks/enhanced-boss-bars.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Enhanced Boss Bars"
|
||||||
|
filename = "[1.4.1] Enhanced Boss Bars.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/U5SedJ9S/versions/3fjpw8Kj/%5B1.4.1%5D%20Enhanced%20Boss%20Bars.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "e2ab6353357cd06e7d92670baeff994f3d3e87bb6bbb8243b8f74b4a2012118ace418772118510bfc9228b94ca44586f14f01d6eb33f885a6ca45608033782a9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "U5SedJ9S"
|
||||||
|
version = "3fjpw8Kj"
|
||||||
13
config/paxi/resourcepacks/fresh-animations.pw.toml
Normal file
13
config/paxi/resourcepacks/fresh-animations.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Fresh Animations"
|
||||||
|
filename = "FreshAnimations_v1.10.1.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/50dA9Sha/versions/EkWu7smn/FreshAnimations_v1.10.1.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f5bf17c74afbe9acda9f0b7ad177fa28218077bec286cf04e465ff83b84d7e21fe53d15e8ceea4d2b358521dda2007417394b33ac8737fdc5c91ffcbcb715994"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "50dA9Sha"
|
||||||
|
version = "EkWu7smn"
|
||||||
13
config/paxi/resourcepacks/freshly-modded.pw.toml
Normal file
13
config/paxi/resourcepacks/freshly-modded.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "F.M.R.P"
|
||||||
|
filename = "Freshly Modded 2.0.3.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/u4nhiAdP/versions/Y1Qc62hs/Freshly%20Modded%202.0.3.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "1919dc91a8eb5fab148b91e38c9fff0064c03f72f81408d727ce8322de4ec758cc8ddc80985f3d8a202ac00e4262c2e1fd78a094f6f53d04f88ffe4d1b2adae4"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "u4nhiAdP"
|
||||||
|
version = "Y1Qc62hs"
|
||||||
13
config/paxi/resourcepacks/just-expressions.pw.toml
Normal file
13
config/paxi/resourcepacks/just-expressions.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Just Expressions"
|
||||||
|
filename = "JustExpressions_v1.1.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/vPaHlT2U/versions/bBYe8h0H/JustExpressions_v1.1.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "3c3e5b9632a000b1289d1f972bb1a7d22226b44a7e53797d135688e619484aace8a0bf9b5131119e9e51f813394b24dc36615b0e81b32dd47ff459ddbe6b6aa0"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "vPaHlT2U"
|
||||||
|
version = "bBYe8h0H"
|
||||||
13
config/paxi/resourcepacks/katus-carpets-and-rugs.pw.toml
Normal file
13
config/paxi/resourcepacks/katus-carpets-and-rugs.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Katu's Carpets and Rugs"
|
||||||
|
filename = "KatusCarpets_Alternate1-20.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "fdea3e76189072cfbd5f4992c2a73cdceab92343"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 4612807
|
||||||
|
project-id = 721177
|
||||||
13
config/paxi/resourcepacks/low-fire-pack.pw.toml
Normal file
13
config/paxi/resourcepacks/low-fire-pack.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Low Fire"
|
||||||
|
filename = "Low Fire.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/1jZGHJ05/versions/pRgzcNkq/Low%20Fire.zip"
|
||||||
|
hash-format = "sha512"
|
||||||
|
hash = "f6e535040762b5c4f280e22c832ed58dc779460bdf24116a282b67c51b2996fe5fd11557632f27e9bd9b808ec0e49c254766da27229b052711428186dde48253"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "1jZGHJ05"
|
||||||
|
version = "pRgzcNkq"
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user