|
@@ -657,22 +657,22 @@ class XiGuaAuthor:
|
|
|
flag = account['link'].split("_")[0]
|
|
|
if flag == "V1":
|
|
|
rule_dict = {
|
|
|
- "play_cnt": {"min": 50000, "max": 0},
|
|
|
- 'period': {"min": 15, "max": 15},
|
|
|
- 'special': 0.01
|
|
|
+ "play_cnt": {"min": 100000, "max": 0},
|
|
|
+ 'period': {"min": 90, "max": 90},
|
|
|
+ 'special': 0.02
|
|
|
}
|
|
|
return rule_dict
|
|
|
elif flag == "V2":
|
|
|
rule_dict = {
|
|
|
"play_cnt": {"min": 10000, "max": 0},
|
|
|
- 'period': {"min": 7, "max": 7},
|
|
|
+ 'period': {"min": 90, "max": 90},
|
|
|
'special': 0.01
|
|
|
}
|
|
|
return rule_dict
|
|
|
elif flag == "V3":
|
|
|
rule_dict = {
|
|
|
"play_cnt": {"min": 5000, "max": 0},
|
|
|
- 'period': {"min": 3, "max": 3},
|
|
|
+ 'period': {"min": 90, "max": 90},
|
|
|
'special': 0.01
|
|
|
}
|
|
|
return rule_dict
|