Editing Module:Sandbox/User:Alsang

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
p = {}


function p.main(frame)
local p = {}
local args = frame:getParent().args

function p.minerPages()
local variants = {'Basic','Moderate','Fine','Strong','Superior','Perfect'}
local queryString = '[[Variant of::Flint||Andesite||Granite||Basalt||Deathstone||Iron Ore||Cabranese Ore||Adathril Ore||Flantium Ore||Mine Cart Work]]'
local weaponsStone = {

'Hammerfist',
return p.main(queryString)
'Throwing Stones',

'Stone Slab Shield',
end
'Stone Mace',

'Stone Discs',
function p.foragerPages()
'War Hammer',
'Bolas',
'Stone Chunk Shield',
'Double Headed Hammer',
'Throwing Clubs',
'Great Stone Mace',
' Polished Stone Shield',
'Throwing Hammers',
'Great Hammer',
'Sling'}
local weaponsMetal = {
'Rapier ',
'Throwing Twinblades',
'Metal Kite Shield',
'Flanged Mace',
'Throwing Rings',
'Shortsword',
'Metal Javelins',
'Metal Heater Shield',
'Longsword',
'Throwing Knives',
'Broadsword',
'Metal Buckler',
'Throwing Axes',
'Battleaxe',
'Metal Bow'}
local weaponsBone = {
'Truncheon',
'Blowpipe',
'Wooden Round Shield',
'Cudgel',
'Javelins',
'Club',
'Light Crossbow',
'Wooden Square Shield',
'Quarterstaff',
'Recurve Bow',
'Spear',
'Wooden Hexagon Shield',
'Longbow',
'Poleaxe',
'Heavy Crossbow'}
if args=='stone' then
local queryString = '[[Variant of::Kelp||Wallplant||Periwinkle||Shell||Potato||Pond Weed||Bellplant||Monument Piece||Water Lily||Starfish||Hogberries||Limpet||Nettle||Wrack]]'
weapons = weaponsStone
elseif args=='metal' then
weapons = weaponsMetal
elseif args=='bone' then
weapons = weaponsBone
else
return nil
end
local allWeapons = {}
for i,item in ipairs(variants) do
for j,jtem in ipairs(weapons) do
table.insert(allWeapons,{pagename='[[' .. jtem .. ' (' .. item .. ')]]',wrongname='[[' .. item .. ' ' .. jtem .. ']]'})
end
end


for i,item in ipairs(allWeapons) do
return p.main(queryString)

local query = mw.smw.ask(item.pagename .. '|?Name #- = data|mainlabel=-')
end
if type(query)=='table' then

item.itemname = query[1].data
function p.gathererPages1()
local queryString = '[[Variant of::Globeplant||Dandelion||Goat Horn||Apple||Leek||Haleberries||Rams Horn||Bitterfruit||Chestnut||Bone Spike]]'

return p.main(queryString)

end

function p.gathererPages2()
local queryString = '[[Variant of::Tangfruit||Catkin||Femur Shard||Clover||Snake Scale||Orchid||Dock Leaf||Sage||Thistle]]'

return p.main(queryString)

end

function p.main(queryString)

local query = {
queryString,
'? #- = name',
'?Profession Level A = level',
'?Variant of #-= variant',
'sort = Variant of,Profession Level A',
'limit = 500'
}
local results = mw.smw.ask(query)
for _,page in ipairs(results) do
if string.find(page.name,'Mine') then
page.node = page.name
page.nodevar = page.variant
else
page.node = page.name .. ' (skill node)'
page.nodevar = page.variant .. ' (skill node)'
end
end
local result = mw.smw.ask('[['..page.node..']]|?Activity JSON = data')
local query = mw.smw.ask(item.pagename .. '|?Uses facility #- = data|mainlabel=-')
page.JSON = (result and result[1] and result[1].data) or ''
if type(page.JSON)=='table' then
if type(query)=='table' then
item.facility = query[1].data
page.JSON = table.concat(page.JSON,'<br>')
end
end
local query = mw.smw.ask(item.wrongname .. '|?Name #- = data|mainlabel=-')
if type(query)=='table' then
item.wrongitemname = query[1].data
end
local query = mw.smw.ask(item.wrongname .. '|?Uses facility #- = data|mainlabel=-')
if type(query)=='table' then
item.wrongfacility = query[1].data
end
end
end
Line 65: Line 99:
:tag('tr')
:tag('tr')
:tag('th')
:tag('th')
:wikitext('Variant')
:wikitext('Page')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Node Variant')
:wikitext('Item name')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Level')
:wikitext('Facility')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Page')
:wikitext('Wrong Page (shouldnt exist)')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Node')
:wikitext('Wrongpage Item name')
:done()
:done()
:tag('th')
:tag('th')
:wikitext('Node JSON')
:wikitext('Wrongpage Facility')
:done()
:done()
:done()
:done()

for i, item in ipairs(results) do
local row = out:tag('tr')
for i,item in ipairs(allWeapons) do
--level
:tag('td')
local row = out:tag('tr')
:wikitext('[['..item.variant..']]')
:tag('td')
:wikitext(item.pagename)
:done()
:tag('td')
:wikitext(item.itemname)
:done()
:tag('td')
:wikitext(item.facility)
:done()
:tag('td')
:wikitext(item.wrongname)
:done()
:tag('td')
:wikitext(item.wrongitemname)
:done()
:tag('td')
:wikitext(item.wrongfacility)
:done()
:done()
:done()
:tag('td')
:wikitext('[['..item.nodevar..']]')
:done()
:done()
end
:tag('td')
:wikitext(item.level)
return out
:done()
:tag('td')
--for debugging
:wikitext('[['..item.name..']]')
--return '<pre>'..mw.text.jsonEncode(args, mw.text.JSON_PRETTY)..'</pre>'
:done()
:tag('td')
:wikitext('[['..item.node..']]')
:done()
:tag('td')
:wikitext(item.JSON)
:done()
end
return out

end
end


Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see Brighter Shores:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template

This page is a member of a hidden category: