灵兽宝阁打点

lvxinran 2020-11-24 13:49:03 +08:00
parent 452b929053
commit 4dd8ad89d9
2 changed files with 7 additions and 0 deletions

View File

@ -86,11 +86,14 @@ public enum ReportEventEnum {
BEAST_LEVEL(59,"beast_level",new CommonEventHandler(),new String[]{"beast_id","old_level","new_level","cost_item_list_info"}), BEAST_LEVEL(59,"beast_level",new CommonEventHandler(),new String[]{"beast_id","old_level","new_level","cost_item_list_info"}),
BEAST_STAR(60,"beast_star",new CommonEventHandler(),new String[]{"beast_id","old_star","new_star","cost_item_list","cost_beast_list"}), BEAST_STAR(60,"beast_star",new CommonEventHandler(),new String[]{"beast_id","old_star","new_star","cost_item_list","cost_beast_list"}),
BEAST_SUMMON(61,"beast_summon",new CommonEventHandler(),new String[]{"beast_id","summon_type","cost_item_id","cost_amount","reward_nums_list"}), BEAST_SUMMON(61,"beast_summon",new CommonEventHandler(),new String[]{"beast_id","summon_type","cost_item_id","cost_amount","reward_nums_list"}),
BEAST_CABINET(62,"beast_cabinet",new CommonEventHandler(),new String[]{"beast_id","summon_type","cost_item_id","cost_amount","reward_nums_list"}),
VIP_LEVEL_UP(100,"", new VipLevelUpEventHandler(),new String[]{""}); VIP_LEVEL_UP(100,"", new VipLevelUpEventHandler(),new String[]{""});
private int type; private int type;
private String eventName; private String eventName;

View File

@ -415,6 +415,10 @@ public class HeroLogic{
case 9: case 9:
eventEnum = ReportEventEnum.BEAST_SUMMON; eventEnum = ReportEventEnum.BEAST_SUMMON;
break; break;
case 10:
eventEnum = ReportEventEnum.BEAST_CABINET;
activityId = sLotterySetting.getActivityId();
break;
default: default:
break; break;