Module:FisherPassiveList: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
m (cell borders) |
m (crate price, tweak column widths) |
||
Line 65: | Line 65: | ||
local query = mw.smw.ask('[[Sold item::' .. item.material .. ']][[Shop buy price::!~N/A]]|?Shop buy price=data|mainlabel=-') |
local query = mw.smw.ask('[[Sold item::' .. item.material .. ']][[Shop buy price::!~N/A]]|?Shop buy price=data|mainlabel=-') |
||
if type(query)=='table' then |
if type(query)=='table' then |
||
-- price is returned as a number |
-- price is returned as a number, 0.1 is for the crate |
||
item.buy = tonumber(query[1].data)*0.005 or 0 |
item.buy = (0.1+tonumber(query[1].data)*0.005) or 0 |
||
else |
else |
||
-- will return nil if the item is not in a shop, or if it is in a shop but can only be sold to the shop |
-- will return nil if the item is not in a shop, or if it is in a shop but can only be sold to the shop |
||
Line 116: | Line 116: | ||
:tag('th') |
:tag('th') |
||
:attr{ colspan = '10' } |
:attr{ colspan = '10' } |
||
:wikitext('Buy |
:wikitext('Buy<br>Value') |
||
:done() |
:done() |
||
:tag('th') |
:tag('th') |
||
Line 124: | Line 124: | ||
:tag('th') |
:tag('th') |
||
:attr{ colspan = '10' } |
:attr{ colspan = '10' } |
||
:wikitext('Sell |
:wikitext('Sell<br>Value') |
||
:done() |
:done() |
||
:tag('th') |
:tag('th') |