WIP: Add character file and stat adjusted skeleton actions #2

Closed
TheTaques wants to merge 11 commits from char-file into main
1 changed files with 3 additions and 1 deletions
Showing only changes of commit d2ac78bb5d - Show all commits

View File

@ -13,7 +13,9 @@ def narrow_challenge(difficulty_level: int, stat: int):
return stat/10
def broad_challenge(difficulty_level: int, stat: int):
chance = DIFFICULTY_SCALER*stat//difficulty_level
chance = DIFFICULTY_SCALER*stat/difficulty_level * 100
chance = chance // 1
chance /= 100
return chance