Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Missing BoL Documentation #2172

Merged
merged 3 commits into from
May 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
exposes the current BoL and BoLratio of a character
  • Loading branch information
Charlie-Zheng committed May 23, 2024
commit c5bffd4fcd9a7d197e5173a098a827bb51bf3448
4 changes: 4 additions & 0 deletions pkg/conditional/character.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ func evalCharacter(c *core.Core, key keys.Char, fields []string) (any, error) {
return 0, err
}
return evalCharacterStats(char, fields[2])
case "bol":
return char.CurrentHPDebt(), nil
case "bolratio":
return char.CurrentHPDebt() / char.MaxHP(), nil
default: // .kokomi.*
return char.Condition(fields[1:])
}
Expand Down
Loading