diff --git a/config/simplemagnets-common.toml b/config/simplemagnets-common.toml new file mode 100644 index 0000000..cc9120c --- /dev/null +++ b/config/simplemagnets-common.toml @@ -0,0 +1,63 @@ +[Client] + # Should the magnet play a ding sound when turned on or off? + # Allowed values: true, false - Default: true + playToggleSound = true + + # Should the magnet display a message on screen when turned on or off? + # Allowed values: true, false - Default: true + showToggleMessage = true + + # Should the Demagnetization Coil's range be highlighted when looking at it? + # Allowed values: true, false - Default: true + showDemagnetizationArea = true + +[General] + # In what range should the Basic Magnet pickup items and xp? + # Allowed range: 1 ~ 20 - Default: 5 + basicMagnetRange = 5 + + # In what range should the Advanced Magnet pickup items and xp by default? + # Allowed range: 1 ~ 20 - Default: 8 + advancedMagnetRange = 8 + + # What is the minimum range of the Advanced Magnet? + # Allowed range: 1 ~ 20 - Default: 3 + advancedMagnetMinRange = 3 + + # What is the maximum range of the Advanced Magnet? + # Allowed range: 1 ~ 20 - Default: 11 + advancedMagnetMaxRange = 11 + + [General."Demagnetization Coils"] + # In what range should the Basic Demagnetization Coil demagnetize items by default? + # Allowed range: 1 ~ 10 - Default: 2 + basicCoilRange = 2 + + # What is the minimum range of the Basic Demagnetization Coil? + # Allowed range: 1 ~ 10 - Default: 1 + basicCoilMinRange = 1 + + # What is the maximum range of the Basic Demagnetization Coil? + # Allowed range: 1 ~ 10 - Default: 3 + basicCoilMaxRange = 3 + + # Should the Basic Demagnetization Coil be able to filter items? + # Allowed values: true, false - Default: false + basicCoilFilter = false + + # In what range should the Advanced Demagnetization Coil pickup items and xp by default? + # Allowed range: 1 ~ 10 - Default: 3 + advancedCoilRange = 3 + + # What is the minimum range of the Advanced Demagnetization Coil? + # Allowed range: 1 ~ 10 - Default: 1 + advancedCoilMinRange = 1 + + # What is the maximum range of the Advanced Demagnetization Coil? + # Allowed range: 1 ~ 10 - Default: 5 + advancedCoilMaxRange = 5 + + # Should the Advanced Demagnetization Coil be able to filter items? + # Allowed values: true, false - Default: true + advancedCoilFilter = true +