30 lines
692 B
Lua
30 lines
692 B
Lua
local task_daily_challenge = {
|
|
[1]={
|
|
["desc"]="Clear Daily Challenge"
|
|
},
|
|
[2]={
|
|
["desc"]="Clear Daily Challenge using {0}"
|
|
},
|
|
[3]={
|
|
["desc"]="10 Hits or more {0} times when beating the stage"
|
|
},
|
|
[4]={
|
|
["desc"]="Link 8 or more elements in battle {0} times and beat the stage"
|
|
},
|
|
[5]={
|
|
["desc"]="Have {0} heroes cast their skills {1} times each and beat the stage"
|
|
},
|
|
[6]={
|
|
["desc"]="Defeat the final boss within 3 rounds"
|
|
},
|
|
[7]={
|
|
["desc"]="{0} damage dealt exceeds {1}% of total damage and beat the stage"
|
|
},
|
|
[8]={
|
|
["desc"]="{0} damage dealt exceeds {1}% of total damage and beat the stage"
|
|
}
|
|
}
|
|
local config = {
|
|
data=task_daily_challenge,count=8
|
|
}
|
|
return config |