aboutsummaryrefslogtreecommitdiff
path: root/data/cn-genbanlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'data/cn-genbanlist.py')
-rw-r--r--data/cn-genbanlist.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/data/cn-genbanlist.py b/data/cn-genbanlist.py
new file mode 100644
index 0000000..c80d7f0
--- /dev/null
+++ b/data/cn-genbanlist.py
@@ -0,0 +1,33 @@
+import json
+
+cardId = dict()
+cards = None
+with open('cards.json', 'r') as fp:
+ cards = json.load(fp)
+
+result = dict()
+result['ban'] = []
+result['limit'] = []
+result['semiLimit'] = []
+
+for k in cards:
+ cardId[k] = cards[k]['id']
+ if 'sc_name' not in cards[k]:
+ result['ban'].append(str(cardId[k]))
+
+banlist = None
+with open('banlist-cn.json', 'r') as fp:
+ banlist = json.load(fp)
+
+regulation = banlist['regulation']
+for cid in regulation:
+ sid = str(cardId[cid])
+ if regulation[cid] == 0:
+ result['ban'].append(sid)
+ if regulation[cid] == 1:
+ result['limit'].append(sid)
+ if regulation[cid] == 2:
+ result['semiLimit'].append(sid)
+result['ban'] = list(set(result['ban']))
+print(json.dumps(result, indent=4))
+