c1_lua/lua/app/config/runes_suit.lua
2023-09-15 17:28:14 +08:00

266 lines
3.8 KiB
Lua

local runes_suit = {
[1]={
["red_suit_attr"]={
{
["type"]="attr_hpp_red",
["num"]=800
},
{
["type"]="attr_hpp_red",
["num"]=1500
}
},
["yellow_suit_attr"]={
{
["type"]="attr_hpp_yellow",
["num"]=800
},
{
["type"]="attr_hpp_yellow",
["num"]=1500
}
},
["green_suit_attr"]={
{
["type"]="attr_hpp_green",
["num"]=800
},
{
["type"]="attr_hpp_green",
["num"]=1500
}
},
["blue_suit_attr"]={
{
["type"]="attr_hpp_blue",
["num"]=800
},
{
["type"]="attr_hpp_blue",
["num"]=1500
}
},
["purple_suit_attr"]={
{
["type"]="attr_hpp_purple",
["num"]=800
},
{
["type"]="attr_hpp_purple",
["num"]=1500
}
}
},
[2]={
["red_suit_attr"]={
{
["type"]="attr_atkp_red",
["num"]=800
},
{
["type"]="attr_atkp_red",
["num"]=1500
}
},
["yellow_suit_attr"]={
{
["type"]="attr_atkp_yellow",
["num"]=800
},
{
["type"]="attr_atkp_yellow",
["num"]=1500
}
},
["green_suit_attr"]={
{
["type"]="attr_atkp_green",
["num"]=800
},
{
["type"]="attr_atkp_green",
["num"]=1500
}
},
["blue_suit_attr"]={
{
["type"]="attr_atkp_blue",
["num"]=800
},
{
["type"]="attr_atkp_blue",
["num"]=1500
}
},
["purple_suit_attr"]={
{
["type"]="attr_atkp_purple",
["num"]=800
},
{
["type"]="attr_atkp_purple",
["num"]=1500
}
}
},
[3]={
["red_suit_attr"]={
{
["type"]="attr_crit_time_red",
["num"]=1500
},
{
["type"]="attr_crit_time_red",
["num"]=3000
}
},
["yellow_suit_attr"]={
{
["type"]="attr_crit_time_yellow",
["num"]=1500
},
{
["type"]="attr_crit_time_yellow",
["num"]=3000
}
},
["green_suit_attr"]={
{
["type"]="attr_crit_time_green",
["num"]=1500
},
{
["type"]="attr_crit_time_green",
["num"]=3000
}
},
["blue_suit_attr"]={
{
["type"]="attr_crit_time_blue",
["num"]=1500
},
{
["type"]="attr_crit_time_blue",
["num"]=3000
}
},
["purple_suit_attr"]={
{
["type"]="attr_crit_time_purple",
["num"]=1500
},
{
["type"]="attr_crit_time_purple",
["num"]=3000
}
}
},
[4]={
["red_suit_attr"]={
{
["type"]="attr_all_hurtp_red",
["num"]=500
},
{
["type"]="attr_all_hurtp_red",
["num"]=1000
}
},
["yellow_suit_attr"]={
{
["type"]="attr_all_hurtp_yellow",
["num"]=500
},
{
["type"]="attr_all_hurtp_yellow",
["num"]=1000
}
},
["green_suit_attr"]={
{
["type"]="attr_all_hurtp_green",
["num"]=500
},
{
["type"]="attr_all_hurtp_green",
["num"]=1000
}
},
["blue_suit_attr"]={
{
["type"]="attr_all_hurtp_blue",
["num"]=500
},
{
["type"]="attr_all_hurtp_blue",
["num"]=1000
}
},
["purple_suit_attr"]={
{
["type"]="attr_all_hurtp_purple",
["num"]=500
},
{
["type"]="attr_all_hurtp_purple",
["num"]=1000
}
}
},
[5]={
["red_suit_attr"]={
{
["type"]="attr_crit_red",
["num"]=800
},
{
["type"]="attr_all_hurtp_red",
["num"]=1500
}
},
["yellow_suit_attr"]={
{
["type"]="attr_crit_yellow",
["num"]=800
},
{
["type"]="attr_all_hurtp_yellow",
["num"]=1500
}
},
["green_suit_attr"]={
{
["type"]="attr_crit_green",
["num"]=800
},
{
["type"]="attr_all_hurtp_green",
["num"]=1500
}
},
["blue_suit_attr"]={
{
["type"]="attr_crit_blue",
["num"]=800
},
{
["type"]="attr_all_hurtp_blue",
["num"]=1500
}
},
["purple_suit_attr"]={
{
["type"]="attr_crit_purple",
["num"]=800
},
{
["type"]="attr_all_hurtp_purple",
["num"]=1500
}
}
}
}
local config = {
data=runes_suit,count=5
}
return config