This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# This is a first draft at theme force representation in YAML files | |
# This should be compatible with the proposed model representations | |
# from https://gist.github.com/moisesguimaraes/dc80cb5ab87e8e6333cd28b543d0bd34 | |
--- | |
# name of the theme force | |
# Note: I think that unthemed should just be a very vanilla theme with the filters for | |
# that faction's models and merc/minions models that work for it | |
name: Vengence of Dhunia |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d6_x3_count = {} | |
d6_sp_count = {} | |
total_rolls = 0 | |
for first in range(1,7): | |
for second in range(1,7): | |
for third in range(1,7): | |
sum = first + second + third | |
cur = d6_x3_count.get(sum, 0) |