This commit is contained in:
Fang 2023-09-12 18:11:24 +08:00
parent 6f010c00b4
commit 1e21958ae6
14 changed files with 43259 additions and 13959 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 0ea07987f5138fd4783f9cb9509cf506
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -12,9 +12,23 @@ local grid_edge_type = {
["icon"]="battle_obstacle_coral_3",
["next_type"]=2,
["break_sfx"]="sfx_piece_shanhu_b01"
},
[4]={
["icon"]="battle_obstacle_stick_3",
["break_sfx"]="sfx_piece_shanhu_b01"
},
[5]={
["icon"]="battle_obstacle_stick_2",
["next_type"]=4,
["break_sfx"]="sfx_piece_shanhu_b01"
},
[6]={
["icon"]="battle_obstacle_stick_1",
["next_type"]=5,
["break_sfx"]="sfx_piece_shanhu_b01"
}
}
local config = {
data=grid_edge_type,count=3
data=grid_edge_type,count=6
}
return config

View File

@ -1,113 +1,113 @@
local runes_level = {
[1]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_1"]=7950,
["weight_2"]=2000,
["weight_3"]=50,
["grid"]=1
},
[2]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_1"]=6620,
["weight_2"]=3200,
["weight_3"]=150,
["weight_4"]=30,
["grid"]=2,
["cost"]=200
["cost"]=100
},
[3]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_1"]=5754,
["weight_2"]=3680,
["weight_3"]=480,
["weight_4"]=66,
["weight_5"]=20,
["grid"]=3,
["cost"]=500
["cost"]=1000
},
[4]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_1"]=4595,
["weight_2"]=4260,
["weight_3"]=980,
["weight_4"]=112,
["weight_5"]=45,
["weight_6"]=8,
["grid"]=4,
["cost"]=800
["cost"]=3000
},
[5]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_7"]=700,
["weight_1"]=3784,
["weight_2"]=4550,
["weight_3"]=1360,
["weight_4"]=198,
["weight_5"]=88,
["weight_6"]=18,
["weight_7"]=2,
["grid"]=5,
["auto"]=1,
["cost"]=1200
["cost"]=8000
},
[6]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_7"]=700,
["weight_8"]=800,
["weight_1"]=3312,
["weight_2"]=4350,
["weight_3"]=1780,
["weight_4"]=366,
["weight_5"]=156,
["weight_6"]=29,
["weight_7"]=6,
["weight_8"]=1,
["grid"]=6,
["auto"]=1,
["cost"]=1600
["cost"]=20000
},
[7]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_7"]=700,
["weight_8"]=900,
["weight_1"]=2738,
["weight_2"]=4080,
["weight_3"]=2250,
["weight_4"]=612,
["weight_5"]=268,
["weight_6"]=40,
["weight_7"]=10,
["weight_8"]=2,
["grid"]=6,
["auto"]=1,
["cost"]=2000
["cost"]=50000
},
[8]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_7"]=700,
["weight_8"]=1000,
["weight_1"]=1893,
["weight_2"]=3780,
["weight_3"]=2835,
["weight_4"]=945,
["weight_5"]=472,
["weight_6"]=52,
["weight_7"]=19,
["weight_8"]=4,
["grid"]=6,
["auto"]=1,
["cost"]=2400
["cost"]=100000
},
[9]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_7"]=700,
["weight_8"]=1100,
["weight_1"]=1886,
["weight_2"]=2785,
["weight_3"]=3325,
["weight_4"]=1324,
["weight_5"]=582,
["weight_6"]=65,
["weight_7"]=25,
["weight_8"]=8,
["grid"]=6,
["auto"]=1,
["cost"]=2800
["cost"]=200000
},
[10]={
["weight_1"]=100,
["weight_2"]=200,
["weight_3"]=300,
["weight_4"]=400,
["weight_5"]=500,
["weight_6"]=600,
["weight_7"]=700,
["weight_8"]=1200,
["weight_1"]=1436,
["weight_2"]=2335,
["weight_3"]=3778,
["weight_4"]=1678,
["weight_5"]=636,
["weight_6"]=89,
["weight_7"]=36,
["weight_8"]=12,
["grid"]=6,
["auto"]=1,
["cost"]=3200
["cost"]=500000
}
}
local config = {

File diff suppressed because it is too large Load Diff

View File

@ -3,51 +3,51 @@ local runes_suit = {
["red_suit_attr"]={
{
["type"]="attr_hpp_red",
["num"]=1000
["num"]=800
},
{
["type"]="attr_hpp_red",
["num"]=2500
["num"]=1500
}
},
["yellow_suit_attr"]={
{
["type"]="attr_hpp_yellow",
["num"]=1000
["num"]=800
},
{
["type"]="attr_hpp_yellow",
["num"]=2500
["num"]=1500
}
},
["green_suit_attr"]={
{
["type"]="attr_hpp_green",
["num"]=1000
["num"]=800
},
{
["type"]="attr_hpp_green",
["num"]=2500
["num"]=1500
}
},
["blue_suit_attr"]={
{
["type"]="attr_hpp_blue",
["num"]=1000
["num"]=800
},
{
["type"]="attr_hpp_blue",
["num"]=2500
["num"]=1500
}
},
["purple_suit_attr"]={
{
["type"]="attr_hpp_purple",
["num"]=1000
["num"]=800
},
{
["type"]="attr_hpp_purple",
["num"]=2500
["num"]=1500
}
}
},
@ -55,51 +55,51 @@ local runes_suit = {
["red_suit_attr"]={
{
["type"]="attr_atkp_red",
["num"]=1000
["num"]=800
},
{
["type"]="attr_atkp_red",
["num"]=2500
["num"]=1500
}
},
["yellow_suit_attr"]={
{
["type"]="attr_atkp_yellow",
["num"]=1000
["num"]=800
},
{
["type"]="attr_atkp_yellow",
["num"]=2500
["num"]=1500
}
},
["green_suit_attr"]={
{
["type"]="attr_atkp_green",
["num"]=1000
["num"]=800
},
{
["type"]="attr_atkp_green",
["num"]=2500
["num"]=1500
}
},
["blue_suit_attr"]={
{
["type"]="attr_atkp_blue",
["num"]=1000
["num"]=800
},
{
["type"]="attr_atkp_blue",
["num"]=2500
["num"]=1500
}
},
["purple_suit_attr"]={
{
["type"]="attr_atkp_purple",
["num"]=1000
["num"]=800
},
{
["type"]="attr_atkp_purple",
["num"]=2500
["num"]=1500
}
}
},
@ -107,51 +107,51 @@ local runes_suit = {
["red_suit_attr"]={
{
["type"]="attr_crit_time_red",
["num"]=2000
["num"]=1500
},
{
["type"]="attr_crit_time_red",
["num"]=4000
["num"]=3000
}
},
["yellow_suit_attr"]={
{
["type"]="attr_crit_time_yellow",
["num"]=2000
["num"]=1500
},
{
["type"]="attr_crit_time_yellow",
["num"]=4000
["num"]=3000
}
},
["green_suit_attr"]={
{
["type"]="attr_crit_time_green",
["num"]=2000
["num"]=1500
},
{
["type"]="attr_crit_time_green",
["num"]=4000
["num"]=3000
}
},
["blue_suit_attr"]={
{
["type"]="attr_crit_time_blue",
["num"]=2000
["num"]=1500
},
{
["type"]="attr_crit_time_blue",
["num"]=4000
["num"]=3000
}
},
["purple_suit_attr"]={
{
["type"]="attr_crit_time_purple",
["num"]=2000
["num"]=1500
},
{
["type"]="attr_crit_time_purple",
["num"]=4000
["num"]=3000
}
}
},
@ -159,51 +159,51 @@ local runes_suit = {
["red_suit_attr"]={
{
["type"]="attr_all_hurtp_red",
["num"]=2000
["num"]=500
},
{
["type"]="attr_all_hurtp_red",
["num"]=4000
["num"]=1000
}
},
["yellow_suit_attr"]={
{
["type"]="attr_all_hurtp_yellow",
["num"]=2000
["num"]=500
},
{
["type"]="attr_all_hurtp_yellow",
["num"]=4000
["num"]=1000
}
},
["green_suit_attr"]={
{
["type"]="attr_all_hurtp_green",
["num"]=2000
["num"]=500
},
{
["type"]="attr_all_hurtp_green",
["num"]=4000
["num"]=1000
}
},
["blue_suit_attr"]={
{
["type"]="attr_all_hurtp_blue",
["num"]=2000
["num"]=500
},
{
["type"]="attr_all_hurtp_blue",
["num"]=4000
["num"]=1000
}
},
["purple_suit_attr"]={
{
["type"]="attr_all_hurtp_purple",
["num"]=2000
["num"]=500
},
{
["type"]="attr_all_hurtp_purple",
["num"]=4000
["num"]=1000
}
}
},
@ -211,51 +211,51 @@ local runes_suit = {
["red_suit_attr"]={
{
["type"]="attr_crit_red",
["num"]=1000
["num"]=800
},
{
["type"]="attr_all_hurtp_red",
["num"]=2000
["num"]=1500
}
},
["yellow_suit_attr"]={
{
["type"]="attr_crit_yellow",
["num"]=1000
["num"]=800
},
{
["type"]="attr_all_hurtp_yellow",
["num"]=2000
["num"]=1500
}
},
["green_suit_attr"]={
{
["type"]="attr_crit_green",
["num"]=1000
["num"]=800
},
{
["type"]="attr_all_hurtp_green",
["num"]=2000
["num"]=1500
}
},
["blue_suit_attr"]={
{
["type"]="attr_crit_blue",
["num"]=1000
["num"]=800
},
{
["type"]="attr_all_hurtp_blue",
["num"]=2000
["num"]=1500
}
},
["purple_suit_attr"]={
{
["type"]="attr_crit_purple",
["num"]=1000
["num"]=800
},
{
["type"]="attr_all_hurtp_purple",
["num"]=2000
["num"]=1500
}
}
}

View File

@ -3863,10 +3863,10 @@ local skill = {
["trigger"]=5,
["effect"]={
{
["type"]="hurt_yellow",
["num"]=5000,
["ratio"]=10000,
["round"]=0
["type"]="stun",
["num"]=0,
["ratio"]=500,
["round"]=1
}
},
["obj"]=2
@ -3912,7 +3912,7 @@ local skill = {
[2400423]={
["position"]=2,
["effect_type"]=2,
["trigger"]=6,
["trigger"]=5,
["effect"]={
{
["type"]="stun",
@ -3923,6 +3923,20 @@ local skill = {
},
["obj"]=2
},
[2400424]={
["position"]=2,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
["type"]="bleed",
["num"]=3500,
["ratio"]=10000,
["round"]=2
}
},
["obj"]=2
},
[3200110]={
["position"]=3,
["effect_type"]=1,
@ -5799,8 +5813,8 @@ local skill = {
["trigger"]=5,
["effect"]={
{
["type"]="bleed",
["num"]=3500,
["type"]="poison",
["num"]=2500,
["ratio"]=1000,
["round"]=2
}
@ -9285,34 +9299,14 @@ local skill = {
},
[5400421]={
["position"]=5,
["buff_condition"]={
{
{
["type"]="state",
["attr"]="normal_attack_dec",
["op"]=">",
["v"]=0,
["side"]=2
}
}
},
["condition_rel"]={
{
1,
1
}
["skill_type"]=12,
["skill_type_parameter"]={
5,
3
},
["effect_type"]=2,
["trigger"]=5,
["effect"]={
{
["type"]="frozen",
["num"]=0,
["ratio"]=1000,
["round"]=1
}
},
["obj"]=2
["trigger"]=3,
["obj"]=1
},
[5400422]={
["position"]=5,
@ -9358,34 +9352,14 @@ local skill = {
},
[5400425]={
["position"]=5,
["buff_condition"]={
{
{
["type"]="state",
["attr"]="normal_attack_dec",
["op"]=">",
["v"]=0,
["side"]=2
}
}
},
["condition_rel"]={
{
1,
1
}
["skill_type"]=11,
["skill_type_parameter"]={
0,
2
},
["effect_type"]=2,
["trigger"]=5,
["effect"]={
{
["type"]="frozen",
["num"]=0,
["ratio"]=1000,
["round"]=2
}
},
["obj"]=2
["trigger"]=3,
["obj"]=1
},
[5400426]={
["position"]=5,
@ -30487,6 +30461,6 @@ local skill = {
}
}
local config = {
data=skill,count=1103
data=skill,count=1104
}
return config

View File

@ -2572,6 +2572,15 @@ local skill_rogue = {
["qlt"]=4,
["type"]=12,
["skill_position"]=2,
["effect"]={
{
["type"]="add_skill",
["num"]=2400424,
["ratio"]=10000,
["round"]=999
}
},
["obj"]=4,
["icon"]="240"
},
[2400406]={
@ -5381,8 +5390,6 @@ local skill_rogue = {
["icon"]="261"
},
[5400406]={
["unlock"]=5400402,
["cover_unlock"]=5400402,
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,

View File

@ -517,9 +517,9 @@ local localization_global =
["DUNGEON_RUNE_DESC"] = "挑战极限,获取符文!",
["DUNGEON_RUNE_HELP"] = "1. 每30天为一个周期每个周期会重置密室探索进度。/n2. 通关后可消耗【银羽毛】重复挑战,争取最小回合数,更新副本排行!/n3. 挑战道具【金羽毛】和重复挑战道具【银羽毛】每日重置。",
["DUNGEON_RUNE_MIN"] = "历史通关最小回合数:{0}",
["DUNGEON_RUNE_QUEST_1"] = "{0}回合内通关",
["DUNGEON_RUNE_QUEST_2"] = "通关时消除{0}个{1}",
["DUNGEON_RUNE_QUEST_3"] = "通关时消除{0}个障碍物",
["DUNGEON_RUNE_QUEST_1"] = "{0}回合内完成目标",
["DUNGEON_RUNE_QUEST_2"] = "消除{0}个{1}",
["DUNGEON_RUNE_QUEST_3"] = "消除{0}个障碍物",
["DUNGEON_RUNE_QUEST_4"] = "击杀{0}个小怪",
["DUNGEON_RUNE_TIP_1"] = "塔中密室循环结算后,可在此领取奖励。",
["DUNGEON_RUNE_TIP_2"] = "还不能放弃……",

View File

@ -954,7 +954,7 @@ local skill_rogue = {
["desc"]="武神意志随机消除元素<color=#3cff28>+2</color>。"
},
[5400402]={
["desc"]="<color=#fcff28>Combo</color>:女武神普攻<color=#3cff28>冰霜</color>敌人有<color=#3cff28>10%</color>概率附加<color=#3cff28>冻结</color>效果1回合"
["desc"]="武神意志使用后将场上随机<color=#3cff28>3</color>个元素变为紫色元素"
},
[5400403]={
["desc"]="武神意志释放后为团队附加<color=#3cff28>免疫</color>效果,<color=#3cff28>1</color>回合。"
@ -966,7 +966,7 @@ local skill_rogue = {
["desc"]="武神意志附加的<color=#3cff28>免疫</color>效果,回合数<color=#3cff28>+1</color>。"
},
[5400406]={
["desc"]="女武神普攻附加的<color=#3cff28>冻结</color>效果,回合数<color=#3cff28>+1</color>"
["desc"]="武神意志使用后随机增加一种技能的能量<color=#3cff28>2</color>点"
},
[5400407]={
["desc"]="武神意志释放后为团队附加<color=#3cff28>不死</color>效果,<color=#3cff28>2</color>回合。"

View File

@ -0,0 +1,132 @@
local task_type = {
[1]={
["icon"]="10"
},
[2]={
["icon"]="1"
},
[3]={
["icon"]="2"
},
[4]={
["icon"]="1"
},
[5]={
["icon"]="2"
},
[6]={
["icon"]="3"
},
[7]={
["icon"]="4"
},
[8]={
["icon"]="5"
},
[9]={
["icon"]="7"
},
[10]={
["icon"]="7"
},
[11]={
["icon"]="7"
},
[12]={
["icon"]="9"
},
[13]={
["icon"]="9"
},
[14]={
["icon"]="8"
},
[15]={
["icon"]="8"
},
[16]={
["icon"]="8"
},
[17]={
["icon"]="8"
},
[18]={
["icon"]="8"
},
[19]={
["icon"]="20"
},
[20]={
["icon"]="1"
},
[21]={
["icon"]="10"
},
[22]={
["icon"]="11"
},
[23]={
["icon"]="6"
},
[24]={
["icon"]="20"
},
[25]={
["icon"]="6"
},
[26]={
["icon"]="11"
},
[27]={
["icon"]="7"
},
[28]={
["icon"]="21"
},
[29]={
["icon"]="4"
},
[30]={
["icon"]="13"
},
[31]={
},
[32]={
["icon"]="16"
},
[33]={
["icon"]="17"
},
[34]={
["icon"]="18"
},
[35]={
["icon"]="19"
},
[36]={
["icon"]="20"
},
[37]={
["icon"]="21"
},
[38]={
["icon"]="22"
},
[39]={
["icon"]="23"
},
[40]={
["icon"]="23"
},
[41]={
["icon"]="23"
},
[42]={
["icon"]="23"
}
}
local config = {
data=task_type,count=42
}
return config

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: a1f8b50c03a5fd747b96cc18be330104
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}