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}")
Data Origin
- Data in
.py
files was written by hand. - Data in
.json
files is automatically generated with the help of SimulationCrafts casc and dbc scripts. See./simc_support/self_update.py
in 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.
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-11.0.2.1.tar.gz
(1.3 MB
view hashes)
Built Distribution
Close
Hashes for simc_support-11.0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aefc0e6f4819289f94e448c735f51c84b9d5b0d8786e852978acf8b0e3040414 |
|
MD5 | 419eccf96dc4b625be11d0409320b535 |
|
BLAKE2b-256 | e549b16a0942f1d7d810bdf8c43265a2815e38da2c99f7060c1effbc6e6f91c7 |