package net.knarcraft.blacksmith.config; public interface TraitSettings { /** * Gets whether to disable the action cool-down * * @return
Whether to disable the action cool-down
*/ boolean getDisableCoolDown(); /** * Gets the message to display when a blacksmith or scrapper is still affected by a cool-down * * @returnThe cool down unexpired message
*/ String getCoolDownUnexpiredMessage(); /** * Gets the message to display when the blacksmith is busy with another player * * @returnThe busy with player message
*/ String getBusyWithPlayerMessage(); /** * Gets the message to display when the blacksmith is busy with reforging or salvaging an item * * @returnThe busy working message
*/ String getBusyWorkingMessage(); /** * Gets the message to display when a blacksmith starts reforging or salvaging an item * * @returnThe start working message
*/ String getStartWorkingMessage(); }