dd
This commit is contained in:
@@ -9,17 +9,25 @@ export const Items={
|
||||
1001:{uuid: 1001,path: "1001",type: 1,r_num:10,name: "坦克卷轴",info:"提升普通坦克型英雄等级", },
|
||||
1002:{uuid: 1002,path: "1001",type: 1,r_num:10,name: "远程卷轴",info:"提升普通远程型英雄等级", },
|
||||
1003:{uuid: 1003,path: "1001",type: 1,r_num:10,name: "辅助卷轴",info:"提升普通辅助型英雄等级", },
|
||||
1004:{uuid: 1004,path: "1001",type: 1,r_num:10,name: "<传说>坦克卷轴",info:"提升<传说>坦克型英雄等级", },
|
||||
1005:{uuid: 1005,path: "1001",type: 1,r_num:10,name: "<传说>远程卷轴",info:"提升<传说>远程型英雄等级", },
|
||||
1006:{uuid: 1006,path: "1001",type: 1,r_num:10,name: "<传说>辅助卷轴",info:"提升<传说>辅助型英雄等级", },
|
||||
1007:{uuid: 1007,path: "1001",type: 1,r_num:1,name: "坦克原石",info:"普通坦克型英雄升星", },
|
||||
1008:{uuid: 1008,path: "1001",type: 1,r_num:1,name: "远程原石",info:"普通远程型英雄升星", },
|
||||
1009:{uuid: 1009,path: "1001",type: 1,r_num:1,name: "辅助原石",info:"普通辅助型英雄升星", },
|
||||
1004:{uuid: 1004,path: "1001",type: 1,r_num:10,name: "<传说>坦克卷轴",info:"提升<传说>坦克型英雄等级", },
|
||||
1005:{uuid: 1005,path: "1001",type: 1,r_num:10,name: "<传说>远程卷轴",info:"提升<传说>远程型英雄等级", },
|
||||
1006:{uuid: 1006,path: "1001",type: 1,r_num:10,name: "<传说>辅助卷轴",info:"提升<传说>辅助型英雄等级", },
|
||||
1010:{uuid: 1010,path: "1001",type: 1,r_num:1,name: "<传说>坦克原石",info:"<传说>坦克型英雄升星", },
|
||||
1011:{uuid: 1011,path: "1001",type: 1,r_num:1,name: "<传说>远程原石",info:"<传说>远程型英雄升星", },
|
||||
1012:{uuid: 1012,path: "1001",type: 1,r_num:1,name: "<传说>辅助原石",info:"<传说>辅助型英雄升星", },
|
||||
1013:{uuid: 1013,path: "1001",type: 1,r_num:1,name: "召唤券",info:"普通召唤券,无法召唤传说英雄", },
|
||||
1014:{uuid: 1014,path: "1001",type: 1,r_num:1,name: "<高级>召唤券",info:"<高级>英雄召唤券,召唤传说英雄机率提升", },
|
||||
1015:{uuid: 1015,path: "1001",type: 1,r_num:1,name: "<传说>召唤券",info:"<传说>英雄召唤券,召唤传说英雄机率大幅提升", },
|
||||
1021:{uuid: 1021,path: "1021",type: 1,r_num:1,name: "普通攻击石",info:"增加装备攻击力", },
|
||||
1022:{uuid: 1022,path: "1021",type: 1,r_num:1,name: "高级攻击石",info:"增加装备攻击力", },
|
||||
1023:{uuid: 1023,path: "1021",type: 1,r_num:1,name: "稀有攻击石",info:"增加装备攻击力", },
|
||||
1024:{uuid: 1024,path: "1021",type: 1,r_num:1,name: "传说攻击石",info:"增加装备攻击力", },
|
||||
1025:{uuid: 1025,path: "1021",type: 1,r_num:1,name: "普通生命石",info:"增加装备生命值", },
|
||||
1026:{uuid: 1026,path: "1021",type: 1,r_num:1,name: "高级生命石",info:"增加装备生命值", },
|
||||
1027:{uuid: 1027,path: "1021",type: 1,r_num:1,name: "稀有生命石",info:"增加装备生命值", },
|
||||
1028:{uuid: 1028,path: "1021",type: 1,r_num:1,name: "传说生命石",info:"增加装备生命值", },
|
||||
}
|
||||
|
||||
|
||||
@@ -130,7 +130,7 @@ export class MissionComp extends CCComp {
|
||||
if(smc.vmdata.mission.a_exp >= smc.vmdata.mission.a_up_exp){
|
||||
smc.vmdata.mission.ap+=smc.vmdata.mission.a_up
|
||||
smc.vmdata.mission.a_exp-=smc.vmdata.mission.a_up_exp
|
||||
this.node.getChildByName("exp").getChildByName("ap").setScale(1.2,1)
|
||||
this.node.getChildByName("exp").getChildByName("ap").setScale(1.2,1.2)
|
||||
this.scheduleOnce(function(){
|
||||
this.node.getChildByName("exp").getChildByName("ap").setScale(1,1)
|
||||
},0.1)
|
||||
@@ -138,7 +138,7 @@ export class MissionComp extends CCComp {
|
||||
if(smc.vmdata.mission.h_exp >= smc.vmdata.mission.h_up_exp){
|
||||
smc.vmdata.mission.hp+=smc.vmdata.mission.h_up
|
||||
smc.vmdata.mission.h_exp-=smc.vmdata.mission.h_up_exp
|
||||
this.node.getChildByName("exp").getChildByName("hp").setScale(1.2,1)
|
||||
this.node.getChildByName("exp").getChildByName("hp").setScale(1.2,1.2)
|
||||
this.scheduleOnce(function(){
|
||||
this.node.getChildByName("exp").getChildByName("hp").setScale(1,1)
|
||||
},0.1)
|
||||
@@ -146,7 +146,7 @@ export class MissionComp extends CCComp {
|
||||
if(smc.vmdata.mission.ma_exp >= smc.vmdata.mission.ma_up_exp){
|
||||
smc.vmdata.mission.map+=smc.vmdata.mission.ma_up
|
||||
smc.vmdata.mission.ma_exp-=smc.vmdata.mission.ma_up_exp
|
||||
this.node.getChildByName("mexp").getChildByName("ap").setScale(1.2,1)
|
||||
this.node.getChildByName("mexp").getChildByName("ap").setScale(1.2,1.2)
|
||||
this.scheduleOnce(function(){
|
||||
this.node.getChildByName("mexp").getChildByName("ap").setScale(1,1)
|
||||
},0.1)
|
||||
@@ -154,7 +154,7 @@ export class MissionComp extends CCComp {
|
||||
if(smc.vmdata.mission.mh_exp >= smc.vmdata.mission.mh_up_exp){
|
||||
smc.vmdata.mission.mhp+=smc.vmdata.mission.mh_up
|
||||
smc.vmdata.mission.mh_exp-=smc.vmdata.mission.mh_up_exp
|
||||
this.node.getChildByName("mexp").getChildByName("hp").setScale(1.2,1)
|
||||
this.node.getChildByName("mexp").getChildByName("hp").setScale(1.2,1.2)
|
||||
this.scheduleOnce(function(){
|
||||
this.node.getChildByName("mexp").getChildByName("hp").setScale(1,1)
|
||||
},0.1)
|
||||
|
||||
Reference in New Issue
Block a user