mineclonia-cd2025/settingtypes.txt

248 lines
9.5 KiB
Plaintext
Raw Normal View History

2023-04-06 16:34:22 +02:00
# This file contains settings of Mineclonia that can be changed in
2017-06-09 12:47:29 +02:00
# minetest.conf
[World]
# Fire spreads and flammable blocks might be destroyed by nearby fire.
# Destructive fire may cause severe destruction.
2019-04-09 15:25:27 +02:00
# Fire blocks will be non-destructive and stops spreading when this
# setting is disabled, but they still deal damage to creatures.
enable_fire (Destructive and spreading fire) bool true
2017-06-09 12:47:29 +02:00
# If enabled, the weather will change naturally over time.
2023-12-22 17:47:08 +01:00
mcl_doWeatherCycle (Changing weather) bool true
2017-06-09 12:47:29 +02:00
2017-06-09 14:05:58 +02:00
# If enabled, breaking blocks will cause them to drop as item.
# Note that blocks never have drops when in Creative Mode.
2017-06-09 14:11:16 +02:00
mcl_doTileDrops (Blocks have drops) bool true
2017-06-09 14:05:58 +02:00
# If enabled, explosions destroy blocks.
2023-12-22 17:47:08 +01:00
mcl_explosions_griefing (Explosion griefing) bool true
2020-02-05 03:11:32 +01:00
# If disabled, no ores will be generated.
2023-12-22 17:47:08 +01:00
mcl_generate_ores (Generate ores) bool true
# Enable minetest mapgen dungeons
mcl_enable_mt_dungeons (Native Minetest dungeons) bool false
# If enabled, the “flat” map generator generates a Classic Superflat world:
# Completely flat, 1 layer of grass blocks on top of 2 layers of dirt on
# top of a final layer of bedrock. No caves, trees or plants.
# Also, if enabled, the setting “mgflat_flags” is ignored.
# If disabled, Minetest's default flat map generator is used, that is, trees,
# caves, and a deeper underground can be generated.
#
# Note: This setting has no effect on existing worlds.
mcl_superflat_classic (Classic superflat map generation) bool false
[Players]
2024-09-29 14:52:04 +02:00
# If enabled, players respawn at the bed they clicked instead of normal spawn.
# This setting is only read at startup.
enable_bed_respawn (Respawn at bed) bool true
# How many players have to sleep to skip the night, in percent.
2024-09-26 01:09:36 +02:00
# Setting to 0 will mean 1 player is always enough to skip the night.
# Setting above 100 will prevent skipping the night.
2024-09-26 01:29:34 +02:00
# Default: 100
2023-12-22 17:30:35 +01:00
mcl_playersSleepingPercentage (Player sleeping percentage) int 100
2024-09-26 01:09:36 +02:00
# Normally, players drop all their items when they die.
2024-09-26 01:29:34 +02:00
# If enabled, players always keep their inventory on death.
2017-06-09 14:11:16 +02:00
mcl_keepInventory (Keep inventory on death) bool false
2017-06-09 14:00:02 +02:00
# If enabled, chat messages are shown to everyone when a player dies.
2017-06-09 14:11:16 +02:00
mcl_showDeathMessages (Show death messages) bool true
2017-06-09 14:00:02 +02:00
2024-09-29 14:52:04 +02:00
# If enabled, the recipe book will progressively be filled with new recipes
# that can be crafted from all items you ever have had in your inventory.
# Recommended for new players and for a spoiler-free gameplay experience.
# If disabled, all recipes will be shown.
mcl_craftguide_progressive_mode (Learn crafting recipes progressively) bool true
2022-08-29 13:09:00 -05:00
# If disabled, the skin of all players will be character.png
2023-12-22 17:47:08 +01:00
mcl_enable_skin_customization (Player skin customization) bool true
2022-08-29 13:09:00 -05:00
2022-10-16 01:45:52 +02:00
# How far the player hand can reach
2024-09-26 01:09:36 +02:00
# Default: 4.5
2022-10-16 01:45:52 +02:00
mcl_hand_range (Hand range) float 4.5 1 128
2023-01-19 11:30:14 -06:00
# How far the player hand can reach in creative mode
2024-09-26 01:09:36 +02:00
# Default: 10
2022-10-16 01:45:52 +02:00
mcl_hand_range_creative (Creative mode hand range) float 10 1 128
2022-08-29 13:09:00 -05:00
2022-11-03 00:24:16 +01:00
# If enabled the hunger mechanic will be active
# If disabled eating food will heal instantly.
2023-12-22 17:47:08 +01:00
mcl_enable_hunger (Hunger) bool true
2022-11-03 00:24:16 +01:00
[Mobs]
2024-09-26 01:09:36 +02:00
# If enabled, mobs will spawn naturally.
# This does not affect mob spawners.
2018-01-25 04:51:22 +01:00
# This setting is only read at startup.
mobs_spawn (Spawn mobs naturally) bool true
2024-09-26 01:09:36 +02:00
# If enabled, only peaceful mobs will appear naturally.
# This does not affect mob spawners.
2017-06-09 14:05:58 +02:00
# This setting is only read at startup.
2017-06-09 14:00:02 +02:00
only_peaceful_mobs (Spawn only peaceful mobs) bool false
2024-09-26 01:09:36 +02:00
# Allow mobs to spawn in protected areas.
# This does not affect mob spawners.
2023-12-22 17:30:35 +01:00
mobs_spawn_protected (Spawn mobs in protected areas) bool false
2024-09-26 01:09:36 +02:00
# Use light levels from Minecraft 1.18+ for monster spawning.
# Disable to use older mob specific light levels.
mcl_mobs_modern_lighting (Modern light rules for spawning) bool true
2024-09-26 01:09:36 +02:00
# Mobs difficulty.
2024-09-29 14:52:04 +02:00
# This is a number that will affect the initial and maximum
# health of mobs and the amount of damage that mobs deal.
2024-09-26 01:09:36 +02:00
# Health and damage will be multiplied with this number.
mob_difficulty (Mob difficulty factor) float 1.0 0.0
# If enabled, mobs might drop items when they die.
2023-12-22 17:30:35 +01:00
mobs_drop_items (Mob drops) bool true
2024-09-26 01:09:36 +02:00
# If enabled, mobs can take, place, change and
# destroy blocks around them.
2023-12-22 17:47:08 +01:00
mobs_griefing (Mob griefing) bool true
2023-12-22 17:30:35 +01:00
# Should wither follow the player who spawned him around
wither_follow_spawner (Wither follows his spawner) bool true
2023-12-22 15:55:13 +01:00
2023-12-22 17:30:35 +01:00
# Should wither strafe while in combat
2023-12-22 15:55:13 +01:00
wither_strafes (Wither strafes) bool true
# How far from players should mobs stop moving
# Larger values will have a larger performance impact
mcl_mob_active_range (Active mob range) int 48 0 256
[Mob caps]
2024-09-26 01:29:34 +02:00
# Global maximum amount of mobs
2024-09-29 14:52:04 +02:00
# This controls how many mobs can exist in the map
2022-10-13 06:27:04 +02:00
mcl_mob_cap_total (Global mob cap) int 500 0 2048
2024-09-29 14:52:04 +02:00
# Maximum amount of mobs (animals+monsters) per player
2022-10-13 06:27:04 +02:00
mcl_mob_cap_player (Mob cap per player) int 75 0 2048
# Maximum amount of monsters that will spawn near a player
2023-12-22 17:30:35 +01:00
mcl_mob_cap_monster (Mob cap for monsters) int 70 0 2048
2022-09-13 14:18:29 +02:00
# Maximum amount of animals that will spawn near a player
2023-12-22 17:30:35 +01:00
mcl_mob_cap_animal (Mob cap for animals) int 10 0 1024
2022-09-13 14:18:29 +02:00
# Maximum amount of ambient mobs that will spawn near a player
2023-12-22 17:30:35 +01:00
mcl_mob_cap_ambient (Mob cap for ambient mobs) int 15 0 1024
2022-09-13 14:18:29 +02:00
2024-09-29 14:52:04 +02:00
# Maximum amount of water mobs (squids, dolphins)
# that will spawn near a player
2024-01-27 13:28:38 +01:00
mcl_mob_cap_water (Mob cap for water mobs) int 5 0 1024
# Maximum amount of ambient water mobs (fish) that will spawn near a player
mcl_mob_cap_water_ambient (Mob cap for ambient water mobs) int 20 0 1024
[Features]
2024-09-26 01:41:13 +02:00
# Enabling this setting adds an inventory to bookshelves
2023-12-22 17:47:08 +01:00
mcl_bookshelf_inventories (Bookshelf inventories) bool true
2022-09-01 12:10:12 +02:00
# All tameable mobs listen to the "sit" right-click like dogs
2024-09-26 01:29:34 +02:00
# For some mobs the Sneak button must be pressed:
2024-10-02 11:32:32 +02:00
# Eg. horses or other mobs with a right-click function
mcl_extended_pet_control (Extended pet control) bool false
2022-11-11 05:14:54 +01:00
2024-09-26 01:09:36 +02:00
# Enable nodes not in Minecraft.
# Includes extra stairs and slabs, Red Nether Brick Fence,
# nether brick fence gates, and Bamboo Bark.
mcl_extra_nodes (Additional nodes) bool true
2023-07-18 01:09:58 +02:00
# Enable piston movement of inventory nodes.
2023-12-22 17:30:35 +01:00
mcl_inv_nodes_movable (Movable inventory nodes) bool true
2024-09-26 01:09:36 +02:00
# Make iron golems teleport home when they are far away and
# villagers teleport home when the night is skipped.
2023-10-13 13:26:10 +10:00
mcl_mob_allow_nav_hacks (Mob navigation hacks) bool false
# Allow players to create Minecraft-like maps.
2023-12-22 17:30:35 +01:00
enable_real_maps (Real maps) bool true
# Place bonus chest near players' initial spawn point
mcl_bonus_chest (Bonus chest) bool false
2024-09-26 01:41:13 +02:00
# Allow re-editing signs after they are placed
2024-04-03 19:19:02 +02:00
mcl_signs_editable (Editable signs) bool false
2024-03-25 01:02:00 +01:00
# Change size of vault memory. By default a vault remembers the last 128 players
# that looted that vault and prevents them from looting the same vault again.
mcl_vaults_looter_list_length (Vault memory size) int 128 1 1024
2023-12-22 17:47:46 +01:00
[Graphics]
# Whether to animate chests when open / close
animated_chests (Animated chests) bool true
2022-10-21 19:22:33 -04:00
# Enable dust particles in the nether
mcl_nether_dust (Nether dust particles) bool true
2024-09-29 14:52:04 +02:00
# If enabled, mobs will emit damage particles when they get hurt
mcl_damage_particles (Damage particles) bool true
2023-12-22 17:47:46 +01:00
# The maximum number of boss bars to simultaneously display on the screen
2023-12-22 17:30:35 +01:00
mcl_max_bossbars (Maximum boss bars) int 5
2022-10-24 17:37:11 +02:00
2024-09-26 01:09:36 +02:00
# How many vertical animation frames the fire
# texture (fire_basic_flame_animated.png) has.
2023-12-22 17:47:46 +01:00
# This may vary depending on the texture pack you use.
# Form: Image height / Image width
fire_animation_frames (Fire animation frames) int 8
2023-10-13 13:26:10 +10:00
[Villages]
2023-12-22 17:30:35 +01:00
# Minimum number of job sites which are placed during village generation
mcl_villages_min_jobs (Minimum number of jobs in village) int 1
2023-10-13 13:26:10 +10:00
2023-12-22 17:30:35 +01:00
# Maximum number of job sites which are placed during village generation
mcl_villages_max_jobs (Maximum number of jobs in village) int 12
2023-10-13 13:26:10 +10:00
2024-09-29 14:52:04 +02:00
# 1 in X chance a village will spawn in a valid chunk.
# Set to 0 to disable village generation.
2023-12-22 17:30:35 +01:00
mcl_villages_village_chance (Village chance) int 100
2023-10-13 13:26:10 +10:00
2023-12-22 17:30:35 +01:00
# This controls how job sites and houses are placed during village generation
2023-10-13 13:26:10 +10:00
# random: shuffles the buildings so they get placed in any order
# jobs: places the job sites first so they tend to be closer to the bell
# houses: places the houses first so the tend to be closer to the bell
2023-12-22 17:30:35 +01:00
mcl_villages_placement_priority (Buildings closest to the bell) enum random random,jobs,houses
2023-10-13 13:26:10 +10:00
2024-11-18 22:01:37 +01:00
[Redstone]
# Redstone update interval in seconds.
mcl_redstone_update_tick (Redstone update tick) float 0.1
# The time budget allowed for redstone updates each tick (as a fraction of update tick time)
mcl_redstone_time_budget (Redstone time budget) float 0.2
# How far from players redstone updates will take place, stated in mapblocks
# (16 nodes). Only has effect on multiplayer servers.
2024-11-18 22:01:37 +01:00
mcl_redstone_update_range (Redstone update range) int 8
# The maximum number of queued redstone events. If exceeded redstone circuits will stop working.
mcl_redstone_event_max (Maximum queued redstone events) int 65535
2023-12-22 17:47:46 +01:00
[Experimental]
# If disabled, command blocks will be unusable (but still present).
mcl_enable_commandblocks (Command blocks) bool true
# This is fine for players, but expect all the villagers to die very quickly
2023-12-22 17:30:35 +01:00
mcl_villages_allow_water_villages (Spawn village buildings on top of water) bool false
2023-12-22 17:43:27 +01:00
# Display mob icons in inventory instead of Minecraft-like spawn eggs.
# Note that mob icons does not exist for all mobs.
mcl_old_spawn_icons (Old spawn icons instead of eggs) bool false
2023-12-22 17:47:46 +01:00
[Debugging]
# If enabled mapgen timings will be dumped to log
2023-12-22 17:30:35 +01:00
mcl_logging_mapgen (Log chunk generation) bool false
2023-12-22 17:47:46 +01:00
# If enabled generated structures will be logged
2023-12-22 17:30:35 +01:00
mcl_logging_structures (Log structure generation) bool true
2023-12-22 17:47:46 +01:00
# Debug logging for mcl_events.
mcl_logging_event_api (Debug logging for mcl_events) bool false
2024-09-29 14:52:04 +02:00