c1_lua/lua/app/config/blessing.lua
2023-04-03 10:59:13 +08:00

63 lines
909 B
Lua

local blessing = {
[1]={
["time"]=1200,
["up_cost"]=2,
["max_lv"]=30,
["basic_effect"]={
["type"]="gold_gain",
["bignum"]={
["value"]=5000,
["unit"]=0
}
},
["grow_effect"]={
["type"]="gold_gain",
["bignum"]={
["value"]=500,
["unit"]=0
}
}
},
[2]={
["time"]=1200,
["up_cost"]=2,
["max_lv"]=30,
["basic_effect"]={
["type"]="atkp_8",
["bignum"]={
["value"]=10000,
["unit"]=0
}
},
["grow_effect"]={
["type"]="atkp_8",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
},
[3]={
["time"]=1200,
["up_cost"]=2,
["max_lv"]=30,
["basic_effect"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=10000,
["unit"]=0
}
},
["grow_effect"]={
["type"]="dmg_addition_skill",
["bignum"]={
["value"]=1000,
["unit"]=0
}
}
}
}
local config = {
data=blessing,count=3
}
return config