├── data ├── __init__.py ├── d.pkl ├── dump_data.py ├── yyslib.py └── yysdata.py ├── logo.jpg ├── run_test.sh ├── run_test.bat ├── README.md ├── .gitignore ├── yys_opt.py ├── unit_test.py ├── gui └── Panel.py └── LICENSE /data/__init__.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | __all__ = ['yysdata', 'yyslib'] 3 | -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luyaozou/yys_mf_optimizer/HEAD/logo.jpg -------------------------------------------------------------------------------- /data/d.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luyaozou/yys_mf_optimizer/HEAD/data/d.pkl -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Unix unit tests" 3 | 4 | python3 -m unittest unit_test.py 5 | -------------------------------------------------------------------------------- /run_test.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo "Windows unittest script" 3 | 4 | python -m unittest unit_test.py 5 | 6 | pause 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # yys_mf_optimizer 2 | optimizer for the MF strategy of NetEase game Yingyangshi 3 | 阴阳师悬赏封印策略优化器 4 | 5 | If the creep & level list in data/yysdata.py is updated, 6 | run $python data/dump_data.py from the main directory 7 | 8 | 若在 data/yysdata.py 中更新怪物和关卡列表, 9 | 需在程序主目录下重新运行 python data/dump_data.py 10 | -------------------------------------------------------------------------------- /data/dump_data.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | 3 | ''' Dump data to file so that it can be reuse ''' 4 | 5 | import pickle 6 | import numpy as np 7 | from yysdata import * 8 | 9 | def _gen_complete_constraint(creep_list=CREEP_LIST, level_name_list=LEVEL_NAME_LIST, creep_in_level_dict=CREEP_IN_LEVEL): 10 | ''' 生成完整的约束矩阵 c[i][j], i = 妖怪编号,j = 副本关卡编号, 11 | c[i][j] 为妖怪数 12 | creep_list: 妖怪名单 13 | level_list: 副本关卡名单 14 | creep_in_level_dict: 每关中妖怪的数量 15 | ''' 16 | 17 | c = np.zeros((len(creep_list), len(level_name_list))) 18 | 19 | for level_key in creep_in_level_dict.keys(): 20 | # key: level name 21 | # value: (creep_name, creep_num) 22 | j = level_name_list.index(level_key) 23 | for value in creep_in_level_dict[level_key]: 24 | if value[0] in creep_list: # prevent error 25 | i = creep_list.index(value[0]) 26 | c[i][j] = value[1] 27 | else: 28 | pass 29 | 30 | return c 31 | 32 | 33 | def _boss_level_id_link(name_list, link_dict): 34 | ''' 关联首领关卡编号和对应探索副本其他小怪关卡编号 35 | Returns 36 | link_id_dict -- {: []} 37 | ''' 38 | 39 | link_id_dict = {} 40 | 41 | for key, value in link_dict.items(): 42 | key_id = name_list.index(key) 43 | value_id = [name_list.index(v) for v in value] 44 | link_id_dict[key_id] = value_id 45 | 46 | return link_id_dict 47 | 48 | 49 | with open('data/d.pkl', 'wb') as f: 50 | COMPLETE_C = _gen_complete_constraint() 51 | pickle.dump(COMPLETE_C, f, pickle.DEFAULT_PROTOCOL) 52 | ALL_BOSS_LEVEL_DICT = _boss_level_id_link(LEVEL_NAME_LIST, BOSS_LEVEL_LINK) 53 | pickle.dump(ALL_BOSS_LEVEL_DICT, f, pickle.DEFAULT_PROTOCOL) 54 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # yys special 2 | data/yyspreset.dat 3 | temp* 4 | 5 | # Byte-compiled / optimized / DLL files 6 | __pycache__/ 7 | *.py[cod] 8 | *$py.class 9 | 10 | # C extensions 11 | *.so 12 | 13 | # Distribution / packaging 14 | .Python 15 | build/ 16 | develop-eggs/ 17 | dist/ 18 | downloads/ 19 | eggs/ 20 | .eggs/ 21 | lib/ 22 | lib64/ 23 | parts/ 24 | sdist/ 25 | var/ 26 | wheels/ 27 | *.egg-info/ 28 | .installed.cfg 29 | *.egg 30 | MANIFEST 31 | 32 | # PyInstaller 33 | # Usually these files are written by a python script from a template 34 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 35 | *.manifest 36 | *.spec 37 | 38 | # Installer logs 39 | pip-log.txt 40 | pip-delete-this-directory.txt 41 | 42 | # Unit test / coverage reports 43 | htmlcov/ 44 | .tox/ 45 | .coverage 46 | .coverage.* 47 | .cache 48 | nosetests.xml 49 | coverage.xml 50 | *.cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | 63 | # Flask stuff: 64 | instance/ 65 | .webassets-cache 66 | 67 | # Scrapy stuff: 68 | .scrapy 69 | 70 | # Sphinx documentation 71 | docs/_build/ 72 | 73 | # PyBuilder 74 | target/ 75 | 76 | # Jupyter Notebook 77 | .ipynb_checkpoints 78 | 79 | # pyenv 80 | .python-version 81 | 82 | # celery beat schedule file 83 | celerybeat-schedule 84 | 85 | # SageMath parsed files 86 | *.sage.py 87 | 88 | # Environments 89 | .env 90 | .venv 91 | env/ 92 | venv/ 93 | ENV/ 94 | env.bak/ 95 | venv.bak/ 96 | 97 | # Spyder project settings 98 | .spyderproject 99 | .spyproject 100 | 101 | # Rope project settings 102 | .ropeproject 103 | 104 | # mkdocs documentation 105 | /site 106 | 107 | # mypy 108 | .mypy_cache/ 109 | -------------------------------------------------------------------------------- /yys_opt.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | 3 | ''' 4 | 阴阳师悬赏封印任务规划器 5 | MF strategy optimizer for Yinyangshi 6 | ''' 7 | 8 | import sys 9 | from PyQt5 import QtWidgets, QtGui, QtCore 10 | from gui import Panel 11 | from data import yyslib 12 | 13 | 14 | class MainWindow(QtWidgets.QMainWindow): 15 | ''' 16 | Implements the main window 17 | ''' 18 | def __init__(self, parent=None): 19 | QtWidgets.QMainWindow.__init__(self) 20 | self.setStyleSheet('font-size: 10pt; font-family: default') 21 | 22 | # Set global window properties 23 | self.setWindowTitle('阴阳师悬赏封印任务规划器') 24 | self.setMinimumWidth(600) 25 | self.setMinimumHeight(600) 26 | self.setWindowIcon(QtGui.QIcon('logo.jpg')) 27 | self.resize(QtCore.QSize(900, 800)) 28 | 29 | self.taskEditor = Panel.TaskEditor(self) 30 | self.banEditor = Panel.BanEditor(self) 31 | self.calcBtn = QtWidgets.QPushButton('计算') 32 | self.calcBtn.clicked.connect(self.calc) 33 | 34 | # Set window layout 35 | self.mainLayout = QtWidgets.QVBoxLayout() 36 | self.mainLayout.setSpacing(6) 37 | self.mainLayout.addWidget(self.taskEditor) 38 | self.mainLayout.addWidget(self.banEditor) 39 | self.mainLayout.addWidget(self.calcBtn) 40 | 41 | # Enable main window 42 | self.mainWidget = QtWidgets.QWidget() 43 | self.mainWidget.setLayout(self.mainLayout) 44 | self.setCentralWidget(self.mainWidget) 45 | 46 | # load data 47 | yyslib.load_data() 48 | 49 | def on_exit(self): 50 | self.close() 51 | 52 | def closeEvent(self, event): 53 | q = QtWidgets.QMessageBox.question(self, '退出?', 54 | '确定要退出吗?', QtWidgets.QMessageBox.Yes | 55 | QtWidgets.QMessageBox.No, QtWidgets.QMessageBox.Yes) 56 | if q == QtWidgets.QMessageBox.Yes: 57 | self._write_setting() 58 | self.close() 59 | else: 60 | event.ignore() 61 | 62 | def calc(self): 63 | ''' 计算最优任务规划 ''' 64 | 65 | task_entries = self.taskEditor.showTasks() 66 | ban_opts = self.banEditor.banOpts() 67 | 68 | if self._verify(task_entries): 69 | full_res = yyslib.wrap_all_together(task_entries, ban_opts) 70 | self.msgResult = Panel.MsgResult(self, full_res) 71 | self.msgResult.exec_() 72 | else: 73 | pass 74 | 75 | def _verify(self, task_entries): 76 | ''' verify validity. Return boolean ''' 77 | 78 | if task_entries: 79 | for task in task_entries: 80 | if task: 81 | pass 82 | else: 83 | msg = Panel.MsgWarning(self, '参数错误', '任务参数存在空缺或错误,请补全参数或移除多余任务') 84 | msg.exec_() 85 | return False 86 | return True 87 | else: 88 | msg = Panel.MsgWarning(self, '缺少任务', '请输入至少一个任务') 89 | msg.exec_() 90 | return False 91 | 92 | 93 | def _write_setting(self): 94 | ''' Save ban settings to file ''' 95 | 96 | with open('data/yyspreset.dat', 'w') as f: 97 | f.write('isBoss {:d}\n'.format(self.banEditor.isBoss)) 98 | f.write('isTeam {:d}\n'.format(self.banEditor.isTeam)) 99 | f.write('isYH {:d}\n'.format(self.banEditor.isYH)) 100 | f.write('isMW {:d}\n'.format(self.banEditor.isMW)) 101 | f.write('yhLevel {:d} {:d}\n'.format(self.banEditor.yhMinLevel, self.banEditor.yhMaxLevel)) 102 | f.write('mwLevel {:d} {:d}\n'.format(self.banEditor.mwMinLevel, self.banEditor.mwMaxLevel)) 103 | 104 | 105 | if __name__ == '__main__': 106 | 107 | app = QtWidgets.QApplication(sys.argv) 108 | 109 | window = MainWindow() 110 | window.show() 111 | 112 | sys.exit(app.exec_()) 113 | -------------------------------------------------------------------------------- /unit_test.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | 3 | ''' unit tests ''' 4 | 5 | from data import yyslib, yysdata 6 | import unittest 7 | import numpy as np 8 | 9 | import win_unicode_console 10 | win_unicode_console.enable() 11 | 12 | 13 | # class TestConstraintGen(unittest.TestCase): 14 | # ''' test constraint matrix generator 15 | # 测试约束矩阵生成器 16 | # ''' 17 | # 18 | # def test(self): 19 | # 20 | # test_creep_list = ['天邪鬼赤', '独眼小僧', '椒图', '灯笼鬼'] 21 | # 22 | # test_level_list = ['御魂第1层', 23 | # '探索副本第1章:天邪鬼绿1', 24 | # '探索副本第1章:天邪鬼绿2', 25 | # '探索副本第1章:首领', 26 | # '河畔童谣第8层'] 27 | # 28 | # test_creep_in_level_dict = { 29 | # '御魂第1层': [('天邪鬼赤', 2), ('独眼小僧', 1)], 30 | # '探索副本第1章:天邪鬼绿1': [('天邪鬼赤', 2)], 31 | # '探索副本第1章:天邪鬼绿2': [('天邪鬼绿', 1), ('灯笼鬼', 2)], 32 | # '探索副本第1章:首领': [('灯笼鬼', 3)], 33 | # '河畔童谣第8层': [('椒图', 2)] 34 | # } 35 | # 36 | # test_out = np.array([[2, 2, 0, 0, 0], 37 | # [1, 0, 0, 0, 0], 38 | # [0, 0, 0, 0, 2], 39 | # [0, 0, 2, 3, 0] 40 | # ]) 41 | # 42 | # print('\n test constraint matrix function') 43 | # 44 | # self.assertEqual(True, np.array_equal(test_out, dump_data._gen_complete_constraint(test_creep_list, test_level_list, test_creep_in_level_dict))) 45 | 46 | 47 | 48 | class TestStaminaGen(unittest.TestCase): 49 | ''' 测试体力向量生成器 ''' 50 | 51 | def test(self): 52 | 53 | test_level_list = ['探索副本第1章:首领', '御魂副本第1层', '河畔童谣第8层', '妖气封印:二口女'] 54 | test_single_stanima = [3, 6, 3, 3] 55 | test_team_stanima = [3, 4, 3, 3] 56 | 57 | print('\n test stamina vector function ') 58 | self.assertEqual(test_single_stanima, 59 | yyslib.gen_stamina(test_level_list, False)) 60 | self.assertEqual(test_team_stanima, 61 | yyslib.gen_stamina(test_level_list, True)) 62 | 63 | 64 | class TestTaskStar(unittest.TestCase): 65 | ''' 测试任务星级分配器 ''' 66 | 67 | def test(self): 68 | 69 | test_in = [3, 3, 5, 2, 1, 3] 70 | test_out = {5: [2], 3: [2, 5, 1, 0], 2: [2, 5, 1, 0, 3], 71 | 1: [2, 5, 1, 0, 3, 4]} 72 | 73 | print("\n test task star ladder ") 74 | self.assertEqual(test_out, yyslib.sort_task_star(test_in)) 75 | 76 | 77 | class TestLevelBan(unittest.TestCase): 78 | ''' 测试副本层数过滤器 ''' 79 | 80 | def test(self): 81 | 82 | test_in = [{'yhLevel': (0, 0), 'mwLevel': (0, 0), 'isTeam': True, 'isBoss': True}, 83 | {'yhLevel': (2, 7), 'mwLevel': (1, 10), 'isTeam': True, 'isBoss': True}] 84 | 85 | test_out = [list(range(188, 348)), [188, 195, 196, 197]] 86 | 87 | print('\n test level id ban') 88 | for i in range(len(test_in)): 89 | self.assertEqual(test_out[i], yyslib.ban_level(test_in[i])) 90 | 91 | 92 | class TestOpt(unittest.TestCase): 93 | ''' 测试策略优化器结果 ''' 94 | 95 | def test(self): 96 | 97 | print('\n test opt result') 98 | print('-'*5 + ' Case 1 ' + '-'*5) 99 | 100 | test_in = (['天邪鬼青'], [4], {'yhLevel': (0, 0), 'mwLevel': (0, 0), 101 | 'isTeam': False, 'isBoss': False}) 102 | test_out = [1, (['探索副本第10章:丑时之女1', '探索副本第10章:丑时之女2'], 2), 6] 103 | res = yyslib.solve_single_prob(*test_in) 104 | for i in range(3): 105 | self.assertEqual(test_out[i], res[i]) 106 | 107 | print('-'*5 + ' Case 2 ' + '-'*5) 108 | test_in = (['天邪鬼青'], [4], {'yhLevel': (0, 0), 'mwLevel': (1, 6), 109 | 'isTeam': False, 'isBoss': False}) 110 | test_out = [1, (['妖刀之秘籍(妖刀姬)第1层', '妖刀之秘籍(妖刀姬)第2层', '妖刀之秘籍(妖刀姬)第3层'], 1), 3] 111 | res = yyslib.solve_single_prob(*test_in) 112 | for i in range(3): 113 | self.assertEqual(test_out[i], res[i]) 114 | 115 | print('-'*5 + ' Case 3 ' + '-'*5) 116 | 117 | 118 | if __name__ == '__main__': 119 | unittest.main() 120 | -------------------------------------------------------------------------------- /data/yyslib.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | 3 | ''' 阴阳师任务规划器和函数库 ''' 4 | 5 | import numpy as np 6 | from data import yysdata 7 | import re 8 | import pulp 9 | import pickle 10 | 11 | 12 | def wrap_all_together(task_entries, ban_opts): 13 | ''' Get shit together. 14 | Arguments: 15 | task_entries -- [('creep_name', 16 | , 17 | )] 18 | ban_opts -- {'isBoss': bool, 'isTeam': bool, 19 | 'yhLevel': <(min, max), int>, 20 | 'mwLevel': <(min, max), int>} 21 | Returns: 22 | full_res -- {task_star: (status, solution, total_s)} 23 | status -- pulp status: 'Optimal', 'Unbound', 'Unsolvable' 24 | solution -- [([<'level_name'>, ...], ), ...] 25 | total_s -- total stamina, int 26 | ''' 27 | 28 | task_creep_list, task_creep_num_list, task_star_list = parse_task(task_entries) 29 | 30 | # 分配任务星级 31 | task_ladder = sort_task_star(task_star_list) 32 | # full result 33 | full_res = {} 34 | for key, index in task_ladder.items(): 35 | this_task_creep_list = [task_creep_list[i] for i in index] 36 | this_task_creep_num_list = [task_creep_num_list[i] for i in index] 37 | full_res[key] = solve_single_prob(this_task_creep_list, this_task_creep_num_list, ban_opts) 38 | 39 | return full_res 40 | 41 | 42 | def solve_single_prob(task_creep_list, task_creep_num_list, ban_opts): 43 | ''' solve singel problem. 44 | Arguments: 45 | task_creep_list -- [<'creep-name'>] 46 | task_creep_num_list -- [] 47 | ban_opts -- {'opt-name': } 48 | Returns: 49 | status -- pulp status: 'Optimal', 'Unbound', 'Unsolvable' 50 | solution -- [([<'level_name'>, ...], ), ...] 51 | total_s -- total stamina, float 52 | ''' 53 | 54 | # 限定御魂和秘闻副本层数 55 | creep_id = task_creep_id(task_creep_list) 56 | banned_level_id = ban_level(ban_opts) 57 | sub_c, level_id = gen_sub_constraint(creep_id, banned_level_id) 58 | 59 | # solve the prob 60 | status, solution, total_s = lp_opt(sub_c, task_creep_num_list, level_id, isTeam=ban_opts['isTeam'], isBoss=ban_opts['isBoss']) 61 | 62 | return status, solution, total_s 63 | 64 | 65 | def sort_task_star(task_star_list): 66 | ''' Sort task_star. 按任务星级从高到低分阶梯返回 67 | Returns: 68 | task_ladder -- {task_star, int: [task_list_index, int]} 69 | ''' 70 | 71 | task_ladder = {} 72 | 73 | idx = sorted(range(len(task_star_list)), key = lambda k: task_star_list[k]) 74 | sorted_task_star = [task_star_list[i] for i in idx] 75 | 76 | # pop the last sorted item, i.e., the highest star 77 | a = sorted_task_star.pop() 78 | a_idx = idx.pop() 79 | # put it into the ladder dict 80 | task_ladder[a] = [a_idx] 81 | # if there are still tasks left 82 | while sorted_task_star: 83 | # pop the highest star in the remaining of the task list 84 | b = sorted_task_star.pop() 85 | b_idx = idx.pop() 86 | if a == b: 87 | # if a & b are equal, append the index to the ladder dict 88 | task_ladder[a].append(b_idx) 89 | else: 90 | # if a > b, create a new ladder key 91 | task_ladder[b] = task_ladder[a].copy() 92 | task_ladder[b].append(b_idx) 93 | a = b # replace a with b (which becomes the new a) 94 | 95 | return task_ladder 96 | 97 | 98 | def parse_task(task_list): 99 | ''' parse task list ''' 100 | 101 | task_creep_list = [] 102 | task_creep_num_list = [] 103 | task_star_list = [] 104 | 105 | for task in task_list: 106 | (creep_name, creep_num, task_star) = task 107 | task_creep_list.append(creep_name) 108 | task_creep_num_list.append(creep_num) 109 | task_star_list.append(task_star) 110 | 111 | return task_creep_list, task_creep_num_list, task_star_list 112 | 113 | 114 | def task_creep_id(task_creep_list): 115 | ''' 生成任务妖怪在妖怪库中的索引号 116 | Returns 117 | creep_id -- [int] 118 | ''' 119 | 120 | creep_id = [] 121 | for creep in task_creep_list: 122 | creep_id.append(yysdata.CREEP_LIST.index(creep)) 123 | 124 | return creep_id 125 | 126 | 127 | def gen_sub_constraint(creep_id, banned_level_id): 128 | ''' 生成任务妖怪对应的子约束矩阵。 129 | 去掉全0行&全0列,以及 banned_level_id 的限定列 130 | Returns: 131 | sub_c -- np.array() 132 | col_id -- non-zero column id, list 133 | ''' 134 | 135 | # first, get only rows corresponding to creep_id 136 | _temp_c = COMPLETE_C[creep_id, :] 137 | # second, return non-zero column ids, 138 | # and then remove all zero columns 139 | # need to determine if _temp_c is only a vector, i.e. len(creep_id)=1 140 | 141 | non_zero_cols = [] 142 | 143 | if len(_temp_c.shape) == 1: 144 | # non-zero terms 145 | col_id = np.nonzero(_temp_c)[0].tolist() 146 | # substract banned levels 147 | for id in banned_level_id: 148 | if id in col_id: 149 | col_id.remove(id) 150 | else: 151 | pass 152 | return _temp_c[col_id], col_id 153 | else: 154 | for col in range(_temp_c.shape[1]): 155 | if _temp_c[:, col].any() and col not in banned_level_id: 156 | non_zero_cols.append(col) 157 | else: 158 | pass 159 | return _temp_c[:, non_zero_cols], non_zero_cols 160 | 161 | 162 | def ban_level(ban_opts): 163 | ''' 返回 ban_opts 禁止的关卡层数 id 列表 164 | Arguments 165 | ban_opts -- {'opt-name': } 166 | Returns 167 | level_id, list 168 | ''' 169 | 170 | banned_level_id = [] 171 | yhmin, yhmax = ban_opts['yhLevel'] 172 | mwmin, mwmax = ban_opts['mwLevel'] 173 | 174 | for i in range(len(yysdata.LEVEL_NAME_LIST)): 175 | level = yysdata.LEVEL_NAME_LIST[i] 176 | if '御魂' in level: 177 | if not (yhmin or yhmax): # if both are 0 178 | banned_level_id.append(i) 179 | else: 180 | level_num = int(re.search('(\d+)', level).groups()[0]) 181 | if level_num < yhmin or level_num > yhmax: 182 | # banned level 183 | banned_level_id.append(i) 184 | else: 185 | pass 186 | elif '妖气' not in level and '探索' not in level : # 秘闻副本 187 | if not (mwmin or mwmax): # if both are 0 188 | banned_level_id.append(i) 189 | else: 190 | level_num = int(re.search('(\d+)', level).groups()[0]) 191 | if level_num < mwmin or level_num > mwmax: 192 | # banned level 193 | banned_level_id.append(i) 194 | else: 195 | pass 196 | elif '妖气' in level and not ban_opts['isTeam']: #不组队时不打妖气封印 197 | banned_level_id.append(i) 198 | else: 199 | pass 200 | 201 | if ban_opts['isBoss']: 202 | pass 203 | else: 204 | for id in ALL_BOSS_LEVEL_DICT.keys(): 205 | banned_level_id.append(id) 206 | 207 | return banned_level_id 208 | 209 | 210 | def gen_stamina(chosen_level_list, isTeam=False): 211 | ''' 从所选的关卡子列表中生成体力消耗矢量。包含组队选项 ''' 212 | 213 | stamina = [] 214 | 215 | for level in chosen_level_list: 216 | if level.find('御魂') == -1: #非御魂副本 217 | stamina.append(3) 218 | else: 219 | if isTeam: 220 | stamina.append(4) 221 | else: 222 | stamina.append(6) 223 | 224 | return stamina 225 | 226 | 227 | def lp_opt(c, creep_num, level_id, isTeam=False, isBoss=False): 228 | ''' 整数线性优化 229 | Arguments: 230 | c -- 约束矩阵 c[i][j] 231 | creep_num -- 约束条件:怪物数量列表 232 | level_id -- 自变量:关卡 id 233 | isTeam -- bool, 是否组队 234 | isBoss -- bool, 是否攻打首领 235 | Returns: 236 | prob.status -- pulp status 237 | solution -- [([<'level_name'>, ...], ), ...] 238 | total_s -- total stamina, float 239 | ''' 240 | 241 | prob = pulp.LpProblem(name = 'yys_opt', sense=pulp.LpMinimize) 242 | 243 | stamina = gen_stamina([yysdata.LEVEL_NAME_LIST[i] for i in level_id], isTeam) 244 | 245 | # append stamina to the first row of constraint matrix c 246 | c = np.vstack((stamina, c)) 247 | x = [pulp.LpVariable('x{:d}'.format(i), lowBound=0, cat=pulp.LpInteger) for i in level_id] 248 | 249 | obj = pulp.LpAffineExpression([(x[j], c[0, j]) for j in range(len(level_id))]) 250 | # objective funciton 251 | prob += pulp.lpSum(obj) 252 | # normal constraints 253 | for i in range(len(creep_num)): 254 | _t = pulp.LpAffineExpression([(x[j], c[i+1, j]) for j in range(len(level_id))]) 255 | prob += pulp.lpSum(_t) >= creep_num[i] 256 | prob.solve() 257 | solution = [] 258 | 259 | # and this is ABSOLUTELY stupid: believe it or not, 260 | # the index [i] pulp returns is not equal to the 261 | # index j of x[level_id] in level_id! 262 | # pulp shuffles the list!!! 263 | # therefore, I've gotta get level id from x.name, 264 | # and store the varValue as well with the right id 265 | # Let's do it 266 | x0 = np.zeros(len(level_id)) 267 | for x in prob.variables(): 268 | if x.varValue: # if non-zero 269 | j = level_id.index(int(x.name[1:])) 270 | x0[j] = x.varValue 271 | else: 272 | pass 273 | 274 | # remember, j is the col index in c[i][j] & level_id 275 | # level_id[j] is the level index in the complete LEVEL_NAME_LIST 276 | 277 | # check if boos level is in the result. 278 | # if so & isBoss = True, redo the optimization with extra constraints 279 | # until the solution does change any more. 280 | # 逻辑是,对 boss level, 先调取与其关联的其他层数 id 281 | # 随后将这些层数分为两类:类 1 已在 sub_c 中,类 2 不在 sub_c 中 282 | # 对类 1,lowerBound 改为 >= boss level 攻打次数 283 | # 对类 2, 只计算其个数,并将相应体力值加到 boss level 的体力值上 284 | x0_boss = {} # {boss_id: ([type_1_j], [type_2])} 285 | if isBoss: 286 | old_x0 = np.zeros(0) # this stores the previous solution 287 | # if two iterations are not equal, do another iteration 288 | while not np.array_equal(x0, old_x0): 289 | for j in np.nonzero(x0)[0].tolist(): 290 | # search boss level in all nonzero value levels 291 | if level_id[j] in ALL_BOSS_LEVEL_DICT: 292 | # found boss level 293 | type_1_j = [] 294 | type_2 = [] 295 | for id in ALL_BOSS_LEVEL_DICT[level_id[j]]: 296 | # get linked creep levels 297 | if id in level_id: # if it is in sub_c 298 | type_1_j.append(level_id.index(id)) 299 | else: 300 | type_2.append(id) 301 | x0_boss[j] = (type_1_j, type_2) 302 | else: 303 | pass 304 | # resolve the problem 305 | prob = pulp.LpProblem(name = 'yys_opt', sense=pulp.LpMinimize) 306 | # recreate stamina 307 | for boss_j in x0_boss: 308 | c[0, boss_j] = 3 * len(x0_boss[boss_j][1]) + 3 309 | # recreate variable & constraint 310 | x = [pulp.LpVariable('x{:d}'.format(i), lowBound=0, cat=pulp.LpInteger) for i in level_id] 311 | obj = pulp.LpAffineExpression([(x[j], c[0, j]) for j in range(len(level_id))]) 312 | # objective funciton 313 | prob += pulp.lpSum(obj) 314 | # adding constraints 315 | for i in range(len(creep_num)): 316 | _t = pulp.LpAffineExpression([(x[j], c[i+1, j]) for j in range(len(level_id))]) 317 | prob += pulp.lpSum(_t) >= creep_num[i] 318 | for boss_j in x0_boss: 319 | for j in x0_boss[boss_j][0]: 320 | prob += x[j] >= x[boss_j] 321 | prob.solve() 322 | 323 | # store x0 in previous solution 324 | old_x0 = np.copy(x0) 325 | x0 = np.zeros(len(level_id)) 326 | for x in prob.variables(): 327 | if x.varValue: # if non-zero 328 | j = level_id.index(int(x.name[1:])) 329 | x0[j] = x.varValue 330 | else: 331 | pass 332 | else: 333 | pass 334 | 335 | # find identical levels and return all of them in the result 336 | # note that here no other boss levels should be included 337 | identical_cols = {} 338 | # 如果 j 出现在 x0_boss 中,把同一章的相关列 id 放在一起, 339 | # 且不再添加其他章节的全同列 340 | if x0_boss: 341 | for boss_j in x0_boss.keys(): 342 | boss_j_value = x0[boss_j] 343 | if boss_j_value: 344 | ks = x0_boss[boss_j][0] 345 | identical_cols[boss_j] = ks 346 | # 把攻打首领的次数也从同一章相关列的值中去掉 347 | # 同时把对应体力值加到首领列上 348 | for k in ks: 349 | x0[k] = x0[k] - boss_j_value 350 | c[0, boss_j] = c[0, boss_j] + boss_j_value * len(ks) * 3 351 | else: 352 | pass 353 | else: 354 | pass 355 | 356 | # get col id of nonzero non-boss level 357 | for j in np.nonzero(x0)[0].tolist(): 358 | if j not in x0_boss.keys(): 359 | cj = c[:, j] 360 | identical_cols[j] = [] 361 | for k in range(len(x0)): # find identical cols 362 | ck = c[:, k] 363 | if k != j and np.array_equal(cj, ck) and level_id[k] not in ALL_BOSS_LEVEL_DICT: 364 | identical_cols[j].append(k) 365 | else: 366 | pass 367 | else: 368 | pass 369 | for j, ks in identical_cols.items(): 370 | if ks: 371 | level_names = [yysdata.LEVEL_NAME_LIST[level_id[j]]] + \ 372 | [yysdata.LEVEL_NAME_LIST[level_id[k]] for k in ks] 373 | else: 374 | level_names = [yysdata.LEVEL_NAME_LIST[level_id[j]]] 375 | level_names.sort() 376 | solution.append((level_names, x0[j])) 377 | total_s = np.dot(x0, c[0, :].transpose()) 378 | 379 | return prob.status, solution, total_s 380 | 381 | 382 | def load_data(): 383 | with open('data/d.pkl', 'rb') as f: 384 | global COMPLETE_C 385 | COMPLETE_C = pickle.load(f) 386 | global ALL_BOSS_LEVEL_DICT 387 | ALL_BOSS_LEVEL_DICT = pickle.load(f) 388 | -------------------------------------------------------------------------------- /gui/Panel.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | 3 | ''' 4 | Window panels 5 | 定义主窗口中的各模块 6 | ''' 7 | 8 | from PyQt5 import QtWidgets, QtCore, QtGui 9 | from data import yysdata, yyslib 10 | from os import path 11 | 12 | class TaskEditor(QtWidgets.QGroupBox): 13 | ''' Edit task list 编辑悬赏任务列表 ''' 14 | 15 | def __init__(self, parent): 16 | QtWidgets.QWidget.__init__(self, parent) 17 | self.parent = parent 18 | 19 | self.setTitle('编辑阴阳师悬赏任务') 20 | self.setAlignment(QtCore.Qt.AlignLeft) 21 | self.setCheckable(False) 22 | 23 | 24 | self.taskRowDict = {} # {id: taskRowWidget} 25 | newBtn = QtWidgets.QPushButton('新增任务') 26 | # the button group stores all delete buttons so that 27 | # I can track them down 28 | self.delBtnGroup = QtWidgets.QButtonGroup() 29 | 30 | # set up layout 31 | self.entryLayout = QtWidgets.QGridLayout() 32 | self.entryLayout.setAlignment(QtCore.Qt.AlignTop | QtCore.Qt.AlignJustify) 33 | self.entryLayout.addWidget(newBtn, 0, 0) 34 | self.entryLayout.addWidget(QtWidgets.QLabel(''), 0, 1) 35 | self.entryLayout.addWidget(QtWidgets.QLabel('怪物'), 0, 2) 36 | self.entryLayout.addWidget(QtWidgets.QLabel('数量'), 0, 3) 37 | self.entryLayout.addWidget(QtWidgets.QLabel('任务星级'), 0, 4) 38 | 39 | # preset one row 40 | self._add_entry() 41 | 42 | entryWidgets = QtWidgets.QWidget() 43 | entryWidgets.setLayout(self.entryLayout) 44 | 45 | entryArea = QtWidgets.QScrollArea() 46 | entryArea.setWidgetResizable(True) 47 | entryArea.setWidget(entryWidgets) 48 | 49 | # Set up main layout 50 | mainLayout = QtWidgets.QVBoxLayout() 51 | mainLayout.setSpacing(0) 52 | mainLayout.addWidget(entryArea) 53 | self.setLayout(mainLayout) 54 | 55 | newBtn.clicked.connect(self._add_entry) 56 | self.delBtnGroup.buttonClicked[int].connect(self._del_entry) 57 | 58 | def _add_entry(self): 59 | ''' 60 | Add a batch entry to the task list 61 | 向悬赏任务列表中添加一个任务 62 | ''' 63 | 64 | # get current task number 65 | if self.taskRowDict: 66 | n = max(self.taskRowDict.keys()) + 1 67 | else: 68 | n = 0 69 | task = TaskRow(self) 70 | self.taskRowDict[n] = task 71 | self.entryLayout.addWidget(task.delBtn, n+1, 0) 72 | self.entryLayout.addWidget(task.editBtn, n+1, 1) 73 | self.entryLayout.addWidget(task.creepEdit, n+1, 2) 74 | self.entryLayout.addWidget(task.numEdit, n+1, 3) 75 | self.entryLayout.addWidget(task.starEdit, n+1, 4) 76 | self.delBtnGroup.addButton(task.delBtn, n) 77 | 78 | def _del_entry(self, btn_id): 79 | ''' 80 | delete entry from the task list 81 | 移除列表中的任务 82 | ''' 83 | 84 | task = self.taskRowDict[btn_id] 85 | self.delBtnGroup.removeButton(task.delBtn) 86 | del self.taskRowDict[btn_id] 87 | task.delRow() 88 | 89 | def showTasks(self): 90 | ''' Return task list 返回任务列表 91 | [(creep_name, creep_num, task_star), ...] 92 | ''' 93 | 94 | a_list = [] 95 | for id, task in self.taskRowDict.items(): 96 | a_list.append(task.getInput()) 97 | return a_list 98 | 99 | 100 | class TaskRow(QtWidgets.QWidget): 101 | ''' 单行任务模块 ''' 102 | 103 | def __init__(self, parent): 104 | 105 | QtWidgets.QWidget.__init__(self, parent) 106 | self.parent = parent 107 | 108 | self.creepEdit = QtWidgets.QLineEdit() 109 | self.numEdit = QtWidgets.QLineEdit() 110 | self.numEdit.setValidator(QtGui.QIntValidator(1, 50)) 111 | self.starEdit = QtWidgets.QLineEdit() 112 | self.starEdit.setValidator(QtGui.QIntValidator(1, 10)) 113 | 114 | # set auto completion 115 | creepCompleter = QtWidgets.QCompleter(yysdata.CREEP_LIST) 116 | self.creepEdit.setCompleter(creepCompleter) 117 | self.creepEdit.setPlaceholderText('自动补全') 118 | 119 | self.editBtn = QtWidgets.QPushButton('确定') 120 | self.delBtn = QtWidgets.QPushButton('删除') 121 | self.editBtn.clicked.connect(self._edit_entry) 122 | 123 | def _edit_entry(self): 124 | ''' Edit task entry ''' 125 | 126 | # 如果按钮显示的是修改,修改当前任务 127 | if self.editBtn.text() == '修改': 128 | # 修改样式 129 | self.creepEdit.setStyleSheet('color: black') 130 | self.numEdit.setStyleSheet('color: black') 131 | self.starEdit.setStyleSheet('color: black') 132 | # 设为可编辑 133 | self.creepEdit.setReadOnly(False) 134 | self.numEdit.setReadOnly(False) 135 | self.starEdit.setReadOnly(False) 136 | # 重置光标位置 137 | self.creepEdit.setCursorPosition(0) 138 | self.numEdit.setCursorPosition(0) 139 | self.starEdit.setCursorPosition(0) 140 | # 更改按钮文字 141 | self.editBtn.setText('更新') 142 | elif self.editBtn.text() in ('更新', '确定'): 143 | # 如果按钮显示的是输入/更新,更新当前任务:设为只读 144 | # 修改样式 145 | self.creepEdit.setStyleSheet('background-color: #F0F0F0') 146 | self.numEdit.setStyleSheet('background-color: #F0F0F0') 147 | self.starEdit.setStyleSheet('background-color: #F0F0F0') 148 | # 设为只读 149 | self.creepEdit.setReadOnly(True) 150 | self.numEdit.setReadOnly(True) 151 | self.starEdit.setReadOnly(True) 152 | # 重置光标位置 153 | self.creepEdit.setCursorPosition(0) 154 | self.numEdit.setCursorPosition(0) 155 | self.starEdit.setCursorPosition(0) 156 | # 更改按钮文字 157 | self.editBtn.setText('修改') 158 | 159 | def delRow(self): 160 | ''' Delete current task entry ''' 161 | 162 | self.creepEdit.clear() 163 | self.numEdit.clear() 164 | self.starEdit.clear() 165 | self.creepEdit.deleteLater() 166 | self.numEdit.deleteLater() 167 | self.starEdit.deleteLater() 168 | self.editBtn.deleteLater() 169 | self.delBtn.deleteLater() 170 | 171 | def getInput(self): 172 | ''' Retrieve input from widgets. 173 | Returns: 174 | (creep_name, creep_num, task_star) 175 | ''' 176 | 177 | creep_name = self.creepEdit.text() 178 | creep_num = self.numEdit.text() 179 | task_star = self.starEdit.text() 180 | 181 | # if all 3 slots have valid inputs 182 | if creep_name and creep_num and task_star: 183 | # make sure creep name is input correctly 184 | if creep_name in yysdata.CREEP_LIST: 185 | return (creep_name, int(creep_num), int(task_star)) 186 | else: 187 | return False 188 | else: 189 | return False 190 | 191 | 192 | class BanEditor(QtWidgets.QGroupBox): 193 | ''' Edit bans 编辑任务限制条件 ''' 194 | 195 | def __init__(self, parent): 196 | QtWidgets.QWidget.__init__(self, parent) 197 | self.parent = parent 198 | 199 | self.setTitle('编辑任务限定条件') 200 | self.setAlignment(QtCore.Qt.AlignLeft) 201 | self.setCheckable(False) 202 | 203 | # 如果有设定文件,加载上次关闭程序时的设定。否则初始化默认值 204 | if path.isfile('data/yyspreset.dat'): 205 | with open('data/yyspreset.dat', 'r') as f: 206 | for l in f: 207 | info = l.split() 208 | if info[0] == 'isBoss': 209 | self.isBoss = int(info[1]) 210 | elif info[0] == 'isTeam': 211 | self.isTeam = int(info[1]) 212 | elif info[0] == 'isYH': 213 | self.isYH = int(info[1]) 214 | elif info[0] == 'isMW': 215 | self.isMW = int(info[1]) 216 | elif info[0] == 'yhLevel': 217 | self.yhMinLevel = int(info[1]) 218 | self.yhMaxLevel = int(info[2]) 219 | elif info[0] == 'mwLevel': 220 | self.mwMinLevel = int(info[1]) 221 | self.mwMaxLevel = int(info[2]) 222 | else: 223 | pass 224 | else: 225 | self.isBoss = 0 226 | self.isTeam = 0 227 | self.isYH = 0 228 | self.isMW = 0 229 | self.yhMinLevel = 0 230 | self.yhMaxLevel = 0 231 | self.mwMinLevel = 0 232 | self.mwMaxLevel = 0 233 | 234 | # initialize widgets 235 | self.bossSel = QtWidgets.QCheckBox('允许攻打探索副本首领') 236 | self.bossSel.setTristate(False) 237 | self.bossSel.setCheckState(self.isBoss) 238 | self.teamSel = QtWidgets.QCheckBox('可以组队') 239 | self.teamSel.setTristate(False) 240 | self.teamSel.setCheckState(self.isTeam) 241 | self.bossSel.setMaximumWidth(240) 242 | self.teamSel.setMaximumWidth(240) 243 | self.yhSel = QtWidgets.QCheckBox('攻打御魂副本') 244 | self.yhSel.setTristate(False) 245 | self.yhSel.setCheckState(self.isYH) 246 | self.mwSel = QtWidgets.QCheckBox('攻打秘闻副本') 247 | self.mwSel.setTristate(False) 248 | self.mwSel.setCheckState(self.isMW) 249 | self.yhSel.setMaximumWidth(200) 250 | self.mwSel.setMaximumWidth(200) 251 | yhLabel = QtWidgets.QLabel('≤ 御魂副本层数 ≤') 252 | mwLabel = QtWidgets.QLabel('≤ 秘闻副本层数 ≤') 253 | yhLabel.setMaximumWidth(140) 254 | mwLabel.setMaximumWidth(140) 255 | self.yhMinLevelEdit = QtWidgets.QLineEdit(str(self.yhMinLevel)) 256 | self.yhMaxLevelEdit = QtWidgets.QLineEdit(str(self.yhMaxLevel)) 257 | self.yhMinLevelEdit.setValidator(QtGui.QIntValidator(1, 10)) 258 | self.yhMaxLevelEdit.setValidator(QtGui.QIntValidator(1, 10)) 259 | self.mwMinLevelEdit = QtWidgets.QLineEdit(str(self.mwMinLevel)) 260 | self.mwMaxLevelEdit = QtWidgets.QLineEdit(str(self.mwMaxLevel)) 261 | self.mwMinLevelEdit.setValidator(QtGui.QIntValidator(1, 10)) 262 | self.mwMaxLevelEdit.setValidator(QtGui.QIntValidator(1, 10)) 263 | self.yhMinLevelEdit.setMaximumWidth(35) 264 | self.yhMaxLevelEdit.setMaximumWidth(35) 265 | self.mwMinLevelEdit.setMaximumWidth(35) 266 | self.mwMaxLevelEdit.setMaximumWidth(35) 267 | # initialize edit box style 268 | self._yh_state(self.yhSel.checkState()) 269 | self._mw_state(self.mwSel.checkState()) 270 | # dynamically reassign validator 271 | self.yhMinLevelEdit.editingFinished.connect(self._reval_yhmax) 272 | self.yhMaxLevelEdit.editingFinished.connect(self._reval_yhmin) 273 | self.mwMinLevelEdit.editingFinished.connect(self._reval_mwmax) 274 | self.mwMaxLevelEdit.editingFinished.connect(self._reval_mwmin) 275 | # dynamically set edit box style 276 | self.yhSel.stateChanged.connect(self._yh_state) 277 | self.mwSel.stateChanged.connect(self._mw_state) 278 | self.yhSel.stateChanged.connect(self._refresh) 279 | self.mwSel.stateChanged.connect(self._refresh) 280 | 281 | mainLayout = QtWidgets.QGridLayout() 282 | mainLayout.setAlignment(QtCore.Qt.AlignTop | QtCore.Qt.AlignLeft) 283 | mainLayout.addWidget(self.bossSel, 0, 0) 284 | mainLayout.addWidget(self.teamSel, 1, 0) 285 | mainLayout.addWidget(self.yhSel, 0, 1) 286 | mainLayout.addWidget(yhLabel, 0, 3) 287 | mainLayout.addWidget(self.yhMinLevelEdit, 0, 2) 288 | mainLayout.addWidget(self.yhMaxLevelEdit, 0, 4) 289 | mainLayout.addWidget(self.mwSel, 1, 1) 290 | mainLayout.addWidget(mwLabel, 1, 3) 291 | mainLayout.addWidget(self.mwMinLevelEdit, 1, 2) 292 | mainLayout.addWidget(self.mwMaxLevelEdit, 1, 4) 293 | self.setLayout(mainLayout) 294 | 295 | def banOpts(self): 296 | ''' Return ban options {'option-name': value} ''' 297 | 298 | self._refresh() 299 | a_dict = {} 300 | a_dict['isBoss'] = self.isBoss 301 | a_dict['isTeam'] = self.isTeam 302 | a_dict['yhLevel'] = (self.yhMinLevel, self.yhMaxLevel) 303 | a_dict['mwLevel'] = (self.mwMinLevel, self.mwMaxLevel) 304 | 305 | return a_dict 306 | 307 | def _refresh(self): 308 | ''' Refresh ban options ''' 309 | 310 | self.isBoss = self.bossSel.checkState() 311 | self.isTeam = self.teamSel.checkState() 312 | self.isYH = self.yhSel.checkState() 313 | self.isMW = self.mwSel.checkState() 314 | if self.yhSel.checkState() == QtCore.Qt.Checked: 315 | self.yhMinLevel = int(self.yhMinLevelEdit.text()) 316 | self.yhMaxLevel = int(self.yhMaxLevelEdit.text()) 317 | else: # make both 0 will disable yh levels in the calculation 318 | self.yhMinLevel = 0 319 | self.yhMaxLevel = 0 320 | if self.mwSel.checkState() == QtCore.Qt.Checked: 321 | self.mwMinLevel = int(self.mwMinLevelEdit.text()) 322 | self.mwMaxLevel = int(self.mwMaxLevelEdit.text()) 323 | else: # make both 0 will disable mw levels in the calculation 324 | self.mwMinLevel = 0 325 | self.mwMaxLevel = 0 326 | 327 | def _yh_state(self, state): 328 | ''' Adjust yh widget state ''' 329 | if state: 330 | self.yhMinLevelEdit.setReadOnly(False) 331 | self.yhMaxLevelEdit.setReadOnly(False) 332 | self.yhMinLevelEdit.setStyleSheet('color: black') 333 | self.yhMaxLevelEdit.setStyleSheet('color: black') 334 | if self.yhMinLevelEdit.text() == '0': 335 | self.yhMinLevelEdit.setText('1') 336 | if self.yhMaxLevelEdit.text() == '0': 337 | self.yhMaxLevelEdit.setText('10') 338 | else: 339 | self.yhMinLevelEdit.setReadOnly(True) 340 | self.yhMaxLevelEdit.setReadOnly(True) 341 | self.yhMinLevelEdit.setStyleSheet('background-color: #F0F0F0') 342 | self.yhMaxLevelEdit.setStyleSheet('background-color: #F0F0F0') 343 | 344 | def _mw_state(self, state): 345 | ''' Adjust mw widget state ''' 346 | if state: 347 | self.mwMinLevelEdit.setReadOnly(False) 348 | self.mwMaxLevelEdit.setReadOnly(False) 349 | self.mwMinLevelEdit.setStyleSheet('color: black') 350 | self.mwMaxLevelEdit.setStyleSheet('color: black') 351 | if self.mwMinLevelEdit.text() == '0': 352 | self.mwMinLevelEdit.setText('1') 353 | if self.mwMaxLevelEdit.text() == '0': 354 | self.mwMaxLevelEdit.setText('10') 355 | else: 356 | self.mwMinLevelEdit.setReadOnly(True) 357 | self.mwMaxLevelEdit.setReadOnly(True) 358 | self.mwMinLevelEdit.setStyleSheet('background-color: #F0F0F0') 359 | self.mwMaxLevelEdit.setStyleSheet('background-color: #F0F0F0') 360 | 361 | def _reval_yhmin(self): 362 | ''' Reset validator for yhmin ''' 363 | self.yhMinLevelEdit.setValidator(QtGui.QIntValidator(1, int(self.yhMaxLevelEdit.text()))) 364 | 365 | def _reval_yhmax(self): 366 | ''' Reset validator for yhmax ''' 367 | self.yhMaxLevelEdit.setValidator(QtGui.QIntValidator(int(self.yhMinLevelEdit.text()), 10)) 368 | 369 | def _reval_mwmin(self): 370 | ''' Reset validator for mwmin ''' 371 | self.mwMinLevelEdit.setValidator(QtGui.QIntValidator(1, int(self.mwMaxLevelEdit.text()))) 372 | 373 | def _reval_mwmax(self): 374 | ''' Reset validator for mwmax ''' 375 | self.mwMaxLevelEdit.setValidator(QtGui.QIntValidator(int(self.mwMinLevelEdit.text()), 10)) 376 | 377 | 378 | class MsgWarning(QtWidgets.QMessageBox): 379 | ''' Warning message box ''' 380 | 381 | def __init__(self, parent, title_text, moretext=''): 382 | QtWidgets.QWidget.__init__(self, parent) 383 | 384 | self.setIcon(QtWidgets.QMessageBox.Warning) 385 | self.addButton(QtWidgets.QMessageBox.Ok) 386 | self.setWindowTitle(title_text) 387 | self.setText(moretext) 388 | 389 | 390 | class MsgResult(QtWidgets.QDialog): 391 | ''' Result message box ''' 392 | 393 | def __init__(self, parent, full_res): 394 | ''' Arguments: full_res -- {task_star: (status, solution, total_s)} 395 | status -- pulp status: 'Optimal', 'Unbound', 'Unsolvable' 396 | solution -- {'level_name': level_num} 397 | total_s -- total stamina, int 398 | ''' 399 | 400 | QtWidgets.QDialog.__init__(self, parent) 401 | 402 | self.setMinimumWidth(500) 403 | self.setMinimumHeight(400) 404 | self.setWindowTitle('结果') 405 | self.resize(QtCore.QSize(600, 600)) 406 | self.setWindowIcon(QtGui.QIcon('logo.jpg')) 407 | 408 | msgWidget = QtWidgets.QWidget() 409 | self.msgLayout = QtWidgets.QVBoxLayout() 410 | self.msgLayout.setAlignment(QtCore.Qt.AlignTop) 411 | self._add_widget(full_res) 412 | msgWidget.setLayout(self.msgLayout) 413 | 414 | msgArea = QtWidgets.QScrollArea() 415 | msgArea.setWidgetResizable(True) 416 | msgArea.setWidget(msgWidget) 417 | 418 | mainLayout = QtWidgets.QVBoxLayout() 419 | mainLayout.setAlignment(QtCore.Qt.AlignTop) 420 | mainLayout.addWidget(msgArea) 421 | self.setLayout(mainLayout) 422 | 423 | def _add_widget(self, full_res): 424 | ''' add result widgets ''' 425 | 426 | for key in full_res.keys(): 427 | status, solution, total_s = full_res[key] 428 | if status == -1 or not(bool(solution)): 429 | title = '无法完成 ≥{:d} 星的所有任务'.format(key) 430 | msg = ['当前限制条件下无法完成悬赏任务。请调整限制条件,如允许攻打首领或更多副本层数。'] 431 | self.msgLayout.addWidget(MsgResultEntry(title, msg)) 432 | elif status == 1: 433 | title = '完成 ≥{:d} 星任务的推荐策略'.format(key) 434 | msg = [] 435 | n = [] 436 | isBoss = [] 437 | for item in solution: 438 | # ([<'level_name'>, ], ) 439 | _b = False 440 | names, value = item 441 | names.reverse() 442 | s = names.pop() 443 | if s in yysdata.BOSS_LEVEL_LINK.keys(): 444 | _b = True 445 | else: 446 | pass 447 | while names: 448 | _t = names.pop() 449 | if _t in yysdata.BOSS_LEVEL_LINK.keys(): 450 | _b = True 451 | else: 452 | pass 453 | s += '\n' + _t 454 | msg.append(s) 455 | n.append(value) 456 | isBoss.append(_b) 457 | msg.append('总消耗体力:{:.0f}'.format(total_s)) 458 | self.msgLayout.addWidget(MsgResultEntry(title, msg, n, isBoss)) 459 | else: 460 | pass 461 | 462 | 463 | class MsgResultEntry(QtWidgets.QGroupBox): 464 | ''' 单个结果条目 ''' 465 | 466 | def __init__(self, title, msg, n=[], isBoss=False): 467 | QtWidgets.QWidget.__init__(self) 468 | 469 | self.setTitle(title) 470 | self.setAlignment(QtCore.Qt.AlignTop | QtCore.Qt.AlignLeft) 471 | self.setCheckable(False) 472 | 473 | # check if task solvable. (non-solvable prob returns only one line) 474 | if len(msg) == 1: 475 | mainLayout = QtWidgets.QVBoxLayout() 476 | _p = QtWidgets.QLabel(msg[0]) 477 | _p.setWordWrap(True) 478 | _p.setAlignment(QtCore.Qt.AlignTop | QtCore.Qt.AlignLeft) 479 | mainLayout.addWidget(_p) 480 | else: 481 | mainLayout = QtWidgets.QGridLayout() 482 | for i in range(len(msg)-1): 483 | _p = QtWidgets.QLabel(msg[i]) 484 | _p.setWordWrap(False) 485 | _p.setAlignment(QtCore.Qt.AlignVCenter | QtCore.Qt.AlignLeft) 486 | if isBoss[i]: 487 | _q = QtWidgets.QLabel('所有关卡 × {:.0f} 次'.format(n[i])) 488 | _q.setStyleSheet('color: #D63333') 489 | else: 490 | _q = QtWidgets.QLabel('任意关卡 × {:.0f} 次'.format(n[i])) 491 | _q.setAlignment(QtCore.Qt.AlignVCenter | QtCore.Qt.AlignRight) 492 | _q.setMaximumWidth(300) 493 | _c = Counter() 494 | mainLayout.addWidget(_p, i, 0) 495 | mainLayout.addWidget(_q, i, 1) 496 | mainLayout.addWidget(_c, i, 2) 497 | _p = QtWidgets.QLabel(msg[-1]) 498 | _p.setWordWrap(True) 499 | _p.setAlignment(QtCore.Qt.AlignTop | QtCore.Qt.AlignLeft) 500 | mainLayout.addWidget(_p, len(msg), 0) 501 | 502 | self.setLayout(mainLayout) 503 | 504 | 505 | class Counter(QtWidgets.QWidget): 506 | ''' 计数器 ''' 507 | 508 | def __init__(self): 509 | QtWidgets.QWidget.__init__(self) 510 | 511 | self.numLabel = QtWidgets.QLineEdit('0') 512 | self.numLabel.setReadOnly(True) 513 | self.numLabel.setAlignment(QtCore.Qt.AlignHCenter) 514 | self.plusBtn = QtWidgets.QPushButton('+') 515 | self.minusBtn = QtWidgets.QPushButton('-') 516 | self.plusBtn.clicked.connect(self._plus) 517 | self.minusBtn.clicked.connect(self._minus) 518 | self.numLabel.setMaximumWidth(50) 519 | self.plusBtn.setMaximumWidth(30) 520 | self.minusBtn.setMaximumWidth(30) 521 | 522 | mainLayout = QtWidgets.QHBoxLayout() 523 | mainLayout.addWidget(self.numLabel) 524 | mainLayout.addWidget(self.plusBtn) 525 | mainLayout.addWidget(self.minusBtn) 526 | self.setLayout(mainLayout) 527 | self.setMaximumWidth(120) 528 | 529 | def _plus(self): 530 | n = int(self.numLabel.text()) 531 | self.numLabel.setText(str(n+1)) 532 | 533 | def _minus(self): 534 | n = int(self.numLabel.text()) 535 | self.numLabel.setText(str(n-1)) 536 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /data/yysdata.py: -------------------------------------------------------------------------------- 1 | #! encoding = utf-8 2 | 3 | ''' 4 | yys creep \& level database 5 | 阴阳师妖怪 \& 副本数据库 6 | ''' 7 | 8 | #COMPLETE_C = [] 9 | #ALL_BOSS_LEVEL_DICT = {} 10 | 11 | # 妖怪名称全表 creep names 12 | CREEP_LIST = [ 13 | '黑豹', 14 | '跳跳犬', 15 | '天邪鬼赤', 16 | '天邪鬼青', 17 | '天邪鬼绿', 18 | '天邪鬼黄', 19 | '涂壁', 20 | '帚神', 21 | '唐纸伞妖', 22 | '盗墓小鬼', 23 | '提灯小僧', 24 | '寄生魂', 25 | '赤舌', 26 | '灯笼鬼', 27 | '虫师', 28 | '小袖之手', 29 | '数珠', 30 | '兔丸', 31 | '椒图', 32 | '座敷童子', 33 | '雨女', 34 | '山兔', 35 | '独眼小僧', 36 | '兵俑', 37 | '狸猫', 38 | '莹草', 39 | '食发鬼', 40 | '古笼火', 41 | '丑时之女', 42 | '首无', 43 | '饿鬼', 44 | '武士之灵', 45 | '巫蛊师', 46 | '童女', 47 | '童男', 48 | '铁鼠', 49 | '跳跳妹妹', 50 | '跳跳弟弟', 51 | '蝴蝶精', 52 | '鲤鱼精', 53 | '九命猫', 54 | '管狐', 55 | '三尾狐', 56 | '青蛙瓷器', 57 | '觉', 58 | '山童', 59 | '鸦天狗', 60 | '河童', 61 | '络新妇', 62 | '猫掌柜', 63 | '薰', 64 | '弈', 65 | '日和坊', 66 | '追月神', 67 | '百目鬼', 68 | '书翁', 69 | '小松丸', 70 | '匣中少女', 71 | '鸩', 72 | '以津真天', 73 | '金鱼姬', 74 | '万年竹', 75 | '般若', 76 | '妖琴师', 77 | '镰鼬', 78 | '桃花妖', 79 | '吸血姬', 80 | '雪女', 81 | '惠比寿', 82 | '姑获鸟', 83 | '烟烟罗', 84 | '白童子', 85 | '黑童子', 86 | '夜叉', 87 | '青坊主', 88 | '樱花妖', 89 | '食梦貘', 90 | '判官', 91 | '孟婆', 92 | '傀儡师', 93 | '海坊主', 94 | '鬼使黑', 95 | '鬼使白', 96 | '骨女', 97 | '凤凰火', 98 | '二口女', 99 | '鬼女红叶', 100 | '妖狐', 101 | '白狼', 102 | '犬神', 103 | '清姬', 104 | '跳跳哥哥', 105 | '白藏主', 106 | '鬼切', 107 | '面灵气', 108 | '山风', 109 | '御馔津', 110 | '玉藻前', 111 | '雪童子', 112 | '彼岸花', 113 | '荒', 114 | '辉夜姬', 115 | '茨木童子', 116 | '一目连', 117 | '妖刀姬', 118 | '花鸟卷', 119 | '青行灯', 120 | '大天狗', 121 | '阎魔', 122 | '小鹿男', 123 | '酒吞童子', 124 | '荒川之主', 125 | '两面佛', 126 | '白达摩', 127 | '蓝达摩', 128 | '黑达摩', 129 | '红达摩', 130 | '秘券书童', 131 | '黑晴明', 132 | '八百比丘尼', 133 | '人面树', 134 | '化鲸', 135 | '久次良', 136 | '海忍', 137 | '鬼童丸', 138 | ] 139 | 140 | 141 | # 副本名称 142 | LEVEL_NAME_LIST = [ 143 | '探索副本第1章:天邪鬼绿1', 144 | '探索副本第1章:天邪鬼绿2', 145 | '探索副本第1章:提灯小僧1', 146 | '探索副本第1章:提灯小僧2', 147 | '探索副本第1章:首领', 148 | '探索副本第2章:帚神', 149 | '探索副本第2章:盗墓小鬼1', 150 | '探索副本第2章:盗墓小鬼2', 151 | '探索副本第2章:寄生魂1', 152 | '探索副本第2章:寄生魂2', 153 | '探索副本第2章:首领', 154 | '探索副本第3章:天邪鬼黄1', 155 | '探索副本第3章:天邪鬼黄2', 156 | '探索副本第3章:赤舌1', 157 | '探索副本第3章:赤舌2', 158 | '探索副本第3章:兵俑1', 159 | '探索副本第3章:兵俑2', 160 | '探索副本第3章:首领', 161 | '探索副本第4章:帚神1', 162 | '探索副本第4章:帚神2', 163 | '探索副本第4章:唐纸伞妖1', 164 | '探索副本第4章:唐纸伞妖2', 165 | '探索副本第4章:天邪鬼赤1', 166 | '探索副本第4章:天邪鬼赤2', 167 | '探索副本第4章:首领', 168 | '探索副本第5章:涂壁1', 169 | '探索副本第5章:涂壁2', 170 | '探索副本第5章:帚神1', 171 | '探索副本第5章:帚神2', 172 | '探索副本第5章:管狐1', 173 | '探索副本第5章:管狐2', 174 | '探索副本第5章:首领', 175 | '探索副本第6章:灯笼鬼1', 176 | '探索副本第6章:灯笼鬼2', 177 | '探索副本第6章:天邪鬼青1', 178 | '探索副本第6章:天邪鬼青2', 179 | '探索副本第6章:蝴蝶精1', 180 | '探索副本第6章:蝴蝶精2', 181 | '探索副本第6章:首领', 182 | '探索副本第7章:鲤鱼精1', 183 | '探索副本第7章:鲤鱼精2', 184 | '探索副本第7章:河童1', 185 | '探索副本第7章:河童2', 186 | '探索副本第7章:提灯小僧1', 187 | '探索副本第7章:提灯小僧2', 188 | '探索副本第7章:提灯小僧3', 189 | '探索副本第7章:首领', 190 | '探索副本第8章:唐纸伞妖1', 191 | '探索副本第8章:唐纸伞妖2', 192 | '探索副本第8章:樱花妖1', 193 | '探索副本第8章:樱花妖2', 194 | '探索副本第8章:天邪鬼绿1', 195 | '探索副本第8章:天邪鬼绿2', 196 | '探索副本第8章:首领', 197 | '探索副本第9章:提灯小僧1', 198 | '探索副本第9章:提灯小僧2', 199 | '探索副本第9章:铁鼠1', 200 | '探索副本第9章:铁鼠2', 201 | '探索副本第9章:山兔1', 202 | '探索副本第9章:山兔2', 203 | '探索副本第9章:首领', 204 | '探索副本第10章:丑时之女1', 205 | '探索副本第10章:丑时之女2', 206 | '探索副本第10章:傀儡师1', 207 | '探索副本第10章:傀儡师2', 208 | '探索副本第10章:觉1', 209 | '探索副本第10章:觉2', 210 | '探索副本第10章:首领', 211 | '探索副本第11章:武士之灵1', 212 | '探索副本第11章:武士之灵2', 213 | '探索副本第11章:独眼小僧1', 214 | '探索副本第11章:独眼小僧2', 215 | '探索副本第11章:饿鬼1', 216 | '探索副本第11章:饿鬼2', 217 | '探索副本第11章:首领', 218 | '探索副本第12章:海坊主1', 219 | '探索副本第12章:海坊主2', 220 | '探索副本第12章:童男1', 221 | '探索副本第12章:童男2', 222 | '探索副本第12章:童女1', 223 | '探索副本第12章:童女2', 224 | '探索副本第12章:首领', 225 | '探索副本第13章:饿鬼1', 226 | '探索副本第13章:饿鬼2', 227 | '探索副本第13章:饿鬼3', 228 | '探索副本第13章:唐纸伞妖1', 229 | '探索副本第13章:唐纸伞妖2', 230 | '探索副本第13章:唐纸伞妖3', 231 | '探索副本第13章:首领', 232 | '探索副本第14章:帚神1', 233 | '探索副本第14章:帚神2', 234 | '探索副本第14章:帚神3', 235 | '探索副本第14章:涂壁1', 236 | '探索副本第14章:涂壁2', 237 | '探索副本第14章:涂壁3', 238 | '探索副本第14章:首领', 239 | '探索副本第15章:天邪鬼绿1', 240 | '探索副本第15章:天邪鬼绿2', 241 | '探索副本第15章:天邪鬼绿3', 242 | '探索副本第15章:提灯小僧1', 243 | '探索副本第15章:提灯小僧2', 244 | '探索副本第15章:提灯小僧3', 245 | '探索副本第15章:首领', 246 | '探索副本第16章:饿鬼1', 247 | '探索副本第16章:饿鬼2', 248 | '探索副本第16章:饿鬼3', 249 | '探索副本第16章:赤舌1', 250 | '探索副本第16章:赤舌2', 251 | '探索副本第16章:赤舌3', 252 | '探索副本第16章:首领', 253 | '探索副本第17章:鸦天狗1', 254 | '探索副本第17章:鸦天狗2', 255 | '探索副本第17章:鸦天狗3', 256 | '探索副本第17章:狸猫1', 257 | '探索副本第17章:狸猫2', 258 | '探索副本第17章:狸猫3', 259 | '探索副本第17章:首领', 260 | '探索副本第18章:三尾狐1', 261 | '探索副本第18章:三尾狐2', 262 | '探索副本第18章:三尾狐3', 263 | '探索副本第18章:九命猫1', 264 | '探索副本第18章:九命猫2', 265 | '探索副本第18章:九命猫3', 266 | '探索副本第18章:首领', 267 | '探索副本第19章:清姬1', 268 | '探索副本第19章:清姬2', 269 | '探索副本第19章:络新妇1', 270 | '探索副本第19章:络新妇2', 271 | '探索副本第19章:二口女1', 272 | '探索副本第19章:二口女2', 273 | '探索副本第19章:二口女3', 274 | '探索副本第19章:首领', 275 | '探索副本第20章:般若1', 276 | '探索副本第20章:般若2', 277 | '探索副本第20章:般若3', 278 | '探索副本第20章:清姬1', 279 | '探索副本第20章:清姬2', 280 | '探索副本第20章:古笼火1', 281 | '探索副本第20章:古笼火2', 282 | '探索副本第20章:首领', 283 | '探索副本第21章:烟烟罗1', 284 | '探索副本第21章:烟烟罗2', 285 | '探索副本第21章:食发鬼1', 286 | '探索副本第21章:食发鬼2', 287 | '探索副本第21章:食发鬼3', 288 | '探索副本第21章:吸血姬1', 289 | '探索副本第21章:吸血姬2', 290 | '探索副本第21章:首领', 291 | '探索副本第22章:络新妇1', 292 | '探索副本第22章:络新妇2', 293 | '探索副本第22章:络新妇3', 294 | '探索副本第22章:青坊主1', 295 | '探索副本第22章:青坊主2', 296 | '探索副本第22章:二口女1', 297 | '探索副本第22章:二口女2', 298 | '探索副本第22章:首领', 299 | '探索副本第23章:孟婆1', 300 | '探索副本第23章:孟婆2', 301 | '探索副本第23章:孟婆3', 302 | '探索副本第23章:盗墓小鬼1', 303 | '探索副本第23章:盗墓小鬼2', 304 | '探索副本第23章:骨女1', 305 | '探索副本第23章:骨女2', 306 | '探索副本第23章:首领', 307 | '探索副本第24章:络新妇1', 308 | '探索副本第24章:络新妇2', 309 | '探索副本第24章:清姬1', 310 | '探索副本第24章:清姬2', 311 | '探索副本第24章:清姬3', 312 | '探索副本第24章:吸血姬1', 313 | '探索副本第24章:吸血姬2', 314 | '探索副本第24章:首领', 315 | '探索副本第25章:巫蛊师1', 316 | '探索副本第25章:巫蛊师2', 317 | '探索副本第25章:以津真天1', 318 | '探索副本第25章:以津真天2', 319 | '探索副本第25章:兵俑1', 320 | '探索副本第25章:兵俑2', 321 | '探索副本第25章:兵俑3', 322 | '探索副本第25章:首领', 323 | '探索副本第26章:百目鬼1', 324 | '探索副本第26章:百目鬼2', 325 | '探索副本第26章:百目鬼3', 326 | '探索副本第26章:觉1', 327 | '探索副本第26章:觉2', 328 | '探索副本第26章:首无1', 329 | '探索副本第26章:首无2', 330 | '探索副本第26章:首领', 331 | '探索副本第27章:金鱼姬1', 332 | '探索副本第27章:金鱼姬2', 333 | '探索副本第27章:鲤鱼精', 334 | '探索副本第27章:海坊主1', 335 | '探索副本第27章:海坊主2', 336 | '探索副本第27章:河童1', 337 | '探索副本第27章:河童2', 338 | '探索副本第27章:首领', 339 | '探索副本第28章:傀儡师1', 340 | '探索副本第28章:傀儡师2', 341 | '探索副本第28章:跳跳妹妹', 342 | '探索副本第28章:判官', 343 | '探索副本第28章:荒', 344 | '探索副本第28章:阎魔', 345 | '探索副本第28章:面灵气', 346 | '探索副本第28章:首领', 347 | '御魂第1层', 348 | '御魂第2层', 349 | '御魂第3层', 350 | '御魂第4层', 351 | '御魂第5层', 352 | '御魂第6层', 353 | '御魂第7层', 354 | '御魂第8层', 355 | '御魂第9层', 356 | '御魂第10层', 357 | '河畔童谣(河童)第1层', 358 | '河畔童谣(河童)第2层', 359 | '河畔童谣(河童)第3层', 360 | '河畔童谣(河童)第4层', 361 | '河畔童谣(河童)第5层', 362 | '河畔童谣(河童)第6层', 363 | '河畔童谣(河童)第7层', 364 | '河畔童谣(河童)第8层', 365 | '河畔童谣(河童)第9层', 366 | '河畔童谣(河童)第10层', 367 | '黄泉彼岸(彼岸花)第1层', 368 | '黄泉彼岸(彼岸花)第2层', 369 | '黄泉彼岸(彼岸花)第3层', 370 | '黄泉彼岸(彼岸花)第4层', 371 | '黄泉彼岸(彼岸花)第5层', 372 | '黄泉彼岸(彼岸花)第6层', 373 | '黄泉彼岸(彼岸花)第7层', 374 | '黄泉彼岸(彼岸花)第8层', 375 | '黄泉彼岸(彼岸花)第9层', 376 | '黄泉彼岸(彼岸花)第10层', 377 | '狐生百魅(妖狐)第1层', 378 | '狐生百魅(妖狐)第2层', 379 | '狐生百魅(妖狐)第3层', 380 | '狐生百魅(妖狐)第4层', 381 | '狐生百魅(妖狐)第5层', 382 | '狐生百魅(妖狐)第6层', 383 | '狐生百魅(妖狐)第7层', 384 | '狐生百魅(妖狐)第8层', 385 | '狐生百魅(妖狐)第9层', 386 | '狐生百魅(妖狐)第10层', 387 | '鲜血之月(吸血姬)第1层', 388 | '鲜血之月(吸血姬)第2层', 389 | '鲜血之月(吸血姬)第3层', 390 | '鲜血之月(吸血姬)第4层', 391 | '鲜血之月(吸血姬)第5层', 392 | '鲜血之月(吸血姬)第6层', 393 | '鲜血之月(吸血姬)第7层', 394 | '鲜血之月(吸血姬)第8层', 395 | '鲜血之月(吸血姬)第9层', 396 | '鲜血之月(吸血姬)第10层', 397 | '青灯百物语(青行灯)第1层', 398 | '青灯百物语(青行灯)第2层', 399 | '青灯百物语(青行灯)第3层', 400 | '青灯百物语(青行灯)第4层', 401 | '青灯百物语(青行灯)第5层', 402 | '青灯百物语(青行灯)第6层', 403 | '青灯百物语(青行灯)第7层', 404 | '青灯百物语(青行灯)第8层', 405 | '青灯百物语(青行灯)第9层', 406 | '青灯百物语(青行灯)第10层', 407 | '海怪的温柔(海坊主)第1层', 408 | '海怪的温柔(海坊主)第2层', 409 | '海怪的温柔(海坊主)第3层', 410 | '海怪的温柔(海坊主)第4层', 411 | '海怪的温柔(海坊主)第5层', 412 | '海怪的温柔(海坊主)第6层', 413 | '海怪的温柔(海坊主)第7层', 414 | '海怪的温柔(海坊主)第8层', 415 | '海怪的温柔(海坊主)第9层', 416 | '海怪的温柔(海坊主)第10层', 417 | '意志的觉醒(小鹿男)第1层', 418 | '意志的觉醒(小鹿男)第2层', 419 | '意志的觉醒(小鹿男)第3层', 420 | '意志的觉醒(小鹿男)第4层', 421 | '意志的觉醒(小鹿男)第5层', 422 | '意志的觉醒(小鹿男)第6层', 423 | '意志的觉醒(小鹿男)第7层', 424 | '意志的觉醒(小鹿男)第8层', 425 | '意志的觉醒(小鹿男)第9层', 426 | '意志的觉醒(小鹿男)第10层', 427 | '夏之风物诗(镰鼬)第1层', 428 | '夏之风物诗(镰鼬)第2层', 429 | '夏之风物诗(镰鼬)第3层', 430 | '夏之风物诗(镰鼬)第4层', 431 | '夏之风物诗(镰鼬)第5层', 432 | '夏之风物诗(镰鼬)第6层', 433 | '夏之风物诗(镰鼬)第7层', 434 | '夏之风物诗(镰鼬)第8层', 435 | '夏之风物诗(镰鼬)第9层', 436 | '夏之风物诗(镰鼬)第10层', 437 | '伞剑的守护(姑获鸟)第1层', 438 | '伞剑的守护(姑获鸟)第2层', 439 | '伞剑的守护(姑获鸟)第3层', 440 | '伞剑的守护(姑获鸟)第4层', 441 | '伞剑的守护(姑获鸟)第5层', 442 | '伞剑的守护(姑获鸟)第6层', 443 | '伞剑的守护(姑获鸟)第7层', 444 | '伞剑的守护(姑获鸟)第8层', 445 | '伞剑的守护(姑获鸟)第9层', 446 | '伞剑的守护(姑获鸟)第10层', 447 | '暴风之巅(大天狗)第1层', 448 | '暴风之巅(大天狗)第2层', 449 | '暴风之巅(大天狗)第3层', 450 | '暴风之巅(大天狗)第4层', 451 | '暴风之巅(大天狗)第5层', 452 | '暴风之巅(大天狗)第6层', 453 | '暴风之巅(大天狗)第7层', 454 | '暴风之巅(大天狗)第8层', 455 | '暴风之巅(大天狗)第9层', 456 | '暴风之巅(大天狗)第10层', 457 | '荒川之怒(荒川之主)第1层', 458 | '荒川之怒(荒川之主)第2层', 459 | '荒川之怒(荒川之主)第3层', 460 | '荒川之怒(荒川之主)第4层', 461 | '荒川之怒(荒川之主)第5层', 462 | '荒川之怒(荒川之主)第6层', 463 | '荒川之怒(荒川之主)第7层', 464 | '荒川之怒(荒川之主)第8层', 465 | '荒川之怒(荒川之主)第9层', 466 | '荒川之怒(荒川之主)第10层', 467 | '雨女的等候(雨女)第1层', 468 | '雨女的等候(雨女)第2层', 469 | '雨女的等候(雨女)第3层', 470 | '雨女的等候(雨女)第4层', 471 | '雨女的等候(雨女)第5层', 472 | '雨女的等候(雨女)第6层', 473 | '雨女的等候(雨女)第7层', 474 | '雨女的等候(雨女)第8层', 475 | '雨女的等候(雨女)第9层', 476 | '雨女的等候(雨女)第10层', 477 | '妖刀之秘籍(妖刀姬)第1层', 478 | '妖刀之秘籍(妖刀姬)第2层', 479 | '妖刀之秘籍(妖刀姬)第3层', 480 | '妖刀之秘籍(妖刀姬)第4层', 481 | '妖刀之秘籍(妖刀姬)第5层', 482 | '妖刀之秘籍(妖刀姬)第6层', 483 | '妖刀之秘籍(妖刀姬)第7层', 484 | '妖刀之秘籍(妖刀姬)第8层', 485 | '妖刀之秘籍(妖刀姬)第9层', 486 | '妖刀之秘籍(妖刀姬)第10层', 487 | '红叶的羁绊(鬼女红叶)第1层', 488 | '红叶的羁绊(鬼女红叶)第2层', 489 | '红叶的羁绊(鬼女红叶)第3层', 490 | '红叶的羁绊(鬼女红叶)第4层', 491 | '红叶的羁绊(鬼女红叶)第5层', 492 | '红叶的羁绊(鬼女红叶)第6层', 493 | '红叶的羁绊(鬼女红叶)第7层', 494 | '红叶的羁绊(鬼女红叶)第8层', 495 | '红叶的羁绊(鬼女红叶)第9层', 496 | '红叶的羁绊(鬼女红叶)第10层', 497 | '山兔大暴走(山兔)第1层', 498 | '山兔大暴走(山兔)第2层', 499 | '山兔大暴走(山兔)第3层', 500 | '山兔大暴走(山兔)第4层', 501 | '山兔大暴走(山兔)第5层', 502 | '山兔大暴走(山兔)第6层', 503 | '山兔大暴走(山兔)第7层', 504 | '山兔大暴走(山兔)第8层', 505 | '山兔大暴走(山兔)第9层', 506 | '山兔大暴走(山兔)第10层', 507 | '道成夙怨(清姬)第1层', 508 | '道成夙怨(清姬)第2层', 509 | '道成夙怨(清姬)第3层', 510 | '道成夙怨(清姬)第4层', 511 | '道成夙怨(清姬)第5层', 512 | '道成夙怨(清姬)第6层', 513 | '道成夙怨(清姬)第7层', 514 | '道成夙怨(清姬)第8层', 515 | '道成夙怨(清姬)第9层', 516 | '道成夙怨(清姬)第10层', 517 | '浪客远道(犬神)第1层', 518 | '浪客远道(犬神)第2层', 519 | '浪客远道(犬神)第3层', 520 | '浪客远道(犬神)第4层', 521 | '浪客远道(犬神)第5层', 522 | '浪客远道(犬神)第6层', 523 | '浪客远道(犬神)第7层', 524 | '浪客远道(犬神)第8层', 525 | '浪客远道(犬神)第9层', 526 | '浪客远道(犬神)第10层', 527 | '安梦奇缘(食梦貘)第1层', 528 | '安梦奇缘(食梦貘)第2层', 529 | '安梦奇缘(食梦貘)第3层', 530 | '安梦奇缘(食梦貘)第4层', 531 | '安梦奇缘(食梦貘)第5层', 532 | '安梦奇缘(食梦貘)第6层', 533 | '安梦奇缘(食梦貘)第7层', 534 | '安梦奇缘(食梦貘)第8层', 535 | '安梦奇缘(食梦貘)第9层', 536 | '安梦奇缘(食梦貘)第10层', 537 | '雪之回忆(雪童子)第1层', 538 | '雪之回忆(雪童子)第2层', 539 | '雪之回忆(雪童子)第3层', 540 | '雪之回忆(雪童子)第4层', 541 | '雪之回忆(雪童子)第5层', 542 | '雪之回忆(雪童子)第6层', 543 | '雪之回忆(雪童子)第7层', 544 | '雪之回忆(雪童子)第8层', 545 | '雪之回忆(雪童子)第9层', 546 | '雪之回忆(雪童子)第10层', 547 | '征服世界(金鱼姬)第1层', 548 | '征服世界(金鱼姬)第2层', 549 | '征服世界(金鱼姬)第3层', 550 | '征服世界(金鱼姬)第4层', 551 | '征服世界(金鱼姬)第5层', 552 | '征服世界(金鱼姬)第6层', 553 | '征服世界(金鱼姬)第7层', 554 | '征服世界(金鱼姬)第8层', 555 | '征服世界(金鱼姬)第9层', 556 | '征服世界(金鱼姬)第10层', 557 | '妖气封印(二口女)', 558 | '妖气封印(椒图)', 559 | '妖气封印(跳跳哥哥)', 560 | '妖气封印(骨女)', 561 | '妖气封印(饿鬼)', 562 | '妖气封印(海坊主)', 563 | '妖气封印(鬼使黑)', 564 | '妖气封印(小松丸)', 565 | '妖气封印(日和坊)', 566 | ] 567 | 568 | # 探索副本首领关联层数 569 | BOSS_LEVEL_LINK = { 570 | '探索副本第1章:首领': ['探索副本第1章:天邪鬼绿1', 571 | '探索副本第1章:天邪鬼绿2', 572 | '探索副本第1章:提灯小僧1', 573 | '探索副本第1章:提灯小僧2' 574 | ], 575 | '探索副本第2章:首领': ['探索副本第2章:帚神', 576 | '探索副本第2章:盗墓小鬼1', 577 | '探索副本第2章:盗墓小鬼2', 578 | '探索副本第2章:寄生魂1', 579 | '探索副本第2章:寄生魂2' 580 | ], 581 | '探索副本第3章:首领': ['探索副本第3章:天邪鬼黄1', 582 | '探索副本第3章:天邪鬼黄2', 583 | '探索副本第3章:赤舌1', 584 | '探索副本第3章:赤舌2', 585 | '探索副本第3章:兵俑1', 586 | '探索副本第3章:兵俑2' 587 | ], 588 | '探索副本第4章:首领': ['探索副本第4章:帚神1', 589 | '探索副本第4章:帚神2', 590 | '探索副本第4章:唐纸伞妖1', 591 | '探索副本第4章:唐纸伞妖2', 592 | '探索副本第4章:天邪鬼赤1', 593 | '探索副本第4章:天邪鬼赤2' 594 | ], 595 | '探索副本第5章:首领': ['探索副本第5章:涂壁1', 596 | '探索副本第5章:涂壁2', 597 | '探索副本第5章:帚神1', 598 | '探索副本第5章:帚神2', 599 | '探索副本第5章:管狐1', 600 | '探索副本第5章:管狐2' 601 | ], 602 | '探索副本第6章:首领': ['探索副本第6章:灯笼鬼1', 603 | '探索副本第6章:灯笼鬼2', 604 | '探索副本第6章:天邪鬼青1', 605 | '探索副本第6章:天邪鬼青2', 606 | '探索副本第6章:蝴蝶精1', 607 | '探索副本第6章:蝴蝶精2' 608 | ], 609 | '探索副本第7章:首领': ['探索副本第7章:鲤鱼精1', 610 | '探索副本第7章:鲤鱼精2', 611 | '探索副本第7章:河童1', 612 | '探索副本第7章:河童2', 613 | '探索副本第7章:提灯小僧1', 614 | '探索副本第7章:提灯小僧2', 615 | '探索副本第7章:提灯小僧3' 616 | ], 617 | '探索副本第8章:首领': ['探索副本第8章:唐纸伞妖1', 618 | '探索副本第8章:唐纸伞妖2', 619 | '探索副本第8章:樱花妖1', 620 | '探索副本第8章:樱花妖2', 621 | '探索副本第8章:天邪鬼绿1', 622 | '探索副本第8章:天邪鬼绿2' 623 | ], 624 | '探索副本第9章:首领': ['探索副本第9章:提灯小僧1', 625 | '探索副本第9章:提灯小僧2', 626 | '探索副本第9章:铁鼠1', 627 | '探索副本第9章:铁鼠2', 628 | '探索副本第9章:山兔1', 629 | '探索副本第9章:山兔2' 630 | ], 631 | '探索副本第10章:首领': ['探索副本第10章:丑时之女1', 632 | '探索副本第10章:丑时之女2', 633 | '探索副本第10章:傀儡师1', 634 | '探索副本第10章:傀儡师2', 635 | '探索副本第10章:觉1', 636 | '探索副本第10章:觉2' 637 | ], 638 | '探索副本第11章:首领': ['探索副本第11章:武士之灵1', 639 | '探索副本第11章:武士之灵2', 640 | '探索副本第11章:独眼小僧1', 641 | '探索副本第11章:独眼小僧2', 642 | '探索副本第11章:饿鬼1', 643 | '探索副本第11章:饿鬼2' 644 | ], 645 | '探索副本第12章:首领': ['探索副本第12章:海坊主1', 646 | '探索副本第12章:海坊主2', 647 | '探索副本第12章:童男1', 648 | '探索副本第12章:童男2', 649 | '探索副本第12章:童女1', 650 | '探索副本第12章:童女2' 651 | ], 652 | '探索副本第13章:首领': ['探索副本第13章:饿鬼1', 653 | '探索副本第13章:饿鬼2', 654 | '探索副本第13章:饿鬼3', 655 | '探索副本第13章:唐纸伞妖1', 656 | '探索副本第13章:唐纸伞妖2', 657 | '探索副本第13章:唐纸伞妖3' 658 | ], 659 | '探索副本第14章:首领': ['探索副本第14章:帚神1', 660 | '探索副本第14章:帚神2', 661 | '探索副本第14章:帚神3', 662 | '探索副本第14章:涂壁1', 663 | '探索副本第14章:涂壁2', 664 | '探索副本第14章:涂壁3' 665 | ], 666 | '探索副本第15章:首领': ['探索副本第15章:天邪鬼绿1', 667 | '探索副本第15章:天邪鬼绿2', 668 | '探索副本第15章:天邪鬼绿3', 669 | '探索副本第15章:提灯小僧1', 670 | '探索副本第15章:提灯小僧2', 671 | '探索副本第15章:提灯小僧3' 672 | ], 673 | '探索副本第16章:首领': ['探索副本第16章:饿鬼1', 674 | '探索副本第16章:饿鬼2', 675 | '探索副本第16章:饿鬼3', 676 | '探索副本第16章:赤舌1', 677 | '探索副本第16章:赤舌2', 678 | '探索副本第16章:赤舌3' 679 | ], 680 | '探索副本第17章:首领': ['探索副本第17章:鸦天狗1', 681 | '探索副本第17章:鸦天狗2', 682 | '探索副本第17章:鸦天狗3', 683 | '探索副本第17章:狸猫1', 684 | '探索副本第17章:狸猫2', 685 | '探索副本第17章:狸猫3' 686 | ], 687 | '探索副本第18章:首领': ['探索副本第18章:三尾狐1', 688 | '探索副本第18章:三尾狐2', 689 | '探索副本第18章:三尾狐3', 690 | '探索副本第18章:九命猫1', 691 | '探索副本第18章:九命猫2', 692 | '探索副本第18章:九命猫3' 693 | ], 694 | '探索副本第19章:首领': ['探索副本第19章:清姬1', 695 | '探索副本第19章:清姬2', 696 | '探索副本第19章:络新妇1', 697 | '探索副本第19章:络新妇2', 698 | '探索副本第19章:二口女1', 699 | '探索副本第19章:二口女2', 700 | '探索副本第19章:二口女3' 701 | ], 702 | '探索副本第20章:首领': ['探索副本第20章:般若1', 703 | '探索副本第20章:般若2', 704 | '探索副本第20章:般若3', 705 | '探索副本第20章:清姬1', 706 | '探索副本第20章:清姬2', 707 | '探索副本第20章:古笼火1', 708 | '探索副本第20章:古笼火2' 709 | ], 710 | '探索副本第21章:首领': ['探索副本第21章:烟烟罗1', 711 | '探索副本第21章:烟烟罗2', 712 | '探索副本第21章:食发鬼1', 713 | '探索副本第21章:食发鬼2', 714 | '探索副本第21章:食发鬼3', 715 | '探索副本第21章:吸血姬1', 716 | '探索副本第21章:吸血姬2' 717 | ], 718 | '探索副本第22章:首领': ['探索副本第22章:络新妇1', 719 | '探索副本第22章:络新妇2', 720 | '探索副本第22章:络新妇3', 721 | '探索副本第22章:青坊主1', 722 | '探索副本第22章:青坊主2', 723 | '探索副本第22章:二口女1', 724 | '探索副本第22章:二口女2' 725 | ], 726 | '探索副本第23章:首领': ['探索副本第23章:孟婆1', 727 | '探索副本第23章:孟婆2', 728 | '探索副本第23章:孟婆3', 729 | '探索副本第23章:盗墓小鬼1', 730 | '探索副本第23章:盗墓小鬼2', 731 | '探索副本第23章:骨女1', 732 | '探索副本第23章:骨女2' 733 | ], 734 | '探索副本第24章:首领': ['探索副本第24章:络新妇1', 735 | '探索副本第24章:络新妇2', 736 | '探索副本第24章:清姬1', 737 | '探索副本第24章:清姬2', 738 | '探索副本第24章:清姬3', 739 | '探索副本第24章:吸血姬1', 740 | '探索副本第24章:吸血姬2' 741 | ], 742 | '探索副本第25章:首领': ['探索副本第25章:巫蛊师1', 743 | '探索副本第25章:巫蛊师2', 744 | '探索副本第25章:以津真天1', 745 | '探索副本第25章:以津真天2', 746 | '探索副本第25章:兵俑1', 747 | '探索副本第25章:兵俑2', 748 | '探索副本第25章:兵俑3' 749 | ], 750 | '探索副本第26章:首领': ['探索副本第26章:百目鬼1', 751 | '探索副本第26章:百目鬼2', 752 | '探索副本第26章:百目鬼3', 753 | '探索副本第26章:觉1', 754 | '探索副本第26章:觉2', 755 | '探索副本第26章:首无1', 756 | '探索副本第26章:首无2' 757 | ], 758 | '探索副本第27章:首领': ['探索副本第27章:金鱼姬1', 759 | '探索副本第27章:金鱼姬2', 760 | '探索副本第27章:鲤鱼精', 761 | '探索副本第27章:海坊主1', 762 | '探索副本第27章:海坊主2', 763 | '探索副本第27章:河童1', 764 | '探索副本第27章:河童2' 765 | ], 766 | '探索副本第28章:首领': ['探索副本第28章:傀儡师1', 767 | '探索副本第28章:傀儡师2', 768 | '探索副本第28章:跳跳妹妹', 769 | '探索副本第28章:判官', 770 | '探索副本第28章:荒', 771 | '探索副本第28章:阎魔', 772 | '探索副本第28章:面灵气' 773 | ] 774 | } 775 | 776 | 777 | # 每层副本包含妖怪数 778 | # creeps in each level 779 | # {关卡类实例: ('妖怪名称', 妖怪数量)} 780 | # {YYSLevel.instance(): ('creep name', creep_num)} 781 | 782 | CREEP_IN_LEVEL = { 783 | '御魂第1层': [('三尾狐', 1), ('天邪鬼黄', 1), ('天邪鬼青', 1), ('山童', 1), ('涂壁', 1), ('独眼小僧', 1), ('天邪鬼赤', 2)], 784 | '御魂第2层': [('妖狐', 1), ('鲤鱼精', 1), ('河童', 1), ('吸血姬', 1), ('莹草', 1), ('兵俑', 1), ('童女', 2)], 785 | '御魂第3层': [('蝴蝶精', 1), ('青蛙瓷器', 1), ('桃花妖', 1), ('椒图', 1), ('海坊主', 1), ('鲤鱼精', 1), ('座敷童子', 2)], 786 | '御魂第4层': [('童男', 1), ('童女', 1), ('犬神', 1), ('鬼使白', 1), ('鬼使黑', 1), ('大天狗', 1), ('食梦貘', 2)], 787 | '御魂第5层': [('骨女', 1), ('丑时之女', 1), ('镰鼬', 1), ('独眼小僧', 1), ('跳跳哥哥', 1), ('傀儡师', 1), ('孟婆', 2)], 788 | '御魂第6层': [('孟婆', 1), ('座敷童子', 1), ('雨女', 1), ('鸦天狗', 1), ('巫蛊师', 1), ('阎魔', 1), ('骨女', 2)], 789 | '御魂第7层': [('丑时之女', 1), ('食发鬼', 1), ('凤凰火', 1), ('山兔', 1), ('妖琴师', 1), ('酒吞童子', 1), ('荒川之主', 2)], 790 | '御魂第8层': [('管狐', 1), ('判官', 1), ('饿鬼', 1), ('白狼', 1), ('椒图', 1), ('蝴蝶精', 1), ('茨木童子', 2)], 791 | '御魂第9层': [('椒图', 1), ('鲤鱼精', 1), ('莹草', 1), ('狸猫', 1), ('食梦貘', 1), ('清姬', 1), ('两面佛', 2)], 792 | '御魂第10层': [('二口女', 1), ('莹草', 1), ('觉', 1), ('椒图', 1), ('酒吞童子', 1), ('青行灯', 1), ('大天狗', 2)], 793 | '探索副本第1章:天邪鬼绿1': [('天邪鬼绿', 1), ('提灯小僧', 2)], 794 | '探索副本第1章:天邪鬼绿2': [('天邪鬼绿', 1), ('灯笼鬼', 2)], 795 | '探索副本第1章:提灯小僧1': [('提灯小僧', 1), ('天邪鬼绿', 2)], 796 | '探索副本第1章:提灯小僧2': [('提灯小僧', 1), ('灯笼鬼', 2)], 797 | '探索副本第1章:首领': [('九命猫', 3)], 798 | '探索副本第2章:帚神': [('帚神', 1), ('寄生魂', 1), ('盗墓小鬼', 1)], 799 | '探索副本第2章:盗墓小鬼1': [('寄生魂', 2), ('盗墓小鬼', 1)], 800 | '探索副本第2章:盗墓小鬼2': [('灯笼鬼', 2), ('盗墓小鬼', 1)], 801 | '探索副本第2章:寄生魂1': [('灯笼鬼', 2), ('寄生魂', 1)], 802 | '探索副本第2章:寄生魂2': [('盗墓小鬼', 2), ('寄生魂', 1)], 803 | '探索副本第2章:首领': [('座敷童子', 1), ('天邪鬼绿', 2), ('天邪鬼青', 1)], 804 | '探索副本第3章:天邪鬼黄1': [('天邪鬼黄', 1), ('帚神', 2 ), ('涂壁', 1)], 805 | '探索副本第3章:天邪鬼黄2': [('天邪鬼黄', 1), ('童女', 3)], 806 | '探索副本第3章:赤舌1': [('赤舌', 1), ('提灯小僧', 1), ('灯笼鬼', 2), ('鸦天狗', 1)], 807 | '探索副本第3章:赤舌2': [('赤舌', 1), ('天邪鬼黄', 1), ('童女', 2), ('鸦天狗', 1)], 808 | '探索副本第3章:兵俑1': [('兵俑', 1), ('提灯小僧', 1), ('童女', 2)], 809 | '探索副本第3章:兵俑2': [('兵俑', 1), ('提灯小僧', 1), ('灯笼鬼', 2)], 810 | '探索副本第3章:首领': [('凤凰火', 1), ('寄生魂', 3)], 811 | '探索副本第4章:帚神1': [('帚神', 1), ('涂壁', 2)], 812 | '探索副本第4章:帚神2': [('帚神', 1), ('涂壁', 1), ('唐纸伞妖', 2)], 813 | '探索副本第4章:唐纸伞妖1': [('唐纸伞妖', 1), ('天邪鬼赤', 3)], 814 | '探索副本第4章:唐纸伞妖2': [('唐纸伞妖', 1), ('天邪鬼赤', 1), ('涂壁', 2)], 815 | '探索副本第4章:天邪鬼赤1': [('天邪鬼赤', 1), ('涂壁', 3)], 816 | '探索副本第4章:天邪鬼赤2': [('天邪鬼赤', 1), ('唐纸伞妖', 2)], 817 | '探索副本第4章:首领': [('雨女', 1), ('青蛙瓷器', 1), ('帚神', 2)], 818 | '探索副本第5章:涂壁1': [('涂壁', 1), ('天邪鬼赤', 2)], 819 | '探索副本第5章:涂壁2': [('涂壁', 1), ('天邪鬼赤', 3)], 820 | '探索副本第5章:帚神1': [('帚神', 1), ('天邪鬼赤', 1), ('涂壁', 2)], 821 | '探索副本第5章:帚神2': [('帚神', 1), ('天邪鬼赤', 1), ('天邪鬼黄', 2)], 822 | '探索副本第5章:管狐1': [('管狐', 2), ('天邪鬼黄', 2), ('寄生魂', 1)], 823 | '探索副本第5章:管狐2': [('管狐', 1), ('天邪鬼绿', 3), ('寄生魂', 1)], 824 | '探索副本第5章:首领': [('食发鬼', 1), ('灯笼鬼', 1), ('天邪鬼青', 2)], 825 | '探索副本第6章:灯笼鬼1': [('灯笼鬼', 1), ('帚神', 3)], 826 | '探索副本第6章:灯笼鬼2': [('灯笼鬼', 1), ('帚神', 3)], 827 | '探索副本第6章:天邪鬼青1': [('天邪鬼青', 1), ('天邪鬼绿', 3)], 828 | '探索副本第6章:天邪鬼青2': [('天邪鬼青', 1), ('天邪鬼绿', 3)], 829 | '探索副本第6章:蝴蝶精1': [('蝴蝶精', 1), ('涂壁', 1), ('天邪鬼赤', 2), ('三尾狐', 1)], 830 | '探索副本第6章:蝴蝶精2': [('蝴蝶精', 1), ('涂壁', 1), ('天邪鬼赤', 2), ('三尾狐', 1)], 831 | '探索副本第6章:首领': [('巫蛊师', 1), ('天邪鬼绿', 3)], 832 | '探索副本第7章:鲤鱼精1': [('鲤鱼精', 3), ('帚神', 1)], 833 | '探索副本第7章:鲤鱼精2': [('鲤鱼精', 1), ('帚神', 3)], 834 | '探索副本第7章:河童1': [('河童', 1), ('鲤鱼精', 1), ('涂壁', 2)], 835 | '探索副本第7章:河童2': [('河童', 1), ('灯笼鬼', 1), ('跳跳犬', 2)], 836 | '探索副本第7章:提灯小僧1': [('提灯小僧', 1), ('跳跳犬', 3), ('管狐', 1)], 837 | '探索副本第7章:提灯小僧2': [('提灯小僧', 1), ('跳跳犬', 3), ('管狐', 1)], 838 | '探索副本第7章:提灯小僧3': [('提灯小僧', 1), ('跳跳犬', 1), ('鲤鱼精', 2), ('管狐', 1)], 839 | '探索副本第7章:首领': [('妖狐', 1), ('涂壁', 1), ('座敷童子', 2), ('管狐', 1), ('寄生魂', 1), ('天邪鬼赤', 2)], 840 | '探索副本第8章:唐纸伞妖1': [('唐纸伞妖', 1), ('帚神', 3)], 841 | '探索副本第8章:唐纸伞妖2': [('唐纸伞妖', 1), ('山童', 1), ('帚神', 2)], 842 | '探索副本第8章:樱花妖1': [('樱花妖', 1), ('帚神', 1), ('涂壁', 2), ('雪女', 1)], 843 | '探索副本第8章:樱花妖2': [('樱花妖', 1), ('涂壁', 3), ('雪女', 1)], 844 | '探索副本第8章:天邪鬼绿1': [('天邪鬼绿', 1), ('天邪鬼青', 1), ('天邪鬼黄', 2)], 845 | '探索副本第8章:天邪鬼绿2': [('天邪鬼绿', 1), ('天邪鬼青', 1), ('天邪鬼黄', 2)], 846 | '探索副本第8章:首领': [('桃花妖', 1), ('天邪鬼青', 1), ('提灯小僧', 2), ('樱花妖', 1), ('帚神', 1), ('蝴蝶精', 2)], 847 | '探索副本第9章:提灯小僧1': [('提灯小僧', 1), ('灯笼鬼', 3)], 848 | '探索副本第9章:提灯小僧2': [('提灯小僧', 1), ('灯笼鬼', 1), ('铁鼠', 2)], 849 | '探索副本第9章:铁鼠1': [('铁鼠', 1), ('帚神', 3)], 850 | '探索副本第9章:铁鼠2': [('铁鼠', 2), ('帚神', 2)], 851 | '探索副本第9章:山兔1': [('山兔', 3), ('铁鼠', 1), ('鸦天狗', 1)], 852 | '探索副本第9章:山兔2': [('山兔', 4), ('鸦天狗', 1)], 853 | '探索副本第9章:首领': [('孟婆', 2), ('饿鬼', 3), ('灯笼鬼', 1), ('鸦天狗', 2)], 854 | '探索副本第10章:丑时之女1': [('丑时之女', 1), ('傀儡师', 1), ('天邪鬼青', 2)], 855 | '探索副本第10章:丑时之女2': [('丑时之女', 1), ('傀儡师', 1), ('天邪鬼青', 2)], 856 | '探索副本第10章:傀儡师1': [('傀儡师', 1), ('觉', 1), ('狸猫', 2)], 857 | '探索副本第10章:傀儡师2': [('傀儡师', 1), ('觉', 1), ('座敷童子', 2), ('犬神', 1)], 858 | '探索副本第10章:觉1': [('觉', 1), ('狸猫', 3)], 859 | '探索副本第10章:觉2': [('觉', 1), ('赤舌', 1), ('座敷童子', 2), ('犬神', 1)], 860 | '探索副本第10章:首领': [('酒吞童子', 2), ('跳跳哥哥', 1), ('食发鬼', 2), ('兵俑', 1), ('骨女', 2)], 861 | '探索副本第11章:武士之灵1': [('武士之灵', 1), ('寄生魂', 3)], 862 | '探索副本第11章:武士之灵2': [('武士之灵', 1), ('独眼小僧', 3)], 863 | '探索副本第11章:独眼小僧1': [('独眼小僧', 2), ('涂壁', 1), ('天邪鬼赤', 2)], 864 | '探索副本第11章:独眼小僧2': [('独眼小僧', 2), ('管狐', 1), ('天邪鬼赤', 2)], 865 | '探索副本第11章:饿鬼1': [('饿鬼', 1), ('涂壁', 1), ('管狐', 2)], 866 | '探索副本第11章:饿鬼2': [('饿鬼', 3), ('管狐', 1)], 867 | '探索副本第11章:首领': [('鬼女红叶', 2), ('童女', 1), ('天邪鬼青', 2), ('骨女', 1), ('觉', 2)], 868 | '探索副本第12章:海坊主1': [('海坊主', 1), ('帚神', 1), ('涂壁', 2)], 869 | '探索副本第12章:海坊主2': [('海坊主', 1), ('涂壁', 1), ('鸦天狗', 2)], 870 | '探索副本第12章:童男1': [('童男', 1), ('天邪鬼黄', 1), ('鸦天狗', 2)], 871 | '探索副本第12章:童男2': [('童男', 1), ('童女', 1), ('鸦天狗', 2)], 872 | '探索副本第12章:童女1': [('童女', 1), ('盗墓小鬼', 1), ('提灯小僧', 2), ('雪女', 1)], 873 | '探索副本第12章:童女2': [('童女', 3), ('盗墓小鬼', 1), ('雪女', 1)], 874 | '探索副本第12章:首领': [('雪女', 2), ('寄生魂', 1), ('武士之灵', 2), ('跳跳妹妹', 1), ('跳跳哥哥', 2)], 875 | '探索副本第13章:饿鬼1': [('饿鬼', 1), ('天邪鬼赤', 3)], 876 | '探索副本第13章:饿鬼2': [('饿鬼', 1), ('天邪鬼赤', 3)], 877 | '探索副本第13章:饿鬼3': [('饿鬼', 1), ('天邪鬼赤', 3), ('首无', 1)], 878 | '探索副本第13章:唐纸伞妖1': [('唐纸伞妖', 1), ('天邪鬼赤', 1), ('天邪鬼绿', 2)], 879 | '探索副本第13章:唐纸伞妖2': [('唐纸伞妖', 1), ('天邪鬼赤', 1), ('天邪鬼绿', 2)], 880 | '探索副本第13章:唐纸伞妖3': [('唐纸伞妖', 1), ('天邪鬼赤', 1), ('天邪鬼绿', 2), ('首无', 1)], 881 | '探索副本第13章:首领': [('首无', 1), ('骨女', 1), ('山兔', 1), ('灯笼鬼', 1)], 882 | '探索副本第14章:帚神1': [('帚神', 1), ('天邪鬼赤', 3)], 883 | '探索副本第14章:帚神2': [('帚神', 1), ('天邪鬼赤', 3)], 884 | '探索副本第14章:帚神3': [('帚神', 1), ('天邪鬼赤', 3)], 885 | '探索副本第14章:涂壁1': [('涂壁', 6)], 886 | '探索副本第14章:涂壁2': [('涂壁', 6)], 887 | '探索副本第14章:涂壁3': [('涂壁', 6), ('食梦貘', 1)], 888 | '探索副本第14章:首领': [('食梦貘', 5), ('天邪鬼赤', 3)], 889 | '探索副本第15章:天邪鬼绿1': [('天邪鬼绿', 1), ('赤舌', 1), ('天邪鬼赤', 2)], 890 | '探索副本第15章:天邪鬼绿2': [('天邪鬼绿', 1), ('赤舌', 1), ('天邪鬼赤', 2)], 891 | '探索副本第15章:天邪鬼绿3': [('天邪鬼绿', 1), ('赤舌', 1), ('天邪鬼赤', 2)], 892 | '探索副本第15章:提灯小僧1': [('提灯小僧', 1), ('赤舌', 1), ('九命猫', 2)], 893 | '探索副本第15章:提灯小僧2': [('提灯小僧', 1), ('赤舌', 1), ('九命猫', 2)], 894 | '探索副本第15章:提灯小僧3': [('提灯小僧', 1), ('赤舌', 1), ('九命猫', 2), ('大天狗', 1)], 895 | '探索副本第15章:首领': [('跳跳妹妹', 1), ('九命猫', 3)], 896 | '探索副本第16章:饿鬼1': [('饿鬼', 1), ('山兔', 1), ('山童', 2)], 897 | '探索副本第16章:饿鬼2': [('饿鬼', 1), ('山兔', 1), ('山童', 2)], 898 | '探索副本第16章:饿鬼3': [('饿鬼', 1), ('山兔', 1), ('山童', 2)], 899 | '探索副本第16章:赤舌1': [('赤舌', 1), ('寄生魂', 3)], 900 | '探索副本第16章:赤舌2': [('赤舌', 1), ('寄生魂', 3)], 901 | '探索副本第16章:赤舌3': [('赤舌', 1), ('寄生魂', 3)], 902 | '探索副本第16章:首领': [('判官', 1), ('黑童子', 1), ('白童子', 1)], 903 | '探索副本第17章:鸦天狗1': [('鸦天狗', 1)], 904 | '探索副本第17章:鸦天狗2': [('鸦天狗', 1)], 905 | '探索副本第17章:鸦天狗3': [('鸦天狗', 1)], 906 | '探索副本第17章:狸猫1': [('狸猫', 1)], 907 | '探索副本第17章:狸猫2': [('狸猫', 1)], 908 | '探索副本第17章:狸猫3': [('狸猫', 1), ('凤凰火', 1)], 909 | '探索副本第17章:首领': [('荒川之主', 1), ('灯笼鬼', 1), ('骨女', 1), ('山兔', 1)], 910 | '探索副本第18章:三尾狐1': [('三尾狐', 2), ('九命猫', 2), ('大天狗', 1)], 911 | '探索副本第18章:三尾狐2': [('三尾狐', 2), ('九命猫', 2)], 912 | '探索副本第18章:三尾狐3': [('三尾狐', 2), ('九命猫', 2)], 913 | '探索副本第18章:九命猫1': [('九命猫', 6)], 914 | '探索副本第18章:九命猫2': [('九命猫', 6)], 915 | '探索副本第18章:九命猫3': [('九命猫', 6)], 916 | '探索副本第18章:首领': [('大天狗', 1), ('鸦天狗', 3)], 917 | '探索副本第19章:清姬1': [('清姬', 3), ('络新妇', 2), ('二口女', 1)], 918 | '探索副本第19章:清姬2': [('清姬', 1), ('二口女', 3)], 919 | '探索副本第19章:络新妇1': [('清姬', 3), ('络新妇', 3)], 920 | '探索副本第19章:络新妇2': [('清姬', 2), ('络新妇', 2)], 921 | '探索副本第19章:二口女1': [('络新妇', 4), ('二口女', 1)], 922 | '探索副本第19章:二口女2': [('二口女', 4)], 923 | '探索副本第19章:二口女3': [('二口女', 3), ('络新妇', 2), ('古笼火', 1)], 924 | '探索副本第19章:首领': [('清姬', 2), ('二口女', 1), ('八百比丘尼', 3)], 925 | '探索副本第20章:般若1': [('般若', 4)], 926 | '探索副本第20章:般若2': [('般若', 1), ('古笼火', 3), ('凤凰火', 1)], 927 | '探索副本第20章:般若3': [('古笼火', 3), ('清姬', 2), ('般若', 1)], 928 | '探索副本第20章:清姬1': [('清姬', 1), ('般若', 3)], 929 | '探索副本第20章:清姬2': [('清姬', 1), ('古笼火', 5)], 930 | '探索副本第20章:古笼火1': [('古笼火', 1), ('清姬', 1), ('二口女', 2)], 931 | '探索副本第20章:古笼火2': [('般若', 4), ('二口女', 1), ('古笼火', 1)], 932 | '探索副本第20章:首领': [('般若', 2), ('古笼火', 2), ('二口女', 1), ('妖刀姬', 1)], 933 | '探索副本第21章:烟烟罗1': [('烟烟罗', 1), ('武士之灵', 3)], 934 | '探索副本第21章:烟烟罗2': [('烟烟罗', 1), ('武士之灵', 2), ('兵俑', 1)], 935 | '探索副本第21章:食发鬼1': [('丑时之女', 3), ('食发鬼', 1)], 936 | '探索副本第21章:食发鬼2': [('丑时之女', 2), ('食发鬼', 1), ('兵俑', 1)], 937 | '探索副本第21章:食发鬼3': [('丑时之女', 2), ('食发鬼', 1), ('兵俑', 1)], 938 | '探索副本第21章:吸血姬1': [('跳跳弟弟', 3), ('吸血姬', 1), ('夜叉', 1)], 939 | '探索副本第21章:吸血姬2': [('跳跳弟弟', 2), ('武士之灵', 1), ('吸血姬', 1), ('夜叉', 1)], 940 | '探索副本第21章:首领': [('烟烟罗', 4), ('吸血姬', 2), ('莹草', 2)], 941 | '探索副本第22章:络新妇1': [('络新妇', 2), ('烟烟罗', 2), ('般若', 1)], 942 | '探索副本第22章:络新妇2': [('二口女', 1), ('烟烟罗', 2), ('络新妇', 1)], 943 | '探索副本第22章:络新妇3': [('二口女', 3), ('络新妇', 1)], 944 | '探索副本第22章:青坊主1': [('二口女', 2), ('烟烟罗', 1), ('青坊主', 1)], 945 | '探索副本第22章:青坊主2': [('般若', 3), ('青坊主', 1)], 946 | '探索副本第22章:二口女1': [('二口女', 3), ('烟烟罗', 1), ('络新妇', 1)], 947 | '探索副本第22章:二口女2': [('二口女', 2), ('烟烟罗', 2), ('青坊主', 1)], 948 | '探索副本第22章:首领': [('二口女', 2), ('般若', 1), ('酒吞童子', 1), ('椒图', 1), ('惠比寿', 1), ('络新妇', 1), ('吸血姬', 1)], 949 | '探索副本第23章:孟婆1': [('孟婆', 1), ('山兔', 3)], 950 | '探索副本第23章:孟婆2': [('孟婆', 1), ('山兔', 3)], 951 | '探索副本第23章:孟婆3': [('孟婆', 1), ('山兔', 3)], 952 | '探索副本第23章:盗墓小鬼1': [('座敷童子', 2), ('河童', 1), ('盗墓小鬼', 1)], 953 | '探索副本第23章:盗墓小鬼2': [('座敷童子', 2), ('河童', 1), ('盗墓小鬼', 1)], 954 | '探索副本第23章:骨女1': [('赤舌', 3), ('骨女', 1)], 955 | '探索副本第23章:骨女2': [('赤舌', 3), ('骨女', 1)], 956 | '探索副本第23章:首领': [('盗墓小鬼', 3), ('傀儡师', 2), ('莹草', 3)], 957 | '探索副本第24章:络新妇1': [('跳跳哥哥', 3), ('络新妇', 1)], 958 | '探索副本第24章:络新妇2': [('跳跳哥哥', 3), ('络新妇', 1)], 959 | '探索副本第24章:清姬1': [('鬼使黑', 2), ('鬼使白', 1), ('清姬', 1)], 960 | '探索副本第24章:清姬2': [('鬼使黑', 2), ('鬼使白', 1), ('清姬', 1)], 961 | '探索副本第24章:清姬3': [('鬼使黑', 2), ('鬼使白', 1), ('清姬', 2)], 962 | '探索副本第24章:吸血姬1': [('海坊主', 3), ('吸血姬', 1)], 963 | '探索副本第24章:吸血姬2': [('海坊主', 3), ('吸血姬', 1)], 964 | '探索副本第24章:首领': [('骨女', 1), ('络新妇', 1), ('鬼使白', 1), ('清姬', 1)], 965 | '探索副本第25章:巫蛊师1': [('般若', 2), ('九命猫', 1), ('巫蛊师', 1)], 966 | '探索副本第25章:巫蛊师2': [('武士之灵', 2), ('独眼小僧', 1), ('巫蛊师', 1)], 967 | '探索副本第25章:以津真天1': [('古笼火', 2), ('烟烟罗', 1), ('以津真天', 1)], 968 | '探索副本第25章:以津真天2': [('独眼小僧', 2), ('蝴蝶精', 1), ('以津真天', 1)], 969 | '探索副本第25章:兵俑1': [('山兔', 2), ('椒图', 1), ('兵俑', 1)], 970 | '探索副本第25章:兵俑2': [('山兔', 2), ('椒图', 1), ('兵俑', 1)], 971 | '探索副本第25章:兵俑3': [('鸦天狗', 3), ('兵俑', 1)], 972 | '探索副本第25章:首领': [('骨女', 1), ('清姬', 1), ('妖刀姬', 1), ('鸩', 1)], 973 | '探索副本第26章:百目鬼1': [('兔丸', 2), ('莹草', 1), ('百目鬼', 1)], 974 | '探索副本第26章:百目鬼2': [('兔丸', 2), ('莹草', 1), ('百目鬼', 1)], 975 | '探索副本第26章:百目鬼3': [('兔丸', 2), ('莹草', 1), ('百目鬼', 1)], 976 | '探索副本第26章:觉1': [('觉', 1), ('莹草', 1), ('虫师', 1), ('夜叉', 1)], 977 | '探索副本第26章:觉2': [('觉', 1), ('莹草', 1), ('虫师', 1), ('夜叉', 1)], 978 | '探索副本第26章:首无1': [('虫师', 2), ('寄生魂', 1), ('首无', 1)], 979 | '探索副本第26章:首无2': [('虫师', 2), ('寄生魂', 1), ('首无', 1)], 980 | '探索副本第26章:首领': [('万年竹', 1), ('追月神', 1), ('夜叉', 1), ('荒', 1)], 981 | '探索副本第27章:金鱼姬1': [('金鱼姬', 1), ('海坊主', 3)], 982 | '探索副本第27章:金鱼姬2': [('金鱼姬', 1), ('海坊主', 3)], 983 | '探索副本第27章:鲤鱼精': [('鲤鱼精', 1), ('河童', 3)], 984 | '探索副本第27章:海坊主1': [('海坊主', 1), ('傀儡师', 3)], 985 | '探索副本第27章:海坊主2': [('海坊主', 1), ('傀儡师', 3)], 986 | '探索副本第27章:河童1': [('河童', 1), ('鲤鱼精', 3)], 987 | '探索副本第27章:河童2': [('河童', 1), ('鲤鱼精', 3)], 988 | '探索副本第27章:首领': [('化鲸', 1), ('夜叉', 3)], 989 | '探索副本第28章:傀儡师1': [('傀儡师', 3), ('觉', 1)], 990 | '探索副本第28章:傀儡师2': [('傀儡师', 3), ('觉', 1)], 991 | '探索副本第28章:跳跳妹妹': [('跳跳妹妹', 1), ('跳跳犬', 3)], 992 | '探索副本第28章:判官': [('判官', 2), ('白童子', 1), ('黑童子', 1)], 993 | '探索副本第28章:荒': [('荒', 1), ('跳跳妹妹', 3)], 994 | '探索副本第28章:阎魔': [('阎魔', 1), ('鬼使黑', 2), ('黑童子', 1)], 995 | '探索副本第28章:面灵气': [('判官', 1), ('食发鬼', 1), ('清姬', 1), ('面灵气', 1)], 996 | '探索副本第28章:首领': [('鬼使白', 1), ('鬼使黑', 1), ('面灵气', 2)], 997 | '河畔童谣(河童)第1层': [('提灯小僧', 3), ('盗墓小鬼', 1), ('童男', 3), ('童女', 1), ('河童', 1), ('白达摩', 1), ('蓝达摩', 1), ('黑达摩', 1), ('红达摩', 1)], 998 | '河畔童谣(河童)第2层': [('提灯小僧', 3), ('盗墓小鬼', 1), ('山童', 3), ('独眼小僧', 1), ('河童', 1), ('黑童子', 1), ('白童子', 1), ('座敷童子', 1)], 999 | '河畔童谣(河童)第3层': [('武士之灵', 3), ('惠比寿', 1), ('食发鬼', 3), ('烟烟罗', 1), ('灯笼鬼', 2), ('赤舌', 1), ('河童', 1)], 1000 | '河畔童谣(河童)第4层': [('黑豹', 3), ('镰鼬', 1), ('觉', 3), ('萤草', 1), ('丑时之女', 2), ('兵俑', 1), ('河童', 1)], 1001 | '河畔童谣(河童)第5层': [('蝴蝶精', 2), ('鬼女红叶', 1), ('天邪鬼黄', 1), ('妖琴师', 2), ('山兔', 1), ('孟婆', 1), ('樱花妖', 1), ('桃花妖', 1), ('凤凰火', 1), ('河童', 1)], 1002 | '河畔童谣(河童)第6层': [('鬼使黑', 3), ('鬼使白', 1), ('古笼火', 3), ('座敷童子', 1), ('天邪鬼赤', 1), ('天邪鬼黄', 1), ('天邪鬼青', 1), ('天邪鬼绿', 1), ('河童', 1)], 1003 | '河畔童谣(河童)第7层': [('管狐', 3), ('青行灯', 1), ('首无', 3), ('茨木童子', 1), ('雨女', 1), ('食梦貘', 1), ('判官', 1), ('河童', 1)], 1004 | '河畔童谣(河童)第8层': [('青坊主', 3), ('海坊主', 1), ('荒川之主', 1), ('鲤鱼精', 1), ('吸血姬', 2), ('椒图', 1), ('河童', 1), ('海坊主', 2), ('鲤鱼精', 1), ('椒图', 1), ('荒川之主', 1)], 1005 | '河畔童谣(河童)第9层': [('青蛙瓷器', 3), ('雨女', 1), ('鲤鱼精', 1), ('跳跳妹妹', 1), ('萤草', 1), ('妖刀姬', 1), ('妖狐', 1), ('河童', 1), ('鸦天狗', 2), ('大天狗', 1), ('鲤鱼精', 1), ('阎魔', 1)], 1006 | '河畔童谣(河童)第10层': [('萤草', 3), ('兵俑', 1), ('小鹿男', 2), ('桃花妖', 2), ('椒图', 1), ('跳跳弟弟', 1), ('河童', 1), ('樱花妖', 1), ('鲤鱼精', 1), ('妖狐', 1), ('椒图', 1), ('花鸟卷', 1)], 1007 | '狐生百魅(妖狐)第1层': [('提灯小僧', 1), ('灯笼鬼', 3), ('天邪鬼绿', 1), ('天邪鬼红', 3), ('妖狐', 1), ('涂壁', 3)], 1008 | '狐生百魅(妖狐)第2层': [('赤舌', 1), ('盗墓小鬼', 3), ('武士之灵', 1), ('寄生魂', 3), ('妖狐', 1), ('蝴蝶精', 1), ('食发鬼', 1), ('独眼小僧', 1)], 1009 | '狐生百魅(妖狐)第3层': [('鸦天狗', 1), ('唐纸伞妖', 3), ('跳跳妹妹', 1), ('跳跳弟弟', 3), ('妖狐', 1), ('小袖之手', 1), ('兔丸', 2)], 1010 | '狐生百魅(妖狐)第4层': [('雨女', 1), ('帚神', 3), ('青蛙瓷器', 1), ('天邪鬼黄', 2), ('首无', 1), ('妖狐', 1), ('山童', 4)], 1011 | '狐生百魅(妖狐)第5层': [('跳跳妹妹', 1), ('天邪鬼青', 3), ('鲤鱼精', 1), ('狸猫', 2), ('天邪鬼红', 1), ('天邪鬼黄', 1), ('妖狐', 1), ('九命猫', 2), ('三尾狐', 2)], 1012 | '狐生百魅(妖狐)第6层': [('兵俑', 1), ('狸猫', 3), ('山兔', 1), ('莹草', 2), ('丑时之女', 2), ('妖狐', 1), ('管狐', 3), ('饿鬼', 2)], 1013 | '狐生百魅(妖狐)第7层': [('座敷童子', 1), ('椒图', 1), ('铁鼠', 1), ('山童', 2), ('童男', 1), ('童女', 2), ('河童', 2), ('妖狐', 1), ('妖琴师', 1), ('座敷童子', 1), ('姑获鸟', 1), ('雪女', 1), ('桃花妖', 1)], 1014 | '狐生百魅(妖狐)第8层': [('白童子', 1), ('黑童子', 4), ('犬神', 1), ('般若', 1), ('樱花妖', 1), ('络新妇', 1), ('二口女', 2), ('妖狐', 1), ('傀儡师', 2), ('鬼女红叶', 2), ('骨女', 1)], 1015 | '狐生百魅(妖狐)第9层': [('御馔津', 1), ('山兔', 5), ('书翁', 1), ('小松丸', 2), ('兔丸', 2), ('以津真天', 1), ('妖狐', 1), ('百目鬼', 1), ('跳跳弟弟', 1), ('丑时之女', 1), ('妖刀姬', 1), ('食梦馍', 1)], 1016 | '狐生百魅(妖狐)第10层': [('跳跳妹妹', 1), ('跳跳哥哥', 5), ('孟婆', 1), ('姑获鸟', 1), ('烟烟罗', 1), ('小袖之手', 1), ('青蛙瓷器', 1), ('妖琴师', 1), ('妖狐', 1), ('海坊主', 1), ('御馔津', 1), ('兵俑', 1), ('般若', 1), ('黑童子', 1)], 1017 | '鲜血之月(吸血姬)第1层': [('盗墓小鬼', 3), ('赤舌', 1), ('涂壁', 3), ('武士之灵', 1), ('寄生魂', 3), ('吸血姬', 1)], 1018 | '鲜血之月(吸血姬)第2层': [('灯笼鬼', 3), ('古笼火', 1), ('帚神', 3), ('巫蛊师', 1), ('提灯小僧', 3), ('吸血姬', 1)], 1019 | '鲜血之月(吸血姬)第3层': [('天邪鬼绿', 3), ('河童', 1), ('天邪鬼黄', 3), ('狸猫', 1), ('天邪鬼青', 2), ('天邪鬼赤', 1), ('吸血姬', 1)], 1020 | '鲜血之月(吸血姬)第4层': [('赤舌', 3), ('食发鬼', 1), ('觉', 2), ('丑时之女', 1), ('管狐', 1), ('九命猫', 4), ('吸血姬', 1)], 1021 | '鲜血之月(吸血姬)第5层': [('跳跳犬', 3), ('犬神', 1), ('鸩', 2), ('清姬', 2), ('以津真天', 1), ('傀儡师', 2), ('三尾狐', 2), ('吸血姬', 1)], 1022 | '鲜血之月(吸血姬)第6层': [('管狐', 3), ('妖狐', 1), ('小松丸', 2), ('二口女', 2), ('弈', 1), ('跳跳妹妹', 2), ('跳跳弟弟', 2), ('跳跳哥哥', 1), ('吸血姬', 1)], 1023 | '鲜血之月(吸血姬)第7层': [('海坊主', 2), ('夜叉', 2), ('金鱼姬', 1), ('武士之灵', 2), ('骨女', 2), ('兵俑', 1), ('椒图', 1), ('饿鬼', 2), ('鸦天狗', 2), ('吸血姬', 1)], 1024 | '鲜血之月(吸血姬)第8层': [('孟婆', 2), ('烟烟罗', 2), ('雪童子', 1), ('般若', 1), ('鬼女红叶', 2), ('络新妇', 2), ('青行灯', 1), ('黑童子', 2), ('小鹿男', 2), ('匣中少女', 1), ('吸血姬', 1)], 1025 | '鲜血之月(吸血姬)第9层': [('奕', 5), ('妖琴师', 1), ('鬼使白', 2), ('清姬', 2), ('金鱼姬', 1), ('数珠', 1), ('花鸟卷', 1), ('跳跳弟弟', 1), ('椒图', 1), ('荒川之主', 1), ('万年竹', 1), ('吸血姬', 1)], 1026 | '鲜血之月(吸血姬)第10层': [('青蛙瓷器', 5), ('童男', 1), ('鬼使白', 1), ('鬼使黑', 1), ('黑童子', 1), ('白童子', 1), ('判官', 1), ('阎魔', 1), ('鸩', 1), ('日和坊', 1), ('山风', 1), ('樱花妖', 1), ('雪童子', 1), ('吸血姬', 1)], 1027 | '青灯百物语(青行灯)第1层': [('跳跳犬', 3), ('赤舌', 1), ('涂壁', 1), ('寄生魂', 1), ('灯笼鬼', 3), ('青行灯', 1)], 1028 | '青灯百物语(青行灯)第2层': [('唐纸伞妖', 3), ('提灯小僧', 1), ('帚神', 3), ('鸦天狗', 1), ('狸猫', 2), ('巫蛊师', 1), ('青行灯', 1)], 1029 | '青灯百物语(青行灯)第3层': [('赤舌', 3), ('三尾狐', 1), ('童男', 3), ('童女', 1), ('古笼火', 2), ('数珠', 1), ('青行灯', 1)], 1030 | '青灯百物语(青行灯)第4层': [('天邪鬼黄', 3), ('食发鬼', 1), ('天邪鬼青', 2), ('丑时之女', 1), ('兵俑', 1), ('觉', 4), ('青行灯', 1)], 1031 | '青灯百物语(青行灯)第5层': [('提灯小僧', 3), ('跳跳弟弟', 1), ('天邪鬼绿', 2), ('饿鬼', 2), ('独眼小僧', 1), ('青蛙瓷器', 2), ('蝴蝶精', 2), ('青行灯', 1)], 1032 | '青灯百物语(青行灯)第6层': [('跳跳哥哥', 3), ('首无', 1), ('古笼火', 2), ('管狐', 2), ('山童', 1), ('兔丸', 3), ('鲤鱼精', 2), ('青行灯', 1)], 1033 | '青灯百物语(青行灯)第7层': [('觉', 2), ('山兔', 2), ('莹草', 1), ('首无', 2), ('山童', 2), ('椒图', 1), ('青坊主', 2), ('妖琴师', 2), ('姑获鸟', 1), ('青行灯', 1)], 1034 | '青灯百物语(青行灯)第8层': [('古笼火', 2), ('鬼使黑', 1), ('鬼使白', 1), ('书翁', 1), ('食梦貘', 1), ('白狼', 1), ('桃花妖', 1), ('二口女', 1), ('镰鼬', 1), ('万年竹', 1), ('姑获鸟', 1), ('日和坊', 1), ('鸩', 1), ('白童子', 1), ('两面佛', 1), ('青行灯', 1)], 1035 | '青灯百物语(青行灯)第9层': [('山童', 2), ('惠比寿', 1), ('孟婆', 1), ('万年竹', 1), ('小松丸', 1), ('金鱼姬', 1), ('凤凰火', 1), ('雨女', 1), ('烟烟罗', 1), ('青坊主', 1), ('妖狐', 1), ('日和坊', 1), ('百目鬼', 1), ('般若', 1), ('椒图', 1), ('大天狗', 1), ('青行灯', 1)], 1036 | '青灯百物语(青行灯)第10层': [('食发鬼', 1), ('蝴蝶精', 1), ('吸血姬', 1), ('孟婆', 1), ('骨女', 1), ('犬神', 1), ('清姬', 1), ('以津真天', 1), ('妖琴师', 1), ('丑时之女', 1), ('青坊主', 1), ('金鱼姬', 1), ('日和坊', 1), ('椒图', 1), ('般若', 1), ('大天狗', 1), ('荒', 1), ('青行灯', 1)], 1037 | '海怪的温柔(海坊主)第1层': [('提灯小僧', 1), ('灯笼鬼', 3), ('涂壁', 1), ('帚神', 3), ('海坊主', 1), ('天邪鬼赤', 1), ('天邪鬼黄', 2)], 1038 | '海怪的温柔(海坊主)第2层': [('唐纸伞妖', 1), ('跳跳犬', 3), ('饿鬼', 1), ('寄生魂', 3), ('海坊主', 1), ('椒图', 1), ('座敷童子', 2)], 1039 | '海怪的温柔(海坊主)第3层': [('河童', 5), ('盗墓小鬼', 3), ('鲤鱼精', 1), ('赤舌', 2), ('海坊主', 1)], 1040 | '海怪的温柔(海坊主)第4层': [('武士之灵', 1), ('唐纸伞妖', 4), ('河童', 1), ('狸猫', 1), ('提灯小僧', 2), ('鲤鱼精', 4), ('海坊主', 1)], 1041 | '海怪的温柔(海坊主)第5层': [('雨女', 3), ('天邪鬼绿', 1), ('天邪鬼黄', 1), ('天邪鬼青', 1), ('鸦天狗', 1), ('天邪鬼赤', 2), ('河童', 5), ('海坊主', 1)], 1042 | '海怪的温柔(海坊主)第6层': [('九命猫', 1), ('首无', 1), ('铁鼠', 1), ('丑时之女', 1), ('管狐', 1), ('三尾狐', 2), ('山童', 2), ('河童', 3), ('鲤鱼精', 2), ('海坊主', 1)], 1043 | '海怪的温柔(海坊主)第7层': [('兵俑', 1), ('跳跳弟弟', 2), ('跳跳妹妹', 2), ('夜叉', 4), ('河童', 2), ('雨女', 2), ('金鱼姬', 1), ('鲤鱼精', 1), ('海坊主', 1)], 1044 | '海怪的温柔(海坊主)第8层': [('夜叉', 1), ('童男', 1), ('童女', 1), ('河童', 1), ('首无', 1), ('鲤鱼精', 1), ('蝴蝶精', 1), ('金鱼姬', 1), ('武士之灵', 1), ('莹草', 2), ('海坊主', 2)], 1045 | '海怪的温柔(海坊主)第9层': [('河童', 1), ('兔丸', 2), ('鸦天狗', 3), ('鲤鱼精', 1), ('清姬', 2), ('鸩', 2), ('判官', 1)], 1046 | '海怪的温柔(海坊主)第10层': [('河童', 1), ('金鱼姬', 1), ('雨女', 2), ('管狐', 2), ('夜叉', 1), ('镰鼬', 1), ('妖琴师', 1), ('青坊主', 1), ('凤凰火', 1), ('匣中少女', 1), ('樱花妖', 1), ('黑童子', 3), ('海坊主', 1)], 1047 | '意志的觉醒(小鹿男)第1层': [('天邪鬼黄', 3), ('帚神', 1), ('唐纸伞妖', 3), ('提灯小僧', 1), ('小鹿男', 1), ('兵俑', 1), ('盗墓小鬼', 2)], 1048 | '意志的觉醒(小鹿男)第2层': [('天邪鬼青', 3), ('寄生魂', 1), ('灯笼鬼', 3), ('古笼火', 1), ('小鹿男', 1), ('鲤鱼精', 1), ('河童', 2)], 1049 | '意志的觉醒(小鹿男)第3层': [('天邪鬼绿', 3), ('觉', 1), ('天邪鬼赤', 3), ('跳跳妹妹', 1), ('小鹿男', 1), ('莹草', 1), ('蝴蝶精', 1), ('独眼小僧', 1)], 1050 | '意志的觉醒(小鹿男)第4层': [('赤舌', 3), ('食发鬼', 1), ('帚神', 3), ('兔丸', 1), ('小鹿男', 1), ('莹草', 1), ('跳跳弟弟', 2)], 1051 | '意志的觉醒(小鹿男)第5层': [('提灯小僧', 3), ('食发鬼', 1), ('山童', 3), ('兔丸', 1), ('小鹿男', 1), ('跳跳妹妹', 1), ('莹草', 1), ('白童子', 1), ('小僧', 1), ('跳跳弟弟', 1)], 1052 | '意志的觉醒(小鹿男)第6层': [('食发鬼', 4), ('兔丸', 4), ('小鹿男', 1), ('天邪鬼赤', 1), ('大天狗', 1), ('雪女', 1), ('匣中少女', 1), ('莹草', 1)], 1053 | '意志的觉醒(小鹿男)第7层': [('食梦貘', 1), ('食发鬼', 3), ('傀儡师', 1), ('兔丸', 3), ('小鹿男', 1), ('莹草', 1), ('白狼', 1), ('妖刀姬', 1), ('黑童子', 1), ('书翁', 1)], 1054 | '意志的觉醒(小鹿男)第8层': [('烟烟罗', 1), ('食发鬼', 3), ('万年竹', 1), ('海坊主', 2), ('兔丸', 2), ('兵俑', 1), ('小鹿男', 1), ('彼岸花', 1), ('跳跳弟弟', 1), ('鲤鱼精', 1), ('兵俑', 1), ('莹草​', 1)], 1055 | '意志的觉醒(小鹿男)第9层': [('烟烟罗', 1), ('姑获鸟', 1), ('食发鬼', 2), ('孟婆', 2), ('阎魔', 1), ('白童子', 1), ('兔丸', 1), ('判官', 1), ('山兔', 1), ('黑童子', 1), ('小鹿男', 1), ('金鱼姬', 1), ('跳跳哥哥', 1), ('莹草', 1), ('荒', 1), ('小松丸​', 1)], 1056 | '意志的觉醒(小鹿男)第10层': [('烟烟罗', 1), ('姑获鸟', 2), ('食发鬼', 2), ('白童子', 2), ('妖琴师', 1), ('蝴蝶精', 1), ('山兔', 1), ('小僧', 1), ('兔丸', 1), ('小鹿男', 5)], 1057 | '夏之风物诗(镰鼬)第1层': [('蝴蝶精', 1), ('提灯小僧', 3), ('鬼使白', 1), ('青姬', 3), ('镰鼬', 1), ('赤舌', 3)], 1058 | '夏之风物诗(镰鼬)第2层': [('食发鬼', 1), ('天邪鬼赤', 3), ('鬼使黑', 1), ('古笼火', 3), ('镰鼬', 1), ('管狐', 3)], 1059 | '夏之风物诗(镰鼬)第3层': [('觉', 1), ('盗墓小鬼', 3), ('孟婆', 1), ('巫蛊师', 3), ('镰鼬', 1), ('烟烟罗', 3)], 1060 | '夏之风物诗(镰鼬)第4层': [('山童', 1), ('天邪鬼青', 3), ('青蛙瓷器', 1), ('帚神', 3), ('镰鼬', 1), ('骨女', 2), ('九命猫', 2)], 1061 | '夏之风物诗(镰鼬)第5层': [('独眼小僧', 1), ('鸦天狗', 3), ('白狼', 1), ('鲤鱼精', 2), ('灯笼鬼', 2), ('镰鼬', 1), ('青行灯', 4)], 1062 | '夏之风物诗(镰鼬)第6层': [('赤舌', 1), ('三尾狐', 3), ('跳跳妹妹', 1), ('小松丸', 2), ('夜叉', 2), ('镰鼬', 1), ('鸩', 5)], 1063 | '夏之风物诗(镰鼬)第7层': [('妖琴师', 1), ('跳跳弟弟', 2), ('络新妇', 2), ('跳跳哥哥', 1), ('鬼女红叶', 2), ('以津真天', 2), ('镰鼬', 2), ('河童', 4)], 1064 | '夏之风物诗(镰鼬)第8层': [('金鱼姬', 1), ('狸猫', 2), ('判官', 2), ('椒图', 1), ('萤草', 5), ('镰鼬', 1), ('二口女', 5)], 1065 | '夏之风物诗(镰鼬)第9层': [('以津真天', 1), ('妖狐', 3), ('鲤鱼精', 2), ('万年竹', 1), ('鸦天狗', 3), ('姑获鸟', 2), ('彼岸花', 1), ('白达摩', 1), ('犬神', 1), ('独眼小僧', 1), ('万年竹', 1)], 1066 | '夏之风物诗(镰鼬)第10层': [('花鸟卷', 1), ('跳跳弟弟', 2), ('海坊主', 3), ('阎魔', 1), ('黑童子', 1), ('童女', 2), ('童男', 2), ('镰鼬', 3), ('小鹿男', 3)], 1067 | '伞剑的守护(姑获鸟)第1层': [('涂壁', 1), ('帚神', 3), ('蝴蝶精', 1), ('觉', 3), ('姑获鸟', 1), ('红达摩', 1), ('白达摩', 1), ('黑达摩', 1)], 1068 | '伞剑的守护(姑获鸟)第2层': [('涂壁', 1), ('帚神', 3), ('蝴蝶精', 1), ('觉', 3), ('姑获鸟', 1), ('唐纸伞妖', 3)], 1069 | '伞剑的守护(姑获鸟)第3层': [('涂壁', 1), ('帚神', 3), ('蝴蝶精', 1), ('觉', 3), ('姑获鸟', 1), ('童男', 1), ('童女', 1), ('鸦天狗', 2)], 1070 | '伞剑的守护(姑获鸟)第4层': [('天邪鬼青', 1), ('盗墓小鬼', 3), ('跳跳哥哥', 1), ('跳跳妹妹', 1), ('跳跳弟弟', 2), ('姑获鸟', 1), ('凤凰火', 1), ('大天狗', 1), ('以津真天', 1), ('鸩', 1)], 1071 | '伞剑的守护(姑获鸟)第5层': [('天邪鬼青', 1), ('盗墓小鬼', 3), ('跳跳哥哥', 1), ('跳跳妹妹', 1), ('跳跳弟弟', 2), ('姑获鸟', 2), ('天邪鬼黄', 1), ('白狼', 1), ('萤草', 1), ('灯笼鬼', 1)], 1072 | '伞剑的守护(姑获鸟)第6层': [('天邪鬼青', 1), ('盗墓小鬼', 3), ('跳跳哥哥', 1), ('跳跳妹妹', 1), ('跳跳弟弟', 2), ('姑获鸟', 1), ('鸩', 1), ('鬼使白', 1), ('樱花妖', 1), ('跳跳弟弟', 1), ('清姬', 1)], 1073 | '伞剑的守护(姑获鸟)第7层': [('萤草', 1), ('孟婆', 1), ('白狼', 2), ('凤凰火', 1), ('判官', 3), ('姑获鸟', 5), ('灯笼鬼', 1)], 1074 | '伞剑的守护(姑获鸟)第8层': [('萤草', 1), ('白狼', 2), ('孟婆', 2), ('凤凰火', 1), ('判官', 2), ('络新妇', 2), ('姑获鸟', 2), ('酒吞童子', 2), ('桃花妖', 2), ('灯笼鬼', 1)], 1075 | '伞剑的守护(姑获鸟)第9层': [('萤草', 1), ('白狼', 2), ('孟婆', 3), ('凤凰火', 1), ('判官', 2), ('络新妇', 3), ('姑获鸟', 2), ('九命猫', 2), ('桃花妖', 1), ('灯笼鬼', 1), ('镰鼬', 1)], 1076 | '伞剑的守护(姑获鸟)第10层': [('萤草', 1), ('白狼', 2), ('孟婆', 3), ('凤凰火', 1), ('判官', 2), ('络新妇', 3), ('姑获鸟', 2), ('吸血姬', 2), ('一目连', 1), ('黑童子', 1)], 1077 | '暴风之巅(大天狗)第1层': [('帚神', 4), ('三尾狐', 4), ('首无', 3), ('大天狗', 1)], 1078 | '暴风之巅(大天狗)第2层': [('帚神', 3), ('天邪鬼黄', 1), ('三尾狐', 4), ('狸猫', 3), ('大天狗', 1)], 1079 | '暴风之巅(大天狗)第3层': [('帚神', 3), ('青蛙瓷器', 1), ('三尾狐', 4), ('山童', 3), ('大天狗', 1)], 1080 | '暴风之巅(大天狗)第4层': [('帚神', 3), ('椒图', 1), ('三尾狐', 4), ('御行达摩', 4), ('独眼小僧', 1), ('大天狗', 1)], 1081 | '暴风之巅(大天狗)第5层': [('帚神', 3), ('椒图', 1), ('三尾狐', 3), ('秘券书童', 1), ('鸦天狗', 4), ('雪女', 1), ('大天狗', 1)], 1082 | '暴风之巅(大天狗)第6层': [('帚神', 3), ('金鱼姬', 1), ('三尾狐', 3), ('秘券书童', 1), ('清姬', 2), ('鬼使白', 2), ('跳跳弟弟', 1)], 1083 | '暴风之巅(大天狗)第7层': [('帚神', 3), ('金鱼姬', 1), ('镰鼬', 1), ('夜叉', 5), ('萤草', 4), ('雨女', 1), ('大天狗', 1)], 1084 | '暴风之巅(大天狗)第8层': [('童男', 1), ('帚神', 3), ('大天狗', 2), ('妖狐', 5), ('桃花妖', 5)], 1085 | '暴风之巅(大天狗)第9层': [('童男', 1), ('帚神', 3), ('大天狗', 2), ('三尾狐', 1), ('酒吞童子', 1), ('黑晴明', 1), ('雪女', 1)], 1086 | '暴风之巅(大天狗)第10层': [('武士之灵', 1), ('帚神', 3), ('椒图', 1), ('吸血姬', 5), ('黑晴明', 1), ('雪女', 1), ('大天狗', 1)], 1087 | '荒川之怒(荒川之主)第1层': [('赤舌', 1), ('灯笼鬼', 3), ('武士之灵', 1), ('寄生魂', 3), ('荒川之主', 1), ('盗墓小鬼', 3)], 1088 | '荒川之怒(荒川之主)第2层': [('赤舌', 1), ('灯笼鬼', 3), ('武士之灵', 1), ('寄生魂', 3), ('荒川之主', 1), ('童女', 3)], 1089 | '荒川之怒(荒川之主)第3层': [('赤舌', 1), ('灯笼鬼', 3), ('武士之灵', 1), ('寄生魂', 3), ('荒川之主', 1), ('管狐', 3)], 1090 | '荒川之怒(荒川之主)第4层': [('鲤鱼精', 1), ('河童', 3), ('海坊主', 1), ('蝴蝶精', 3), ('荒川之主', 1), ('鸦天狗', 4)], 1091 | '荒川之怒(荒川之主)第5层': [('鲤鱼精', 1), ('河童', 3), ('海坊主', 1), ('蝴蝶精', 3), ('荒川之主', 1), ('山兔', 4)], 1092 | '荒川之怒(荒川之主)第6层': [('鲤鱼精', 1), ('河童', 3), ('海坊主', 1), ('蝴蝶精', 3), ('荒川之主', 1), ('雪女', 4)], 1093 | '荒川之怒(荒川之主)第7层': [('金鱼姬', 1), ('古笼火', 3), ('椒图', 1), ('夜叉', 4), ('荒川之主', 1), ('青姬', 4)], 1094 | '荒川之怒(荒川之主)第8层': [('金鱼姬', 1), ('古笼火', 3), ('惠比寿', 1), ('夜叉', 4), ('荒川之主', 1), ('海坊主', 5)], 1095 | '荒川之怒(荒川之主)第9层': [('金鱼姬', 1), ('古笼火', 4), ('荒川之主', 1), ('烟烟罗', 2), ('夜叉', 2)], 1096 | '荒川之怒(荒川之主)第10层': [('金鱼姬', 1), ('古笼火', 5), ('大天狗', 1), ('夜叉', 4), ('荒川之主', 1), ('桃花妖', 1), ('雪女', 1), ('青行灯', 1), ('姑获鸟', 1), ('惠比寿', 1)], 1097 | '雨女的等候(雨女)第1层': [('盗墓小鬼', 3), ('唐纸伞妖', 1), ('提灯小僧', 3), ('盗墓小鬼', 1), ('座敷童子', 3), ('雨女', 1)], 1098 | '雨女的等候(雨女)第2层': [('盗墓小鬼', 3), ('唐纸伞妖', 1), ('提灯小僧', 3), ('盗墓小鬼', 1), ('首无', 3), ('雨女', 1)], 1099 | '雨女的等候(雨女)第3层': [('盗墓小鬼', 3), ('唐纸伞妖', 1), ('九命猫', 3), ('铁鼠', 1), ('武士之灵', 3), ('雨女', 1)], 1100 | '雨女的等候(雨女)第4层': [('赤舌', 1), ('唐纸伞妖', 3), ('丑时之女', 1), ('觉', 3), ('骨女', 4), ('雨女', 1)], 1101 | '雨女的等候(雨女)第5层': [('赤舌', 1), ('唐纸伞妖', 3), ('丑时之女', 1), ('觉', 3), ('烟烟罗', 4), ('雨女', 1)], 1102 | '雨女的等候(雨女)第6层': [('赤舌', 1), ('唐纸伞妖', 3), ('丑时之女', 1), ('觉', 3), ('夜叉', 4), ('雨女', 1)], 1103 | '雨女的等候(雨女)第7层': [('巫蛊师', 1), ('鸦天狗', 3), ('三尾狐', 1), ('萤草', 2), ('蝴蝶精', 1), ('兵俑', 4), ('雨女', 1)], 1104 | '雨女的等候(雨女)第8层': [('巫蛊师', 1), ('鸦天狗', 3), ('跳跳弟弟', 4), ('椒图', 1), ('河童', 6), ('雨女', 1)], 1105 | '雨女的等候(雨女)第9层': [('巫蛊师', 1), ('鸦天狗', 3), ('鬼使白', 2), ('清姬', 2), ('判官', 1), ('管狐', 5), ('雨女', 1)], 1106 | '雨女的等候(雨女)第10层': [('巫蛊师', 1), ('鸦天狗', 3), ('吸血姬', 5), ('童男', 1), ('青蛙瓷器', 5), ('雨女', 1)], 1107 | '妖刀之秘籍(妖刀姬)第1层': [('天邪鬼青', 4), ('狸猫', 4), ('妖刀姬', 1), ('盗墓小鬼', 3)], 1108 | '妖刀之秘籍(妖刀姬)第2层': [('天邪鬼青', 4), ('狸猫', 4), ('妖刀姬', 1), ('蝴蝶精', 3)], 1109 | '妖刀之秘籍(妖刀姬)第3层': [('天邪鬼青', 4), ('狸猫', 4), ('妖刀姬', 1), ('雨女', 3)], 1110 | '妖刀之秘籍(妖刀姬)第4层': [('天邪鬼青', 3), ('涂壁', 1), ('狸猫', 3), ('蝴蝶精', 1), ('狸猫', 1), ('妖刀姬', 1), ('三尾狐', 3)], 1111 | '妖刀之秘籍(妖刀姬)第5层': [('天邪鬼青', 3), ('涂壁', 1), ('狸猫', 3), ('蝴蝶精', 1), ('狸猫', 1), ('傀儡师', 1), ('二口女', 1), ('骨女', 1), ('妖刀姬', 1)], 1112 | '妖刀之秘籍(妖刀姬)第6层': [('天邪鬼青', 3), ('天邪鬼绿', 1), ('狸猫', 3), ('鸦天狗', 1), ('狸猫', 1), ('妖刀姬', 1), ('桃花妖', 1), ('樱花妖', 1), ('清姬', 1)], 1113 | '妖刀之秘籍(妖刀姬)第7层': [('天邪鬼青', 3), ('天邪鬼绿', 1), ('狸猫', 3), ('鸦天狗', 1), ('狸猫', 1), ('妖刀姬', 1), ('鬼使白', 1), ('鬼使黑', 1), ('判官', 1)], 1114 | '妖刀之秘籍(妖刀姬)第8层': [('九命猫', 1), ('天邪鬼青', 3), ('鲤鱼精', 1), ('河童', 1), ('狸猫', 3), ('妖刀姬', 1), ('大天狗', 1), ('青行灯', 1)], 1115 | '妖刀之秘籍(妖刀姬)第9层': [('九命猫', 1), ('天邪鬼青', 3), ('鲤鱼精', 1), ('河童', 1), ('狸猫', 4), ('青行灯', 1), ('童男', 2), ('妖刀姬', 1), ('大天狗', 1)], 1116 | '妖刀之秘籍(妖刀姬)第10层': [('天邪鬼青', 2), ('九命猫', 2), ('河童', 1), ('鲤鱼精', 1), ('椒图', 1), ('狸猫', 3), ('桃花妖', 1), ('大天狗', 1), ('妖刀姬', 1), ('青行灯', 1), ('妖狐', 2)], 1117 | '红叶的羁绊(鬼女红叶)第1层': [('管狐', 4), ('饿鬼', 4), ('觉', 3), ('鬼女红叶', 1)], 1118 | '红叶的羁绊(鬼女红叶)第2层': [('管狐', 4), ('饿鬼', 4), ('跳跳妹妹', 1), ('跳跳弟弟', 1), ('跳跳哥哥', 1), ('鬼女红叶', 1)], 1119 | '红叶的羁绊(鬼女红叶)第3层': [('管狐', 4), ('饿鬼', 4), ('鬼女红叶', 1), ('首无', 2), ('三尾狐', 1)], 1120 | '红叶的羁绊(鬼女红叶)第4层': [('管狐', 3), ('天邪鬼黄', 1), ('饿鬼', 3), ('兵俑', 1), ('鬼女红叶', 1), ('鸦天狗', 2), ('丑时之女', 1)], 1121 | '红叶的羁绊(鬼女红叶)第5层': [('管狐', 3), ('天邪鬼黄', 1), ('饿鬼', 3), ('兵俑', 1), ('鬼女红叶', 1), ('铁鼠', 2), ('骨女', 1)], 1122 | '红叶的羁绊(鬼女红叶)第6层': [('管狐', 3), ('赤舌', 1), ('饿鬼', 3), ('椒图', 1), ('鬼女红叶', 1), ('雨女', 2), ('雪女', 1)], 1123 | '红叶的羁绊(鬼女红叶)第7层': [('管狐', 3), ('赤舌', 1), ('饿鬼', 3), ('椒图', 1), ('鬼女红叶', 1), ('吸血姬', 2), ('狸猫', 1)], 1124 | '红叶的羁绊(鬼女红叶)第8层': [('管狐', 3), ('独眼小僧', 1), ('饿鬼', 3), ('犬神', 1), ('鬼女红叶', 1), ('椒图', 1), ('兵俑', 1), ('桃花妖', 1)], 1125 | '红叶的羁绊(鬼女红叶)第9层': [('管狐', 3), ('独眼小僧', 1), ('饿鬼', 3), ('犬神', 1), ('椒图', 2), ('鬼女红叶', 1), ('酒吞童子', 1), ('丑时之女', 1), ('鸦天狗', 1), ('桃花妖', 1)], 1126 | '红叶的羁绊(鬼女红叶)第10层': [('管狐', 3), ('独眼小僧', 1), ('饿鬼', 3), ('犬神', 1), ('椒图', 2), ('鬼女红叶', 1), ('酒吞童子', 1), ('般若', 1), ('吸血姬', 1), ('桃花妖', 1)], 1127 | '山兔大暴走(山兔)第1层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('莹草', 2), ('孟婆', 1)], 1128 | '山兔大暴走(山兔)第2层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('鸦天狗', 3)], 1129 | '山兔大暴走(山兔)第3层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('兵俑', 1), ('惠比寿', 1), ('椒图', 1)], 1130 | '山兔大暴走(山兔)第4层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('莹草', 2), ('孟婆', 1)], 1131 | '山兔大暴走(山兔)第5层': [('山兔', 4), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1)], 1132 | '山兔大暴走(山兔)第6层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('惠比寿', 1), ('椒图', 1), ('兵俑', 1)], 1133 | '山兔大暴走(山兔)第7层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('莹草', 2), ('孟婆', 1)], 1134 | '山兔大暴走(山兔)第8层': [('山兔', 4), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1)], 1135 | '山兔大暴走(山兔)第9层': [('山兔', 1), ('涂壁', 4), ('山童', 3), ('青蛙瓷器', 1), ('惠比寿', 1), ('椒图', 1), ('兵俑', 1)], 1136 | '山兔大暴走(山兔)第10层': [('山兔', 3), ('涂壁', 3), ('青蛙瓷器', 2), ('惠比寿', 1), ('椒图', 1), ('兵俑', 1)], 1137 | '道成夙怨(清姬)第1层': [('跳跳犬', 13), ('灯笼鬼', 1), ('清姬', 1)], 1138 | '道成夙怨(清姬)第2层': [('唐纸伞妖', 1), ('盗墓小鬼', 3), ('赤舌', 1), ('提灯小僧', 3), ('独眼小僧', 1), ('樱花妖', 4), ('清姬', 1)], 1139 | '道成夙怨(清姬)第3层': [('三尾狐', 2), ('帚神', 3), ('武士之灵', 1), ('赤舌', 4), ('灯笼鬼', 1), ('座敷童子', 1), ('黑童子', 1), ('清姬', 1)], 1140 | '道成夙怨(清姬)第4层': [('三尾狐', 3), ('武士之灵', 1), ('饿鬼', 3), ('巫蛊师', 1), ('山童', 3), ('鸦天狗', 2), ('清姬', 1)], 1141 | '道成夙怨(清姬)第5层': [('跳跳妹妹', 1), ('跳跳弟弟', 3), ('兵俑', 1), ('狸猫', 4), ('九命猫', 4), ('觉', 1), ('清姬', 1)], 1142 | '道成夙怨(清姬)第6层': [('巫蛊师', 1), ('武士之灵', 3), ('骨女', 4), ('傀儡师', 1), ('二口女', 5), ('清姬', 1)], 1143 | '道成夙怨(清姬)第7层': [('烟烟罗', 1), ('首无', 5), ('络新妇', 2), ('判官', 2), ('人面树', 1), ('二口女', 2), ('鬼使白', 2), ('凤凰火', 1), ('清姬', 1)], 1144 | '道成夙怨(清姬)第8层': [('烟烟罗', 1), ('小袖之手', 4), ('妖狐', 1), ('二口女', 2), ('络新妇', 2), ('樱花妖', 1), ('鸩', 1), ('判官', 1), ('鬼女红叶', 2), ('傀儡师', 1), ('清姬', 1)], 1145 | '道成夙怨(清姬)第9层': [('薰', 1), ('觉', 3), ('赤舌', 2), ('骨女', 2), ('鬼使白', 2), ('以津真天', 1), ('人面树', 1), ('鸩', 1), ('两面佛', 1), ('樱花妖', 1), ('鬼女红叶', 2), ('清姬', 1)], 1146 | '道成夙怨(清姬)第10层': [('数珠', 4), ('青坊主', 1), ('鬼女红叶', 3), ('孟婆', 1), ('骨女', 1), ('凤凰火', 1), ('人面树', 1), ('椒图', 1), ('百目鬼', 1), ('鸩', 1), ('山风', 1), ('清姬', 1)], 1147 | '浪客远道(犬神)第1层': [('天邪鬼青', 4), ('天邪鬼绿', 3), ('食梦貘', 6), ('犬神', 1)], 1148 | '浪客远道(犬神)第2层': [('天邪鬼赤', 4), ('天邪鬼黄', 3), ('钱鼠', 6), ('犬神', 1)], 1149 | '浪客远道(犬神)第3层': [('灯笼火', 3), ('傀儡师', 7), ('跳跳弟弟', 3), ('犬神', 1)], 1150 | '浪客远道(犬神)第4层': [('鬼使黑', 1), ('鬼使白', 1), ('黑童子', 1), ('白童子', 1), ('犬神', 1)], 1151 | '浪客远道(犬神)第5层': [('久次良', 1), ('九命猫', 1), ('鸦天狗', 1), ('姑获鸟', 1), ('犬神', 1)], 1152 | '浪客远道(犬神)第6层': [('人面树', 1), ('日和坊', 1), ('白藏主', 1), ('蝴蝶精', 1), ('犬神', 1)], 1153 | '浪客远道(犬神)第7层': [('数珠', 1), ('萤草', 1), ('兵俑', 1), ('椒图', 1), ('海忍', 1), ('犬神', 1)], 1154 | '浪客远道(犬神)第8层': [('童男', 1), ('童女', 1), ('骨女', 1), ('跳跳哥哥', 1), ('樱花妖', 1), ('犬神', 1)], 1155 | '浪客远道(犬神)第9层': [('百目鬼', 1), ('雨女', 1), ('孟婆', 1), ('鸩', 1), ('凤凰火', 1), ('犬神', 1)], 1156 | '浪客远道(犬神)第10层': [('吸血姬', 1), ('鬼童丸', 1), ('鬼切', 1), ('椒图', 1), ('万年竹', 1), ('犬神', 1)], 1157 | '安梦奇缘(食梦貘)第1层': [('盗墓小鬼', 3), ('赤舌', 1), ('唐纸伞妖', 1), ('九命猫', 3), ('巫蛊师', 1), ('食梦貘', 5)], 1158 | '安梦奇缘(食梦貘)第2层': [('天邪鬼绿', 3), ('天邪鬼赤', 1), ('觉', 1), ('童男', 2), ('童女', 2), ('萤草', 2), ('独眼小僧', 1), ('白狼', 1), ('食梦貘', 1)], 1159 | '安梦奇缘(食梦貘)第3层': [('灯笼火', 3), ('钱鼠', 3), ('鬼使黑', 2), ('鬼使白', 2), ('匣中少女', 2), ('判官', 1), ('食梦貘', 1)], 1160 | '安梦奇缘(食梦貘)第4层': [('山兔', 2), ('帚神', 3), ('管狐', 4), ('孟婆', 2), ('山童', 1), ('雪女', 1), ('食梦貘', 1)], 1161 | '安梦奇缘(食梦貘)第5层': [('灯笼火', 2), ('兵俑', 3), ('姑获鸟', 2), ('虫师', 2), ('武士之灵', 2), ('一目连', 1), ('雪女', 1), ('食梦貘', 1)], 1162 | '安梦奇缘(食梦貘)第6层': [('熏', 2), ('鬼使黑', 2), ('鬼使白', 1), ('山风', 2), ('兵俑', 1), ('镰鼬', 3), ('万年竹', 2), ('食梦貘', 1)], 1163 | '安梦奇缘(食梦貘)第7层': [('犬神', 2), ('天邪鬼青', 2), ('丑时之女', 2), ('清姬', 3), ('百目鬼', 1), ('樱花妖', 1), ('妖刀姬', 1), ('猫掌柜', 1), ('食梦貘', 1)], 1164 | '安梦奇缘(食梦貘)第8层': [('骨女', 4), ('兵俑', 1), ('三尾狐', 2), ('鸩', 2), ('清姬', 2), ('樱花妖', 1), ('灯笼鬼', 1), ('食梦貘', 1)], 1165 | '安梦奇缘(食梦貘)第9层': [('辉夜姬', 1), ('凤凰火', 1), ('玉藻前', 1), ('镰鼬', 1), ('清姬', 1), ('食梦貘', 1)], 1166 | '安梦奇缘(食梦貘)第10层': [('小松丸', 1), ('狸猫', 1), ('蝴蝶精', 1), ('鸦天狗', 1), ('茨木童子', 1), ('食梦貘', 1)], 1167 | '雪之回忆(雪童子)第1层': [('跳跳犬', 3), ('寄生魂', 1), ('童女', 1), ('帚神', 3), ('涂壁', 3), ('雪童子', 1)], 1168 | '雪之回忆(雪童子)第2层': [('灯笼鬼', 3), ('提灯小僧', 1), ('唐纸伞妖', 3), ('独眼小僧', 1), ('山童', 3), ('雪童子', 1)], 1169 | '雪之回忆(雪童子)第3层': [('古笼火', 1), ('盗墓小鬼', 1), ('首无', 1), ('天邪鬼赤', 3), ('天邪鬼青', 1), ('天邪鬼黄', 1), ('天邪鬼绿', 1), ('雪童子', 1)], 1170 | '雪之回忆(雪童子)第4层': [('寄生魂', 3), ('武士之灵', 1), ('童男', 1), ('童女', 2), ('食发鬼', 1), ('饿鬼', 4), ('雪童子', 1)], 1171 | '雪之回忆(雪童子)第5层': [('跳跳哥哥', 1), ('跳跳妹妹', 3), ('萤草', 2), ('蝴蝶精', 2), ('椒图', 1), ('管狐', 2), ('鸦天狗', 2), ('雪童子', 1)], 1172 | '雪之回忆(雪童子)第6层': [('犬神', 1), ('九命猫', 3), ('吸血姬', 2), ('骨女', 2), ('清姬', 1), ('桃花妖', 2), ('三尾狐', 2), ('般若', 1), ('雪童子', 1)], 1173 | '雪之回忆(雪童子)第7层': [('烟烟罗', 2), ('傀儡师', 2), ('彼岸花', 1), ('姑获鸟', 2), ('座敷童子', 1), ('山兔', 1), ('食发鬼', 1), ('鸩', 3), ('日和坊', 2), ('雪童子', 1)], 1174 | '雪之回忆(雪童子)第8层': [('觉', 2), ('首无', 2), ('惠比寿', 1), ('管狐', 3), ('蝴蝶精', 2), ('樱花妖', 1), ('桃花妖', 1), ('黑童子', 1), ('匣中少女', 1), ('跳跳弟弟', 1), ('金鱼姬', 1), ('雪童子', 1)], 1175 | '雪之回忆(雪童子)第9层': [('白狼', 5), ('辉夜姬', 1), ('鬼使白', 3), ('鬼女红叶', 2), ('清姬', 1), ('鬼使黑', 1), ('桃花妖', 1), ('跳跳哥哥', 1), ('雪女', 1), ('妖刀姬', 1), ('雪童子', 1)], 1176 | '雪之回忆(雪童子)第10层': [('般若', 1), ('雪女', 5), ('童女', 1), ('兵俑', 2), ('姑获鸟', 3), ('樱花妖', 1), ('犬神', 1), ('小松丸', 1), ('山风', 1), ('镰鼬', 1), ('雪童子', 1)], 1177 | '征服世界(金鱼姬)第1层': [('盗墓小鬼', 3), ('鸩', 1), ('御馔津', 4), ('烟烟罗', 3), ('荒', 1)], 1178 | '征服世界(金鱼姬)第2层': [('鬼使白', 1), ('白童子', 3), ('鬼使黑', 1), ('黑童子', 3), ('判官', 3), ('阎魔', 1)], 1179 | '征服世界(金鱼姬)第3层': [('清姬', 4), ('雪女', 7), ('雪童子', 1)], 1180 | '征服世界(金鱼姬)第4层': [('古笼火', 6), ('虫师', 5), ('一目连', 1)], 1181 | '征服世界(金鱼姬)第5层': [('椒图', 1), ('天邪鬼青', 2), ('狸猫', 1), ('鬼女红叶', 2), ('觉', 2), ('阎魔', 1), ('跳跳哥哥', 2), ('判官', 2), ('彼岸花', 1)], 1182 | '征服世界(金鱼姬)第6层': [('山童', 4), ('山兔', 4), ('万年竹', 2), ('薰', 1), ('山风', 1)], 1183 | '征服世界(金鱼姬)第7层': [('饿鬼', 2), ('蝴蝶精', 2), ('食发鬼', 1), ('独眼小僧', 2), ('座敷童子', 2), ('雪女', 2), ('般若', 2), ('鸦天狗', 2), ('大天狗', 2)], 1184 | '征服世界(金鱼姬)第8层': [('鬼女红叶', 2), ('觉', 2), ('灯笼鬼', 2), ('日和坊', 1), ('童男', 2), ('茨木童子', 2), ('酒吞童子', 1)], 1185 | '征服世界(金鱼姬)第9层': [('赤舌', 2), ('盗墓小鬼', 2), ('钱鼠', 1), ('雨女', 2), ('妖琴师', 2), ('络新妇', 1), ('清姬', 1), ('三尾狐', 2), ('九命猫', 2), ('玉藻前', 1)], 1186 | '征服世界(金鱼姬)第10层': [('椒图', 1), ('古笼火', 5), ('数珠', 1), ('夜叉', 5), ('海坊主', 1), ('河童', 1), ('鲤鱼精', 1), ('椒图', 1), ('化鲸', 1), ('荒川之主', 1)], 1187 | '妖气封印(二口女)': [('天邪鬼青', 3), ('帚神', 4), ('提灯小僧', 4), ('二口女', 3)], 1188 | '妖气封印(椒图)': [('天邪鬼绿', 8), ('天邪鬼黄', 2), ('天邪鬼赤', 1), ('椒图', 3)], 1189 | '妖气封印(跳跳哥哥)': [('天邪鬼绿', 4), ('帚神', 2), ('天邪鬼赤', 1), ('天邪鬼青', 3), ('天邪鬼黄', 1), ('跳跳哥哥', 3)], 1190 | '妖气封印(骨女)': [('帚神', 4), ('天邪鬼绿', 6), ('天邪鬼赤', 1), ('骨女', 3)], 1191 | '妖气封印(饿鬼)': [('天邪鬼绿', 6), ('涂壁', 1), ('唐纸伞妖', 1), ('提灯小僧', 3), ('饿鬼', 1)], 1192 | '妖气封印(海坊主)': [('天邪鬼黄', 3), ('提灯小僧', 4), ('天邪鬼赤', 2), ('天邪鬼绿', 1), ('天邪鬼青', 1), ('海坊主', 3)], 1193 | '妖气封印(鬼使黑)': [('涂壁', 4), ('帚神', 3), ('天邪鬼赤', 1), ('提灯小僧', 3), ('鬼使黑', 3)], 1194 | '妖气封印(小松丸)': [('涂壁', 4), ('天邪鬼赤', 1), ('帚神', 3), ('提灯小僧', 3), ('小松丸', 3)], 1195 | '妖气封印(日和坊)': [('首无', 2), ('鸩', 1), ('日和坊', 3), ('雪女', 1), ('座敷童子', 1), ('镰鼬', 1), ('黑童子', 1), ('白童子', 1), ('酒吞童子', 1), ('茨木童子', 1), ('青行灯', 1)], 1196 | } 1197 | --------------------------------------------------------------------------------