2023-04-03 10:59:13 +08:00

112 lines
2.2 KiB
Lua

local item = {
[1]={
["name"]="Gold Coins",
["desc"]="Universal currency that is used everywhere."
},
[2]={
["name"]="Diamond",
["desc"]="Rare currency that is used to summon items."
},
[3]={
},
[4]={
["name"]="Gold Instance Key",
["desc"]="Used to challenge Gold Instances."
},
[5]={
["name"]="Diamond Instance Key",
["desc"]="Used to challenge Diamond Instances."
},
[6]={
["name"]="Mithril Instance Key",
["desc"]="Used to challenge Mithril Instances."
},
[7]={
["name"]="Special Instance Key",
["desc"]="Used to challenge Special Instances."
},
[8]={
["name"]="Quickpass Gem",
["desc"]="Used to get higher Quickpass level."
},
[9]={
["name"]="Torch",
["desc"]="Used to dispel fog."
},
[10]={
["name"]="Pyroshell",
["desc"]="Used to dispel fog in the selected area."
},
[11]={
["name"]="Candle of Divinity",
["desc"]="Used to dispel fog in the selected area."
},
[12]={
["name"]="Knowledge",
["desc"]="Used to do Researches."
},
[13]={
["name"]="Mastery Point",
["desc"]="Used to boost Mastery Stats."
},
[14]={
["name"]="Mithril",
["desc"]="Used to unlock and reinforce Runes."
},
[15]={
["name"]="Temporal Hourglass",
["desc"]="Used to farm passed levels."
},
[16]={
["name"]="Arena Key",
["desc"]="Used to join Arena battles."
},
[17]={
["name"]="Chest: Single Draw",
["desc"]="Open it to get a Weapon, Armor or Heirloom."
},
[18]={
["name"]="Chest: 10x Draw",
["desc"]="Open it to get 10 Weapons, Armors or Heirlooms."
},
[19]={
["name"]="Battlepass Point",
["desc"]="Collect certain points to level up your Battlepass."
},
[20]={
["name"]="Package"
},
[21]={
["name"]="Chest: 35x Draw",
["desc"]="Open it to get 35 Weapons, Armors or Heirlooms."
},
[22]={
["name"]="Chest: 105x Draw",
["desc"]="Open it to get 105 Weapons, Armors or Heirlooms."
},
[23]={
["name"]="Legendary Gold Chest",
["desc"]="Open it to get Cavalry Longsword, Guardian's Armor and Crown of Fortune."
},
[24]={
["name"]="Parchment"
},
[25]={
["name"]="Parchment Stack"
},
[26]={
["name"]="Parchment Scroll"
},
[27]={
["name"]="Parchment Tome"
},
[28]={
["name"]="Temporal Dust",
["desc"]="Available for Quickpass"
}
}
local config = {
data=item,count=28
}
return config