Module:PokemonSpawnData: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local _pokemonName = '' -- set once in p.main, read by render functions | |||
local function getArgs(frame) | local function getArgs(frame) | ||
| Line 20: | Line 22: | ||
end | end | ||
-- Load an External Data source | -- Load an External Data source. | ||
local function loadFileData(frame, params) | |||
local function loadFileData(frame, params | |||
local callParams = { [1] = 'source=' .. (params.source or 'data') } | local callParams = { [1] = 'source=' .. (params.source or 'data') } | ||
for k, v in pairs(params) do | for k, v in pairs(params) do | ||
| Line 29: | Line 29: | ||
end | end | ||
frame:callParserFunction('#get_file_data', callParams) | frame:callParserFunction('#get_file_data', callParams) | ||
end | end | ||
| Line 52: | Line 50: | ||
local function renderLandTable(frame, color) | local function renderLandTable(frame, color) | ||
loadFileData(frame, { | |||
source = 'spawns', | |||
['file name'] = 'land_spawns.csv', | |||
format = 'CSV with header', | |||
filters = 'Pokemon=' .. _pokemonName, | |||
data = 'land_area=Map,land_member=Member,land_number=DexID,land_name=Pokemon,' | |||
.. 'land_morning=Morning,land_day=Day,land_night=Night,' | |||
.. 'land_item=Item,land_rarity=Tier,land_minlvl=MinLvl,land_maxlvl=MaxLvl', | |||
}) | |||
local rows = frame:callParserFunction('#display_external_table', { | local rows = frame:callParserFunction('#display_external_table', { | ||
[1] = 'template=PokemonLandDataRow', | [1] = 'template=PokemonLandDataRow', | ||
data = 'area=land_area,member= | data = 'area=land_area,member=land_member,number=land_number,name=land_name,' | ||
.. 'morning= | .. 'morning=land_morning,day=land_day,night=land_night,' | ||
.. 'item= | .. 'item=land_item,rarity=land_rarity,minlvl=land_minlvl,maxlvl=land_maxlvl', | ||
}) | }) | ||
if not rows or mw.text.trim(rows) == '' then return nil end | |||
local border = '#' .. (typeColor(frame, color, 'dark') or '4a7c3f') | local border = '#' .. (typeColor(frame, color, 'dark') or '4a7c3f') | ||
| Line 90: | Line 100: | ||
local function renderSurfTable(frame, color) | local function renderSurfTable(frame, color) | ||
loadFileData(frame, { | |||
source = 'spawns', | |||
['file name'] = 'surf_spawns.json', | |||
format = 'JSON', | |||
filters = 'Pokemon=' .. _pokemonName .. ',FishingOnly=0', | |||
data = 'surf_area=Map,surf_member=MemberOnly,surf_number=MonsterID,surf_name=Pokemon,' | |||
.. 'surf_time=Daytime,surf_item=Item,surf_rarity=Tier,' | |||
.. 'surf_minlvl=MinLvl,surf_maxlvl=MaxLvl,surf_rod=RequiredRod,surf_fishable=Fishing', | |||
}) | |||
local rows = frame:callParserFunction('#display_external_table', { | local rows = frame:callParserFunction('#display_external_table', { | ||
[1] = 'template=PokemonSurfingDataRow', | [1] = 'template=PokemonSurfingDataRow', | ||
data = 'area=surf_area,number= | data = 'area=surf_area,number=surf_number,name=surf_name,time=surf_time,' | ||
.. 'minlvl= | .. 'minlvl=surf_minlvl,maxlvl=surf_maxlvl,item=surf_item,rarity=surf_rarity,' | ||
.. 'rod= | .. 'rod=surf_rod,fishable=surf_fishable,member=surf_member', | ||
}) | }) | ||
local dark = | if not rows or mw.text.trim(rows) == '' then return nil end | ||
local bg = | |||
local light = | -- Surf table always uses fixed water/blue colours regardless of Pokémon type. | ||
local dark = '445E9C' | |||
local bg = '6890F0' | |||
local light = '9DB7F5' | |||
local header = | local header = | ||
| Line 131: | Line 154: | ||
local pokemonName = args[1] or args.Name | local pokemonName = args[1] or args.Name | ||
or frame:callParserFunction('PAGENAME', {}) or '' | or frame:callParserFunction('PAGENAME', {}) or '' | ||
_pokemonName = pokemonName -- shared with render functions | |||
-- Auto-detect primary type from PokemonRawList.csv (same source as | -- Auto-detect primary type from PokemonRawList.csv (same source as | ||
| Line 147: | Line 171: | ||
local out = {} | local out = {} | ||
local landResult = renderLandTable(frame, color) | |||
local surfResult = renderSurfTable(frame, color) | |||
if landResult then | |||
table.insert(out, '===Land===') | |||
table.insert(out, landResult) | |||
table.insert(out, | |||
end | end | ||
if surfResult then | |||
if | table.insert(out, '===Surfing===') | ||
table.insert(out, | table.insert(out, surfResult) | ||
end | end | ||
Latest revision as of 14:50, 10 March 2026
Documentation for this module may be created at Module:PokemonSpawnData/doc
local p = {}
local _pokemonName = '' -- set once in p.main, read by render functions
local function getArgs(frame)
local args = {}
local parent = frame:getParent()
if parent then
for k, v in pairs(parent.args) do
if v ~= '' then args[k] = v end
end
end
for k, v in pairs(frame.args) do
if v ~= '' then args[k] = v end
end
return args
end
-- Read a parser variable set by {{Trichrome}} (border, background, cell, etc.)
local function getVar(frame, name)
return frame:callParserFunction('#var', { name }) or ''
end
-- Load an External Data source.
local function loadFileData(frame, params)
local callParams = { [1] = 'source=' .. (params.source or 'data') }
for k, v in pairs(params) do
if k ~= 'source' then callParams[k] = v end
end
frame:callParserFunction('#get_file_data', callParams)
end
-- Read a colour from a type-colour template e.g. Template:Grass_color_dark.
-- Returns the hex string WITHOUT the leading '#'.
local function typeColor(frame, colorType, variant)
if not colorType or colorType == '' then return nil end
-- Trichrome uses {{lc:Color}} so templates are lowercase: {{grass_color_dark}}
local lower = mw.ustring.lower(colorType)
local title = lower .. '_color' .. (variant ~= '' and ('_' .. variant) or '')
local ok, val = pcall(function()
return frame:expandTemplate{ title = title, args = {} }
end)
if ok and val and val ~= '' then return val end
return nil
end
-- ---------------------------------------------------------------------------
-- Land spawn table
-- ---------------------------------------------------------------------------
local function renderLandTable(frame, color)
loadFileData(frame, {
source = 'spawns',
['file name'] = 'land_spawns.csv',
format = 'CSV with header',
filters = 'Pokemon=' .. _pokemonName,
data = 'land_area=Map,land_member=Member,land_number=DexID,land_name=Pokemon,'
.. 'land_morning=Morning,land_day=Day,land_night=Night,'
.. 'land_item=Item,land_rarity=Tier,land_minlvl=MinLvl,land_maxlvl=MaxLvl',
})
local rows = frame:callParserFunction('#display_external_table', {
[1] = 'template=PokemonLandDataRow',
data = 'area=land_area,member=land_member,number=land_number,name=land_name,'
.. 'morning=land_morning,day=land_day,night=land_night,'
.. 'item=land_item,rarity=land_rarity,minlvl=land_minlvl,maxlvl=land_maxlvl',
})
if not rows or mw.text.trim(rows) == '' then return nil end
local border = '#' .. (typeColor(frame, color, 'dark') or '4a7c3f')
local background = '#' .. (typeColor(frame, color, '') or 'c4e3a8')
local cell = '#' .. (typeColor(frame, color, 'light') or '8db96e')
local header =
'<table align="left" style="width: 85%; max-width: 90%; text-align: center; margin: auto;'
.. ' border-radius: 15px; border: 3px solid ' .. border .. ';'
.. ' background-color: ' .. background .. '; padding: 7px;">\n'
.. '<tr style="background-color: ' .. cell .. '; color: ' .. border .. ';">'
.. '<th scope="col" style="border-top-left-radius: 25px; width: 15%; border: 1px solid ' .. border .. ';">Location</th>'
.. '<th scope="col" style="width: 7%; border: 1px solid ' .. border .. ';">Levels</th>'
.. '<th colspan="3" scope="col" style="width: 17%; border: 1px solid ' .. border .. ';">[[Pokétime|<span style="color: ' .. border .. ';">Times</span>]]</th>'
.. '<th style="width: 20%; border: 1px solid ' .. border .. ';">Held Item</th>'
.. '<th style="border-top-right-radius: 25px; width: 10%; border: 1px solid ' .. border .. ';">[[List of Pokémon by Rarity Tier|<span style="color: ' .. border .. ';">Rarity Tier</span>]]</th></tr>'
local footer =
'<tr><td colspan="8" style="text-align: left; border-radius: 1px 1px 25px 25px;'
.. ' border: 1px solid ' .. border .. '; background-color: ' .. cell .. ';">'
.. '<p style="margin-top: 8px; margin-left: 10px;"><ul>\n'
.. '<li><span style="color:#FF00BF; font-weight: bold;">Pink-colored</span> areas denote that this spawn is [[membership]]-exclusive</li>\n'
.. "<li>'''Emboldened''' levels indicate they are isolatable with the [[Repel trick]]</li>"
.. '</ul></p></td></tr>\n</table><br clear="all">'
return header .. rows .. footer
end
-- ---------------------------------------------------------------------------
-- Surf/Fishing spawn table
-- ---------------------------------------------------------------------------
local function renderSurfTable(frame, color)
loadFileData(frame, {
source = 'spawns',
['file name'] = 'surf_spawns.json',
format = 'JSON',
filters = 'Pokemon=' .. _pokemonName .. ',FishingOnly=0',
data = 'surf_area=Map,surf_member=MemberOnly,surf_number=MonsterID,surf_name=Pokemon,'
.. 'surf_time=Daytime,surf_item=Item,surf_rarity=Tier,'
.. 'surf_minlvl=MinLvl,surf_maxlvl=MaxLvl,surf_rod=RequiredRod,surf_fishable=Fishing',
})
local rows = frame:callParserFunction('#display_external_table', {
[1] = 'template=PokemonSurfingDataRow',
data = 'area=surf_area,number=surf_number,name=surf_name,time=surf_time,'
.. 'minlvl=surf_minlvl,maxlvl=surf_maxlvl,item=surf_item,rarity=surf_rarity,'
.. 'rod=surf_rod,fishable=surf_fishable,member=surf_member',
})
if not rows or mw.text.trim(rows) == '' then return nil end
-- Surf table always uses fixed water/blue colours regardless of Pokémon type.
local dark = '445E9C'
local bg = '6890F0'
local light = '9DB7F5'
local header =
'<table align="left" style="width:88%;max-width:100%;text-align:center;margin:auto;border-radius:15px;border:4px solid #' .. dark .. ';background-color:#' .. bg .. ';padding:7px;">\n'
.. '<tr><td colspan="8"><div style="margin:auto;width:53px;height:53px;border:3px solid #' .. dark .. ';border-radius:40px;background-color:#' .. light .. ';padding:5px;">[[File:PikachuSurf.png]]</div></td></tr>\n'
.. '<tr style="background-color:#' .. light .. ';">'
.. '<th scope="col" style="border-radius:15px 1px 1px 1px;width:15%;border:1px solid #' .. dark .. ';color:#' .. dark .. ';">Location</th>'
.. '<th scope="col" style="width:7%;border:1px solid #' .. dark .. ';color:#' .. dark .. ';">Levels</th>'
.. '<th colspan="3" scope="col" style="width:6%;border:1px solid #' .. dark .. ';">[[Pokétime|<span style="color:#' .. dark .. ';">Times</span>]]</th>'
.. '<th style="width:10%;border:1px solid #' .. dark .. ';color:#' .. dark .. ';">Held Item</th>'
.. '<th style="width:7%;border:1px solid #' .. dark .. ';color:#' .. dark .. ';">Rod</th>'
.. '<th style="border-radius:1px 15px 1px 1px;width:10%;border:1px solid #' .. dark .. ';">[[List of Pokémon by Rarity Tier|<span style="color:#' .. dark .. ';">Rarity Tier</span>]]</th></tr>'
local footer =
'<tr><td colspan="9" style="text-align:left;border-radius:1px 1px 25px 25px;border:1px solid #' .. dark .. ';background-color:#' .. light .. ';">'
.. '<ul style="margin-top:8px;margin-left:12px;padding:5px;">\n'
.. '<li>All rows with a fishing rod indicate that its corresponding Pokémon can also be [[Fishing|fished]] with the rod tier shown</li>\n'
.. '<li><span style="color:#FF00BF;font-weight:bold;">Pink-colored</span> areas denote that this area or inhabiting spawn is strictly [[membership]]-exclusive</li>\n'
.. "<li>'''Emboldened''' levels indicate they are isolatable with the [[Repel trick]]</li>"
.. '</ul></td></tr>\n</table><br clear="all">'
return header .. rows .. footer
end
-- ---------------------------------------------------------------------------
-- main()
-- ---------------------------------------------------------------------------
function p.main(frame)
local args = getArgs(frame)
local pokemonName = args[1] or args.Name
or frame:callParserFunction('PAGENAME', {}) or ''
_pokemonName = pokemonName -- shared with render functions
-- Auto-detect primary type from PokemonRawList.csv (same source as
-- PokemonTypeEffectiveness), unless an explicit Color override was given.
local color = args.Color or args.color or ''
if color == '' then
frame:callParserFunction('#get_file_data', {
[1] = 'source=data',
['file name'] = 'PokemonRawList.csv',
format = 'CSV with header',
filters = 'Name=' .. pokemonName,
data = 'spawn_type1=Type1',
})
color = frame:callParserFunction('#external_value', { 'spawn_type1' }) or ''
end
local out = {}
local landResult = renderLandTable(frame, color)
local surfResult = renderSurfTable(frame, color)
if landResult then
table.insert(out, '===Land===')
table.insert(out, landResult)
end
if surfResult then
table.insert(out, '===Surfing===')
table.insert(out, surfResult)
end
return table.concat(out, '\n')
end
return p