mirror of
https://github.com/alexcrea/CustomAnvil.git
synced 2026-06-23 08:14:00 +02:00
Update default configs
This commit is contained in:
parent
f4f467f6fe
commit
74a211bc88
4 changed files with 93 additions and 5 deletions
|
|
@ -55,7 +55,36 @@ unit_repair_cost: 1
|
||||||
# Valid values include 0 to 1000
|
# Valid values include 0 to 1000
|
||||||
sacrifice_illegal_enchant_cost: 1
|
sacrifice_illegal_enchant_cost: 1
|
||||||
|
|
||||||
# Default limit to apply to any enchants missing from override_limits
|
# Allow using color code and hexadecimal color.
|
||||||
|
#
|
||||||
|
# Color code are prefixed by "&" and hexadecimal color by "#".
|
||||||
|
# Color code will not be applied if it colors nothing. "&&" can be used to write "&".
|
||||||
|
allow_color_code: false
|
||||||
|
allow_hexadecimal_color: false
|
||||||
|
|
||||||
|
# Toggle if color should only be applicable if the player a certain permission.
|
||||||
|
#
|
||||||
|
# permission are "ca.color.code" for use of color code and "ca.color.hex" for use of hexadecimal color.
|
||||||
|
permission_needed_for_color: true
|
||||||
|
|
||||||
|
# Xp cost if the player use color in the items name on rename.
|
||||||
|
#
|
||||||
|
# Valid values include 0 to 1000.
|
||||||
|
use_of_color_cost: 0
|
||||||
|
|
||||||
|
# Work penalty increase the price for every anvil use.
|
||||||
|
# This config allow you to choose the comportment of work penalty.
|
||||||
|
# Vanilla work penalty formula can be represented as 2 * previous_penalty + 1. with start value equal to 0
|
||||||
|
# See https://minecraft.wiki/w/Anvil_mechanics#Anvil_uses for more detail
|
||||||
|
#
|
||||||
|
# Valid work penalty type is:
|
||||||
|
# - default: work penalty added and increased
|
||||||
|
# - increase_only: work penalty increased but not added
|
||||||
|
# - add_only: work penalty added but not increased
|
||||||
|
# - disabled: work penalty disabled
|
||||||
|
work_penalty_type: default
|
||||||
|
|
||||||
|
# Default limit to apply to any enchants missing from enchant_limits
|
||||||
#
|
#
|
||||||
# Valid values include 1 to 1000
|
# Valid values include 1 to 1000
|
||||||
default_limit: 5
|
default_limit: 5
|
||||||
|
|
@ -108,6 +137,9 @@ enchant_limits:
|
||||||
quick_charge: 3
|
quick_charge: 3
|
||||||
soul_speed: 3
|
soul_speed: 3
|
||||||
swift_sneak: 3
|
swift_sneak: 3
|
||||||
|
density: 5
|
||||||
|
breach: 4
|
||||||
|
wind_burst: 3
|
||||||
|
|
||||||
# Multipliers used to calculate the enchantment's value in repair/combining
|
# Multipliers used to calculate the enchantment's value in repair/combining
|
||||||
#
|
#
|
||||||
|
|
@ -241,6 +273,15 @@ enchant_values:
|
||||||
vanishing_curse:
|
vanishing_curse:
|
||||||
item: 8
|
item: 8
|
||||||
book: 4
|
book: 4
|
||||||
|
density:
|
||||||
|
item: 1
|
||||||
|
book: 1
|
||||||
|
breach:
|
||||||
|
item: 4
|
||||||
|
book: 2
|
||||||
|
wind_burst:
|
||||||
|
item: 4
|
||||||
|
book: 2
|
||||||
|
|
||||||
# Whether to show debug logging
|
# Whether to show debug logging
|
||||||
debug_log: false
|
debug_log: false
|
||||||
|
|
@ -248,4 +289,11 @@ debug_log: false
|
||||||
# Whether to show verbose debug logging
|
# Whether to show verbose debug logging
|
||||||
debug_log_verbose: false
|
debug_log_verbose: false
|
||||||
|
|
||||||
configVersion: 1.4.5
|
# In case something when wrong with CustomAnvil packet manager.
|
||||||
|
# If you see "missing class exception" or similar you may test this.
|
||||||
|
# If enabled and Protocolib absent or disabled "Replace to expensive" will not work.
|
||||||
|
# ProtocoLib may also be used if the server is in an "unsupported" version even if this option is disabled.
|
||||||
|
force_protocolib: false
|
||||||
|
|
||||||
|
configVersion: 1.6.2
|
||||||
|
lowMinecraftVersion: '1.21'
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,36 @@ unit_repair_cost: 1
|
||||||
# Valid values include 0 to 1000
|
# Valid values include 0 to 1000
|
||||||
sacrifice_illegal_enchant_cost: 1
|
sacrifice_illegal_enchant_cost: 1
|
||||||
|
|
||||||
# Default limit to apply to any enchants missing from override_limits
|
# Allow using color code and hexadecimal color.
|
||||||
|
#
|
||||||
|
# Color code are prefixed by "&" and hexadecimal color by "#".
|
||||||
|
# Color code will not be applied if it colors nothing. "&&" can be used to write "&".
|
||||||
|
allow_color_code: false
|
||||||
|
allow_hexadecimal_color: false
|
||||||
|
|
||||||
|
# Toggle if color should only be applicable if the player a certain permission.
|
||||||
|
#
|
||||||
|
# permission are "ca.color.code" for use of color code and "ca.color.hex" for use of hexadecimal color.
|
||||||
|
permission_needed_for_color: true
|
||||||
|
|
||||||
|
# Xp cost if the player use color in the items name on rename.
|
||||||
|
#
|
||||||
|
# Valid values include 0 to 1000.
|
||||||
|
use_of_color_cost: 0
|
||||||
|
|
||||||
|
# Work penalty increase the price for every anvil use.
|
||||||
|
# This config allow you to choose the comportment of work penalty.
|
||||||
|
# Vanilla work penalty formula can be represented as 2 * previous_penalty + 1. with start value equal to 0
|
||||||
|
# See https://minecraft.wiki/w/Anvil_mechanics#Anvil_uses for more detail
|
||||||
|
#
|
||||||
|
# Valid work penalty type is:
|
||||||
|
# - default: work penalty added and increased
|
||||||
|
# - increase_only: work penalty increased but not added
|
||||||
|
# - add_only: work penalty added but not increased
|
||||||
|
# - disabled: work penalty disabled
|
||||||
|
work_penalty_type: default
|
||||||
|
|
||||||
|
# Default limit to apply to any enchants missing from enchant_limits
|
||||||
#
|
#
|
||||||
# Valid values include 1 to 1000
|
# Valid values include 1 to 1000
|
||||||
default_limit: 5
|
default_limit: 5
|
||||||
|
|
@ -260,5 +289,11 @@ debug_log: false
|
||||||
# Whether to show verbose debug logging
|
# Whether to show verbose debug logging
|
||||||
debug_log_verbose: false
|
debug_log_verbose: false
|
||||||
|
|
||||||
configVersion: 1.4.5
|
# In case something when wrong with CustomAnvil packet manager.
|
||||||
lowMinecraftVersion: 1.21
|
# If you see "missing class exception" or similar you may test this.
|
||||||
|
# If enabled and Protocolib absent or disabled "Replace to expensive" will not work.
|
||||||
|
# ProtocoLib may also be used if the server is in an "unsupported" version even if this option is disabled.
|
||||||
|
force_protocolib: false
|
||||||
|
|
||||||
|
configVersion: 1.6.2
|
||||||
|
lowMinecraftVersion: '1.21'
|
||||||
|
|
|
||||||
|
|
@ -360,16 +360,19 @@ restriction_density:
|
||||||
- density
|
- density
|
||||||
notAffectedGroups:
|
notAffectedGroups:
|
||||||
- mace
|
- mace
|
||||||
|
- enchanted_book
|
||||||
restriction_breach:
|
restriction_breach:
|
||||||
enchantments:
|
enchantments:
|
||||||
- breach
|
- breach
|
||||||
notAffectedGroups:
|
notAffectedGroups:
|
||||||
- mace
|
- mace
|
||||||
|
- enchanted_book
|
||||||
restriction_wind_burst:
|
restriction_wind_burst:
|
||||||
enchantments:
|
enchantments:
|
||||||
- wind_burst
|
- wind_burst
|
||||||
notAffectedGroups:
|
notAffectedGroups:
|
||||||
- mace
|
- mace
|
||||||
|
- enchanted_book
|
||||||
mace_enchant_conflict:
|
mace_enchant_conflict:
|
||||||
enchantments:
|
enchantments:
|
||||||
- density
|
- density
|
||||||
|
|
|
||||||
|
|
@ -188,3 +188,5 @@ warped_planks:
|
||||||
wooden_shovel: 0.25
|
wooden_shovel: 0.25
|
||||||
wooden_hoe: 0.25
|
wooden_hoe: 0.25
|
||||||
shield: 0.25
|
shield: 0.25
|
||||||
|
breeze_rod:
|
||||||
|
mace: 0.25
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue