c1_lua/lua/app/config/runes_suit.lua

266 lines
3.8 KiB
Lua

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