24 lines
472 B
Lua
24 lines
472 B
Lua
local mail = {
|
|
[1]={
|
|
["name"]="Bestowal of the Elder"
|
|
},
|
|
[2]={
|
|
["name"]="Daily Allowance of the King"
|
|
},
|
|
[3]={
|
|
["name"]="Hey! See what's inside!",
|
|
["desc"]="An optimistic person is always surprised by the unexpected"
|
|
},
|
|
[4]={
|
|
["name"]="To my beloved...",
|
|
["desc"]="A good heart will be rewarded with good deeds"
|
|
},
|
|
[5]={
|
|
["name"]="Thrive!",
|
|
["desc"]="Good energy, good luck and good fortune"
|
|
}
|
|
}
|
|
local config = {
|
|
data=mail,count=5
|
|
}
|
|
return config |