add project files
Browse files- app.py +74 -4
- build_db.py +65 -0
- data/other.json +13 -0
- data/炼丹丹药.json +651 -0
- data/药材.json +2810 -0
- db.json +1 -0
- src/Material.py +21 -0
- src/__pycache__/gr_func.cpython-37.pyc +0 -0
- src/__pycache__/utils.cpython-37.pyc +0 -0
- src/db.json +0 -0
- src/gr_func.py +167 -0
- src/utils.py +21 -0
app.py
CHANGED
@@ -1,6 +1,76 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
3 |
-
return "Hello " + name + "!!"
|
4 |
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
from src.gr_func import init,get_medicines,get_first_material,get_second_material,get_possible_material
|
|
|
3 |
|
4 |
+
medicine_list_init = init()
|
5 |
+
|
6 |
+
def medicine_select_acc_change(medicine_select_acc):
|
7 |
+
medicine_list = get_medicines(medicine_select_acc)
|
8 |
+
return gr.Dropdown.update(choices=medicine_list,value=medicine_list[0])
|
9 |
+
|
10 |
+
def run_btn_click(medicine_select,material_1_select,material_2_select):
|
11 |
+
rtn = medicine_select+"\n"
|
12 |
+
possible_material_list = get_possible_material(medicine_select,material_1_select,material_2_select)
|
13 |
+
for index,(main_material,auxi_material,material_third_list) in enumerate(possible_material_list):
|
14 |
+
rtn += f"""### 选择{index+1}
|
15 |
+
- **主药**:{main_material}
|
16 |
+
- **药引**:{",".join(material_third_list)}
|
17 |
+
- **辅药**:{auxi_material}
|
18 |
+
"""
|
19 |
+
return rtn
|
20 |
+
|
21 |
+
def medicine_select_change(medicine_select):
|
22 |
+
a = get_first_material(medicine_select)
|
23 |
+
return gr.Dropdown.update(choices=["无"]+a,value="无",visible=True),gr.Dropdown.update(visible=True,value="ALL"),gr.Number.update(visible=True,value=5)
|
24 |
+
|
25 |
+
def material_1_grade_select_change(medicine_select,material_1_grade_select,material_1_num):
|
26 |
+
a = get_first_material(medicine_select,material_1_grade_select,material_1_num)
|
27 |
+
return gr.Dropdown.update(choices=["无"]+a, value="无", visible=True)
|
28 |
+
|
29 |
+
def material_1_select_change(medicine_select,material_1_select):
|
30 |
+
if material_1_select!="无":
|
31 |
+
a = get_second_material(medicine_select,material_1_select)
|
32 |
+
return gr.Dropdown.update(choices=["无"] + a, value="无", visible=True), gr.Dropdown.update(visible=True,value="ALL"), gr.Number.update(visible=True, value=5)
|
33 |
+
else:
|
34 |
+
return gr.Dropdown.update(choices=["无"], value="无", visible=False), gr.Dropdown.update(visible=False,value="ALL"), gr.Number.update(visible=False, value=5)
|
35 |
+
|
36 |
+
|
37 |
+
def material_2_grade_select_change(medicine_select,material_1_select,material_2_grade_select,material_2_num):
|
38 |
+
a = get_second_material(medicine_select,material_1_select,material_2_grade_select,material_2_num)
|
39 |
+
return gr.Dropdown.update(choices=["无"]+a, value="无", visible=True)
|
40 |
+
|
41 |
+
with gr.Blocks() as demo:
|
42 |
+
gr.Markdown("选择你要炼制的丹药")
|
43 |
+
with gr.Row():
|
44 |
+
with gr.Column():
|
45 |
+
with gr.Accordion("丹药限制",open=False):
|
46 |
+
medicine_select_acc = gr.Radio(["ALL","增加修为", "突破概率", "加攻击力"],value="ALL",show_label=False)
|
47 |
+
medicine_select = gr.Dropdown(choices=medicine_list_init,value=medicine_list_init[0],label="丹药选择")
|
48 |
+
|
49 |
+
with gr.Row():
|
50 |
+
material_1_grade_select = gr.Dropdown(choices=["ALL"]+[f"{i}品药材" for i in "一二三四五六七八九"],value="ALL",visible=False,label="药材等级")
|
51 |
+
material_1_num = gr.Number(value=5,label="最大数量",visible=False)
|
52 |
+
material_1_select = gr.Dropdown(visible=False,label="第一个药材")
|
53 |
+
|
54 |
+
with gr.Row():
|
55 |
+
material_2_grade_select = gr.Dropdown(choices=["ALL"]+[f"{i}品药材" for i in "一二三四五六七八九"],value="ALL",visible=False,label="药材等级")
|
56 |
+
material_2_num = gr.Number(value=5,label="最大数量",visible=False)
|
57 |
+
material_2_select = gr.Dropdown(visible=False,label="第二个药材")
|
58 |
+
|
59 |
+
run_btn = gr.Button("Run")
|
60 |
+
|
61 |
+
output_mk = gr.Markdown("输出结果")
|
62 |
+
|
63 |
+
medicine_select_acc.change(fn=medicine_select_acc_change, inputs=[medicine_select_acc], outputs=[medicine_select])
|
64 |
+
medicine_select.change(fn=medicine_select_change,inputs=[medicine_select],outputs=[material_1_select,material_1_grade_select,material_1_num])
|
65 |
+
|
66 |
+
material_1_grade_select.change(fn=material_1_grade_select_change,inputs=[medicine_select,material_1_grade_select,material_1_num],outputs=[material_1_select])
|
67 |
+
material_1_num.change(fn=material_1_grade_select_change,inputs=[medicine_select,material_1_grade_select,material_1_num],outputs=[material_1_select])
|
68 |
+
|
69 |
+
material_1_select.change(fn=material_1_select_change,inputs=[medicine_select,material_1_select],outputs=[material_2_select,material_2_grade_select,material_2_num])
|
70 |
+
|
71 |
+
material_2_grade_select.change(fn=material_2_grade_select_change,inputs=[medicine_select, material_1_select, material_2_grade_select, material_2_num],outputs=[material_2_select])
|
72 |
+
material_2_num.change(fn=material_2_grade_select_change,inputs=[medicine_select, material_1_select, material_2_grade_select, material_2_num],outputs=[material_2_select])
|
73 |
+
|
74 |
+
run_btn.click(fn=run_btn_click,inputs=[medicine_select,material_1_select,material_2_select],outputs=[output_mk])
|
75 |
+
|
76 |
+
demo.launch()
|
build_db.py
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from src.utils import load_json
|
2 |
+
from tinydb import TinyDB
|
3 |
+
import os
|
4 |
+
|
5 |
+
db_path = './db.json'
|
6 |
+
if os.path.exists(db_path):
|
7 |
+
print("del db")
|
8 |
+
os.remove(db_path)
|
9 |
+
db = TinyDB(db_path)
|
10 |
+
|
11 |
+
material = db.table('material')
|
12 |
+
for id,data in load_json("./data/药材.json").items():
|
13 |
+
name = data["name"]
|
14 |
+
level = data["level"]
|
15 |
+
material.insert({'name': f"{name}({level[:2]})", 'level': level,
|
16 |
+
'main_temp': data["主药"]["h_a_c"]["type"]*data["主药"]["h_a_c"]["power"],
|
17 |
+
'main_func_t': data["主药"]["type"],
|
18 |
+
'main_func_p': data["主药"]["power"],
|
19 |
+
'phar_temp': data["药引"]["h_a_c"]["type"]*data["药引"]["h_a_c"]["power"],
|
20 |
+
'auxi_func_t': data["辅药"]["type"],
|
21 |
+
'auxi_func_p': data["主药"]["power"],
|
22 |
+
})
|
23 |
+
|
24 |
+
|
25 |
+
medicine = db.table('medicine')
|
26 |
+
for id,data in load_json("./data/炼丹丹药.json").items():
|
27 |
+
name = data["name"]
|
28 |
+
desc = data["desc"]
|
29 |
+
|
30 |
+
if "点修为" in desc:
|
31 |
+
type = "增加修为"
|
32 |
+
elif "概率提升" in desc:
|
33 |
+
type = "突破概率"
|
34 |
+
elif "点攻击力" in desc:
|
35 |
+
type = "加攻击力"
|
36 |
+
else:
|
37 |
+
print(desc)
|
38 |
+
type = "???"
|
39 |
+
|
40 |
+
if type == "突破概率":
|
41 |
+
state_f = data["境界"][0:3]
|
42 |
+
t = desc.split(",")[1]
|
43 |
+
state_t = t[2:5]
|
44 |
+
name = name + f"({state_f}->{state_t})"
|
45 |
+
elif type == "增加修为":
|
46 |
+
num = desc[7:-4]
|
47 |
+
name = name + f"(修{num})"
|
48 |
+
elif type == "加攻击力":
|
49 |
+
num = desc[9:-5]
|
50 |
+
name = name + f"(攻{num})"
|
51 |
+
|
52 |
+
elixir_config = data["elixir_config"]
|
53 |
+
l0 = []
|
54 |
+
for key,i in elixir_config.items():
|
55 |
+
l0.append((int(key),i))
|
56 |
+
medicine.insert(
|
57 |
+
{
|
58 |
+
"name":name,
|
59 |
+
"type":type,
|
60 |
+
"func1_type":l0[0][0],
|
61 |
+
"func1_power":l0[0][1],
|
62 |
+
"func2_type": l0[1][0],
|
63 |
+
"func2_power": l0[1][1]
|
64 |
+
}
|
65 |
+
)
|
data/other.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"material_type": {
|
3 |
+
"-1":"性寒",
|
4 |
+
"1": "性热",
|
5 |
+
"0": "性平",
|
6 |
+
"2": "生息",
|
7 |
+
"3": "养气",
|
8 |
+
"4": "炼气",
|
9 |
+
"5": "聚元",
|
10 |
+
"6": "凝神"
|
11 |
+
}
|
12 |
+
|
13 |
+
}
|
data/炼丹丹药.json
ADDED
@@ -0,0 +1,651 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"2000":{
|
3 |
+
"name":"洗髓丹",
|
4 |
+
"desc":"使用后可以增加8000点修为!",
|
5 |
+
"type":"丹药",
|
6 |
+
"buff":8000,
|
7 |
+
"buff_type":"exp_up",
|
8 |
+
"day_num":10,
|
9 |
+
"all_num":200,
|
10 |
+
"rank":40,
|
11 |
+
"境界":"铭文境初期",
|
12 |
+
"mix_need_time":60,
|
13 |
+
"mix_exp":10,
|
14 |
+
"mix_all":100,
|
15 |
+
"elixir_config":{
|
16 |
+
"2":6,
|
17 |
+
"3":6
|
18 |
+
}
|
19 |
+
},
|
20 |
+
"2001":{
|
21 |
+
"name":"养气丹",
|
22 |
+
"desc":"使用后可以增加10000点修为!",
|
23 |
+
"type":"丹药",
|
24 |
+
"buff":10000,
|
25 |
+
"buff_type":"exp_up",
|
26 |
+
"day_num":10,
|
27 |
+
"all_num":200,
|
28 |
+
"rank":37,
|
29 |
+
"境界":"列阵境初期",
|
30 |
+
"mix_need_time":60,
|
31 |
+
"mix_exp":10,
|
32 |
+
"mix_all":100,
|
33 |
+
"elixir_config":{
|
34 |
+
"2":12,
|
35 |
+
"3":12
|
36 |
+
}
|
37 |
+
},
|
38 |
+
"2002":{
|
39 |
+
"name":"九转丹",
|
40 |
+
"desc":"使用后可以增加12000点修为!",
|
41 |
+
"type":"丹药",
|
42 |
+
"buff":12000,
|
43 |
+
"buff_type":"exp_up",
|
44 |
+
"day_num":10,
|
45 |
+
"all_num":200,
|
46 |
+
"rank":34,
|
47 |
+
"境界":"尊者境初期",
|
48 |
+
"mix_need_time":60,
|
49 |
+
"mix_exp":10,
|
50 |
+
"mix_all":100,
|
51 |
+
"elixir_config":{
|
52 |
+
"2":24,
|
53 |
+
"3":24
|
54 |
+
}
|
55 |
+
},
|
56 |
+
"2003":{
|
57 |
+
"name":"易筋丹",
|
58 |
+
"desc":"使用后可以增加14000点修为!",
|
59 |
+
"type":"丹药",
|
60 |
+
"buff":14000,
|
61 |
+
"buff_type":"exp_up",
|
62 |
+
"day_num":10,
|
63 |
+
"all_num":200,
|
64 |
+
"rank":31,
|
65 |
+
"境界":"神火境初期",
|
66 |
+
"mix_need_time":60,
|
67 |
+
"mix_exp":10,
|
68 |
+
"mix_all":100,
|
69 |
+
"elixir_config":{
|
70 |
+
"2":48,
|
71 |
+
"3":48
|
72 |
+
}
|
73 |
+
},
|
74 |
+
"2004":{
|
75 |
+
"name":"天尘丹",
|
76 |
+
"desc":"使用后可以增加16000点修为!",
|
77 |
+
"type":"丹药",
|
78 |
+
"buff":16000,
|
79 |
+
"buff_type":"exp_up",
|
80 |
+
"day_num":10,
|
81 |
+
"all_num":200,
|
82 |
+
"rank":28,
|
83 |
+
"境界":"真一境初期",
|
84 |
+
"mix_need_time":60,
|
85 |
+
"mix_exp":10,
|
86 |
+
"mix_all":100,
|
87 |
+
"elixir_config":{
|
88 |
+
"2":96,
|
89 |
+
"3":96
|
90 |
+
}
|
91 |
+
},
|
92 |
+
"2005":{
|
93 |
+
"name":"天元神丹",
|
94 |
+
"desc":"使用后可以增加18000点修为!",
|
95 |
+
"type":"丹药",
|
96 |
+
"buff":18000,
|
97 |
+
"buff_type":"exp_up",
|
98 |
+
"day_num":10,
|
99 |
+
"all_num":200,
|
100 |
+
"rank":25,
|
101 |
+
"境界":"圣祭境初期",
|
102 |
+
"mix_need_time":60,
|
103 |
+
"mix_exp":10,
|
104 |
+
"mix_all":100,
|
105 |
+
"elixir_config":{
|
106 |
+
"2":192,
|
107 |
+
"3":192
|
108 |
+
}
|
109 |
+
},
|
110 |
+
"2006":{
|
111 |
+
"name":"斩我碧莹丹",
|
112 |
+
"desc":"使用后可以增加20000点修为!",
|
113 |
+
"type":"丹药",
|
114 |
+
"buff":20000,
|
115 |
+
"buff_type":"exp_up",
|
116 |
+
"day_num":10,
|
117 |
+
"all_num":200,
|
118 |
+
"rank":22,
|
119 |
+
"境界":"半步天神",
|
120 |
+
"mix_need_time":60,
|
121 |
+
"mix_exp":10,
|
122 |
+
"mix_all":100,
|
123 |
+
"elixir_config":{
|
124 |
+
"2":384,
|
125 |
+
"3":384
|
126 |
+
}
|
127 |
+
},
|
128 |
+
"2007":{
|
129 |
+
"name":"六阳长生丹",
|
130 |
+
"desc":"使用后可以增加30000点修为!",
|
131 |
+
"type":"丹药",
|
132 |
+
"buff":30000,
|
133 |
+
"buff_type":"exp_up",
|
134 |
+
"day_num":10,
|
135 |
+
"all_num":200,
|
136 |
+
"rank":18,
|
137 |
+
"境界":"虚道境初期",
|
138 |
+
"mix_need_time":60,
|
139 |
+
"mix_exp":10,
|
140 |
+
"mix_all":100,
|
141 |
+
"elixir_config":{
|
142 |
+
"2":768,
|
143 |
+
"3":768
|
144 |
+
}
|
145 |
+
},
|
146 |
+
"2008":{
|
147 |
+
"name":"道源丹",
|
148 |
+
"desc":"使用后可以增加40000点修为!",
|
149 |
+
"type":"丹药",
|
150 |
+
"buff":40000,
|
151 |
+
"buff_type":"exp_up",
|
152 |
+
"day_num":10,
|
153 |
+
"all_num":200,
|
154 |
+
"rank":15,
|
155 |
+
"境界":"斩我境初期",
|
156 |
+
"mix_need_time":60,
|
157 |
+
"mix_exp":10,
|
158 |
+
"mix_all":100,
|
159 |
+
"elixir_config":{
|
160 |
+
"2":1536,
|
161 |
+
"3":1536
|
162 |
+
}
|
163 |
+
},
|
164 |
+
"1400":{
|
165 |
+
"name":"洞天丹",
|
166 |
+
"type":"丹药",
|
167 |
+
"rank":47,
|
168 |
+
"desc":"洞天丹,冲击洞天境必备的丹药,使突破到洞天境的概率提升30%,只可使用1颗!",
|
169 |
+
"境界":"搬血境圆满",
|
170 |
+
"buff_type":"level_up_big",
|
171 |
+
"day_num":1,
|
172 |
+
"all_num":1,
|
173 |
+
"buff":30,
|
174 |
+
"mix_need_time":60,
|
175 |
+
"mix_exp":10,
|
176 |
+
"mix_all":100,
|
177 |
+
"elixir_config":{
|
178 |
+
"2":2,
|
179 |
+
"4":2
|
180 |
+
}
|
181 |
+
|
182 |
+
},
|
183 |
+
"1401":{
|
184 |
+
"name":"聚顶丹",
|
185 |
+
"type":"丹药",
|
186 |
+
"rank":44,
|
187 |
+
"desc":"聚顶丹,冲击化灵境必备的丹药之一,使突破到化灵境的概率提升20%,只可使用1颗!",
|
188 |
+
"境界":"洞天境圆满",
|
189 |
+
"buff_type":"level_up_big",
|
190 |
+
"day_num":1,
|
191 |
+
"all_num":1,
|
192 |
+
"buff":20,
|
193 |
+
"mix_need_time":60,
|
194 |
+
"mix_exp":10,
|
195 |
+
"mix_all":100,
|
196 |
+
"elixir_config":{
|
197 |
+
"2":4,
|
198 |
+
"4":4
|
199 |
+
}
|
200 |
+
},
|
201 |
+
"1402":{
|
202 |
+
"name":"朝元丹",
|
203 |
+
"type":"丹药",
|
204 |
+
"rank":44,
|
205 |
+
"desc":"朝元丹,冲击化灵境必备的2种丹药之一,使突破到化灵境的概率提升20%,只可使用1颗!",
|
206 |
+
"境界":"洞天境圆满",
|
207 |
+
"buff_type":"level_up_big",
|
208 |
+
"day_num":1,
|
209 |
+
"all_num":1,
|
210 |
+
"buff":20,
|
211 |
+
"mix_need_time":60,
|
212 |
+
"mix_exp":10,
|
213 |
+
"mix_all":100,
|
214 |
+
"elixir_config":{
|
215 |
+
"2":8,
|
216 |
+
"4":8
|
217 |
+
}
|
218 |
+
},
|
219 |
+
"1403":{
|
220 |
+
"name":"锻脉丹",
|
221 |
+
"type":"丹药",
|
222 |
+
"rank":41,
|
223 |
+
"desc":"锻脉丹,冲击铭文境必备的2种丹药之一,使突破到铭文境的概率提升20%,只可使用1颗!",
|
224 |
+
"境界":"化灵境圆满",
|
225 |
+
"buff_type":"level_up_big",
|
226 |
+
"day_num":1,
|
227 |
+
"all_num":1,
|
228 |
+
"buff":20,
|
229 |
+
"mix_need_time":60,
|
230 |
+
"mix_exp":10,
|
231 |
+
"mix_all":100,
|
232 |
+
"elixir_config":{
|
233 |
+
"2":12,
|
234 |
+
"4":12
|
235 |
+
}
|
236 |
+
},
|
237 |
+
"1404":{
|
238 |
+
"name":"护脉丹",
|
239 |
+
"type":"丹药",
|
240 |
+
"rank":41,
|
241 |
+
"desc":"护脉丹,冲击铭文境必备的2种丹药之一,使突破到铭文境的概率提升20%,只可使用1颗!",
|
242 |
+
"境界":"化灵境圆满",
|
243 |
+
"buff_type":"level_up_big",
|
244 |
+
"day_num":1,
|
245 |
+
"all_num":1,
|
246 |
+
"buff":20,
|
247 |
+
"mix_need_time":60,
|
248 |
+
"mix_exp":10,
|
249 |
+
"mix_all":100,
|
250 |
+
"elixir_config":{
|
251 |
+
"2":16,
|
252 |
+
"4":16
|
253 |
+
}
|
254 |
+
},
|
255 |
+
"1405":{
|
256 |
+
"name":"天命淬体丹",
|
257 |
+
"type":"丹药",
|
258 |
+
"rank":38,
|
259 |
+
"desc":"天命淬体丹,冲击列阵境必备的3种丹药之一,使突破到列阵境的概率提升10%,只可使用1颗!",
|
260 |
+
"境界":"铭文境圆满",
|
261 |
+
"buff_type":"level_up_big",
|
262 |
+
"day_num":1,
|
263 |
+
"all_num":1,
|
264 |
+
"buff":10,
|
265 |
+
"mix_need_time":60,
|
266 |
+
"mix_exp":10,
|
267 |
+
"mix_all":100,
|
268 |
+
"elixir_config":{
|
269 |
+
"2":20,
|
270 |
+
"4":20
|
271 |
+
}
|
272 |
+
},
|
273 |
+
"1406":{
|
274 |
+
"name":"澄心塑魂丹",
|
275 |
+
"type":"丹药",
|
276 |
+
"rank":38,
|
277 |
+
"desc":"澄心塑魂丹,冲击列阵境必备的3种丹药之一,使突破到列阵境的概率提升10%,只可使用1颗!",
|
278 |
+
"境界":"铭文境圆满",
|
279 |
+
"buff_type":"level_up_big",
|
280 |
+
"day_num":1,
|
281 |
+
"all_num":1,
|
282 |
+
"buff":10,
|
283 |
+
"mix_need_time":60,
|
284 |
+
"mix_exp":10,
|
285 |
+
"mix_all":100,
|
286 |
+
"elixir_config":{
|
287 |
+
"2":24,
|
288 |
+
"4":24
|
289 |
+
}
|
290 |
+
},
|
291 |
+
"1407":{
|
292 |
+
"name":"混元仙体丹",
|
293 |
+
"type":"丹药",
|
294 |
+
"rank":38,
|
295 |
+
"desc":"混元仙体丹,冲击列阵境必备的3种丹药之一,使突破到列阵境的概率提升10%,只可使用1颗!",
|
296 |
+
"境界":"铭文境圆满",
|
297 |
+
"buff_type":"level_up_big",
|
298 |
+
"day_num":1,
|
299 |
+
"all_num":1,
|
300 |
+
"buff":10,
|
301 |
+
"mix_need_time":60,
|
302 |
+
"mix_exp":10,
|
303 |
+
"mix_all":100,
|
304 |
+
"elixir_config":{
|
305 |
+
"2":32,
|
306 |
+
"4":32
|
307 |
+
}
|
308 |
+
},
|
309 |
+
"1408":{
|
310 |
+
"name":"黑炎丹",
|
311 |
+
"type":"丹药",
|
312 |
+
"rank":35,
|
313 |
+
"desc":"黑炎丹,冲击尊者境必备的2种丹药之一,使突破到尊者境的概率提升10%,只可使用1颗!",
|
314 |
+
"境界":"列阵境圆满",
|
315 |
+
"buff_type":"level_up_big",
|
316 |
+
"day_num":1,
|
317 |
+
"all_num":1,
|
318 |
+
"buff":10,
|
319 |
+
"mix_need_time":60,
|
320 |
+
"mix_exp":10,
|
321 |
+
"mix_all":100,
|
322 |
+
"elixir_config":{
|
323 |
+
"2":48,
|
324 |
+
"4":48
|
325 |
+
}
|
326 |
+
},
|
327 |
+
"1409":{
|
328 |
+
"name":"金血丸",
|
329 |
+
"type":"丹药",
|
330 |
+
"rank":35,
|
331 |
+
"desc":"金血丸,冲击尊者境必备的2种丹药之一,使突破到尊者境的概率提升10%,只可使用1颗!",
|
332 |
+
"境界":"列阵境圆满",
|
333 |
+
"buff_type":"level_up_big",
|
334 |
+
"day_num":1,
|
335 |
+
"all_num":1,
|
336 |
+
"buff":10,
|
337 |
+
"mix_need_time":60,
|
338 |
+
"mix_exp":10,
|
339 |
+
"mix_all":100,
|
340 |
+
"elixir_config":{
|
341 |
+
"2":64,
|
342 |
+
"4":64
|
343 |
+
}
|
344 |
+
},
|
345 |
+
"1410":{
|
346 |
+
"name":"虚灵丹",
|
347 |
+
"type":"丹药",
|
348 |
+
"rank":32,
|
349 |
+
"desc":"虚灵丹,冲击神火境必备的2种丹药之一,使突破到神火境的概率提升10%,只可使用1颗!",
|
350 |
+
"境界":"尊者境圆满",
|
351 |
+
"buff_type":"level_up_big",
|
352 |
+
"day_num":1,
|
353 |
+
"all_num":1,
|
354 |
+
"buff":10,
|
355 |
+
"mix_need_time":60,
|
356 |
+
"mix_exp":10,
|
357 |
+
"mix_all":100,
|
358 |
+
"elixir_config":{
|
359 |
+
"2":96,
|
360 |
+
"4":96
|
361 |
+
}
|
362 |
+
},
|
363 |
+
"1411":{
|
364 |
+
"name":"净明丹",
|
365 |
+
"type":"丹药",
|
366 |
+
"rank":32,
|
367 |
+
"desc":"净明丹,冲击神火境必备的2种丹药之一,使突破到神火境的概率提升10%,只可使用1颗!",
|
368 |
+
"境界":"尊者境圆满",
|
369 |
+
"buff_type":"level_up_big",
|
370 |
+
"day_num":1,
|
371 |
+
"all_num":1,
|
372 |
+
"buff":10,
|
373 |
+
"mix_need_time":60,
|
374 |
+
"mix_exp":10,
|
375 |
+
"mix_all":100,
|
376 |
+
"elixir_config":{
|
377 |
+
"2":128,
|
378 |
+
"4":128
|
379 |
+
}
|
380 |
+
},
|
381 |
+
"1412":{
|
382 |
+
"name":"安神灵液",
|
383 |
+
"type":"丹药",
|
384 |
+
"rank":29,
|
385 |
+
"desc":"安神灵液,冲击真一境必备的2种丹药之一,使突破到真一境的概率提升10%,只可使用1颗!",
|
386 |
+
"境界":"神火境圆满",
|
387 |
+
"buff_type":"level_up_big",
|
388 |
+
"day_num":1,
|
389 |
+
"all_num":1,
|
390 |
+
"buff":10,
|
391 |
+
"mix_need_time":60,
|
392 |
+
"mix_exp":10,
|
393 |
+
"mix_all":100,
|
394 |
+
"elixir_config":{
|
395 |
+
"2":160,
|
396 |
+
"4":160
|
397 |
+
}
|
398 |
+
},
|
399 |
+
"1413":{
|
400 |
+
"name":"魇龙之血",
|
401 |
+
"type":"丹药",
|
402 |
+
"rank":29,
|
403 |
+
"desc":"魇龙之血,冲击真一境必备的2种丹药之一,使突破到真一境的概率提升10%,只可使用1颗!",
|
404 |
+
"境界":"神火境圆满",
|
405 |
+
"buff_type":"level_up_big",
|
406 |
+
"day_num":1,
|
407 |
+
"all_num":1,
|
408 |
+
"buff":10,
|
409 |
+
"mix_need_time":60,
|
410 |
+
"mix_exp":10,
|
411 |
+
"mix_all":100,
|
412 |
+
"elixir_config":{
|
413 |
+
"2":192,
|
414 |
+
"4":192
|
415 |
+
}
|
416 |
+
},
|
417 |
+
"1414":{
|
418 |
+
"name":"化劫丹",
|
419 |
+
"type":"丹药",
|
420 |
+
"rank":26,
|
421 |
+
"desc":"化渡丹,冲击圣祭境必备的丹药,使突破到圣祭境的概率提升20%,只可使用1颗!",
|
422 |
+
"境界":"真一境圆满",
|
423 |
+
"buff_type":"level_up_big",
|
424 |
+
"day_num":1,
|
425 |
+
"all_num":1,
|
426 |
+
"buff":20,
|
427 |
+
"mix_need_time":60,
|
428 |
+
"mix_exp":10,
|
429 |
+
"mix_all":100,
|
430 |
+
"elixir_config":{
|
431 |
+
"2":256,
|
432 |
+
"4":256
|
433 |
+
}
|
434 |
+
},
|
435 |
+
"1415":{
|
436 |
+
"name":"太上玄门丹",
|
437 |
+
"type":"丹药",
|
438 |
+
"rank":22,
|
439 |
+
"desc":"太上玄门丹,冲击天神境必备的丹药,使突破到天神境的概率提升20%,只可使用1颗!",
|
440 |
+
"境界":"圣祭境圆满",
|
441 |
+
"buff_type":"level_up_big",
|
442 |
+
"day_num":1,
|
443 |
+
"all_num":1,
|
444 |
+
"buff":20,
|
445 |
+
"mix_need_time":60,
|
446 |
+
"mix_exp":10,
|
447 |
+
"mix_all":100,
|
448 |
+
"elixir_config":{
|
449 |
+
"2":384,
|
450 |
+
"4":384
|
451 |
+
}
|
452 |
+
},
|
453 |
+
"1416":{
|
454 |
+
"name":"虚道破厄丹",
|
455 |
+
"type":"丹药",
|
456 |
+
"rank":19,
|
457 |
+
"desc":"虚道破厄丹,冲击虚道境必备的丹药,使突破到虚道境的概率提升20%,只可使用1颗!",
|
458 |
+
"境界":"天神境圆满",
|
459 |
+
"buff_type":"level_up_big",
|
460 |
+
"day_num":1,
|
461 |
+
"all_num":1,
|
462 |
+
"buff":20,
|
463 |
+
"mix_need_time":60,
|
464 |
+
"mix_exp":10,
|
465 |
+
"mix_all":100,
|
466 |
+
"elixir_config":{
|
467 |
+
"2":768,
|
468 |
+
"4":768
|
469 |
+
}
|
470 |
+
},
|
471 |
+
"1417":{
|
472 |
+
"name":"斩我炼髓丹",
|
473 |
+
"type":"丹药",
|
474 |
+
"rank":16,
|
475 |
+
"desc":"斩我炼髓丹,冲击斩我境必备的丹药,使突破到斩我境的概率提升20%,只可使用1颗!",
|
476 |
+
"境界":"虚道境圆满",
|
477 |
+
"buff_type":"level_up_big",
|
478 |
+
"day_num":1,
|
479 |
+
"all_num":1,
|
480 |
+
"buff":20,
|
481 |
+
"mix_need_time":60,
|
482 |
+
"mix_exp":10,
|
483 |
+
"mix_all":100,
|
484 |
+
"elixir_config":{
|
485 |
+
"2":1536,
|
486 |
+
"4":1536
|
487 |
+
}
|
488 |
+
},
|
489 |
+
"2009":{
|
490 |
+
"name":"摄魂鬼丸",
|
491 |
+
"desc":"使用后可以永久增加720点攻击力!",
|
492 |
+
"type":"丹药",
|
493 |
+
"buff":720,
|
494 |
+
"buff_type":"atk_buff",
|
495 |
+
"day_num":5,
|
496 |
+
"all_num":5,
|
497 |
+
"rank":40,
|
498 |
+
"境界":"铭文境初期",
|
499 |
+
"mix_need_time":60,
|
500 |
+
"mix_exp":10,
|
501 |
+
"mix_all":10,
|
502 |
+
"elixir_config":{
|
503 |
+
"2":6,
|
504 |
+
"6":6
|
505 |
+
}
|
506 |
+
},
|
507 |
+
"2010":{
|
508 |
+
"name":"化煞魔丸",
|
509 |
+
"desc":"使用后可以永久增加1760点攻击力!",
|
510 |
+
"type":"丹药",
|
511 |
+
"buff":1760,
|
512 |
+
"buff_type":"atk_buff",
|
513 |
+
"day_num":5,
|
514 |
+
"all_num":5,
|
515 |
+
"rank":37,
|
516 |
+
"境界":"列阵境初期",
|
517 |
+
"mix_need_time":60,
|
518 |
+
"mix_exp":10,
|
519 |
+
"mix_all":100,
|
520 |
+
"elixir_config":{
|
521 |
+
"2":12,
|
522 |
+
"6":12
|
523 |
+
}
|
524 |
+
},
|
525 |
+
"2011":{
|
526 |
+
"name":"素心真丸",
|
527 |
+
"desc":"使用后可以永久增加4160点攻击力!",
|
528 |
+
"type":"丹药",
|
529 |
+
"buff":4160,
|
530 |
+
"buff_type":"atk_buff",
|
531 |
+
"day_num":5,
|
532 |
+
"all_num":5,
|
533 |
+
"rank":34,
|
534 |
+
"境界":"尊者境初期",
|
535 |
+
"mix_need_time":60,
|
536 |
+
"mix_exp":10,
|
537 |
+
"mix_all":100,
|
538 |
+
"elixir_config":{
|
539 |
+
"2":24,
|
540 |
+
"6":24
|
541 |
+
}
|
542 |
+
},
|
543 |
+
"2012":{
|
544 |
+
"name":"灭神古丸",
|
545 |
+
"desc":"使用后可以永久增加9600点攻击力!",
|
546 |
+
"type":"丹药",
|
547 |
+
"buff":9600,
|
548 |
+
"buff_type":"atk_buff",
|
549 |
+
"day_num":5,
|
550 |
+
"all_num":5,
|
551 |
+
"rank":31,
|
552 |
+
"境界":"神火境初期",
|
553 |
+
"mix_need_time":60,
|
554 |
+
"mix_exp":10,
|
555 |
+
"mix_all":100,
|
556 |
+
"elixir_config":{
|
557 |
+
"2":48,
|
558 |
+
"6":48
|
559 |
+
}
|
560 |
+
},
|
561 |
+
"2013":{
|
562 |
+
"name":"静禅魔丸",
|
563 |
+
"desc":"使用后可以永久增加21760点攻击力!",
|
564 |
+
"type":"丹药",
|
565 |
+
"buff":21760,
|
566 |
+
"buff_type":"atk_buff",
|
567 |
+
"day_num":5,
|
568 |
+
"all_num":5,
|
569 |
+
"rank":28,
|
570 |
+
"境界":"真一境初期",
|
571 |
+
"mix_need_time":60,
|
572 |
+
"mix_exp":10,
|
573 |
+
"mix_all":100,
|
574 |
+
"elixir_config":{
|
575 |
+
"2":96,
|
576 |
+
"6":96
|
577 |
+
}
|
578 |
+
},
|
579 |
+
"2014":{
|
580 |
+
"name":"地仙玄丸",
|
581 |
+
"desc":"使用后可以永久增加48640点攻击力!",
|
582 |
+
"type":"丹药",
|
583 |
+
"buff":48640,
|
584 |
+
"buff_type":"atk_buff",
|
585 |
+
"day_num":5,
|
586 |
+
"all_num":5,
|
587 |
+
"rank":25,
|
588 |
+
"境界":"圣祭境初期",
|
589 |
+
"mix_need_time":60,
|
590 |
+
"mix_exp":10,
|
591 |
+
"mix_all":100,
|
592 |
+
"elixir_config":{
|
593 |
+
"2":192,
|
594 |
+
"6":192
|
595 |
+
}
|
596 |
+
},
|
597 |
+
"2015":{
|
598 |
+
"name":"消冰宝丸",
|
599 |
+
"desc":"使用后可以永久增加104840点攻击力!",
|
600 |
+
"type":"丹药",
|
601 |
+
"buff":104840,
|
602 |
+
"buff_type":"atk_buff",
|
603 |
+
"day_num":5,
|
604 |
+
"all_num":5,
|
605 |
+
"rank":22,
|
606 |
+
"境界":"半步天神",
|
607 |
+
"mix_need_time":60,
|
608 |
+
"mix_exp":10,
|
609 |
+
"mix_all":100,
|
610 |
+
"elixir_config":{
|
611 |
+
"2":384,
|
612 |
+
"6":384
|
613 |
+
}
|
614 |
+
},
|
615 |
+
"2016":{
|
616 |
+
"name":"无涯鬼丸",
|
617 |
+
"desc":"使用后可以永久增加304840点攻击力!",
|
618 |
+
"type":"丹药",
|
619 |
+
"buff":304840,
|
620 |
+
"buff_type":"atk_buff",
|
621 |
+
"day_num":5,
|
622 |
+
"all_num":5,
|
623 |
+
"rank":18,
|
624 |
+
"境界":"虚道境初期",
|
625 |
+
"mix_need_time":60,
|
626 |
+
"mix_exp":10,
|
627 |
+
"mix_all":100,
|
628 |
+
"elixir_config":{
|
629 |
+
"2":768,
|
630 |
+
"6":768
|
631 |
+
}
|
632 |
+
},
|
633 |
+
"2017":{
|
634 |
+
"name":"太一仙丸",
|
635 |
+
"desc":"使用后可以永久增加604840点攻击力!",
|
636 |
+
"type":"丹药",
|
637 |
+
"buff":604840,
|
638 |
+
"buff_type":"atk_buff",
|
639 |
+
"day_num":5,
|
640 |
+
"all_num":5,
|
641 |
+
"rank":15,
|
642 |
+
"境界":"斩我境初期",
|
643 |
+
"mix_need_time":60,
|
644 |
+
"mix_exp":10,
|
645 |
+
"mix_all":100,
|
646 |
+
"elixir_config":{
|
647 |
+
"2":1536,
|
648 |
+
"6":1536
|
649 |
+
}
|
650 |
+
}
|
651 |
+
}
|
data/药材.json
ADDED
@@ -0,0 +1,2810 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"3001":{
|
3 |
+
"name":"恒心草",
|
4 |
+
"level":"一品药材",
|
5 |
+
"type":"药材",
|
6 |
+
"rank":40,
|
7 |
+
"主药":{
|
8 |
+
"h_a_c":{
|
9 |
+
"type":0,
|
10 |
+
"power":1
|
11 |
+
},
|
12 |
+
"type":2,
|
13 |
+
"power":2
|
14 |
+
},
|
15 |
+
"药引":{
|
16 |
+
"h_a_c":{
|
17 |
+
"type":0,
|
18 |
+
"power":1
|
19 |
+
},
|
20 |
+
"type":2,
|
21 |
+
"power":2
|
22 |
+
},
|
23 |
+
"辅药":{
|
24 |
+
"type":3,
|
25 |
+
"power":2
|
26 |
+
}
|
27 |
+
},
|
28 |
+
"3002":{
|
29 |
+
"name":"红绫草",
|
30 |
+
"level":"一品药材",
|
31 |
+
"type":"药材",
|
32 |
+
"rank":40,
|
33 |
+
"主药":{
|
34 |
+
"h_a_c":{
|
35 |
+
"type":0,
|
36 |
+
"power":1
|
37 |
+
},
|
38 |
+
"type":2,
|
39 |
+
"power":2
|
40 |
+
},
|
41 |
+
"药引":{
|
42 |
+
"h_a_c":{
|
43 |
+
"type":0,
|
44 |
+
"power":1
|
45 |
+
},
|
46 |
+
"type":2,
|
47 |
+
"power":2
|
48 |
+
},
|
49 |
+
"辅药":{
|
50 |
+
"type":3,
|
51 |
+
"power":2
|
52 |
+
}
|
53 |
+
},
|
54 |
+
"3003":{
|
55 |
+
"name":"罗犀草",
|
56 |
+
"level":"一品药材",
|
57 |
+
"type":"药材",
|
58 |
+
"rank":40,
|
59 |
+
"主药":{
|
60 |
+
"h_a_c":{
|
61 |
+
"type":-1,
|
62 |
+
"power":1
|
63 |
+
},
|
64 |
+
"type":2,
|
65 |
+
"power":2
|
66 |
+
},
|
67 |
+
"药引":{
|
68 |
+
"h_a_c":{
|
69 |
+
"type":1,
|
70 |
+
"power":1
|
71 |
+
},
|
72 |
+
"type":2,
|
73 |
+
"power":2
|
74 |
+
},
|
75 |
+
"辅药":{
|
76 |
+
"type":3,
|
77 |
+
"power":2
|
78 |
+
}
|
79 |
+
},
|
80 |
+
"3004":{
|
81 |
+
"name":"天青花",
|
82 |
+
"level":"一品药材",
|
83 |
+
"type":"药材",
|
84 |
+
"rank":40,
|
85 |
+
"主药":{
|
86 |
+
"h_a_c":{
|
87 |
+
"type":1,
|
88 |
+
"power":1
|
89 |
+
},
|
90 |
+
"type":2,
|
91 |
+
"power":2
|
92 |
+
},
|
93 |
+
"药引":{
|
94 |
+
"h_a_c":{
|
95 |
+
"type":-1,
|
96 |
+
"power":1
|
97 |
+
},
|
98 |
+
"type":2,
|
99 |
+
"power":2
|
100 |
+
},
|
101 |
+
"辅药":{
|
102 |
+
"type":3,
|
103 |
+
"power":2
|
104 |
+
}
|
105 |
+
},
|
106 |
+
"3005":{
|
107 |
+
"name":"五柳根",
|
108 |
+
"level":"二品药材",
|
109 |
+
"type":"药材",
|
110 |
+
"rank":37,
|
111 |
+
"主药":{
|
112 |
+
"h_a_c":{
|
113 |
+
"type":0,
|
114 |
+
"power":2
|
115 |
+
},
|
116 |
+
"type":2,
|
117 |
+
"power":4
|
118 |
+
},
|
119 |
+
"药引":{
|
120 |
+
"h_a_c":{
|
121 |
+
"type":0,
|
122 |
+
"power":2
|
123 |
+
},
|
124 |
+
"type":2,
|
125 |
+
"power":4
|
126 |
+
},
|
127 |
+
"辅药":{
|
128 |
+
"type":3,
|
129 |
+
"power":4
|
130 |
+
}
|
131 |
+
},
|
132 |
+
"3006":{
|
133 |
+
"name":"天元果",
|
134 |
+
"level":"二品药材",
|
135 |
+
"type":"药材",
|
136 |
+
"rank":37,
|
137 |
+
"主药":{
|
138 |
+
"h_a_c":{
|
139 |
+
"type":0,
|
140 |
+
"power":2
|
141 |
+
},
|
142 |
+
"type":2,
|
143 |
+
"power":4
|
144 |
+
},
|
145 |
+
"药引":{
|
146 |
+
"h_a_c":{
|
147 |
+
"type":0,
|
148 |
+
"power":2
|
149 |
+
},
|
150 |
+
"type":2,
|
151 |
+
"power":4
|
152 |
+
},
|
153 |
+
"辅药":{
|
154 |
+
"type":3,
|
155 |
+
"power":4
|
156 |
+
}
|
157 |
+
},
|
158 |
+
"3007":{
|
159 |
+
"name":"何首乌",
|
160 |
+
"level":"二品药材",
|
161 |
+
"type":"药材",
|
162 |
+
"rank":37,
|
163 |
+
"主药":{
|
164 |
+
"h_a_c":{
|
165 |
+
"type":-1,
|
166 |
+
"power":2
|
167 |
+
},
|
168 |
+
"type":2,
|
169 |
+
"power":4
|
170 |
+
},
|
171 |
+
"药引":{
|
172 |
+
"h_a_c":{
|
173 |
+
"type":1,
|
174 |
+
"power":2
|
175 |
+
},
|
176 |
+
"type":2,
|
177 |
+
"power":4
|
178 |
+
},
|
179 |
+
"辅药":{
|
180 |
+
"type":3,
|
181 |
+
"power":4
|
182 |
+
}
|
183 |
+
},
|
184 |
+
"3008":{
|
185 |
+
"name":"夜交藤",
|
186 |
+
"level":"二品药材",
|
187 |
+
"type":"药材",
|
188 |
+
"rank":37,
|
189 |
+
"主药":{
|
190 |
+
"h_a_c":{
|
191 |
+
"type":1,
|
192 |
+
"power":2
|
193 |
+
},
|
194 |
+
"type":2,
|
195 |
+
"power":4
|
196 |
+
},
|
197 |
+
"药引":{
|
198 |
+
"h_a_c":{
|
199 |
+
"type":-1,
|
200 |
+
"power":2
|
201 |
+
},
|
202 |
+
"type":2,
|
203 |
+
"power":4
|
204 |
+
},
|
205 |
+
"辅药":{
|
206 |
+
"type":3,
|
207 |
+
"power":4
|
208 |
+
}
|
209 |
+
},
|
210 |
+
"3009":{
|
211 |
+
"name":"紫猴花",
|
212 |
+
"level":"三品药材",
|
213 |
+
"type":"药材",
|
214 |
+
"rank":34,
|
215 |
+
"主药":{
|
216 |
+
"h_a_c":{
|
217 |
+
"type":0,
|
218 |
+
"power":4
|
219 |
+
},
|
220 |
+
"type":2,
|
221 |
+
"power":8
|
222 |
+
},
|
223 |
+
"药引":{
|
224 |
+
"h_a_c":{
|
225 |
+
"type":0,
|
226 |
+
"power":4
|
227 |
+
},
|
228 |
+
"type":2,
|
229 |
+
"power":8
|
230 |
+
},
|
231 |
+
"辅药":{
|
232 |
+
"type":3,
|
233 |
+
"power":8
|
234 |
+
}
|
235 |
+
},
|
236 |
+
"3010":{
|
237 |
+
"name":"九叶芝",
|
238 |
+
"level":"三品药材",
|
239 |
+
"type":"药材",
|
240 |
+
"rank":34,
|
241 |
+
"主药":{
|
242 |
+
"h_a_c":{
|
243 |
+
"type":0,
|
244 |
+
"power":4
|
245 |
+
},
|
246 |
+
"type":2,
|
247 |
+
"power":8
|
248 |
+
},
|
249 |
+
"药引":{
|
250 |
+
"h_a_c":{
|
251 |
+
"type":0,
|
252 |
+
"power":4
|
253 |
+
},
|
254 |
+
"type":2,
|
255 |
+
"power":8
|
256 |
+
},
|
257 |
+
"辅药":{
|
258 |
+
"type":3,
|
259 |
+
"power":8
|
260 |
+
}
|
261 |
+
},
|
262 |
+
"3011":{
|
263 |
+
"name":"幻心草",
|
264 |
+
"level":"三品药材",
|
265 |
+
"type":"药材",
|
266 |
+
"rank":34,
|
267 |
+
"主药":{
|
268 |
+
"h_a_c":{
|
269 |
+
"type":-1,
|
270 |
+
"power":4
|
271 |
+
},
|
272 |
+
"type":2,
|
273 |
+
"power":8
|
274 |
+
},
|
275 |
+
"药引":{
|
276 |
+
"h_a_c":{
|
277 |
+
"type":1,
|
278 |
+
"power":4
|
279 |
+
},
|
280 |
+
"type":2,
|
281 |
+
"power":8
|
282 |
+
},
|
283 |
+
"辅药":{
|
284 |
+
"type":3,
|
285 |
+
"power":8
|
286 |
+
}
|
287 |
+
},
|
288 |
+
"3012":{
|
289 |
+
"name":"鬼臼草",
|
290 |
+
"level":"三品药材",
|
291 |
+
"type":"药材",
|
292 |
+
"rank":34,
|
293 |
+
"主药":{
|
294 |
+
"h_a_c":{
|
295 |
+
"type":1,
|
296 |
+
"power":4
|
297 |
+
},
|
298 |
+
"type":2,
|
299 |
+
"power":8
|
300 |
+
},
|
301 |
+
"药引":{
|
302 |
+
"h_a_c":{
|
303 |
+
"type":-1,
|
304 |
+
"power":4
|
305 |
+
},
|
306 |
+
"type":2,
|
307 |
+
"power":8
|
308 |
+
},
|
309 |
+
"辅药":{
|
310 |
+
"type":3,
|
311 |
+
"power":8
|
312 |
+
}
|
313 |
+
},
|
314 |
+
"3013":{
|
315 |
+
"name":"血莲精",
|
316 |
+
"level":"四品药材",
|
317 |
+
"type":"药材",
|
318 |
+
"rank":31,
|
319 |
+
"主药":{
|
320 |
+
"h_a_c":{
|
321 |
+
"type":0,
|
322 |
+
"power":8
|
323 |
+
},
|
324 |
+
"type":2,
|
325 |
+
"power":16
|
326 |
+
},
|
327 |
+
"药引":{
|
328 |
+
"h_a_c":{
|
329 |
+
"type":0,
|
330 |
+
"power":8
|
331 |
+
},
|
332 |
+
"type":2,
|
333 |
+
"power":16
|
334 |
+
},
|
335 |
+
"辅药":{
|
336 |
+
"type":3,
|
337 |
+
"power":16
|
338 |
+
}
|
339 |
+
},
|
340 |
+
"3014":{
|
341 |
+
"name":"鸡冠草",
|
342 |
+
"level":"四品药材",
|
343 |
+
"type":"药材",
|
344 |
+
"rank":31,
|
345 |
+
"主药":{
|
346 |
+
"h_a_c":{
|
347 |
+
"type":0,
|
348 |
+
"power":8
|
349 |
+
},
|
350 |
+
"type":2,
|
351 |
+
"power":16
|
352 |
+
},
|
353 |
+
"药引":{
|
354 |
+
"h_a_c":{
|
355 |
+
"type":0,
|
356 |
+
"power":8
|
357 |
+
},
|
358 |
+
"type":2,
|
359 |
+
"power":16
|
360 |
+
},
|
361 |
+
"辅药":{
|
362 |
+
"type":3,
|
363 |
+
"power":16
|
364 |
+
}
|
365 |
+
},
|
366 |
+
"3015":{
|
367 |
+
"name":"银精芝",
|
368 |
+
"level":"四品药材",
|
369 |
+
"type":"药材",
|
370 |
+
"rank":31,
|
371 |
+
"主药":{
|
372 |
+
"h_a_c":{
|
373 |
+
"type":-1,
|
374 |
+
"power":8
|
375 |
+
},
|
376 |
+
"type":2,
|
377 |
+
"power":16
|
378 |
+
},
|
379 |
+
"药引":{
|
380 |
+
"h_a_c":{
|
381 |
+
"type":1,
|
382 |
+
"power":8
|
383 |
+
},
|
384 |
+
"type":2,
|
385 |
+
"power":16
|
386 |
+
},
|
387 |
+
"辅药":{
|
388 |
+
"type":3,
|
389 |
+
"power":16
|
390 |
+
}
|
391 |
+
},
|
392 |
+
"3016":{
|
393 |
+
"name":"玉髓芝",
|
394 |
+
"level":"四品药材",
|
395 |
+
"type":"药材",
|
396 |
+
"rank":31,
|
397 |
+
"主药":{
|
398 |
+
"h_a_c":{
|
399 |
+
"type":1,
|
400 |
+
"power":8
|
401 |
+
},
|
402 |
+
"type":2,
|
403 |
+
"power":16
|
404 |
+
},
|
405 |
+
"药引":{
|
406 |
+
"h_a_c":{
|
407 |
+
"type":-1,
|
408 |
+
"power":8
|
409 |
+
},
|
410 |
+
"type":2,
|
411 |
+
"power":16
|
412 |
+
},
|
413 |
+
"辅药":{
|
414 |
+
"type":3,
|
415 |
+
"power":16
|
416 |
+
}
|
417 |
+
},
|
418 |
+
"3017":{
|
419 |
+
"name":"地心火芝",
|
420 |
+
"level":"五品药材",
|
421 |
+
"type":"药材",
|
422 |
+
"rank":28,
|
423 |
+
"主药":{
|
424 |
+
"h_a_c":{
|
425 |
+
"type":0,
|
426 |
+
"power":16
|
427 |
+
},
|
428 |
+
"type":2,
|
429 |
+
"power":32
|
430 |
+
},
|
431 |
+
"药引":{
|
432 |
+
"h_a_c":{
|
433 |
+
"type":0,
|
434 |
+
"power":16
|
435 |
+
},
|
436 |
+
"type":2,
|
437 |
+
"power":32
|
438 |
+
},
|
439 |
+
"辅药":{
|
440 |
+
"type":3,
|
441 |
+
"power":32
|
442 |
+
}
|
443 |
+
},
|
444 |
+
"3018":{
|
445 |
+
"name":"天蝉灵叶",
|
446 |
+
"level":"五品药材",
|
447 |
+
"type":"药材",
|
448 |
+
"rank":28,
|
449 |
+
"主药":{
|
450 |
+
"h_a_c":{
|
451 |
+
"type":0,
|
452 |
+
"power":16
|
453 |
+
},
|
454 |
+
"type":2,
|
455 |
+
"power":32
|
456 |
+
},
|
457 |
+
"药引":{
|
458 |
+
"h_a_c":{
|
459 |
+
"type":0,
|
460 |
+
"power":16
|
461 |
+
},
|
462 |
+
"type":2,
|
463 |
+
"power":32
|
464 |
+
},
|
465 |
+
"辅药":{
|
466 |
+
"type":3,
|
467 |
+
"power":32
|
468 |
+
}
|
469 |
+
},
|
470 |
+
"3019":{
|
471 |
+
"name":"雪玉骨参",
|
472 |
+
"level":"五品药材",
|
473 |
+
"type":"药材",
|
474 |
+
"rank":28,
|
475 |
+
"主药":{
|
476 |
+
"h_a_c":{
|
477 |
+
"type":-1,
|
478 |
+
"power":16
|
479 |
+
},
|
480 |
+
"type":2,
|
481 |
+
"power":32
|
482 |
+
},
|
483 |
+
"药引":{
|
484 |
+
"h_a_c":{
|
485 |
+
"type":1,
|
486 |
+
"power":16
|
487 |
+
},
|
488 |
+
"type":2,
|
489 |
+
"power":32
|
490 |
+
},
|
491 |
+
"辅药":{
|
492 |
+
"type":3,
|
493 |
+
"power":32
|
494 |
+
}
|
495 |
+
},
|
496 |
+
"3020":{
|
497 |
+
"name":"腐骨灵花",
|
498 |
+
"level":"五品药材",
|
499 |
+
"type":"药材",
|
500 |
+
"rank":28,
|
501 |
+
"主药":{
|
502 |
+
"h_a_c":{
|
503 |
+
"type":1,
|
504 |
+
"power":16
|
505 |
+
},
|
506 |
+
"type":2,
|
507 |
+
"power":32
|
508 |
+
},
|
509 |
+
"药引":{
|
510 |
+
"h_a_c":{
|
511 |
+
"type":-1,
|
512 |
+
"power":16
|
513 |
+
},
|
514 |
+
"type":2,
|
515 |
+
"power":32
|
516 |
+
},
|
517 |
+
"辅药":{
|
518 |
+
"type":3,
|
519 |
+
"power":32
|
520 |
+
}
|
521 |
+
},
|
522 |
+
"3021":{
|
523 |
+
"name":"三叶青芝",
|
524 |
+
"level":"六品药材",
|
525 |
+
"type":"药材",
|
526 |
+
"rank":25,
|
527 |
+
"主药":{
|
528 |
+
"h_a_c":{
|
529 |
+
"type":0,
|
530 |
+
"power":32
|
531 |
+
},
|
532 |
+
"type":2,
|
533 |
+
"power":64
|
534 |
+
},
|
535 |
+
"药引":{
|
536 |
+
"h_a_c":{
|
537 |
+
"type":0,
|
538 |
+
"power":32
|
539 |
+
},
|
540 |
+
"type":2,
|
541 |
+
"power":64
|
542 |
+
},
|
543 |
+
"辅药":{
|
544 |
+
"type":3,
|
545 |
+
"power":64
|
546 |
+
}
|
547 |
+
},
|
548 |
+
"3022":{
|
549 |
+
"name":"七彩月兰",
|
550 |
+
"level":"六品药材",
|
551 |
+
"type":"药材",
|
552 |
+
"rank":25,
|
553 |
+
"主药":{
|
554 |
+
"h_a_c":{
|
555 |
+
"type":0,
|
556 |
+
"power":32
|
557 |
+
},
|
558 |
+
"type":2,
|
559 |
+
"power":64
|
560 |
+
},
|
561 |
+
"药引":{
|
562 |
+
"h_a_c":{
|
563 |
+
"type":0,
|
564 |
+
"power":32
|
565 |
+
},
|
566 |
+
"type":2,
|
567 |
+
"power":64
|
568 |
+
},
|
569 |
+
"辅药":{
|
570 |
+
"type":3,
|
571 |
+
"power":64
|
572 |
+
}
|
573 |
+
},
|
574 |
+
"3023":{
|
575 |
+
"name":"三尾风叶",
|
576 |
+
"level":"六品药材",
|
577 |
+
"type":"药材",
|
578 |
+
"rank":25,
|
579 |
+
"主药":{
|
580 |
+
"h_a_c":{
|
581 |
+
"type":-1,
|
582 |
+
"power":32
|
583 |
+
},
|
584 |
+
"type":2,
|
585 |
+
"power":64
|
586 |
+
},
|
587 |
+
"药引":{
|
588 |
+
"h_a_c":{
|
589 |
+
"type":1,
|
590 |
+
"power":32
|
591 |
+
},
|
592 |
+
"type":2,
|
593 |
+
"power":64
|
594 |
+
},
|
595 |
+
"辅药":{
|
596 |
+
"type":3,
|
597 |
+
"power":64
|
598 |
+
}
|
599 |
+
},
|
600 |
+
"3024":{
|
601 |
+
"name":"冰灵焰草",
|
602 |
+
"level":"六品药材",
|
603 |
+
"type":"药材",
|
604 |
+
"rank":25,
|
605 |
+
"主药":{
|
606 |
+
"h_a_c":{
|
607 |
+
"type":1,
|
608 |
+
"power":32
|
609 |
+
},
|
610 |
+
"type":2,
|
611 |
+
"power":64
|
612 |
+
},
|
613 |
+
"药引":{
|
614 |
+
"h_a_c":{
|
615 |
+
"type":-1,
|
616 |
+
"power":32
|
617 |
+
},
|
618 |
+
"type":2,
|
619 |
+
"power":64
|
620 |
+
},
|
621 |
+
"辅药":{
|
622 |
+
"type":3,
|
623 |
+
"power":64
|
624 |
+
}
|
625 |
+
},
|
626 |
+
"3025":{
|
627 |
+
"name":"地心淬灵乳",
|
628 |
+
"level":"七品药材",
|
629 |
+
"type":"药材",
|
630 |
+
"rank":22,
|
631 |
+
"主药":{
|
632 |
+
"h_a_c":{
|
633 |
+
"type":0,
|
634 |
+
"power":64
|
635 |
+
},
|
636 |
+
"type":2,
|
637 |
+
"power":128
|
638 |
+
},
|
639 |
+
"药引":{
|
640 |
+
"h_a_c":{
|
641 |
+
"type":0,
|
642 |
+
"power":64
|
643 |
+
},
|
644 |
+
"type":2,
|
645 |
+
"power":128
|
646 |
+
},
|
647 |
+
"辅药":{
|
648 |
+
"type":3,
|
649 |
+
"power":128
|
650 |
+
}
|
651 |
+
},
|
652 |
+
"3026":{
|
653 |
+
"name":"天麻翡石精",
|
654 |
+
"level":"七品药材",
|
655 |
+
"type":"药材",
|
656 |
+
"rank":22,
|
657 |
+
"主药":{
|
658 |
+
"h_a_c":{
|
659 |
+
"type":0,
|
660 |
+
"power":64
|
661 |
+
},
|
662 |
+
"type":2,
|
663 |
+
"power":128
|
664 |
+
},
|
665 |
+
"药引":{
|
666 |
+
"h_a_c":{
|
667 |
+
"type":0,
|
668 |
+
"power":64
|
669 |
+
},
|
670 |
+
"type":2,
|
671 |
+
"power":128
|
672 |
+
},
|
673 |
+
"辅药":{
|
674 |
+
"type":3,
|
675 |
+
"power":128
|
676 |
+
}
|
677 |
+
},
|
678 |
+
"3027":{
|
679 |
+
"name":"八角玄冰草",
|
680 |
+
"level":"七品药材",
|
681 |
+
"type":"药材",
|
682 |
+
"rank":22,
|
683 |
+
"主药":{
|
684 |
+
"h_a_c":{
|
685 |
+
"type":-1,
|
686 |
+
"power":64
|
687 |
+
},
|
688 |
+
"type":2,
|
689 |
+
"power":128
|
690 |
+
},
|
691 |
+
"药引":{
|
692 |
+
"h_a_c":{
|
693 |
+
"type":1,
|
694 |
+
"power":64
|
695 |
+
},
|
696 |
+
"type":2,
|
697 |
+
"power":128
|
698 |
+
},
|
699 |
+
"辅药":{
|
700 |
+
"type":3,
|
701 |
+
"power":128
|
702 |
+
}
|
703 |
+
},
|
704 |
+
"3028":{
|
705 |
+
"name":"奇茸通天菊",
|
706 |
+
"level":"七品药材",
|
707 |
+
"type":"药材",
|
708 |
+
"rank":22,
|
709 |
+
"主药":{
|
710 |
+
"h_a_c":{
|
711 |
+
"type":1,
|
712 |
+
"power":64
|
713 |
+
},
|
714 |
+
"type":2,
|
715 |
+
"power":128
|
716 |
+
},
|
717 |
+
"药引":{
|
718 |
+
"h_a_c":{
|
719 |
+
"type":-1,
|
720 |
+
"power":64
|
721 |
+
},
|
722 |
+
"type":2,
|
723 |
+
"power":128
|
724 |
+
},
|
725 |
+
"辅药":{
|
726 |
+
"type":3,
|
727 |
+
"power":128
|
728 |
+
}
|
729 |
+
},
|
730 |
+
"3029":{
|
731 |
+
"name":"木灵三针花",
|
732 |
+
"level":"八品药材",
|
733 |
+
"type":"药材",
|
734 |
+
"rank":18,
|
735 |
+
"主药":{
|
736 |
+
"h_a_c":{
|
737 |
+
"type":0,
|
738 |
+
"power":128
|
739 |
+
},
|
740 |
+
"type":2,
|
741 |
+
"power":256
|
742 |
+
},
|
743 |
+
"药引":{
|
744 |
+
"h_a_c":{
|
745 |
+
"type":0,
|
746 |
+
"power":128
|
747 |
+
},
|
748 |
+
"type":2,
|
749 |
+
"power":256
|
750 |
+
},
|
751 |
+
"辅药":{
|
752 |
+
"type":3,
|
753 |
+
"power":256
|
754 |
+
}
|
755 |
+
},
|
756 |
+
"3030":{
|
757 |
+
"name":"鎏鑫天晶草",
|
758 |
+
"level":"八品药材",
|
759 |
+
"type":"药材",
|
760 |
+
"rank":18,
|
761 |
+
"主药":{
|
762 |
+
"h_a_c":{
|
763 |
+
"type":0,
|
764 |
+
"power":128
|
765 |
+
},
|
766 |
+
"type":2,
|
767 |
+
"power":256
|
768 |
+
},
|
769 |
+
"药引":{
|
770 |
+
"h_a_c":{
|
771 |
+
"type":0,
|
772 |
+
"power":128
|
773 |
+
},
|
774 |
+
"type":2,
|
775 |
+
"power":256
|
776 |
+
},
|
777 |
+
"辅药":{
|
778 |
+
"type":3,
|
779 |
+
"power":256
|
780 |
+
}
|
781 |
+
},
|
782 |
+
"3031":{
|
783 |
+
"name":"檀芒九叶花",
|
784 |
+
"level":"八品药材",
|
785 |
+
"type":"药材",
|
786 |
+
"rank":18,
|
787 |
+
"主药":{
|
788 |
+
"h_a_c":{
|
789 |
+
"type":-1,
|
790 |
+
"power":128
|
791 |
+
},
|
792 |
+
"type":2,
|
793 |
+
"power":256
|
794 |
+
},
|
795 |
+
"药引":{
|
796 |
+
"h_a_c":{
|
797 |
+
"type":1,
|
798 |
+
"power":128
|
799 |
+
},
|
800 |
+
"type":2,
|
801 |
+
"power":256
|
802 |
+
},
|
803 |
+
"辅药":{
|
804 |
+
"type":3,
|
805 |
+
"power":256
|
806 |
+
}
|
807 |
+
},
|
808 |
+
"3032":{
|
809 |
+
"name":"坎水玄冰果",
|
810 |
+
"level":"八品药材",
|
811 |
+
"type":"药材",
|
812 |
+
"rank":18,
|
813 |
+
"主药":{
|
814 |
+
"h_a_c":{
|
815 |
+
"type":1,
|
816 |
+
"power":128
|
817 |
+
},
|
818 |
+
"type":2,
|
819 |
+
"power":256
|
820 |
+
},
|
821 |
+
"药引":{
|
822 |
+
"h_a_c":{
|
823 |
+
"type":-1,
|
824 |
+
"power":128
|
825 |
+
},
|
826 |
+
"type":2,
|
827 |
+
"power":256
|
828 |
+
},
|
829 |
+
"辅药":{
|
830 |
+
"type":3,
|
831 |
+
"power":256
|
832 |
+
}
|
833 |
+
},
|
834 |
+
"3033":{
|
835 |
+
"name":"离火梧桐芝",
|
836 |
+
"level":"九品药材",
|
837 |
+
"type":"药材",
|
838 |
+
"rank":15,
|
839 |
+
"主药":{
|
840 |
+
"h_a_c":{
|
841 |
+
"type":0,
|
842 |
+
"power":256
|
843 |
+
},
|
844 |
+
"type":2,
|
845 |
+
"power":512
|
846 |
+
},
|
847 |
+
"药引":{
|
848 |
+
"h_a_c":{
|
849 |
+
"type":0,
|
850 |
+
"power":256
|
851 |
+
},
|
852 |
+
"type":2,
|
853 |
+
"power":512
|
854 |
+
},
|
855 |
+
"辅药":{
|
856 |
+
"type":3,
|
857 |
+
"power":512
|
858 |
+
}
|
859 |
+
},
|
860 |
+
"3034":{
|
861 |
+
"name":"尘磊岩麟果",
|
862 |
+
"level":"九品药材",
|
863 |
+
"type":"药材",
|
864 |
+
"rank":15,
|
865 |
+
"主药":{
|
866 |
+
"h_a_c":{
|
867 |
+
"type":0,
|
868 |
+
"power":256
|
869 |
+
},
|
870 |
+
"type":2,
|
871 |
+
"power":512
|
872 |
+
},
|
873 |
+
"药引":{
|
874 |
+
"h_a_c":{
|
875 |
+
"type":0,
|
876 |
+
"power":256
|
877 |
+
},
|
878 |
+
"type":2,
|
879 |
+
"power":512
|
880 |
+
},
|
881 |
+
"辅药":{
|
882 |
+
"type":3,
|
883 |
+
"power":512
|
884 |
+
}
|
885 |
+
},
|
886 |
+
"3035":{
|
887 |
+
"name":"剑魄竹笋",
|
888 |
+
"level":"九品药材",
|
889 |
+
"type":"药材",
|
890 |
+
"rank":15,
|
891 |
+
"主药":{
|
892 |
+
"h_a_c":{
|
893 |
+
"type":-1,
|
894 |
+
"power":256
|
895 |
+
},
|
896 |
+
"type":2,
|
897 |
+
"power":512
|
898 |
+
},
|
899 |
+
"药引":{
|
900 |
+
"h_a_c":{
|
901 |
+
"type":1,
|
902 |
+
"power":256
|
903 |
+
},
|
904 |
+
"type":2,
|
905 |
+
"power":512
|
906 |
+
},
|
907 |
+
"辅药":{
|
908 |
+
"type":3,
|
909 |
+
"power":512
|
910 |
+
}
|
911 |
+
},
|
912 |
+
"3036":{
|
913 |
+
"name":"明心问道果",
|
914 |
+
"level":"九品药材",
|
915 |
+
"type":"药材",
|
916 |
+
"rank":15,
|
917 |
+
"主药":{
|
918 |
+
"h_a_c":{
|
919 |
+
"type":1,
|
920 |
+
"power":256
|
921 |
+
},
|
922 |
+
"type":2,
|
923 |
+
"power":512
|
924 |
+
},
|
925 |
+
"药引":{
|
926 |
+
"h_a_c":{
|
927 |
+
"type":-1,
|
928 |
+
"power":256
|
929 |
+
},
|
930 |
+
"type":2,
|
931 |
+
"power":512
|
932 |
+
},
|
933 |
+
"辅药":{
|
934 |
+
"type":3,
|
935 |
+
"power":512
|
936 |
+
}
|
937 |
+
},
|
938 |
+
"3037":{
|
939 |
+
"name":"宁心草",
|
940 |
+
"level":"一品药材",
|
941 |
+
"type":"药材",
|
942 |
+
"rank":40,
|
943 |
+
"主药":{
|
944 |
+
"h_a_c":{
|
945 |
+
"type":0,
|
946 |
+
"power":1
|
947 |
+
},
|
948 |
+
"type":3,
|
949 |
+
"power":2
|
950 |
+
},
|
951 |
+
"药引":{
|
952 |
+
"h_a_c":{
|
953 |
+
"type":0,
|
954 |
+
"power":1
|
955 |
+
},
|
956 |
+
"type":2,
|
957 |
+
"power":2
|
958 |
+
},
|
959 |
+
"辅药":{
|
960 |
+
"type":4,
|
961 |
+
"power":2
|
962 |
+
}
|
963 |
+
},
|
964 |
+
"3038":{
|
965 |
+
"name":"凝血草",
|
966 |
+
"level":"一品药材",
|
967 |
+
"type":"药材",
|
968 |
+
"rank":40,
|
969 |
+
"主药":{
|
970 |
+
"h_a_c":{
|
971 |
+
"type":0,
|
972 |
+
"power":1
|
973 |
+
},
|
974 |
+
"type":3,
|
975 |
+
"power":2
|
976 |
+
},
|
977 |
+
"药引":{
|
978 |
+
"h_a_c":{
|
979 |
+
"type":0,
|
980 |
+
"power":1
|
981 |
+
},
|
982 |
+
"type":2,
|
983 |
+
"power":2
|
984 |
+
},
|
985 |
+
"辅药":{
|
986 |
+
"type":4,
|
987 |
+
"power":2
|
988 |
+
}
|
989 |
+
},
|
990 |
+
"3039":{
|
991 |
+
"name":"银月花",
|
992 |
+
"level":"一品药材",
|
993 |
+
"type":"药材",
|
994 |
+
"rank":40,
|
995 |
+
"主药":{
|
996 |
+
"h_a_c":{
|
997 |
+
"type":-1,
|
998 |
+
"power":1
|
999 |
+
},
|
1000 |
+
"type":3,
|
1001 |
+
"power":2
|
1002 |
+
},
|
1003 |
+
"药引":{
|
1004 |
+
"h_a_c":{
|
1005 |
+
"type":1,
|
1006 |
+
"power":1
|
1007 |
+
},
|
1008 |
+
"type":2,
|
1009 |
+
"power":2
|
1010 |
+
},
|
1011 |
+
"辅药":{
|
1012 |
+
"type":4,
|
1013 |
+
"power":2
|
1014 |
+
}
|
1015 |
+
},
|
1016 |
+
"3040":{
|
1017 |
+
"name":"宁神花",
|
1018 |
+
"level":"一品药材",
|
1019 |
+
"type":"药材",
|
1020 |
+
"rank":40,
|
1021 |
+
"主药":{
|
1022 |
+
"h_a_c":{
|
1023 |
+
"type":1,
|
1024 |
+
"power":1
|
1025 |
+
},
|
1026 |
+
"type":3,
|
1027 |
+
"power":2
|
1028 |
+
},
|
1029 |
+
"药引":{
|
1030 |
+
"h_a_c":{
|
1031 |
+
"type":-1,
|
1032 |
+
"power":1
|
1033 |
+
},
|
1034 |
+
"type":2,
|
1035 |
+
"power":2
|
1036 |
+
},
|
1037 |
+
"辅药":{
|
1038 |
+
"type":4,
|
1039 |
+
"power":2
|
1040 |
+
}
|
1041 |
+
},
|
1042 |
+
"3041":{
|
1043 |
+
"name":"流莹草",
|
1044 |
+
"level":"二品药材",
|
1045 |
+
"type":"药材",
|
1046 |
+
"rank":37,
|
1047 |
+
"主药":{
|
1048 |
+
"h_a_c":{
|
1049 |
+
"type":0,
|
1050 |
+
"power":2
|
1051 |
+
},
|
1052 |
+
"type":3,
|
1053 |
+
"power":4
|
1054 |
+
},
|
1055 |
+
"药引":{
|
1056 |
+
"h_a_c":{
|
1057 |
+
"type":0,
|
1058 |
+
"power":2
|
1059 |
+
},
|
1060 |
+
"type":2,
|
1061 |
+
"power":4
|
1062 |
+
},
|
1063 |
+
"辅药":{
|
1064 |
+
"type":4,
|
1065 |
+
"power":4
|
1066 |
+
}
|
1067 |
+
},
|
1068 |
+
"3042":{
|
1069 |
+
"name":"蛇涎果",
|
1070 |
+
"level":"二品药材",
|
1071 |
+
"type":"药材",
|
1072 |
+
"rank":37,
|
1073 |
+
"主药":{
|
1074 |
+
"h_a_c":{
|
1075 |
+
"type":0,
|
1076 |
+
"power":2
|
1077 |
+
},
|
1078 |
+
"type":3,
|
1079 |
+
"power":4
|
1080 |
+
},
|
1081 |
+
"药引":{
|
1082 |
+
"h_a_c":{
|
1083 |
+
"type":0,
|
1084 |
+
"power":2
|
1085 |
+
},
|
1086 |
+
"type":2,
|
1087 |
+
"power":4
|
1088 |
+
},
|
1089 |
+
"辅药":{
|
1090 |
+
"type":4,
|
1091 |
+
"power":4
|
1092 |
+
}
|
1093 |
+
},
|
1094 |
+
"3043":{
|
1095 |
+
"name":"夏枯草",
|
1096 |
+
"level":"二品药材",
|
1097 |
+
"type":"药材",
|
1098 |
+
"rank":37,
|
1099 |
+
"主药":{
|
1100 |
+
"h_a_c":{
|
1101 |
+
"type":-1,
|
1102 |
+
"power":2
|
1103 |
+
},
|
1104 |
+
"type":3,
|
1105 |
+
"power":4
|
1106 |
+
},
|
1107 |
+
"药引":{
|
1108 |
+
"h_a_c":{
|
1109 |
+
"type":1,
|
1110 |
+
"power":2
|
1111 |
+
},
|
1112 |
+
"type":2,
|
1113 |
+
"power":4
|
1114 |
+
},
|
1115 |
+
"辅药":{
|
1116 |
+
"type":4,
|
1117 |
+
"power":4
|
1118 |
+
}
|
1119 |
+
},
|
1120 |
+
"3044":{
|
1121 |
+
"name":"百草露",
|
1122 |
+
"level":"二品药材",
|
1123 |
+
"type":"药材",
|
1124 |
+
"rank":37,
|
1125 |
+
"主药":{
|
1126 |
+
"h_a_c":{
|
1127 |
+
"type":1,
|
1128 |
+
"power":2
|
1129 |
+
},
|
1130 |
+
"type":3,
|
1131 |
+
"power":4
|
1132 |
+
},
|
1133 |
+
"药引":{
|
1134 |
+
"h_a_c":{
|
1135 |
+
"type":-1,
|
1136 |
+
"power":2
|
1137 |
+
},
|
1138 |
+
"type":2,
|
1139 |
+
"power":4
|
1140 |
+
},
|
1141 |
+
"辅药":{
|
1142 |
+
"type":4,
|
1143 |
+
"power":4
|
1144 |
+
}
|
1145 |
+
},
|
1146 |
+
"3045":{
|
1147 |
+
"name":"轻灵草",
|
1148 |
+
"level":"三品药材",
|
1149 |
+
"type":"药材",
|
1150 |
+
"rank":34,
|
1151 |
+
"主药":{
|
1152 |
+
"h_a_c":{
|
1153 |
+
"type":0,
|
1154 |
+
"power":4
|
1155 |
+
},
|
1156 |
+
"type":3,
|
1157 |
+
"power":8
|
1158 |
+
},
|
1159 |
+
"药引":{
|
1160 |
+
"h_a_c":{
|
1161 |
+
"type":0,
|
1162 |
+
"power":4
|
1163 |
+
},
|
1164 |
+
"type":2,
|
1165 |
+
"power":8
|
1166 |
+
},
|
1167 |
+
"辅药":{
|
1168 |
+
"type":4,
|
1169 |
+
"power":8
|
1170 |
+
}
|
1171 |
+
},
|
1172 |
+
"3046":{
|
1173 |
+
"name":"龙葵",
|
1174 |
+
"level":"三品药材",
|
1175 |
+
"type":"药材",
|
1176 |
+
"rank":34,
|
1177 |
+
"主药":{
|
1178 |
+
"h_a_c":{
|
1179 |
+
"type":0,
|
1180 |
+
"power":4
|
1181 |
+
},
|
1182 |
+
"type":3,
|
1183 |
+
"power":8
|
1184 |
+
},
|
1185 |
+
"药引":{
|
1186 |
+
"h_a_c":{
|
1187 |
+
"type":0,
|
1188 |
+
"power":4
|
1189 |
+
},
|
1190 |
+
"type":2,
|
1191 |
+
"power":8
|
1192 |
+
},
|
1193 |
+
"辅药":{
|
1194 |
+
"type":4,
|
1195 |
+
"power":8
|
1196 |
+
}
|
1197 |
+
},
|
1198 |
+
"3047":{
|
1199 |
+
"name":"弗兰草",
|
1200 |
+
"level":"三品药材",
|
1201 |
+
"type":"药材",
|
1202 |
+
"rank":34,
|
1203 |
+
"主药":{
|
1204 |
+
"h_a_c":{
|
1205 |
+
"type":-1,
|
1206 |
+
"power":4
|
1207 |
+
},
|
1208 |
+
"type":3,
|
1209 |
+
"power":8
|
1210 |
+
},
|
1211 |
+
"药引":{
|
1212 |
+
"h_a_c":{
|
1213 |
+
"type":1,
|
1214 |
+
"power":4
|
1215 |
+
},
|
1216 |
+
"type":2,
|
1217 |
+
"power":8
|
1218 |
+
},
|
1219 |
+
"辅药":{
|
1220 |
+
"type":4,
|
1221 |
+
"power":8
|
1222 |
+
}
|
1223 |
+
},
|
1224 |
+
"3048":{
|
1225 |
+
"name":"玄参",
|
1226 |
+
"level":"三品药材",
|
1227 |
+
"type":"药材",
|
1228 |
+
"rank":34,
|
1229 |
+
"主药":{
|
1230 |
+
"h_a_c":{
|
1231 |
+
"type":1,
|
1232 |
+
"power":4
|
1233 |
+
},
|
1234 |
+
"type":3,
|
1235 |
+
"power":8
|
1236 |
+
},
|
1237 |
+
"药引":{
|
1238 |
+
"h_a_c":{
|
1239 |
+
"type":-1,
|
1240 |
+
"power":4
|
1241 |
+
},
|
1242 |
+
"type":2,
|
1243 |
+
"power":8
|
1244 |
+
},
|
1245 |
+
"辅药":{
|
1246 |
+
"type":4,
|
1247 |
+
"power":8
|
1248 |
+
}
|
1249 |
+
},
|
1250 |
+
"3049":{
|
1251 |
+
"name":"菩提花",
|
1252 |
+
"level":"四品药材",
|
1253 |
+
"type":"药材",
|
1254 |
+
"rank":31,
|
1255 |
+
"主药":{
|
1256 |
+
"h_a_c":{
|
1257 |
+
"type":0,
|
1258 |
+
"power":8
|
1259 |
+
},
|
1260 |
+
"type":3,
|
1261 |
+
"power":16
|
1262 |
+
},
|
1263 |
+
"药引":{
|
1264 |
+
"h_a_c":{
|
1265 |
+
"type":0,
|
1266 |
+
"power":8
|
1267 |
+
},
|
1268 |
+
"type":2,
|
1269 |
+
"power":16
|
1270 |
+
},
|
1271 |
+
"辅药":{
|
1272 |
+
"type":4,
|
1273 |
+
"power":16
|
1274 |
+
}
|
1275 |
+
},
|
1276 |
+
"3050":{
|
1277 |
+
"name":"乌稠木",
|
1278 |
+
"level":"四品药材",
|
1279 |
+
"type":"药材",
|
1280 |
+
"rank":31,
|
1281 |
+
"主药":{
|
1282 |
+
"h_a_c":{
|
1283 |
+
"type":0,
|
1284 |
+
"power":8
|
1285 |
+
},
|
1286 |
+
"type":3,
|
1287 |
+
"power":16
|
1288 |
+
},
|
1289 |
+
"药引":{
|
1290 |
+
"h_a_c":{
|
1291 |
+
"type":0,
|
1292 |
+
"power":8
|
1293 |
+
},
|
1294 |
+
"type":2,
|
1295 |
+
"power":16
|
1296 |
+
},
|
1297 |
+
"辅药":{
|
1298 |
+
"type":4,
|
1299 |
+
"power":16
|
1300 |
+
}
|
1301 |
+
},
|
1302 |
+
"3051":{
|
1303 |
+
"name":"雪凝花",
|
1304 |
+
"level":"四品药材",
|
1305 |
+
"type":"药材",
|
1306 |
+
"rank":31,
|
1307 |
+
"主药":{
|
1308 |
+
"h_a_c":{
|
1309 |
+
"type":-1,
|
1310 |
+
"power":8
|
1311 |
+
},
|
1312 |
+
"type":3,
|
1313 |
+
"power":16
|
1314 |
+
},
|
1315 |
+
"药引":{
|
1316 |
+
"h_a_c":{
|
1317 |
+
"type":1,
|
1318 |
+
"power":8
|
1319 |
+
},
|
1320 |
+
"type":2,
|
1321 |
+
"power":16
|
1322 |
+
},
|
1323 |
+
"辅药":{
|
1324 |
+
"type":4,
|
1325 |
+
"power":16
|
1326 |
+
}
|
1327 |
+
},
|
1328 |
+
"3052":{
|
1329 |
+
"name":"龙纹草",
|
1330 |
+
"level":"四品药材",
|
1331 |
+
"type":"药材",
|
1332 |
+
"rank":31,
|
1333 |
+
"主药":{
|
1334 |
+
"h_a_c":{
|
1335 |
+
"type":1,
|
1336 |
+
"power":8
|
1337 |
+
},
|
1338 |
+
"type":3,
|
1339 |
+
"power":16
|
1340 |
+
},
|
1341 |
+
"药引":{
|
1342 |
+
"h_a_c":{
|
1343 |
+
"type":-1,
|
1344 |
+
"power":8
|
1345 |
+
},
|
1346 |
+
"type":2,
|
1347 |
+
"power":16
|
1348 |
+
},
|
1349 |
+
"辅药":{
|
1350 |
+
"type":4,
|
1351 |
+
"power":16
|
1352 |
+
}
|
1353 |
+
},
|
1354 |
+
"3053":{
|
1355 |
+
"name":"天灵果",
|
1356 |
+
"level":"五品药材",
|
1357 |
+
"type":"药材",
|
1358 |
+
"rank":28,
|
1359 |
+
"主药":{
|
1360 |
+
"h_a_c":{
|
1361 |
+
"type":0,
|
1362 |
+
"power":16
|
1363 |
+
},
|
1364 |
+
"type":3,
|
1365 |
+
"power":32
|
1366 |
+
},
|
1367 |
+
"药引":{
|
1368 |
+
"h_a_c":{
|
1369 |
+
"type":0,
|
1370 |
+
"power":16
|
1371 |
+
},
|
1372 |
+
"type":2,
|
1373 |
+
"power":32
|
1374 |
+
},
|
1375 |
+
"辅药":{
|
1376 |
+
"type":4,
|
1377 |
+
"power":32
|
1378 |
+
}
|
1379 |
+
},
|
1380 |
+
"3054":{
|
1381 |
+
"name":"灯心草",
|
1382 |
+
"level":"五品药材",
|
1383 |
+
"type":"药材",
|
1384 |
+
"rank":28,
|
1385 |
+
"主药":{
|
1386 |
+
"h_a_c":{
|
1387 |
+
"type":0,
|
1388 |
+
"power":16
|
1389 |
+
},
|
1390 |
+
"type":3,
|
1391 |
+
"power":32
|
1392 |
+
},
|
1393 |
+
"药引":{
|
1394 |
+
"h_a_c":{
|
1395 |
+
"type":0,
|
1396 |
+
"power":16
|
1397 |
+
},
|
1398 |
+
"type":2,
|
1399 |
+
"power":32
|
1400 |
+
},
|
1401 |
+
"辅药":{
|
1402 |
+
"type":4,
|
1403 |
+
"power":32
|
1404 |
+
}
|
1405 |
+
},
|
1406 |
+
"3055":{
|
1407 |
+
"name":"穿心莲",
|
1408 |
+
"level":"五品药材",
|
1409 |
+
"type":"药材",
|
1410 |
+
"rank":28,
|
1411 |
+
"主药":{
|
1412 |
+
"h_a_c":{
|
1413 |
+
"type":-1,
|
1414 |
+
"power":16
|
1415 |
+
},
|
1416 |
+
"type":3,
|
1417 |
+
"power":32
|
1418 |
+
},
|
1419 |
+
"药引":{
|
1420 |
+
"h_a_c":{
|
1421 |
+
"type":1,
|
1422 |
+
"power":16
|
1423 |
+
},
|
1424 |
+
"type":2,
|
1425 |
+
"power":32
|
1426 |
+
},
|
1427 |
+
"辅药":{
|
1428 |
+
"type":4,
|
1429 |
+
"power":32
|
1430 |
+
}
|
1431 |
+
},
|
1432 |
+
"3056":{
|
1433 |
+
"name":"龙鳞果",
|
1434 |
+
"level":"五品药材",
|
1435 |
+
"type":"药材",
|
1436 |
+
"rank":28,
|
1437 |
+
"主药":{
|
1438 |
+
"h_a_c":{
|
1439 |
+
"type":1,
|
1440 |
+
"power":16
|
1441 |
+
},
|
1442 |
+
"type":3,
|
1443 |
+
"power":32
|
1444 |
+
},
|
1445 |
+
"药引":{
|
1446 |
+
"h_a_c":{
|
1447 |
+
"type":-1,
|
1448 |
+
"power":16
|
1449 |
+
},
|
1450 |
+
"type":2,
|
1451 |
+
"power":32
|
1452 |
+
},
|
1453 |
+
"辅药":{
|
1454 |
+
"type":4,
|
1455 |
+
"power":32
|
1456 |
+
}
|
1457 |
+
},
|
1458 |
+
"3057":{
|
1459 |
+
"name":"白沉脂",
|
1460 |
+
"level":"六品药材",
|
1461 |
+
"type":"药材",
|
1462 |
+
"rank":25,
|
1463 |
+
"主药":{
|
1464 |
+
"h_a_c":{
|
1465 |
+
"type":0,
|
1466 |
+
"power":32
|
1467 |
+
},
|
1468 |
+
"type":3,
|
1469 |
+
"power":64
|
1470 |
+
},
|
1471 |
+
"药引":{
|
1472 |
+
"h_a_c":{
|
1473 |
+
"type":0,
|
1474 |
+
"power":32
|
1475 |
+
},
|
1476 |
+
"type":2,
|
1477 |
+
"power":64
|
1478 |
+
},
|
1479 |
+
"辅药":{
|
1480 |
+
"type":4,
|
1481 |
+
"power":64
|
1482 |
+
}
|
1483 |
+
},
|
1484 |
+
"3058":{
|
1485 |
+
"name":"苦曼藤",
|
1486 |
+
"level":"六品药材",
|
1487 |
+
"type":"药材",
|
1488 |
+
"rank":25,
|
1489 |
+
"主药":{
|
1490 |
+
"h_a_c":{
|
1491 |
+
"type":0,
|
1492 |
+
"power":32
|
1493 |
+
},
|
1494 |
+
"type":3,
|
1495 |
+
"power":64
|
1496 |
+
},
|
1497 |
+
"药引":{
|
1498 |
+
"h_a_c":{
|
1499 |
+
"type":0,
|
1500 |
+
"power":32
|
1501 |
+
},
|
1502 |
+
"type":2,
|
1503 |
+
"power":64
|
1504 |
+
},
|
1505 |
+
"辅药":{
|
1506 |
+
"type":4,
|
1507 |
+
"power":64
|
1508 |
+
}
|
1509 |
+
},
|
1510 |
+
"3059":{
|
1511 |
+
"name":"血菩提",
|
1512 |
+
"level":"六品药材",
|
1513 |
+
"type":"药材",
|
1514 |
+
"rank":25,
|
1515 |
+
"主药":{
|
1516 |
+
"h_a_c":{
|
1517 |
+
"type":-1,
|
1518 |
+
"power":32
|
1519 |
+
},
|
1520 |
+
"type":3,
|
1521 |
+
"power":64
|
1522 |
+
},
|
1523 |
+
"药引":{
|
1524 |
+
"h_a_c":{
|
1525 |
+
"type":1,
|
1526 |
+
"power":32
|
1527 |
+
},
|
1528 |
+
"type":2,
|
1529 |
+
"power":64
|
1530 |
+
},
|
1531 |
+
"辅药":{
|
1532 |
+
"type":4,
|
1533 |
+
"power":64
|
1534 |
+
}
|
1535 |
+
},
|
1536 |
+
"3060":{
|
1537 |
+
"name":"诱妖草",
|
1538 |
+
"level":"六品药材",
|
1539 |
+
"type":"药材",
|
1540 |
+
"rank":25,
|
1541 |
+
"主药":{
|
1542 |
+
"h_a_c":{
|
1543 |
+
"type":1,
|
1544 |
+
"power":32
|
1545 |
+
},
|
1546 |
+
"type":3,
|
1547 |
+
"power":64
|
1548 |
+
},
|
1549 |
+
"药引":{
|
1550 |
+
"h_a_c":{
|
1551 |
+
"type":-1,
|
1552 |
+
"power":32
|
1553 |
+
},
|
1554 |
+
"type":2,
|
1555 |
+
"power":64
|
1556 |
+
},
|
1557 |
+
"辅药":{
|
1558 |
+
"type":4,
|
1559 |
+
"power":64
|
1560 |
+
}
|
1561 |
+
},
|
1562 |
+
"3061":{
|
1563 |
+
"name":"天问花",
|
1564 |
+
"level":"七品药材",
|
1565 |
+
"type":"药材",
|
1566 |
+
"rank":22,
|
1567 |
+
"主药":{
|
1568 |
+
"h_a_c":{
|
1569 |
+
"type":0,
|
1570 |
+
"power":64
|
1571 |
+
},
|
1572 |
+
"type":3,
|
1573 |
+
"power":128
|
1574 |
+
},
|
1575 |
+
"药引":{
|
1576 |
+
"h_a_c":{
|
1577 |
+
"type":0,
|
1578 |
+
"power":64
|
1579 |
+
},
|
1580 |
+
"type":2,
|
1581 |
+
"power":128
|
1582 |
+
},
|
1583 |
+
"辅药":{
|
1584 |
+
"type":4,
|
1585 |
+
"power":128
|
1586 |
+
}
|
1587 |
+
},
|
1588 |
+
"3062":{
|
1589 |
+
"name":"渊血冥花",
|
1590 |
+
"level":"七品药材",
|
1591 |
+
"type":"药材",
|
1592 |
+
"rank":22,
|
1593 |
+
"主药":{
|
1594 |
+
"h_a_c":{
|
1595 |
+
"type":0,
|
1596 |
+
"power":64
|
1597 |
+
},
|
1598 |
+
"type":3,
|
1599 |
+
"power":128
|
1600 |
+
},
|
1601 |
+
"药引":{
|
1602 |
+
"h_a_c":{
|
1603 |
+
"type":0,
|
1604 |
+
"power":64
|
1605 |
+
},
|
1606 |
+
"type":2,
|
1607 |
+
"power":128
|
1608 |
+
},
|
1609 |
+
"辅药":{
|
1610 |
+
"type":4,
|
1611 |
+
"power":128
|
1612 |
+
}
|
1613 |
+
},
|
1614 |
+
"3063":{
|
1615 |
+
"name":"芒焰果",
|
1616 |
+
"level":"七品药材",
|
1617 |
+
"type":"药材",
|
1618 |
+
"rank":22,
|
1619 |
+
"主药":{
|
1620 |
+
"h_a_c":{
|
1621 |
+
"type":-1,
|
1622 |
+
"power":64
|
1623 |
+
},
|
1624 |
+
"type":3,
|
1625 |
+
"power":128
|
1626 |
+
},
|
1627 |
+
"药引":{
|
1628 |
+
"h_a_c":{
|
1629 |
+
"type":1,
|
1630 |
+
"power":64
|
1631 |
+
},
|
1632 |
+
"type":2,
|
1633 |
+
"power":128
|
1634 |
+
},
|
1635 |
+
"辅药":{
|
1636 |
+
"type":4,
|
1637 |
+
"power":128
|
1638 |
+
}
|
1639 |
+
},
|
1640 |
+
"3064":{
|
1641 |
+
"name":"问道花",
|
1642 |
+
"level":"七品药材",
|
1643 |
+
"type":"药材",
|
1644 |
+
"rank":22,
|
1645 |
+
"主药":{
|
1646 |
+
"h_a_c":{
|
1647 |
+
"type":1,
|
1648 |
+
"power":64
|
1649 |
+
},
|
1650 |
+
"type":3,
|
1651 |
+
"power":128
|
1652 |
+
},
|
1653 |
+
"药引":{
|
1654 |
+
"h_a_c":{
|
1655 |
+
"type":-1,
|
1656 |
+
"power":64
|
1657 |
+
},
|
1658 |
+
"type":2,
|
1659 |
+
"power":128
|
1660 |
+
},
|
1661 |
+
"辅药":{
|
1662 |
+
"type":4,
|
1663 |
+
"power":128
|
1664 |
+
}
|
1665 |
+
},
|
1666 |
+
"3065":{
|
1667 |
+
"name":"阴阳黄泉花",
|
1668 |
+
"level":"八品药材",
|
1669 |
+
"type":"药材",
|
1670 |
+
"rank":18,
|
1671 |
+
"主药":{
|
1672 |
+
"h_a_c":{
|
1673 |
+
"type":0,
|
1674 |
+
"power":128
|
1675 |
+
},
|
1676 |
+
"type":3,
|
1677 |
+
"power":256
|
1678 |
+
},
|
1679 |
+
"药引":{
|
1680 |
+
"h_a_c":{
|
1681 |
+
"type":0,
|
1682 |
+
"power":128
|
1683 |
+
},
|
1684 |
+
"type":2,
|
1685 |
+
"power":256
|
1686 |
+
},
|
1687 |
+
"辅药":{
|
1688 |
+
"type":4,
|
1689 |
+
"power":256
|
1690 |
+
}
|
1691 |
+
},
|
1692 |
+
"3066":{
|
1693 |
+
"name":"厉魂血珀",
|
1694 |
+
"level":"八品药材",
|
1695 |
+
"type":"药材",
|
1696 |
+
"rank":18,
|
1697 |
+
"主药":{
|
1698 |
+
"h_a_c":{
|
1699 |
+
"type":0,
|
1700 |
+
"power":128
|
1701 |
+
},
|
1702 |
+
"type":3,
|
1703 |
+
"power":256
|
1704 |
+
},
|
1705 |
+
"药引":{
|
1706 |
+
"h_a_c":{
|
1707 |
+
"type":0,
|
1708 |
+
"power":128
|
1709 |
+
},
|
1710 |
+
"type":2,
|
1711 |
+
"power":256
|
1712 |
+
},
|
1713 |
+
"辅药":{
|
1714 |
+
"type":4,
|
1715 |
+
"power":256
|
1716 |
+
}
|
1717 |
+
},
|
1718 |
+
"3067":{
|
1719 |
+
"name":"浩淼水藤",
|
1720 |
+
"level":"八品药材",
|
1721 |
+
"type":"药材",
|
1722 |
+
"rank":18,
|
1723 |
+
"主药":{
|
1724 |
+
"h_a_c":{
|
1725 |
+
"type":-1,
|
1726 |
+
"power":128
|
1727 |
+
},
|
1728 |
+
"type":3,
|
1729 |
+
"power":256
|
1730 |
+
},
|
1731 |
+
"药引":{
|
1732 |
+
"h_a_c":{
|
1733 |
+
"type":1,
|
1734 |
+
"power":128
|
1735 |
+
},
|
1736 |
+
"type":2,
|
1737 |
+
"power":256
|
1738 |
+
},
|
1739 |
+
"辅药":{
|
1740 |
+
"type":4,
|
1741 |
+
"power":256
|
1742 |
+
}
|
1743 |
+
},
|
1744 |
+
"3068":{
|
1745 |
+
"name":"道蕴花",
|
1746 |
+
"level":"八品药材",
|
1747 |
+
"type":"药材",
|
1748 |
+
"rank":18,
|
1749 |
+
"主药":{
|
1750 |
+
"h_a_c":{
|
1751 |
+
"type":1,
|
1752 |
+
"power":128
|
1753 |
+
},
|
1754 |
+
"type":3,
|
1755 |
+
"power":256
|
1756 |
+
},
|
1757 |
+
"药引":{
|
1758 |
+
"h_a_c":{
|
1759 |
+
"type":-1,
|
1760 |
+
"power":128
|
1761 |
+
},
|
1762 |
+
"type":2,
|
1763 |
+
"power":256
|
1764 |
+
},
|
1765 |
+
"辅药":{
|
1766 |
+
"type":4,
|
1767 |
+
"power":256
|
1768 |
+
}
|
1769 |
+
},
|
1770 |
+
"3069":{
|
1771 |
+
"name":"太乙碧莹花",
|
1772 |
+
"level":"九品药材",
|
1773 |
+
"type":"药材",
|
1774 |
+
"rank":15,
|
1775 |
+
"主药":{
|
1776 |
+
"h_a_c":{
|
1777 |
+
"type":0,
|
1778 |
+
"power":256
|
1779 |
+
},
|
1780 |
+
"type":3,
|
1781 |
+
"power":512
|
1782 |
+
},
|
1783 |
+
"药引":{
|
1784 |
+
"h_a_c":{
|
1785 |
+
"type":0,
|
1786 |
+
"power":256
|
1787 |
+
},
|
1788 |
+
"type":2,
|
1789 |
+
"power":512
|
1790 |
+
},
|
1791 |
+
"辅药":{
|
1792 |
+
"type":4,
|
1793 |
+
"power":512
|
1794 |
+
}
|
1795 |
+
},
|
1796 |
+
"3070":{
|
1797 |
+
"name":"森檀木",
|
1798 |
+
"level":"九品药材",
|
1799 |
+
"type":"药材",
|
1800 |
+
"rank":15,
|
1801 |
+
"主药":{
|
1802 |
+
"h_a_c":{
|
1803 |
+
"type":0,
|
1804 |
+
"power":256
|
1805 |
+
},
|
1806 |
+
"type":3,
|
1807 |
+
"power":512
|
1808 |
+
},
|
1809 |
+
"药引":{
|
1810 |
+
"h_a_c":{
|
1811 |
+
"type":0,
|
1812 |
+
"power":256
|
1813 |
+
},
|
1814 |
+
"type":2,
|
1815 |
+
"power":512
|
1816 |
+
},
|
1817 |
+
"辅药":{
|
1818 |
+
"type":4,
|
1819 |
+
"power":512
|
1820 |
+
}
|
1821 |
+
},
|
1822 |
+
"3071":{
|
1823 |
+
"name":"炼心芝",
|
1824 |
+
"level":"九品药材",
|
1825 |
+
"type":"药材",
|
1826 |
+
"rank":15,
|
1827 |
+
"主药":{
|
1828 |
+
"h_a_c":{
|
1829 |
+
"type":-1,
|
1830 |
+
"power":256
|
1831 |
+
},
|
1832 |
+
"type":3,
|
1833 |
+
"power":512
|
1834 |
+
},
|
1835 |
+
"药引":{
|
1836 |
+
"h_a_c":{
|
1837 |
+
"type":1,
|
1838 |
+
"power":256
|
1839 |
+
},
|
1840 |
+
"type":2,
|
1841 |
+
"power":512
|
1842 |
+
},
|
1843 |
+
"辅药":{
|
1844 |
+
"type":4,
|
1845 |
+
"power":512
|
1846 |
+
}
|
1847 |
+
},
|
1848 |
+
"3072":{
|
1849 |
+
"name":"重元换血草",
|
1850 |
+
"level":"九品药材",
|
1851 |
+
"type":"药材",
|
1852 |
+
"rank":15,
|
1853 |
+
"主药":{
|
1854 |
+
"h_a_c":{
|
1855 |
+
"type":1,
|
1856 |
+
"power":256
|
1857 |
+
},
|
1858 |
+
"type":3,
|
1859 |
+
"power":512
|
1860 |
+
},
|
1861 |
+
"药引":{
|
1862 |
+
"h_a_c":{
|
1863 |
+
"type":-1,
|
1864 |
+
"power":256
|
1865 |
+
},
|
1866 |
+
"type":2,
|
1867 |
+
"power":512
|
1868 |
+
},
|
1869 |
+
"辅药":{
|
1870 |
+
"type":4,
|
1871 |
+
"power":512
|
1872 |
+
}
|
1873 |
+
},
|
1874 |
+
"3073":{
|
1875 |
+
"name":"地黄参",
|
1876 |
+
"level":"一品药材",
|
1877 |
+
"type":"药材",
|
1878 |
+
"rank":40,
|
1879 |
+
"主药":{
|
1880 |
+
"h_a_c":{
|
1881 |
+
"type":0,
|
1882 |
+
"power":1
|
1883 |
+
},
|
1884 |
+
"type":5,
|
1885 |
+
"power":2
|
1886 |
+
},
|
1887 |
+
"药引":{
|
1888 |
+
"h_a_c":{
|
1889 |
+
"type":0,
|
1890 |
+
"power":1
|
1891 |
+
},
|
1892 |
+
"type":2,
|
1893 |
+
"power":2
|
1894 |
+
},
|
1895 |
+
"辅药":{
|
1896 |
+
"type":6,
|
1897 |
+
"power":2
|
1898 |
+
}
|
1899 |
+
},
|
1900 |
+
"3074":{
|
1901 |
+
"name":"火精枣",
|
1902 |
+
"level":"一品药材",
|
1903 |
+
"type":"药材",
|
1904 |
+
"rank":40,
|
1905 |
+
"主药":{
|
1906 |
+
"h_a_c":{
|
1907 |
+
"type":0,
|
1908 |
+
"power":1
|
1909 |
+
},
|
1910 |
+
"type":5,
|
1911 |
+
"power":2
|
1912 |
+
},
|
1913 |
+
"药引":{
|
1914 |
+
"h_a_c":{
|
1915 |
+
"type":0,
|
1916 |
+
"power":1
|
1917 |
+
},
|
1918 |
+
"type":2,
|
1919 |
+
"power":2
|
1920 |
+
},
|
1921 |
+
"辅药":{
|
1922 |
+
"type":6,
|
1923 |
+
"power":2
|
1924 |
+
}
|
1925 |
+
},
|
1926 |
+
"3075":{
|
1927 |
+
"name":"剑芦",
|
1928 |
+
"level":"一品药材",
|
1929 |
+
"type":"药材",
|
1930 |
+
"rank":40,
|
1931 |
+
"主药":{
|
1932 |
+
"h_a_c":{
|
1933 |
+
"type":-1,
|
1934 |
+
"power":1
|
1935 |
+
},
|
1936 |
+
"type":5,
|
1937 |
+
"power":2
|
1938 |
+
},
|
1939 |
+
"药引":{
|
1940 |
+
"h_a_c":{
|
1941 |
+
"type":1,
|
1942 |
+
"power":1
|
1943 |
+
},
|
1944 |
+
"type":2,
|
1945 |
+
"power":2
|
1946 |
+
},
|
1947 |
+
"辅药":{
|
1948 |
+
"type":6,
|
1949 |
+
"power":2
|
1950 |
+
}
|
1951 |
+
},
|
1952 |
+
"3076":{
|
1953 |
+
"name":"七星草",
|
1954 |
+
"level":"一品药材",
|
1955 |
+
"type":"药材",
|
1956 |
+
"rank":40,
|
1957 |
+
"主药":{
|
1958 |
+
"h_a_c":{
|
1959 |
+
"type":1,
|
1960 |
+
"power":1
|
1961 |
+
},
|
1962 |
+
"type":5,
|
1963 |
+
"power":2
|
1964 |
+
},
|
1965 |
+
"药引":{
|
1966 |
+
"h_a_c":{
|
1967 |
+
"type":-1,
|
1968 |
+
"power":1
|
1969 |
+
},
|
1970 |
+
"type":2,
|
1971 |
+
"power":2
|
1972 |
+
},
|
1973 |
+
"辅药":{
|
1974 |
+
"type":6,
|
1975 |
+
"power":2
|
1976 |
+
}
|
1977 |
+
},
|
1978 |
+
"3077":{
|
1979 |
+
"name":"风灵花",
|
1980 |
+
"level":"二品药材",
|
1981 |
+
"type":"药材",
|
1982 |
+
"rank":37,
|
1983 |
+
"主药":{
|
1984 |
+
"h_a_c":{
|
1985 |
+
"type":0,
|
1986 |
+
"power":2
|
1987 |
+
},
|
1988 |
+
"type":5,
|
1989 |
+
"power":4
|
1990 |
+
},
|
1991 |
+
"药引":{
|
1992 |
+
"h_a_c":{
|
1993 |
+
"type":0,
|
1994 |
+
"power":2
|
1995 |
+
},
|
1996 |
+
"type":2,
|
1997 |
+
"power":4
|
1998 |
+
},
|
1999 |
+
"辅药":{
|
2000 |
+
"type":6,
|
2001 |
+
"power":4
|
2002 |
+
}
|
2003 |
+
},
|
2004 |
+
"3078":{
|
2005 |
+
"name":"伏龙参",
|
2006 |
+
"level":"二品药材",
|
2007 |
+
"type":"药材",
|
2008 |
+
"rank":37,
|
2009 |
+
"主药":{
|
2010 |
+
"h_a_c":{
|
2011 |
+
"type":0,
|
2012 |
+
"power":2
|
2013 |
+
},
|
2014 |
+
"type":5,
|
2015 |
+
"power":4
|
2016 |
+
},
|
2017 |
+
"药引":{
|
2018 |
+
"h_a_c":{
|
2019 |
+
"type":0,
|
2020 |
+
"power":2
|
2021 |
+
},
|
2022 |
+
"type":2,
|
2023 |
+
"power":4
|
2024 |
+
},
|
2025 |
+
"辅药":{
|
2026 |
+
"type":6,
|
2027 |
+
"power":4
|
2028 |
+
}
|
2029 |
+
},
|
2030 |
+
"3079":{
|
2031 |
+
"name":"凌风花",
|
2032 |
+
"level":"二品药材",
|
2033 |
+
"type":"药材",
|
2034 |
+
"rank":37,
|
2035 |
+
"主药":{
|
2036 |
+
"h_a_c":{
|
2037 |
+
"type":-1,
|
2038 |
+
"power":2
|
2039 |
+
},
|
2040 |
+
"type":5,
|
2041 |
+
"power":4
|
2042 |
+
},
|
2043 |
+
"药引":{
|
2044 |
+
"h_a_c":{
|
2045 |
+
"type":1,
|
2046 |
+
"power":2
|
2047 |
+
},
|
2048 |
+
"type":2,
|
2049 |
+
"power":4
|
2050 |
+
},
|
2051 |
+
"辅药":{
|
2052 |
+
"type":6,
|
2053 |
+
"power":4
|
2054 |
+
}
|
2055 |
+
},
|
2056 |
+
"3080":{
|
2057 |
+
"name":"补天芝",
|
2058 |
+
"level":"二品药材",
|
2059 |
+
"type":"药材",
|
2060 |
+
"rank":37,
|
2061 |
+
"主药":{
|
2062 |
+
"h_a_c":{
|
2063 |
+
"type":1,
|
2064 |
+
"power":2
|
2065 |
+
},
|
2066 |
+
"type":5,
|
2067 |
+
"power":4
|
2068 |
+
},
|
2069 |
+
"药引":{
|
2070 |
+
"h_a_c":{
|
2071 |
+
"type":-1,
|
2072 |
+
"power":2
|
2073 |
+
},
|
2074 |
+
"type":2,
|
2075 |
+
"power":4
|
2076 |
+
},
|
2077 |
+
"辅药":{
|
2078 |
+
"type":6,
|
2079 |
+
"power":4
|
2080 |
+
}
|
2081 |
+
},
|
2082 |
+
"3081":{
|
2083 |
+
"name":"枫香脂",
|
2084 |
+
"level":"三品药材",
|
2085 |
+
"type":"药材",
|
2086 |
+
"rank":34,
|
2087 |
+
"主药":{
|
2088 |
+
"h_a_c":{
|
2089 |
+
"type":0,
|
2090 |
+
"power":4
|
2091 |
+
},
|
2092 |
+
"type":5,
|
2093 |
+
"power":8
|
2094 |
+
},
|
2095 |
+
"药引":{
|
2096 |
+
"h_a_c":{
|
2097 |
+
"type":0,
|
2098 |
+
"power":4
|
2099 |
+
},
|
2100 |
+
"type":2,
|
2101 |
+
"power":8
|
2102 |
+
},
|
2103 |
+
"辅药":{
|
2104 |
+
"type":6,
|
2105 |
+
"power":8
|
2106 |
+
}
|
2107 |
+
},
|
2108 |
+
"3082":{
|
2109 |
+
"name":"炼魂珠",
|
2110 |
+
"level":"三品药材",
|
2111 |
+
"type":"药材",
|
2112 |
+
"rank":34,
|
2113 |
+
"主药":{
|
2114 |
+
"h_a_c":{
|
2115 |
+
"type":0,
|
2116 |
+
"power":4
|
2117 |
+
},
|
2118 |
+
"type":5,
|
2119 |
+
"power":8
|
2120 |
+
},
|
2121 |
+
"药引":{
|
2122 |
+
"h_a_c":{
|
2123 |
+
"type":0,
|
2124 |
+
"power":4
|
2125 |
+
},
|
2126 |
+
"type":2,
|
2127 |
+
"power":8
|
2128 |
+
},
|
2129 |
+
"辅药":{
|
2130 |
+
"type":6,
|
2131 |
+
"power":8
|
2132 |
+
}
|
2133 |
+
},
|
2134 |
+
"3083":{
|
2135 |
+
"name":"玄冰花",
|
2136 |
+
"level":"三品药材",
|
2137 |
+
"type":"药材",
|
2138 |
+
"rank":34,
|
2139 |
+
"主药":{
|
2140 |
+
"h_a_c":{
|
2141 |
+
"type":-1,
|
2142 |
+
"power":4
|
2143 |
+
},
|
2144 |
+
"type":5,
|
2145 |
+
"power":8
|
2146 |
+
},
|
2147 |
+
"药引":{
|
2148 |
+
"h_a_c":{
|
2149 |
+
"type":1,
|
2150 |
+
"power":4
|
2151 |
+
},
|
2152 |
+
"type":2,
|
2153 |
+
"power":8
|
2154 |
+
},
|
2155 |
+
"辅药":{
|
2156 |
+
"type":6,
|
2157 |
+
"power":8
|
2158 |
+
}
|
2159 |
+
},
|
2160 |
+
"3084":{
|
2161 |
+
"name":"炼血珠",
|
2162 |
+
"level":"三品药材",
|
2163 |
+
"type":"药材",
|
2164 |
+
"rank":34,
|
2165 |
+
"主药":{
|
2166 |
+
"h_a_c":{
|
2167 |
+
"type":1,
|
2168 |
+
"power":4
|
2169 |
+
},
|
2170 |
+
"type":5,
|
2171 |
+
"power":8
|
2172 |
+
},
|
2173 |
+
"药引":{
|
2174 |
+
"h_a_c":{
|
2175 |
+
"type":-1,
|
2176 |
+
"power":4
|
2177 |
+
},
|
2178 |
+
"type":2,
|
2179 |
+
"power":8
|
2180 |
+
},
|
2181 |
+
"辅药":{
|
2182 |
+
"type":6,
|
2183 |
+
"power":8
|
2184 |
+
}
|
2185 |
+
},
|
2186 |
+
"3085":{
|
2187 |
+
"name":"石龙芮",
|
2188 |
+
"level":"四品药材",
|
2189 |
+
"type":"药材",
|
2190 |
+
"rank":31,
|
2191 |
+
"主药":{
|
2192 |
+
"h_a_c":{
|
2193 |
+
"type":0,
|
2194 |
+
"power":8
|
2195 |
+
},
|
2196 |
+
"type":5,
|
2197 |
+
"power":16
|
2198 |
+
},
|
2199 |
+
"药引":{
|
2200 |
+
"h_a_c":{
|
2201 |
+
"type":0,
|
2202 |
+
"power":8
|
2203 |
+
},
|
2204 |
+
"type":2,
|
2205 |
+
"power":16
|
2206 |
+
},
|
2207 |
+
"辅药":{
|
2208 |
+
"type":6,
|
2209 |
+
"power":16
|
2210 |
+
}
|
2211 |
+
},
|
2212 |
+
"3086":{
|
2213 |
+
"name":"锦地罗",
|
2214 |
+
"level":"四品药材",
|
2215 |
+
"type":"药材",
|
2216 |
+
"rank":31,
|
2217 |
+
"主药":{
|
2218 |
+
"h_a_c":{
|
2219 |
+
"type":0,
|
2220 |
+
"power":8
|
2221 |
+
},
|
2222 |
+
"type":5,
|
2223 |
+
"power":16
|
2224 |
+
},
|
2225 |
+
"药引":{
|
2226 |
+
"h_a_c":{
|
2227 |
+
"type":0,
|
2228 |
+
"power":8
|
2229 |
+
},
|
2230 |
+
"type":2,
|
2231 |
+
"power":16
|
2232 |
+
},
|
2233 |
+
"辅药":{
|
2234 |
+
"type":6,
|
2235 |
+
"power":16
|
2236 |
+
}
|
2237 |
+
},
|
2238 |
+
"3087":{
|
2239 |
+
"name":"冰灵果",
|
2240 |
+
"level":"四品药材",
|
2241 |
+
"type":"药材",
|
2242 |
+
"rank":31,
|
2243 |
+
"主药":{
|
2244 |
+
"h_a_c":{
|
2245 |
+
"type":-1,
|
2246 |
+
"power":8
|
2247 |
+
},
|
2248 |
+
"type":5,
|
2249 |
+
"power":16
|
2250 |
+
},
|
2251 |
+
"药引":{
|
2252 |
+
"h_a_c":{
|
2253 |
+
"type":1,
|
2254 |
+
"power":8
|
2255 |
+
},
|
2256 |
+
"type":2,
|
2257 |
+
"power":16
|
2258 |
+
},
|
2259 |
+
"辅药":{
|
2260 |
+
"type":6,
|
2261 |
+
"power":16
|
2262 |
+
}
|
2263 |
+
},
|
2264 |
+
"3088":{
|
2265 |
+
"name":"玉龙参",
|
2266 |
+
"level":"四品药材",
|
2267 |
+
"type":"药材",
|
2268 |
+
"rank":31,
|
2269 |
+
"主药":{
|
2270 |
+
"h_a_c":{
|
2271 |
+
"type":1,
|
2272 |
+
"power":8
|
2273 |
+
},
|
2274 |
+
"type":5,
|
2275 |
+
"power":16
|
2276 |
+
},
|
2277 |
+
"药引":{
|
2278 |
+
"h_a_c":{
|
2279 |
+
"type":-1,
|
2280 |
+
"power":8
|
2281 |
+
},
|
2282 |
+
"type":2,
|
2283 |
+
"power":16
|
2284 |
+
},
|
2285 |
+
"辅药":{
|
2286 |
+
"type":6,
|
2287 |
+
"power":16
|
2288 |
+
}
|
2289 |
+
},
|
2290 |
+
"3089":{
|
2291 |
+
"name":"伴妖草",
|
2292 |
+
"level":"五品药材",
|
2293 |
+
"type":"药材",
|
2294 |
+
"rank":28,
|
2295 |
+
"主药":{
|
2296 |
+
"h_a_c":{
|
2297 |
+
"type":0,
|
2298 |
+
"power":16
|
2299 |
+
},
|
2300 |
+
"type":5,
|
2301 |
+
"power":32
|
2302 |
+
},
|
2303 |
+
"药引":{
|
2304 |
+
"h_a_c":{
|
2305 |
+
"type":0,
|
2306 |
+
"power":16
|
2307 |
+
},
|
2308 |
+
"type":2,
|
2309 |
+
"power":32
|
2310 |
+
},
|
2311 |
+
"辅药":{
|
2312 |
+
"type":6,
|
2313 |
+
"power":32
|
2314 |
+
}
|
2315 |
+
},
|
2316 |
+
"3090":{
|
2317 |
+
"name":"剑心竹",
|
2318 |
+
"level":"五品药材",
|
2319 |
+
"type":"药材",
|
2320 |
+
"rank":28,
|
2321 |
+
"主药":{
|
2322 |
+
"h_a_c":{
|
2323 |
+
"type":0,
|
2324 |
+
"power":16
|
2325 |
+
},
|
2326 |
+
"type":5,
|
2327 |
+
"power":32
|
2328 |
+
},
|
2329 |
+
"药引":{
|
2330 |
+
"h_a_c":{
|
2331 |
+
"type":0,
|
2332 |
+
"power":16
|
2333 |
+
},
|
2334 |
+
"type":2,
|
2335 |
+
"power":32
|
2336 |
+
},
|
2337 |
+
"辅药":{
|
2338 |
+
"type":6,
|
2339 |
+
"power":32
|
2340 |
+
}
|
2341 |
+
},
|
2342 |
+
"3091":{
|
2343 |
+
"name":"绝魂草",
|
2344 |
+
"level":"五品药材",
|
2345 |
+
"type":"药材",
|
2346 |
+
"rank":28,
|
2347 |
+
"主药":{
|
2348 |
+
"h_a_c":{
|
2349 |
+
"type":-1,
|
2350 |
+
"power":16
|
2351 |
+
},
|
2352 |
+
"type":5,
|
2353 |
+
"power":32
|
2354 |
+
},
|
2355 |
+
"药引":{
|
2356 |
+
"h_a_c":{
|
2357 |
+
"type":1,
|
2358 |
+
"power":16
|
2359 |
+
},
|
2360 |
+
"type":2,
|
2361 |
+
"power":32
|
2362 |
+
},
|
2363 |
+
"辅药":{
|
2364 |
+
"type":6,
|
2365 |
+
"power":32
|
2366 |
+
}
|
2367 |
+
},
|
2368 |
+
"3092":{
|
2369 |
+
"name":"月灵花",
|
2370 |
+
"level":"五品药材",
|
2371 |
+
"type":"药材",
|
2372 |
+
"rank":28,
|
2373 |
+
"主药":{
|
2374 |
+
"h_a_c":{
|
2375 |
+
"type":1,
|
2376 |
+
"power":16
|
2377 |
+
},
|
2378 |
+
"type":5,
|
2379 |
+
"power":32
|
2380 |
+
},
|
2381 |
+
"药引":{
|
2382 |
+
"h_a_c":{
|
2383 |
+
"type":-1,
|
2384 |
+
"power":16
|
2385 |
+
},
|
2386 |
+
"type":2,
|
2387 |
+
"power":32
|
2388 |
+
},
|
2389 |
+
"辅药":{
|
2390 |
+
"type":6,
|
2391 |
+
"power":32
|
2392 |
+
}
|
2393 |
+
},
|
2394 |
+
"3093":{
|
2395 |
+
"name":"混元果",
|
2396 |
+
"level":"六品药材",
|
2397 |
+
"type":"药材",
|
2398 |
+
"rank":25,
|
2399 |
+
"主药":{
|
2400 |
+
"h_a_c":{
|
2401 |
+
"type":0,
|
2402 |
+
"power":32
|
2403 |
+
},
|
2404 |
+
"type":5,
|
2405 |
+
"power":64
|
2406 |
+
},
|
2407 |
+
"药引":{
|
2408 |
+
"h_a_c":{
|
2409 |
+
"type":0,
|
2410 |
+
"power":32
|
2411 |
+
},
|
2412 |
+
"type":2,
|
2413 |
+
"power":64
|
2414 |
+
},
|
2415 |
+
"辅药":{
|
2416 |
+
"type":6,
|
2417 |
+
"power":64
|
2418 |
+
}
|
2419 |
+
},
|
2420 |
+
"3094":{
|
2421 |
+
"name":"皇龙花",
|
2422 |
+
"level":"六品药材",
|
2423 |
+
"type":"药材",
|
2424 |
+
"rank":25,
|
2425 |
+
"主药":{
|
2426 |
+
"h_a_c":{
|
2427 |
+
"type":0,
|
2428 |
+
"power":32
|
2429 |
+
},
|
2430 |
+
"type":5,
|
2431 |
+
"power":64
|
2432 |
+
},
|
2433 |
+
"药引":{
|
2434 |
+
"h_a_c":{
|
2435 |
+
"type":0,
|
2436 |
+
"power":32
|
2437 |
+
},
|
2438 |
+
"type":2,
|
2439 |
+
"power":64
|
2440 |
+
},
|
2441 |
+
"辅药":{
|
2442 |
+
"type":6,
|
2443 |
+
"power":64
|
2444 |
+
}
|
2445 |
+
},
|
2446 |
+
"3095":{
|
2447 |
+
"name":"天剑笋",
|
2448 |
+
"level":"六品药材",
|
2449 |
+
"type":"药材",
|
2450 |
+
"rank":25,
|
2451 |
+
"主药":{
|
2452 |
+
"h_a_c":{
|
2453 |
+
"type":-1,
|
2454 |
+
"power":32
|
2455 |
+
},
|
2456 |
+
"type":5,
|
2457 |
+
"power":64
|
2458 |
+
},
|
2459 |
+
"药引":{
|
2460 |
+
"h_a_c":{
|
2461 |
+
"type":1,
|
2462 |
+
"power":32
|
2463 |
+
},
|
2464 |
+
"type":6,
|
2465 |
+
"power":64
|
2466 |
+
},
|
2467 |
+
"辅药":{
|
2468 |
+
"type":3,
|
2469 |
+
"power":64
|
2470 |
+
}
|
2471 |
+
},
|
2472 |
+
"3096":{
|
2473 |
+
"name":"黑天麻",
|
2474 |
+
"level":"六品药材",
|
2475 |
+
"type":"药材",
|
2476 |
+
"rank":25,
|
2477 |
+
"主药":{
|
2478 |
+
"h_a_c":{
|
2479 |
+
"type":1,
|
2480 |
+
"power":32
|
2481 |
+
},
|
2482 |
+
"type":5,
|
2483 |
+
"power":64
|
2484 |
+
},
|
2485 |
+
"药引":{
|
2486 |
+
"h_a_c":{
|
2487 |
+
"type":-1,
|
2488 |
+
"power":32
|
2489 |
+
},
|
2490 |
+
"type":2,
|
2491 |
+
"power":64
|
2492 |
+
},
|
2493 |
+
"辅药":{
|
2494 |
+
"type":6,
|
2495 |
+
"power":64
|
2496 |
+
}
|
2497 |
+
},
|
2498 |
+
"3097":{
|
2499 |
+
"name":"血玉竹",
|
2500 |
+
"level":"七品药材",
|
2501 |
+
"type":"药材",
|
2502 |
+
"rank":22,
|
2503 |
+
"主药":{
|
2504 |
+
"h_a_c":{
|
2505 |
+
"type":0,
|
2506 |
+
"power":64
|
2507 |
+
},
|
2508 |
+
"type":5,
|
2509 |
+
"power":128
|
2510 |
+
},
|
2511 |
+
"药引":{
|
2512 |
+
"h_a_c":{
|
2513 |
+
"type":0,
|
2514 |
+
"power":64
|
2515 |
+
},
|
2516 |
+
"type":2,
|
2517 |
+
"power":128
|
2518 |
+
},
|
2519 |
+
"辅药":{
|
2520 |
+
"type":6,
|
2521 |
+
"power":128
|
2522 |
+
}
|
2523 |
+
},
|
2524 |
+
"3098":{
|
2525 |
+
"name":"肠蚀草",
|
2526 |
+
"level":"七品药材",
|
2527 |
+
"type":"药材",
|
2528 |
+
"rank":22,
|
2529 |
+
"主药":{
|
2530 |
+
"h_a_c":{
|
2531 |
+
"type":0,
|
2532 |
+
"power":64
|
2533 |
+
},
|
2534 |
+
"type":5,
|
2535 |
+
"power":128
|
2536 |
+
},
|
2537 |
+
"药引":{
|
2538 |
+
"h_a_c":{
|
2539 |
+
"type":0,
|
2540 |
+
"power":64
|
2541 |
+
},
|
2542 |
+
"type":2,
|
2543 |
+
"power":128
|
2544 |
+
},
|
2545 |
+
"辅药":{
|
2546 |
+
"type":6,
|
2547 |
+
"power":128
|
2548 |
+
}
|
2549 |
+
},
|
2550 |
+
"3099":{
|
2551 |
+
"name":"凤血果",
|
2552 |
+
"level":"七品药材",
|
2553 |
+
"type":"药材",
|
2554 |
+
"rank":22,
|
2555 |
+
"主药":{
|
2556 |
+
"h_a_c":{
|
2557 |
+
"type":-1,
|
2558 |
+
"power":64
|
2559 |
+
},
|
2560 |
+
"type":5,
|
2561 |
+
"power":128
|
2562 |
+
},
|
2563 |
+
"药引":{
|
2564 |
+
"h_a_c":{
|
2565 |
+
"type":1,
|
2566 |
+
"power":64
|
2567 |
+
},
|
2568 |
+
"type":2,
|
2569 |
+
"power":128
|
2570 |
+
},
|
2571 |
+
"辅药":{
|
2572 |
+
"type":6,
|
2573 |
+
"power":128
|
2574 |
+
}
|
2575 |
+
},
|
2576 |
+
"3100":{
|
2577 |
+
"name":"冰精芝",
|
2578 |
+
"level":"七品药材",
|
2579 |
+
"type":"药材",
|
2580 |
+
"rank":22,
|
2581 |
+
"主药":{
|
2582 |
+
"h_a_c":{
|
2583 |
+
"type":1,
|
2584 |
+
"power":64
|
2585 |
+
},
|
2586 |
+
"type":5,
|
2587 |
+
"power":128
|
2588 |
+
},
|
2589 |
+
"药引":{
|
2590 |
+
"h_a_c":{
|
2591 |
+
"type":-1,
|
2592 |
+
"power":64
|
2593 |
+
},
|
2594 |
+
"type":2,
|
2595 |
+
"power":128
|
2596 |
+
},
|
2597 |
+
"辅药":{
|
2598 |
+
"type":6,
|
2599 |
+
"power":128
|
2600 |
+
}
|
2601 |
+
},
|
2602 |
+
"3101":{
|
2603 |
+
"name":"狼桃",
|
2604 |
+
"level":"八品药材",
|
2605 |
+
"type":"药材",
|
2606 |
+
"rank":18,
|
2607 |
+
"主药":{
|
2608 |
+
"h_a_c":{
|
2609 |
+
"type":0,
|
2610 |
+
"power":128
|
2611 |
+
},
|
2612 |
+
"type":5,
|
2613 |
+
"power":256
|
2614 |
+
},
|
2615 |
+
"药引":{
|
2616 |
+
"h_a_c":{
|
2617 |
+
"type":0,
|
2618 |
+
"power":128
|
2619 |
+
},
|
2620 |
+
"type":2,
|
2621 |
+
"power":256
|
2622 |
+
},
|
2623 |
+
"辅药":{
|
2624 |
+
"type":6,
|
2625 |
+
"power":256
|
2626 |
+
}
|
2627 |
+
},
|
2628 |
+
"3102":{
|
2629 |
+
"name":"霸王花",
|
2630 |
+
"level":"八品药材",
|
2631 |
+
"type":"药材",
|
2632 |
+
"rank":18,
|
2633 |
+
"主药":{
|
2634 |
+
"h_a_c":{
|
2635 |
+
"type":0,
|
2636 |
+
"power":128
|
2637 |
+
},
|
2638 |
+
"type":5,
|
2639 |
+
"power":256
|
2640 |
+
},
|
2641 |
+
"药引":{
|
2642 |
+
"h_a_c":{
|
2643 |
+
"type":0,
|
2644 |
+
"power":128
|
2645 |
+
},
|
2646 |
+
"type":2,
|
2647 |
+
"power":256
|
2648 |
+
},
|
2649 |
+
"辅药":{
|
2650 |
+
"type":6,
|
2651 |
+
"power":256
|
2652 |
+
}
|
2653 |
+
},
|
2654 |
+
"3103":{
|
2655 |
+
"name":"太清玄灵草",
|
2656 |
+
"level":"八品药材",
|
2657 |
+
"type":"药材",
|
2658 |
+
"rank":18,
|
2659 |
+
"主药":{
|
2660 |
+
"h_a_c":{
|
2661 |
+
"type":-1,
|
2662 |
+
"power":128
|
2663 |
+
},
|
2664 |
+
"type":5,
|
2665 |
+
"power":256
|
2666 |
+
},
|
2667 |
+
"药引":{
|
2668 |
+
"h_a_c":{
|
2669 |
+
"type":1,
|
2670 |
+
"power":128
|
2671 |
+
},
|
2672 |
+
"type":2,
|
2673 |
+
"power":256
|
2674 |
+
},
|
2675 |
+
"辅药":{
|
2676 |
+
"type":6,
|
2677 |
+
"power":256
|
2678 |
+
}
|
2679 |
+
},
|
2680 |
+
"3104":{
|
2681 |
+
"name":"冥胎骨",
|
2682 |
+
"level":"八品药材",
|
2683 |
+
"type":"药材",
|
2684 |
+
"rank":18,
|
2685 |
+
"主药":{
|
2686 |
+
"h_a_c":{
|
2687 |
+
"type":1,
|
2688 |
+
"power":128
|
2689 |
+
},
|
2690 |
+
"type":5,
|
2691 |
+
"power":256
|
2692 |
+
},
|
2693 |
+
"药引":{
|
2694 |
+
"h_a_c":{
|
2695 |
+
"type":-1,
|
2696 |
+
"power":128
|
2697 |
+
},
|
2698 |
+
"type":2,
|
2699 |
+
"power":256
|
2700 |
+
},
|
2701 |
+
"辅药":{
|
2702 |
+
"type":6,
|
2703 |
+
"power":256
|
2704 |
+
}
|
2705 |
+
},
|
2706 |
+
"3105":{
|
2707 |
+
"name":"地龙干",
|
2708 |
+
"level":"九品药材",
|
2709 |
+
"type":"药材",
|
2710 |
+
"rank":15,
|
2711 |
+
"主药":{
|
2712 |
+
"h_a_c":{
|
2713 |
+
"type":0,
|
2714 |
+
"power":256
|
2715 |
+
},
|
2716 |
+
"type":5,
|
2717 |
+
"power":512
|
2718 |
+
},
|
2719 |
+
"药引":{
|
2720 |
+
"h_a_c":{
|
2721 |
+
"type":0,
|
2722 |
+
"power":256
|
2723 |
+
},
|
2724 |
+
"type":2,
|
2725 |
+
"power":512
|
2726 |
+
},
|
2727 |
+
"辅药":{
|
2728 |
+
"type":6,
|
2729 |
+
"power":512
|
2730 |
+
}
|
2731 |
+
},
|
2732 |
+
"3106":{
|
2733 |
+
"name":"龙须藤",
|
2734 |
+
"level":"九品药材",
|
2735 |
+
"type":"药材",
|
2736 |
+
"rank":15,
|
2737 |
+
"主药":{
|
2738 |
+
"h_a_c":{
|
2739 |
+
"type":0,
|
2740 |
+
"power":256
|
2741 |
+
},
|
2742 |
+
"type":5,
|
2743 |
+
"power":512
|
2744 |
+
},
|
2745 |
+
"药引":{
|
2746 |
+
"h_a_c":{
|
2747 |
+
"type":0,
|
2748 |
+
"power":256
|
2749 |
+
},
|
2750 |
+
"type":2,
|
2751 |
+
"power":512
|
2752 |
+
},
|
2753 |
+
"辅药":{
|
2754 |
+
"type":6,
|
2755 |
+
"power":512
|
2756 |
+
}
|
2757 |
+
},
|
2758 |
+
"3107":{
|
2759 |
+
"name":"鬼面花",
|
2760 |
+
"level":"九品药材",
|
2761 |
+
"type":"药材",
|
2762 |
+
"rank":15,
|
2763 |
+
"主药":{
|
2764 |
+
"h_a_c":{
|
2765 |
+
"type":-1,
|
2766 |
+
"power":256
|
2767 |
+
},
|
2768 |
+
"type":5,
|
2769 |
+
"power":512
|
2770 |
+
},
|
2771 |
+
"药引":{
|
2772 |
+
"h_a_c":{
|
2773 |
+
"type":1,
|
2774 |
+
"power":256
|
2775 |
+
},
|
2776 |
+
"type":2,
|
2777 |
+
"power":512
|
2778 |
+
},
|
2779 |
+
"辅药":{
|
2780 |
+
"type":6,
|
2781 |
+
"power":512
|
2782 |
+
}
|
2783 |
+
},
|
2784 |
+
"3108":{
|
2785 |
+
"name":"梧桐木",
|
2786 |
+
"level":"九品药材",
|
2787 |
+
"type":"药材",
|
2788 |
+
"rank":15,
|
2789 |
+
"主药":{
|
2790 |
+
"h_a_c":{
|
2791 |
+
"type":1,
|
2792 |
+
"power":256
|
2793 |
+
},
|
2794 |
+
"type":5,
|
2795 |
+
"power":512
|
2796 |
+
},
|
2797 |
+
"药引":{
|
2798 |
+
"h_a_c":{
|
2799 |
+
"type":-1,
|
2800 |
+
"power":256
|
2801 |
+
},
|
2802 |
+
"type":2,
|
2803 |
+
"power":512
|
2804 |
+
},
|
2805 |
+
"辅药":{
|
2806 |
+
"type":6,
|
2807 |
+
"power":512
|
2808 |
+
}
|
2809 |
+
}
|
2810 |
+
}
|
db.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"material": {"1": {"name": "\u6052\u5fc3\u8349(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 2, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 2}, "2": {"name": "\u7ea2\u7eeb\u8349(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 2, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 2}, "3": {"name": "\u7f57\u7280\u8349(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": -1, "main_func_t": 2, "main_func_p": 2, "phar_temp": 1, "auxi_func_t": 3, "auxi_func_p": 2}, "4": {"name": "\u5929\u9752\u82b1(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 1, "main_func_t": 2, "main_func_p": 2, "phar_temp": -1, "auxi_func_t": 3, "auxi_func_p": 2}, "5": {"name": "\u4e94\u67f3\u6839(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 4, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 4}, "6": {"name": "\u5929\u5143\u679c(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 4, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 4}, "7": {"name": "\u4f55\u9996\u4e4c(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": -2, "main_func_t": 2, "main_func_p": 4, "phar_temp": 2, "auxi_func_t": 3, "auxi_func_p": 4}, "8": {"name": "\u591c\u4ea4\u85e4(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 2, "main_func_t": 2, "main_func_p": 4, "phar_temp": -2, "auxi_func_t": 3, "auxi_func_p": 4}, "9": {"name": "\u7d2b\u7334\u82b1(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 8, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 8}, "10": {"name": "\u4e5d\u53f6\u829d(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 8, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 8}, "11": {"name": "\u5e7b\u5fc3\u8349(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": -4, "main_func_t": 2, "main_func_p": 8, "phar_temp": 4, "auxi_func_t": 3, "auxi_func_p": 8}, "12": {"name": "\u9b3c\u81fc\u8349(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 4, "main_func_t": 2, "main_func_p": 8, "phar_temp": -4, "auxi_func_t": 3, "auxi_func_p": 8}, "13": {"name": "\u8840\u83b2\u7cbe(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 16, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 16}, "14": {"name": "\u9e21\u51a0\u8349(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 16, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 16}, "15": {"name": "\u94f6\u7cbe\u829d(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": -8, "main_func_t": 2, "main_func_p": 16, "phar_temp": 8, "auxi_func_t": 3, "auxi_func_p": 16}, "16": {"name": "\u7389\u9ad3\u829d(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 8, "main_func_t": 2, "main_func_p": 16, "phar_temp": -8, "auxi_func_t": 3, "auxi_func_p": 16}, "17": {"name": "\u5730\u5fc3\u706b\u829d(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 32, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 32}, "18": {"name": "\u5929\u8749\u7075\u53f6(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 32, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 32}, "19": {"name": "\u96ea\u7389\u9aa8\u53c2(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": -16, "main_func_t": 2, "main_func_p": 32, "phar_temp": 16, "auxi_func_t": 3, "auxi_func_p": 32}, "20": {"name": "\u8150\u9aa8\u7075\u82b1(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 16, "main_func_t": 2, "main_func_p": 32, "phar_temp": -16, "auxi_func_t": 3, "auxi_func_p": 32}, "21": {"name": "\u4e09\u53f6\u9752\u829d(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 64, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 64}, "22": {"name": "\u4e03\u5f69\u6708\u5170(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 64, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 64}, "23": {"name": "\u4e09\u5c3e\u98ce\u53f6(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": -32, "main_func_t": 2, "main_func_p": 64, "phar_temp": 32, "auxi_func_t": 3, "auxi_func_p": 64}, "24": {"name": "\u51b0\u7075\u7130\u8349(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 32, "main_func_t": 2, "main_func_p": 64, "phar_temp": -32, "auxi_func_t": 3, "auxi_func_p": 64}, "25": {"name": "\u5730\u5fc3\u6dec\u7075\u4e73(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 128, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 128}, "26": {"name": "\u5929\u9ebb\u7fe1\u77f3\u7cbe(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 128, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 128}, "27": {"name": "\u516b\u89d2\u7384\u51b0\u8349(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": -64, "main_func_t": 2, "main_func_p": 128, "phar_temp": 64, "auxi_func_t": 3, "auxi_func_p": 128}, "28": {"name": "\u5947\u8338\u901a\u5929\u83ca(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 64, "main_func_t": 2, "main_func_p": 128, "phar_temp": -64, "auxi_func_t": 3, "auxi_func_p": 128}, "29": {"name": "\u6728\u7075\u4e09\u9488\u82b1(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 256, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 256}, "30": {"name": "\u938f\u946b\u5929\u6676\u8349(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 256, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 256}, "31": {"name": "\u6a80\u8292\u4e5d\u53f6\u82b1(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": -128, "main_func_t": 2, "main_func_p": 256, "phar_temp": 128, "auxi_func_t": 3, "auxi_func_p": 256}, "32": {"name": "\u574e\u6c34\u7384\u51b0\u679c(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 128, "main_func_t": 2, "main_func_p": 256, "phar_temp": -128, "auxi_func_t": 3, "auxi_func_p": 256}, "33": {"name": "\u79bb\u706b\u68a7\u6850\u829d(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 512, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 512}, "34": {"name": "\u5c18\u78ca\u5ca9\u9e9f\u679c(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 2, "main_func_p": 512, "phar_temp": 0, "auxi_func_t": 3, "auxi_func_p": 512}, "35": {"name": "\u5251\u9b44\u7af9\u7b0b(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": -256, "main_func_t": 2, "main_func_p": 512, "phar_temp": 256, "auxi_func_t": 3, "auxi_func_p": 512}, "36": {"name": "\u660e\u5fc3\u95ee\u9053\u679c(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 256, "main_func_t": 2, "main_func_p": 512, "phar_temp": -256, "auxi_func_t": 3, "auxi_func_p": 512}, "37": {"name": "\u5b81\u5fc3\u8349(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 2, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 2}, "38": {"name": "\u51dd\u8840\u8349(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 2, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 2}, "39": {"name": "\u94f6\u6708\u82b1(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": -1, "main_func_t": 3, "main_func_p": 2, "phar_temp": 1, "auxi_func_t": 4, "auxi_func_p": 2}, "40": {"name": "\u5b81\u795e\u82b1(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 1, "main_func_t": 3, "main_func_p": 2, "phar_temp": -1, "auxi_func_t": 4, "auxi_func_p": 2}, "41": {"name": "\u6d41\u83b9\u8349(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 4, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 4}, "42": {"name": "\u86c7\u6d8e\u679c(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 4, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 4}, "43": {"name": "\u590f\u67af\u8349(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": -2, "main_func_t": 3, "main_func_p": 4, "phar_temp": 2, "auxi_func_t": 4, "auxi_func_p": 4}, "44": {"name": "\u767e\u8349\u9732(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 2, "main_func_t": 3, "main_func_p": 4, "phar_temp": -2, "auxi_func_t": 4, "auxi_func_p": 4}, "45": {"name": "\u8f7b\u7075\u8349(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 8, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 8}, "46": {"name": "\u9f99\u8475(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 8, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 8}, "47": {"name": "\u5f17\u5170\u8349(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": -4, "main_func_t": 3, "main_func_p": 8, "phar_temp": 4, "auxi_func_t": 4, "auxi_func_p": 8}, "48": {"name": "\u7384\u53c2(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 4, "main_func_t": 3, "main_func_p": 8, "phar_temp": -4, "auxi_func_t": 4, "auxi_func_p": 8}, "49": {"name": "\u83e9\u63d0\u82b1(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 16, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 16}, "50": {"name": "\u4e4c\u7a20\u6728(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 16, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 16}, "51": {"name": "\u96ea\u51dd\u82b1(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": -8, "main_func_t": 3, "main_func_p": 16, "phar_temp": 8, "auxi_func_t": 4, "auxi_func_p": 16}, "52": {"name": "\u9f99\u7eb9\u8349(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 8, "main_func_t": 3, "main_func_p": 16, "phar_temp": -8, "auxi_func_t": 4, "auxi_func_p": 16}, "53": {"name": "\u5929\u7075\u679c(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 32, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 32}, "54": {"name": "\u706f\u5fc3\u8349(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 32, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 32}, "55": {"name": "\u7a7f\u5fc3\u83b2(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": -16, "main_func_t": 3, "main_func_p": 32, "phar_temp": 16, "auxi_func_t": 4, "auxi_func_p": 32}, "56": {"name": "\u9f99\u9cde\u679c(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 16, "main_func_t": 3, "main_func_p": 32, "phar_temp": -16, "auxi_func_t": 4, "auxi_func_p": 32}, "57": {"name": "\u767d\u6c89\u8102(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 64, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 64}, "58": {"name": "\u82e6\u66fc\u85e4(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 64, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 64}, "59": {"name": "\u8840\u83e9\u63d0(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": -32, "main_func_t": 3, "main_func_p": 64, "phar_temp": 32, "auxi_func_t": 4, "auxi_func_p": 64}, "60": {"name": "\u8bf1\u5996\u8349(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 32, "main_func_t": 3, "main_func_p": 64, "phar_temp": -32, "auxi_func_t": 4, "auxi_func_p": 64}, "61": {"name": "\u5929\u95ee\u82b1(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 128, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 128}, "62": {"name": "\u6e0a\u8840\u51a5\u82b1(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 128, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 128}, "63": {"name": "\u8292\u7130\u679c(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": -64, "main_func_t": 3, "main_func_p": 128, "phar_temp": 64, "auxi_func_t": 4, "auxi_func_p": 128}, "64": {"name": "\u95ee\u9053\u82b1(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 64, "main_func_t": 3, "main_func_p": 128, "phar_temp": -64, "auxi_func_t": 4, "auxi_func_p": 128}, "65": {"name": "\u9634\u9633\u9ec4\u6cc9\u82b1(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 256, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 256}, "66": {"name": "\u5389\u9b42\u8840\u73c0(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 256, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 256}, "67": {"name": "\u6d69\u6dfc\u6c34\u85e4(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": -128, "main_func_t": 3, "main_func_p": 256, "phar_temp": 128, "auxi_func_t": 4, "auxi_func_p": 256}, "68": {"name": "\u9053\u8574\u82b1(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 128, "main_func_t": 3, "main_func_p": 256, "phar_temp": -128, "auxi_func_t": 4, "auxi_func_p": 256}, "69": {"name": "\u592a\u4e59\u78a7\u83b9\u82b1(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 512, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 512}, "70": {"name": "\u68ee\u6a80\u6728(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 3, "main_func_p": 512, "phar_temp": 0, "auxi_func_t": 4, "auxi_func_p": 512}, "71": {"name": "\u70bc\u5fc3\u829d(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": -256, "main_func_t": 3, "main_func_p": 512, "phar_temp": 256, "auxi_func_t": 4, "auxi_func_p": 512}, "72": {"name": "\u91cd\u5143\u6362\u8840\u8349(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 256, "main_func_t": 3, "main_func_p": 512, "phar_temp": -256, "auxi_func_t": 4, "auxi_func_p": 512}, "73": {"name": "\u5730\u9ec4\u53c2(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 2, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 2}, "74": {"name": "\u706b\u7cbe\u67a3(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 2, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 2}, "75": {"name": "\u5251\u82a6(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": -1, "main_func_t": 5, "main_func_p": 2, "phar_temp": 1, "auxi_func_t": 6, "auxi_func_p": 2}, "76": {"name": "\u4e03\u661f\u8349(\u4e00\u54c1)", "level": "\u4e00\u54c1\u836f\u6750", "main_temp": 1, "main_func_t": 5, "main_func_p": 2, "phar_temp": -1, "auxi_func_t": 6, "auxi_func_p": 2}, "77": {"name": "\u98ce\u7075\u82b1(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 4, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 4}, "78": {"name": "\u4f0f\u9f99\u53c2(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 4, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 4}, "79": {"name": "\u51cc\u98ce\u82b1(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": -2, "main_func_t": 5, "main_func_p": 4, "phar_temp": 2, "auxi_func_t": 6, "auxi_func_p": 4}, "80": {"name": "\u8865\u5929\u829d(\u4e8c\u54c1)", "level": "\u4e8c\u54c1\u836f\u6750", "main_temp": 2, "main_func_t": 5, "main_func_p": 4, "phar_temp": -2, "auxi_func_t": 6, "auxi_func_p": 4}, "81": {"name": "\u67ab\u9999\u8102(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 8, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 8}, "82": {"name": "\u70bc\u9b42\u73e0(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 8, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 8}, "83": {"name": "\u7384\u51b0\u82b1(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": -4, "main_func_t": 5, "main_func_p": 8, "phar_temp": 4, "auxi_func_t": 6, "auxi_func_p": 8}, "84": {"name": "\u70bc\u8840\u73e0(\u4e09\u54c1)", "level": "\u4e09\u54c1\u836f\u6750", "main_temp": 4, "main_func_t": 5, "main_func_p": 8, "phar_temp": -4, "auxi_func_t": 6, "auxi_func_p": 8}, "85": {"name": "\u77f3\u9f99\u82ae(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 16, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 16}, "86": {"name": "\u9526\u5730\u7f57(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 16, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 16}, "87": {"name": "\u51b0\u7075\u679c(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": -8, "main_func_t": 5, "main_func_p": 16, "phar_temp": 8, "auxi_func_t": 6, "auxi_func_p": 16}, "88": {"name": "\u7389\u9f99\u53c2(\u56db\u54c1)", "level": "\u56db\u54c1\u836f\u6750", "main_temp": 8, "main_func_t": 5, "main_func_p": 16, "phar_temp": -8, "auxi_func_t": 6, "auxi_func_p": 16}, "89": {"name": "\u4f34\u5996\u8349(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 32, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 32}, "90": {"name": "\u5251\u5fc3\u7af9(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 32, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 32}, "91": {"name": "\u7edd\u9b42\u8349(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": -16, "main_func_t": 5, "main_func_p": 32, "phar_temp": 16, "auxi_func_t": 6, "auxi_func_p": 32}, "92": {"name": "\u6708\u7075\u82b1(\u4e94\u54c1)", "level": "\u4e94\u54c1\u836f\u6750", "main_temp": 16, "main_func_t": 5, "main_func_p": 32, "phar_temp": -16, "auxi_func_t": 6, "auxi_func_p": 32}, "93": {"name": "\u6df7\u5143\u679c(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 64, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 64}, "94": {"name": "\u7687\u9f99\u82b1(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 64, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 64}, "95": {"name": "\u5929\u5251\u7b0b(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": -32, "main_func_t": 5, "main_func_p": 64, "phar_temp": 32, "auxi_func_t": 3, "auxi_func_p": 64}, "96": {"name": "\u9ed1\u5929\u9ebb(\u516d\u54c1)", "level": "\u516d\u54c1\u836f\u6750", "main_temp": 32, "main_func_t": 5, "main_func_p": 64, "phar_temp": -32, "auxi_func_t": 6, "auxi_func_p": 64}, "97": {"name": "\u8840\u7389\u7af9(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 128, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 128}, "98": {"name": "\u80a0\u8680\u8349(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 128, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 128}, "99": {"name": "\u51e4\u8840\u679c(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": -64, "main_func_t": 5, "main_func_p": 128, "phar_temp": 64, "auxi_func_t": 6, "auxi_func_p": 128}, "100": {"name": "\u51b0\u7cbe\u829d(\u4e03\u54c1)", "level": "\u4e03\u54c1\u836f\u6750", "main_temp": 64, "main_func_t": 5, "main_func_p": 128, "phar_temp": -64, "auxi_func_t": 6, "auxi_func_p": 128}, "101": {"name": "\u72fc\u6843(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 256, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 256}, "102": {"name": "\u9738\u738b\u82b1(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 256, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 256}, "103": {"name": "\u592a\u6e05\u7384\u7075\u8349(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": -128, "main_func_t": 5, "main_func_p": 256, "phar_temp": 128, "auxi_func_t": 6, "auxi_func_p": 256}, "104": {"name": "\u51a5\u80ce\u9aa8(\u516b\u54c1)", "level": "\u516b\u54c1\u836f\u6750", "main_temp": 128, "main_func_t": 5, "main_func_p": 256, "phar_temp": -128, "auxi_func_t": 6, "auxi_func_p": 256}, "105": {"name": "\u5730\u9f99\u5e72(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 512, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 512}, "106": {"name": "\u9f99\u987b\u85e4(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 0, "main_func_t": 5, "main_func_p": 512, "phar_temp": 0, "auxi_func_t": 6, "auxi_func_p": 512}, "107": {"name": "\u9b3c\u9762\u82b1(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": -256, "main_func_t": 5, "main_func_p": 512, "phar_temp": 256, "auxi_func_t": 6, "auxi_func_p": 512}, "108": {"name": "\u68a7\u6850\u6728(\u4e5d\u54c1)", "level": "\u4e5d\u54c1\u836f\u6750", "main_temp": 256, "main_func_t": 5, "main_func_p": 512, "phar_temp": -256, "auxi_func_t": 6, "auxi_func_p": 512}}, "medicine": {"1": {"name": "\u6d17\u9ad3\u4e39(\u4fee8000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 6, "func2_type": 3, "func2_power": 6}, "2": {"name": "\u517b\u6c14\u4e39(\u4fee10000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 12, "func2_type": 3, "func2_power": 12}, "3": {"name": "\u4e5d\u8f6c\u4e39(\u4fee12000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 24, "func2_type": 3, "func2_power": 24}, "4": {"name": "\u6613\u7b4b\u4e39(\u4fee14000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 48, "func2_type": 3, "func2_power": 48}, "5": {"name": "\u5929\u5c18\u4e39(\u4fee16000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 96, "func2_type": 3, "func2_power": 96}, "6": {"name": "\u5929\u5143\u795e\u4e39(\u4fee18000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 192, "func2_type": 3, "func2_power": 192}, "7": {"name": "\u65a9\u6211\u78a7\u83b9\u4e39(\u4fee20000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 384, "func2_type": 3, "func2_power": 384}, "8": {"name": "\u516d\u9633\u957f\u751f\u4e39(\u4fee30000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 768, "func2_type": 3, "func2_power": 768}, "9": {"name": "\u9053\u6e90\u4e39(\u4fee40000)", "type": "\u589e\u52a0\u4fee\u4e3a", "func1_type": 2, "func1_power": 1536, "func2_type": 3, "func2_power": 1536}, "10": {"name": "\u6d1e\u5929\u4e39(\u642c\u8840\u5883->\u6d1e\u5929\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 2, "func2_type": 4, "func2_power": 2}, "11": {"name": "\u805a\u9876\u4e39(\u6d1e\u5929\u5883->\u5316\u7075\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 4, "func2_type": 4, "func2_power": 4}, "12": {"name": "\u671d\u5143\u4e39(\u6d1e\u5929\u5883->\u5316\u7075\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 8, "func2_type": 4, "func2_power": 8}, "13": {"name": "\u953b\u8109\u4e39(\u5316\u7075\u5883->\u94ed\u6587\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 12, "func2_type": 4, "func2_power": 12}, "14": {"name": "\u62a4\u8109\u4e39(\u5316\u7075\u5883->\u94ed\u6587\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 16, "func2_type": 4, "func2_power": 16}, "15": {"name": "\u5929\u547d\u6dec\u4f53\u4e39(\u94ed\u6587\u5883->\u5217\u9635\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 20, "func2_type": 4, "func2_power": 20}, "16": {"name": "\u6f84\u5fc3\u5851\u9b42\u4e39(\u94ed\u6587\u5883->\u5217\u9635\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 24, "func2_type": 4, "func2_power": 24}, "17": {"name": "\u6df7\u5143\u4ed9\u4f53\u4e39(\u94ed\u6587\u5883->\u5217\u9635\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 32, "func2_type": 4, "func2_power": 32}, "18": {"name": "\u9ed1\u708e\u4e39(\u5217\u9635\u5883->\u5c0a\u8005\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 48, "func2_type": 4, "func2_power": 48}, "19": {"name": "\u91d1\u8840\u4e38(\u5217\u9635\u5883->\u5c0a\u8005\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 64, "func2_type": 4, "func2_power": 64}, "20": {"name": "\u865a\u7075\u4e39(\u5c0a\u8005\u5883->\u795e\u706b\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 96, "func2_type": 4, "func2_power": 96}, "21": {"name": "\u51c0\u660e\u4e39(\u5c0a\u8005\u5883->\u795e\u706b\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 128, "func2_type": 4, "func2_power": 128}, "22": {"name": "\u5b89\u795e\u7075\u6db2(\u795e\u706b\u5883->\u771f\u4e00\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 160, "func2_type": 4, "func2_power": 160}, "23": {"name": "\u9b47\u9f99\u4e4b\u8840(\u795e\u706b\u5883->\u771f\u4e00\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 192, "func2_type": 4, "func2_power": 192}, "24": {"name": "\u5316\u52ab\u4e39(\u771f\u4e00\u5883->\u5723\u796d\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 256, "func2_type": 4, "func2_power": 256}, "25": {"name": "\u592a\u4e0a\u7384\u95e8\u4e39(\u5723\u796d\u5883->\u5929\u795e\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 384, "func2_type": 4, "func2_power": 384}, "26": {"name": "\u865a\u9053\u7834\u5384\u4e39(\u5929\u795e\u5883->\u865a\u9053\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 768, "func2_type": 4, "func2_power": 768}, "27": {"name": "\u65a9\u6211\u70bc\u9ad3\u4e39(\u865a\u9053\u5883->\u65a9\u6211\u5883)", "type": "\u7a81\u7834\u6982\u7387", "func1_type": 2, "func1_power": 1536, "func2_type": 4, "func2_power": 1536}, "28": {"name": "\u6444\u9b42\u9b3c\u4e38(\u653b720)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 6, "func2_type": 6, "func2_power": 6}, "29": {"name": "\u5316\u715e\u9b54\u4e38(\u653b1760)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 12, "func2_type": 6, "func2_power": 12}, "30": {"name": "\u7d20\u5fc3\u771f\u4e38(\u653b4160)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 24, "func2_type": 6, "func2_power": 24}, "31": {"name": "\u706d\u795e\u53e4\u4e38(\u653b9600)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 48, "func2_type": 6, "func2_power": 48}, "32": {"name": "\u9759\u7985\u9b54\u4e38(\u653b21760)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 96, "func2_type": 6, "func2_power": 96}, "33": {"name": "\u5730\u4ed9\u7384\u4e38(\u653b48640)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 192, "func2_type": 6, "func2_power": 192}, "34": {"name": "\u6d88\u51b0\u5b9d\u4e38(\u653b104840)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 384, "func2_type": 6, "func2_power": 384}, "35": {"name": "\u65e0\u6daf\u9b3c\u4e38(\u653b304840)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 768, "func2_type": 6, "func2_power": 768}, "36": {"name": "\u592a\u4e00\u4ed9\u4e38(\u653b604840)", "type": "\u52a0\u653b\u51fb\u529b", "func1_type": 2, "func1_power": 1536, "func2_type": 6, "func2_power": 1536}}}
|
src/Material.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from utils import load_json,other_data,Dict2Obj
|
2 |
+
|
3 |
+
class Material:
|
4 |
+
def __init__(self,name:str,level:str,main:dict,deputy:dict,assist:dict):
|
5 |
+
self.name:str = name
|
6 |
+
self.level:str = level
|
7 |
+
assert list(main.keys()) == ["h_a_c","type","power"], f"{name}主药数据错误"
|
8 |
+
assert list(deputy.keys()) == ["h_a_c","type","power"], f"{name}药引数据错误"
|
9 |
+
assert list(assist.keys()) == ["type","power"], f"{name}辅药数据错误"
|
10 |
+
self.main = Dict2Obj(main)
|
11 |
+
self.deputy = Dict2Obj(deputy)
|
12 |
+
self.assist = Dict2Obj(assist)
|
13 |
+
self.children = []
|
14 |
+
|
15 |
+
|
16 |
+
def __str__(self):
|
17 |
+
return f"""名字:{self.name}
|
18 |
+
品级:{self.level}
|
19 |
+
主药 {other_data.material_type[str(self.main.h_a_c.type)]}{str(self.main.h_a_c.power)} {other_data.material_type[str(self.main.type)]}{str(self.main.power)}
|
20 |
+
药引 {other_data.material_type[str(self.deputy.h_a_c.type)]}{str(self.deputy.h_a_c.power)}
|
21 |
+
辅药 {other_data.material_type[str(self.assist.type)]}{str(self.assist.power)}"""
|
src/__pycache__/gr_func.cpython-37.pyc
ADDED
Binary file (7.06 kB). View file
|
|
src/__pycache__/utils.cpython-37.pyc
ADDED
Binary file (844 Bytes). View file
|
|
src/db.json
ADDED
File without changes
|
src/gr_func.py
ADDED
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from tinydb import TinyDB, Query
|
2 |
+
|
3 |
+
db = TinyDB('./db.json')
|
4 |
+
material_table = db.table('material')
|
5 |
+
medicine_table = db.table('medicine')
|
6 |
+
|
7 |
+
|
8 |
+
def get_medicines(type="ALL"):
|
9 |
+
assert type in ["ALL", "增加修为", "突破概率", "加攻击力"], f"type:{type} 不是有效的类别"
|
10 |
+
if type in ["ALL"]:
|
11 |
+
a = medicine_table.all()
|
12 |
+
else:
|
13 |
+
medicine = Query()
|
14 |
+
a = medicine_table.search(medicine.type == type)
|
15 |
+
return list(map(lambda x: x["name"], a))
|
16 |
+
|
17 |
+
|
18 |
+
def _get_medicine_elixir_config(medicine_select: str):
|
19 |
+
medicine = Query()
|
20 |
+
return medicine_table.search(medicine.name == medicine_select)[0]
|
21 |
+
|
22 |
+
def _get_material_elixir_config(material_select: str):
|
23 |
+
medicine = Query()
|
24 |
+
return material_table.search(medicine.name == material_select)[0]
|
25 |
+
|
26 |
+
def get_first_material(medicine_select, medicine_level_select="ALL",material_max_num=5) ->list:
|
27 |
+
material = Query()
|
28 |
+
m = _get_medicine_elixir_config(medicine_select)
|
29 |
+
func1_type = m["func1_type"]
|
30 |
+
func1_power = m["func1_power"]
|
31 |
+
func2_type = m["func2_type"]
|
32 |
+
func2_power = m["func2_power"]
|
33 |
+
if medicine_level_select == "ALL":
|
34 |
+
a = material_table.search((material.main_func_t == func1_type) | (material.auxi_func_t == func1_type) | (
|
35 |
+
material.main_func_t == func2_type) | (material.auxi_func_t == func2_type))
|
36 |
+
else:
|
37 |
+
a = material_table.search((material.level == medicine_level_select) & (
|
38 |
+
(material.main_func_t == func1_type) | (material.auxi_func_t == func1_type) | (
|
39 |
+
material.main_func_t == func2_type) | (material.auxi_func_t == func2_type)))
|
40 |
+
|
41 |
+
def get_num(material0):
|
42 |
+
global material_second_f
|
43 |
+
name = material0["name"]
|
44 |
+
if material0["main_func_t"] == func1_type:
|
45 |
+
material_second_f = (func2_type,False)
|
46 |
+
num = func1_power / material0["main_func_p"]
|
47 |
+
elif material0["auxi_func_t"] == func1_type:
|
48 |
+
material_second_f = (func2_type,True)
|
49 |
+
num = func1_power / material0["auxi_func_p"]
|
50 |
+
elif material0["main_func_t"] == func2_type:
|
51 |
+
material_second_f = (func1_type,False)
|
52 |
+
num = func2_power / material0["main_func_p"]
|
53 |
+
elif material0["auxi_func_t"] == func2_type:
|
54 |
+
material_second_f = (func1_type,True)
|
55 |
+
num = func2_power / material0["auxi_func_p"]
|
56 |
+
num = int(num) + 1 if num > int(num) else int(num)
|
57 |
+
return (name,num,material_second_f)
|
58 |
+
rtn = list(map(get_num, a))
|
59 |
+
rtn = list(filter(lambda x:x[1]<=material_max_num, rtn))
|
60 |
+
|
61 |
+
def check_material(material0):
|
62 |
+
if material0[1] > material_max_num:
|
63 |
+
return False
|
64 |
+
material_t = material.main_func_t if material0[2][1] else material.auxi_func_t
|
65 |
+
a = material_table.search(material_t == material0[2][0])
|
66 |
+
if a == []:
|
67 |
+
return False
|
68 |
+
return True
|
69 |
+
|
70 |
+
rtn = list(filter(check_material, rtn))
|
71 |
+
rtn = list(map(lambda x: f"{x[0]}*{x[1]}", rtn))
|
72 |
+
return rtn
|
73 |
+
|
74 |
+
def get_second_material(medicine_select, first_material:str, medicine_level_select="ALL",material_max_num=5) ->list:
|
75 |
+
m = _get_medicine_elixir_config(medicine_select)
|
76 |
+
first_material_name, _ = first_material.split("*")
|
77 |
+
first_material = _get_material_elixir_config(first_material_name)
|
78 |
+
func1_type = m["func1_type"]
|
79 |
+
func1_power = m["func1_power"]
|
80 |
+
func2_type = m["func2_type"]
|
81 |
+
func2_power = m["func2_power"]
|
82 |
+
|
83 |
+
if first_material["main_func_t"] == func1_type:
|
84 |
+
second_material_func_need,second_material_main = (func2_type,func2_power),False
|
85 |
+
elif first_material["auxi_func_t"] == func1_type:
|
86 |
+
second_material_func_need, second_material_main = (func2_type,func2_power), True
|
87 |
+
elif first_material["main_func_t"] == func2_type:
|
88 |
+
second_material_func_need, second_material_main = (func1_type,func1_power), False
|
89 |
+
elif first_material["auxi_func_t"] == func2_type:
|
90 |
+
second_material_func_need, second_material_main = (func1_type,func1_power), True
|
91 |
+
|
92 |
+
material = Query()
|
93 |
+
material_t = material.main_func_t if second_material_main else material.auxi_func_t
|
94 |
+
if medicine_level_select == "ALL":
|
95 |
+
a = material_table.search((material_t == second_material_func_need[0]))
|
96 |
+
else:
|
97 |
+
a = material_table.search((material.level == medicine_level_select) & (material_t == second_material_func_need[0]))
|
98 |
+
|
99 |
+
def get_num(material0):
|
100 |
+
name = material0["name"]
|
101 |
+
material0_p = material0["main_func_p"] if second_material_main else material0["auxi_func_p"]
|
102 |
+
num = second_material_func_need[1]/material0_p
|
103 |
+
num = int(num) + 1 if num > int(num) else int(num)
|
104 |
+
return (name,num)
|
105 |
+
|
106 |
+
rtn = list(map(get_num, a))
|
107 |
+
rtn = list(filter(lambda x:x[1]<=material_max_num, rtn))
|
108 |
+
rtn = list(map(lambda x: f"{x[0]}*{x[1]}", rtn))
|
109 |
+
return rtn
|
110 |
+
|
111 |
+
def get_possible_material(medicine_select, first_material:str="无", second_material:str="无",material_max_num=5):
|
112 |
+
possible_choice = set()
|
113 |
+
if first_material == "无":
|
114 |
+
for first_material in get_first_material(medicine_select):
|
115 |
+
for second_material in get_second_material(medicine_select, first_material):
|
116 |
+
possible_choice.add((first_material, second_material))
|
117 |
+
elif second_material == "无":
|
118 |
+
for second_material in get_second_material(medicine_select,first_material):
|
119 |
+
possible_choice.add((first_material, second_material))
|
120 |
+
else:
|
121 |
+
possible_choice.add((first_material,second_material))
|
122 |
+
|
123 |
+
m = _get_medicine_elixir_config(medicine_select)
|
124 |
+
func1_type = m["func1_type"]
|
125 |
+
func2_type = m["func2_type"]
|
126 |
+
|
127 |
+
rtn = []
|
128 |
+
for first_material,second_material in possible_choice:
|
129 |
+
first_material_name,first_material_num = first_material.split("*")
|
130 |
+
second_material_name,second_material_num = second_material.split("*")
|
131 |
+
first_material = _get_material_elixir_config(first_material_name)
|
132 |
+
second_material = _get_material_elixir_config(second_material_name)
|
133 |
+
if first_material["main_func_t"] in [func1_type,func2_type]:
|
134 |
+
main_temp = first_material["main_temp"]
|
135 |
+
main_material = f"{first_material_name}*{first_material_num}"
|
136 |
+
auxi_material = f"{second_material_name}*{second_material_num}"
|
137 |
+
else:
|
138 |
+
main_temp = second_material["main_temp"]
|
139 |
+
auxi_material = f"{first_material_name}*{first_material_num}"
|
140 |
+
main_material = f"{second_material_name}*{second_material_num}"
|
141 |
+
|
142 |
+
if main_temp==0:
|
143 |
+
material_third_list=['恒心草(一品)*1', '红绫草(一品)*1', '五柳根(二品)*1', '天元果(二品)*1', '紫猴花(三品)*1', '九叶芝(三品)*1', '血莲精(四品)*1', '鸡冠草(四品)*1', '地心火芝(五品)*1', '天蝉灵叶(五品)*1', '三叶青芝(六品)*1', '七彩月兰(六品)*1', '地心淬灵乳(七品)*1', '天麻翡石精(七品)*1', '木灵三针花(八品)*1', '鎏鑫天晶草(八品)*1', '离火梧桐芝(九品)*1', '尘磊岩麟果(九品)*1', '宁心草(一品)*1', '凝血草(一品)*1', '流莹草(二品)*1', '蛇涎果(二品)*1', '轻灵草(三品)*1', '龙葵(三品)*1', '菩提花(四品)*1', '乌稠木(四品)*1', '天灵果(五品)*1', '灯心草(五品)*1', '白沉脂(六品)*1', '苦曼藤(六品)*1', '天问花(七品)*1', '渊血冥花(七品)*1', '阴阳黄泉花(八品)*1', '厉魂血珀(八品)*1', '太乙碧莹花(九品)*1', '森檀木(九品)*1', '地黄参(一品)*1', '火精枣(一品)*1', '风灵花(二品)*1', '伏龙参(二品)*1', '枫香脂(三品)*1', '炼魂珠(三品)*1', '石龙芮(四品)*1', '锦地罗(四品)*1', '伴妖草(五品)*1', '剑心竹(五品)*1', '混元果(六品)*1', '皇龙花(六品)*1', '血玉竹(七品)*1', '肠蚀草(七品)*1', '狼桃(八品)*1', '霸王花(八品)*1', '地龙干(九品)*1', '龙须藤(九品)*1']
|
144 |
+
|
145 |
+
else:
|
146 |
+
material0 = Query()
|
147 |
+
material0 = material0.phar_temp > 0 if main_temp<0 else material0.phar_temp <0
|
148 |
+
a = material_table.search(material0)
|
149 |
+
|
150 |
+
def get_num(x):
|
151 |
+
name = x["name"]
|
152 |
+
phar_temp = x["phar_temp"]
|
153 |
+
num = -main_temp//phar_temp
|
154 |
+
num = 1 if num==0 else num
|
155 |
+
return (name,num)
|
156 |
+
|
157 |
+
a = list(map(get_num,a))
|
158 |
+
a = list(filter(lambda x:x[1]<=material_max_num, a))
|
159 |
+
material_third_list = list(map(lambda x:f'{x[0]}*{x[1]}',a))
|
160 |
+
rtn.append((main_material,auxi_material,material_third_list))
|
161 |
+
return rtn
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
def init():
|
166 |
+
medicine_list = get_medicines()
|
167 |
+
return medicine_list
|
src/utils.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
from typing import Optional,List,Dict
|
3 |
+
|
4 |
+
class Dict2Obj(dict):
|
5 |
+
def __getattr__(self, key):
|
6 |
+
if key not in self:
|
7 |
+
return None
|
8 |
+
else:
|
9 |
+
value = self[key]
|
10 |
+
if isinstance(value,dict):
|
11 |
+
value = Dict2Obj(value)
|
12 |
+
return value
|
13 |
+
|
14 |
+
def load_json(file_path:str) ->Dict2Obj:
|
15 |
+
with open(file_path,"r",encoding="utf-8")as f:
|
16 |
+
return Dict2Obj(json.loads(f.read()))
|
17 |
+
|
18 |
+
|
19 |
+
other_data = load_json("./data/other.json")
|
20 |
+
|
21 |
+
|