• Welcome to the Kancolle Wiki!
  • If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord

User:Jigaraphale/Sandbox/2

From Kancolle Wiki
Jump to navigation Jump to search

Expeditions

The Dot System

Thanks to Ninnin, we have a general description of how the resources displayed with 0 to 4 dots works :

0 dot 1 dot 2 dots 3 dots 4 dots
resource range 0 1-240 240-480 500-650 750-2000

In those cases, the limits of the ranges are inclusive, so for instance, an expedition giving 240 resources can have either 1 or 2 dots, for no apparent reason.


Epeditions Table

my goal is to call : Script error: No such module "ExpeditionTable".


code testing

  • (modified from Module:ShipDropTable)



local U = require("Module:Core") local Formatting = require("Module:Formatting") local Exp = require("Data/Expedition")

local worlds = {

 {world = 1, exp = 14},
 {world = 2, exp = 14},
 {world = 3, exp = 8},
 {world = 7, exp = 6},
 {world = 4, exp = 11},
 {world = 5, exp = 10},
 {world = 6, exp = 0},

}


local function render(frame)

 local args = frame.args

local result = {[[

]]} table.insert(result, "") for _, cell in ipairs({"Ship", "Rarity", "Type", "No."}) do table.insert(result, string.format([[]], cell))
 end
 for _, e in ipairs(worlds) do
table.insert(result, string.format([=[]=], e.maps, e.world))
 end
table.insert(result, [[]])
 for _, e in ipairs(worlds) do
   for map = 1, e.maps do
table.insert(result, string.format([=[]=], e.world, map, map))
   end
 end
table.insert(result, "") for _, shipName in ipairs(args[1] == "all" and U.sort(U.keys(dropData)) or args) do table.insert(result, formatShip(shipName)) end table.insert(result, [[
%sWorld %sRemarks
%s

]])

 return table.concat(result)

end

return { returnExpeditionTable = render }