26 lines
484 B
Lua
26 lines
484 B
Lua
local bounty_time = {
|
|
[1]={
|
|
["season"]=1,
|
|
["start_time"]="2023-6-20 00:00:00",
|
|
["end_time"]="2023-8-1 00:00:00"
|
|
},
|
|
[2]={
|
|
["season"]=2,
|
|
["start_time"]="2023-8-1 00:00:00",
|
|
["end_time"]="2023-9-1 00:00:00"
|
|
},
|
|
[3]={
|
|
["season"]=3,
|
|
["start_time"]="2023-9-1 00:00:00",
|
|
["end_time"]="2023-10-1 00:00:00"
|
|
},
|
|
[4]={
|
|
["season"]=4,
|
|
["start_time"]="2023-10-1 00:00:00",
|
|
["end_time"]="2023-11-1 00:00:00"
|
|
}
|
|
}
|
|
local config = {
|
|
data=bounty_time,count=4
|
|
}
|
|
return config |