Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. from itertools import combinations
  2.  
  3.  
  4. # The base profile that denotes the name, other pieces of gear, spec, etc.
  5. # You can also use your own character: source_profile = "armory=us,aerie-peak,komma"
  6. source_profile = "Mage_Frost_T17H.simc"
  7.  
  8. # List of trinkets and how they will be displayed in the profile name
  9. trinket_list = [ ("quiescent_runestone,id=113859,bonus_id=567", "M-Runestone"),
  10. ("quiescent_runestone,id=113859,bonus_id=566", "HC-Runestone"),
  11. ("goren_soul_repository,id=119194,bonus_id=567", "M-Repository"),
  12. ("goren_soul_repository,id=119194,bonus_id=566", "HC-Repository"),
  13. ("darmacs_unstable_talisman,id=113948,bonus_id=567", "M-talisman"),
  14. ("sandmans_pouch,id=112320,bonus_id=527", "DMFTrinketStage3"),
  15. ("copelands_clarity,id=118878", "CClarity"),
  16. ("shards_of_nothing,id=113835,bonus_id=567", "M-Shards"),
  17. ("shards_of_nothing,id=113835,bonus_id=566", "HC-Shards"),
  18. ("everburning_candle,id=118880", "EverburningCandle") ]
  19.  
  20.  
  21. profile = source_profile + "\n"
  22. profile += "default_actions=1\n"
  23. profile += "\n".join( "\n".join([ "copy=" + combo[0][1] + "_" + combo[1][1],
  24. "trinket1=" + combo[0][0],
  25. "trinket2=" + combo[1][0] ])
  26. for combo in combinations(trinket_list, 2) )
  27. print(profile)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement