dd
This commit is contained in:
@@ -77,6 +77,8 @@ export class SingletonModuleComp extends ecs.Comp {
|
||||
gems: 4,
|
||||
unlock:5,
|
||||
mission:{
|
||||
play:false,
|
||||
pause:false,
|
||||
victory:0,
|
||||
once:6, //每波刷新怪物数量
|
||||
total:120, //总怪物数
|
||||
@@ -133,26 +135,24 @@ export class SingletonModuleComp extends ecs.Comp {
|
||||
skill3:{uuid:1001,cd:3,cd_max:3,alive:false},
|
||||
skill4:{uuid:1001,cd:3,cd_max:3,alive:false},
|
||||
skill5:{uuid:1001,cd:3,cd_max:3,alive:false},
|
||||
|
||||
|
||||
},
|
||||
talent:{
|
||||
1:{bonus:3,lv:0,lv_max:5,info:"英雄血量加成",name:""},
|
||||
2:{bonus:3,lv:0,lv_max:5,info:"英雄攻击加成",name:""},
|
||||
3:{bonus:3,lv:0,lv_max:5,info:"英雄攻击加速",name:""},
|
||||
4:{bonus:3,lv:0,lv_max:5,info:"英雄技能cd加速",name:""},
|
||||
5:{bonus:3,lv:0,lv_max:5,info:"英雄技能效果加强",name:""},
|
||||
6:{bonus:3,lv:0,lv_max:5,info:"铜币收益增加",name:""},
|
||||
7:{bonus:3,lv:0,lv_max:5,info:"",name:""},
|
||||
8:{bonus:3,lv:0,lv_max:5,info:"",name:""},
|
||||
9:{bonus:3,lv:0,lv_max:5,info:"",name:""},
|
||||
10:{bonus:3,lv:0,lv_max:5,info:"",name:""},
|
||||
11:{bonus:3,lv:0,lv_max:5,info:"血量加成",name:""},
|
||||
12:{bonus:3,lv:0,lv_max:5,info:"攻击加成",name:""},
|
||||
13:{bonus:3,lv:0,lv_max:5,info:"攻击加速",name:""},
|
||||
14:{bonus:3,lv:0,lv_max:5,info:"技能cd加速",name:""},
|
||||
15:{bonus:3,lv:0,lv_max:5,info:"技能效果加强",name:""},
|
||||
16:{bonus:3,lv:0,lv_max:5,info:"技能持续时间",name:""},
|
||||
1001:{uuid:1001,lv:0,},
|
||||
1002:{uuid:1002,lv:0,},
|
||||
1003:{uuid:1003,lv:0,},
|
||||
1004:{uuid:1004,lv:0,},
|
||||
1005:{uuid:1005,lv:0,},
|
||||
1006:{uuid:1006,lv:0,},
|
||||
1007:{uuid:1007,lv:0,},
|
||||
1008:{uuid:1008,lv:0,},
|
||||
1009:{uuid:1009,lv:0,},
|
||||
1010:{uuid:1010,lv:0,},
|
||||
1011:{uuid:1011,lv:0,},
|
||||
1012:{uuid:1012,lv:0,},
|
||||
1013:{uuid:1013,lv:0,},
|
||||
1014:{uuid:1014,lv:0,},
|
||||
1015:{uuid:1015,lv:0,},
|
||||
1016:{uuid:1016,lv:0,},
|
||||
},
|
||||
monster:{
|
||||
gold_add:1,
|
||||
|
||||
19
assets/script/game/common/config/TalentSet.ts
Normal file
19
assets/script/game/common/config/TalentSet.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
export const talent_num=2
|
||||
export const Talents={
|
||||
1001:{uuid:1001,type: 1,bonus:3,cost:1,lv_max:99,info:"勇者血量加成",name:"强身"},
|
||||
1002:{uuid:1002,type: 1,bonus:3,cost:1,lv_max:99,info:"勇者攻击加成",name:"历练"},
|
||||
1003:{uuid:1003,type: 1,bonus:3,cost:1,lv_max:99,info:"勇者攻击加速",name:"迅捷"},
|
||||
1004:{uuid:1004,type: 1,bonus:3,cost:1,lv_max:99,info:"勇者技能cd加速",name:"咏唱"},
|
||||
1005:{uuid:1005,type: 1,bonus:3,cost:1,lv_max:99,info:"勇者技能效果加强",name:"凝聚"},
|
||||
1006:{uuid:1006,type: 1,bonus:3,cost:1,lv_max:99,info:"铜币收益增加",name:"精打细算"},
|
||||
// 1007:{uuid:1007,type: 1,bonus:3,cost:1,lv_max:99,info:"",name:""},
|
||||
// 1008:{uuid:1008,type: 1,bonus:3,cost:1,lv_max:99,info:"",name:""},
|
||||
// 1009:{uuid:1009,type: 1,bonus:3,cost:1,lv_max:99,info:"",name:""},
|
||||
// 1010:{uuid:1010,type: 1,bonus:3,cost:1,lv_max:99,info:"",name:""},
|
||||
1011:{uuid:1011,type: 2,bonus:3,cost:1,lv_max:99,info:"佣兵血量加成",name:"后援"},
|
||||
1012:{uuid:1012,type: 2,bonus:3,cost:1,lv_max:99,info:"佣兵攻击加成",name:"激励"},
|
||||
1013:{uuid:1013,type: 2,bonus:3,cost:1,lv_max:99,info:"佣兵攻击加速",name:"鼓舞"},
|
||||
1014:{uuid:1014,type: 2,bonus:3,cost:1,lv_max:99,info:"佣兵技能cd加速",name:"联结"},
|
||||
1015:{uuid:1015,type: 2,bonus:3,cost:1,lv_max:99,info:"佣兵技能效果加强",name:"祝福"},
|
||||
1016:{uuid:1016,type: 2,bonus:3,cost:1,lv_max:99,info:"佣兵技能持续时间",name:"透支"},
|
||||
}
|
||||
9
assets/script/game/common/config/TalentSet.ts.meta
Normal file
9
assets/script/game/common/config/TalentSet.ts.meta
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"ver": "4.0.23",
|
||||
"importer": "typescript",
|
||||
"imported": true,
|
||||
"uuid": "5fdc5c44-f438-4c0e-8c5c-a2673d49aafd",
|
||||
"files": [],
|
||||
"subMetas": {},
|
||||
"userData": {}
|
||||
}
|
||||
Reference in New Issue
Block a user