# [OPTIONAL] - the maximum level of this class
#max-level: 10
# [OPTIONAL] - the maximum number of users on the server that can have this job at
# any one time (includes offline players).
#slots: 1
# Equation used for calculating how much experience is needed to go to the next level.
# Available parameters:
# numjobs - the number of jobs the player has
# joblevel - the level the player has attained in the job.
# NOTE: Please take care of the brackets when modifying this equation.
leveling-progression-equation: 100*((1.13+(0.01*(numjobs-1)))^(joblevel-1))
Rovnice užitá k výpočtu, kolik zkušeností je potřeba pro další úroveň v dané práci
numjobs - počet prací, které hráč má
joblevel - úroveň, kterou hráč má v té práci
# Equation used for calculating how much income is given per action for the job level.
# Available parameters:
# baseincome - the income for the action at level 1 (as set in the configuration).
# joblevel - the level the player has attained in the job.
# NOTE: Please take care of the brackets when modifying this equation.
income-progression-equation: baseincome*((1.05)^(joblevel-1))
# Equation used for calculating how much experience is given per action for the job level.
Rovnice užitá k výpočtu, kolik peněz je odměněno za akci pro úroveň práce
baseincome - základní příjem za akci na úrovni 1 (podle nastavení v configu)
joblevel - úroveň, kterou hráč má v té práci
# Equation used for calculating how much experience is given per action for the job level.
# Available parameters:
# baseexperience - the experience for the action at level 1 (as set in the configuration).
# joblevel - the level the player has attained in the job.
# NOTE: Please take care of the brackets when modifying this equation.
experience-progression-equation: baseexperience*((1.05)^(joblevel-1))
Rovnice užitá pro výpočet, kolik zkušeností je odměněno za akci pro úroveň práce
baseexperience - základní počet zkuešností za akci na úrovni 1 (podle nastavení v configu)
joblevel - úroveň, kterou hráč má v té práci