diff --git a/colors.py b/colors.py index 9cf636e..2be5342 100644 --- a/colors.py +++ b/colors.py @@ -2287,11 +2287,27 @@ def massseriesgen(series,massindex): except: pass content.write("\">") + elif series == "colors universe": + if deck["colour"] == "limited": + content.write(" 0: + content.write("/" + variables.subfolder) + content.write("/decks/" + deck["name"] + "/master.gif\" title=\"mastered " + deck["name"]) + try: + if deck["name"] in variables.firstmasteries: + content.write(" (first)\" class=\"first") + except: + pass + content.write("\">") content.write("

") for card in cardlist: if series in card["mass"]: if card["dupe"] == False: content.write(printcard(card)) + elif series == "colors universe": + if card["colour"] == "limited": + if card["dupe"] == False: + content.write(printcard(card)) content.write("

\n") content.close() footerwrite(thefile)