Data to support simulations for World of Warcraft with SimulationCraft.
Project description
simc_support
Data to support simulations for World of Warcraft with SimulationCraft for each current expansion. First three versioning numbers match World of Warcrafts' build version.
Installation
pip install simc-support
Usage
Get 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}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simc_support-9.0.2.15.tar.gz
(207.0 kB
view hashes)
Built Distribution
Close
Hashes for simc_support-9.0.2.15-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5771ad0d24eef16db6269773ded3a773aca39c43b9121de31645895793daa729 |
|
MD5 | d581c5b914dc73fb135d3875892d3051 |
|
BLAKE2b-256 | 7bc826723863593f0fb1ed2e6de5e37be875ad66a2c20686b2a8e229f41ed971 |