111 lines
1.4 KiB
Lua
111 lines
1.4 KiB
Lua
local battle_const = {
|
|
["origin_attack"]={
|
|
["int_list"]={
|
|
2101,
|
|
2102,
|
|
2103,
|
|
2104,
|
|
2105,
|
|
2106
|
|
}
|
|
},
|
|
["test_hero"]={
|
|
["value"]=2
|
|
},
|
|
["test_attack"]={
|
|
["int_list"]={
|
|
2601,
|
|
2602,
|
|
2603,
|
|
2604,
|
|
2605,
|
|
2606
|
|
}
|
|
},
|
|
["test_skill"]={
|
|
["int_list"]={
|
|
21011,
|
|
21014,
|
|
21015
|
|
}
|
|
},
|
|
["test_skill_extra"]={
|
|
["int_list"]={
|
|
2001,
|
|
2002
|
|
}
|
|
},
|
|
["distance_scene"]={
|
|
["value"]=5000
|
|
},
|
|
["distance_attack"]={
|
|
["value"]=313
|
|
},
|
|
["distance_dash"]={
|
|
["value"]=1250
|
|
},
|
|
["distance_back"]={
|
|
["value"]=625
|
|
},
|
|
["time_attack"]={
|
|
["value"]=100
|
|
},
|
|
["time_back"]={
|
|
["value"]=50
|
|
},
|
|
["shake_level_1"]={
|
|
["value"]=10
|
|
},
|
|
["shake_level_2"]={
|
|
["value"]=20
|
|
},
|
|
["shake_level_3"]={
|
|
["value"]=60
|
|
},
|
|
["distance_hit_back"]={
|
|
["value"]=80
|
|
},
|
|
["distance_hit_fly"]={
|
|
["value"]=555
|
|
},
|
|
["height_hit_fly"]={
|
|
["value"]=592
|
|
},
|
|
["time_hit_fly"]={
|
|
["value"]=1200
|
|
},
|
|
["time_lie"]={
|
|
["value"]=1200
|
|
},
|
|
["delay_battle_start"]={
|
|
["value"]=2000
|
|
},
|
|
["aotu_fight_interval"]={
|
|
["value"]=400
|
|
},
|
|
["double_skill_interval"]={
|
|
["value"]=500
|
|
},
|
|
["height_number_small"]={
|
|
["value"]=70
|
|
},
|
|
["height_number_middle"]={
|
|
["value"]=100
|
|
},
|
|
["height_number_high"]={
|
|
["value"]=160
|
|
},
|
|
["height_hp_bar_small"]={
|
|
["value"]=120
|
|
},
|
|
["height_hp_bar_middle"]={
|
|
["value"]=150
|
|
},
|
|
["height_hp_bar_high"]={
|
|
["value"]=190
|
|
}
|
|
}
|
|
local config = {
|
|
data=battle_const,count=28
|
|
}
|
|
return config |