All public logs

Jump to navigation Jump to search

Combined display of all available logs of Zelda Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 09:23, 3 November 2023 PhantomCaleb talk contribs created page Module:Armor2 (Created page with "local p = {} local h = {} local DataTable = require("Module:Data Table") local utilsMarkup = require("Module:UtilsMarkup") function p.TableArmorSetPieces(frame) return DataTable.Main(frame, h.storeArmorSetPieces, function(args) return { requiredColumns = {"Set", "Body Part", "Armor"}, } end) end function h.storeArmorSetPieces(args, rows) for i, row in ipairs(rows) do local armorSet = utilsMarkup.separateMarkup(row["Set"]) local bodyPart = utilsMarkup.separateM...")