config: import pack config files

This commit is contained in:
Ophestra 2025-06-23 05:08:29 +09:00
parent b76c650efe
commit 348be6b09f
Signed by: ophestra
SSH key fingerprint: SHA256:57+oNEzV2U/aq2eDPdDtPiJjVykuXMYYJMkcAo8QdRw
128 changed files with 13500 additions and 1 deletions

View file

@ -0,0 +1,110 @@
[client]
# If enabled, the text overlay on waystones will no longer always render at full brightness.
disableTextGlow = false
[compatibility]
# If enabled, Waystones will add markers for waystones and sharestones to BlueMap.
blueMap = true
# If enabled, Waystones will add markers for waystones and sharestones to Dynmap.
dynmap = true
# If enabled, JourneyMap waypoints will be created for each activated waystone.
journeyMap = true
# If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed
preferJourneyMapIntegrationMod = true
[general]
# Add "GLOBAL" to allow every player to create global waystones.
allowedVisibilities = [ ]
# Set to "GLOBAL" to have newly placed or found waystones be global by default.
defaultVisibility = "ACTIVATION"
# List of waystone origins that should prevent others from editing. PLAYER is special in that it allows only edits by the owner of the waystone.
restrictedWaystones = [ "PLAYER" ]
# The time in ticks it takes to use a scroll. This is the charge-up time when holding right-click.
scrollUseTime = 32
# The time in ticks that it takes to use a warp plate. This is the time the player has to stand on top for.
warpPlateUseTime = 15
# The time in ticks that it takes to use a warp stone. This is the charge-up time when holding right-click.
warpStoneUseTime = 32
[inventoryButton]
# The y position of the inventory button in the creative menu.
creativeInventoryButtonX = 88
# The y position of the inventory button in the creative menu.
creativeInventoryButtonY = 33
# Set to 'NONE' for no inventory button. Set to 'NEAREST' for an inventory button that teleports to the nearest waystone. Set to 'ANY' for an inventory button that opens the waystone selection menu. Set to a waystone name for an inventory button that teleports to a specifically named waystone.
inventoryButton = ""
# The x position of the inventory button in the inventory.
inventoryButtonX = 58
# The y position of the inventory button in the inventory.
inventoryButtonY = 60
[teleports]
# Set to false to simply disable all cooldowns. See warpRequirements for more fine-grained control.
enableCooldowns = true
# Set to false to simply disable all xp costs. See warpRequirements for more fine-grained control.
enableCosts = true
# List of entities that cannot be teleported, either as pet, leashed, or on warp plates.
entityDenyList = [ "minecraft:wither" ]
# Set to ENABLED to have leashed mobs teleport with you. Set to SAME_DIMENSION to have leashed mobs teleport with you only if you're not changing dimensions. Set to DISABLED to disable.
transportLeashed = "ENABLED"
# Set to ENABLED to have nearby pets teleport with you. Set to SAME_DIMENSION to have nearby pets teleport with you only if you're not changing dimensions. Set to DISABLED to disable.
transportPets = "DISABLED"
# List of warp requirements with comma-separated parameters in parentheses. Conditions can be defined as comma-separated list in square brackets. Will be applied in order.
warpRequirements = [
"[is_not_interdimensional] scaled_add_xp_cost(distance, 0.01)",
"[is_interdimensional] add_xp_cost(27)",
"[source_is_warp_plate] multiply_xp_cost(0)",
"[target_is_global] multiply_xp_cost(0)",
"min_xp_cost(0)",
"max_xp_cost(27)",
"[source_is_inventory_button] add_cooldown(inventory_button, 300)"
]
[worldGen]
# Approximate chunk distance between wild waystones being generated. Set to 0 to disable generation.
chunksBetweenWildWaystones = 25
# Set to 'PRESET_FIRST' to first use names from the nameGenerationPresets. Set to 'PRESET_ONLY' to use only those custom names. Set to 'MIXED' to have some waystones use custom names, and others random names.
nameGenerationMode = "PRESET_FIRST"
# These names will be used for the PRESET name generation mode. See the nameGenerationMode option for more info.
nameGenerationPresets = [ ]
# The template to use when generating new names. Supported placeholders are {Biome} (english biome name) and {MrPork} (the default name generator).
nameGenerationTemplate = "{MrPork}"
# Set to REGULAR to have waystones spawn in some villages. Set to FREQUENT to have waystones spawn in most villages. Set to DISABLED to disable waystone generation in villages. Waystones will only spawn in vanilla or supported villages.
spawnInVillages = "REGULAR"
# Set to 'DEFAULT' to only generate the normally textured waystones. Set to 'MOSSY' or 'SANDY' to generate all as that variant. Set to 'BIOME' to make the style depend on the biome it is generated in.
wildWaystoneStyle = "BIOME"
# List of dimensions that wild waystones are allowed to spawn in. If left empty, all dimensions except those in wildWaystonesDimensionDenyList are used.
wildWaystonesDimensionAllowList = [ "minecraft:the_nether", "minecraft:overworld", "minecraft:the_end" ]
# List of dimensions that wild waystones are not allowed to spawn in. Only used if wildWaystonesDimensionAllowList is empty.
wildWaystonesDimensionDenyList = [ ]