Skip to content

Commit

Permalink
Add varlamore metrics (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Mar 21, 2024
1 parent 541a6a7 commit 8ad83b6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v0.9.5 (Mar 2024)

## Additions

- Add varlamore metrics (ColosseumGlory, LunarChests, SolHeredit).

---

# v0.9.4 (Mar 2024)

## Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wom.py"
version = "0.9.4"
version = "0.9.5"
description = "An asynchronous wrapper for the Wise Old Man API."
authors = ["Jonxslays"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion wom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from typing import Final

__packagename__: Final[str] = "wom.py"
__version__: Final[str] = "0.9.4"
__version__: Final[str] = "0.9.5"
__author__: Final[str] = "Jonxslays"
__copyright__: Final[str] = "2023-present Jonxslays"
__description__: Final[str] = "An asynchronous wrapper for the Wise Old Man API."
Expand Down
11 changes: 7 additions & 4 deletions wom/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,20 +176,21 @@ class Skills(Metric):
class Activities(Metric):
"""Activities from OSRS."""

LeaguePoints = "league_points"
BountyHunterHunter = "bounty_hunter_hunter"
BountyHunterRogue = "bounty_hunter_rogue"
ClueScrollsAll = "clue_scrolls_all"
ClueScrollsBeginner = "clue_scrolls_beginner"
ClueScrollsEasy = "clue_scrolls_easy"
ClueScrollsMedium = "clue_scrolls_medium"
ClueScrollsHard = "clue_scrolls_hard"
ClueScrollsElite = "clue_scrolls_elite"
ClueScrollsHard = "clue_scrolls_hard"
ClueScrollsMaster = "clue_scrolls_master"
ClueScrollsMedium = "clue_scrolls_medium"
ColosseumGlory = "colosseum_glory"
GuardiansOfTheRift = "guardians_of_the_rift"
LastManStanding = "last_man_standing"
LeaguePoints = "league_points"
PvpArena = "pvp_arena"
SoulWarsZeal = "soul_wars_zeal"
GuardiansOfTheRift = "guardians_of_the_rift"


class Bosses(Metric):
Expand Down Expand Up @@ -224,6 +225,7 @@ class Bosses(Metric):
Kraken = "kraken"
Kreearra = "kreearra"
KrilTsutsaroth = "kril_tsutsaroth"
LunarChests = "lunar_chests"
Mimic = "mimic"
Nex = "nex"
Nightmare = "nightmare"
Expand All @@ -234,6 +236,7 @@ class Bosses(Metric):
Scorpia = "scorpia"
Scurrius = "scurrius"
Skotizo = "skotizo"
SolHeredit = "sol_heredit"
Spindel = "spindel"
Tempoross = "tempoross"
TheGauntlet = "the_gauntlet"
Expand Down

0 comments on commit 8ad83b6

Please sign in to comment.