Data to support simulations for World of Warcraft with SimulationCraft for each current expansion. First three versioning numbers match World of Warcrafts' build version.
pip install simc-supportGet a list of all trinkets
from simc_support.game_data.Trinket import TRINKETS
for trinket in TRINKETS:
print(f"{trinket.item_id} {trinket.name}")Get a list of all trinkets available to a specific spec
from simc_support.game_data.WowSpec import get_wow_spec
from simc_support.game_data.Trinket import get_trinkets_for_spec
elemental_shaman = get_wow_spec("shaman", "elemental")
trinkets = get_trinkets_for_spec(elemental_shaman)
for trinket in TRINKETS:
print(f"{trinket.item_id} {trinket.name}")- Data in
.pyfiles was written by hand. - Data in
.jsonfiles is automatically generated with the help of SimulationCrafts casc and dbc scripts. See./simc_support/self_update.pyin the repository for more informtion.
Exception: Dragonflight Talent data (also .json files) is being prepared by raidbots.com. Permission was granted to use it here.