Module:Rescue Team DX Camp Pokémon table: Difference between revisions

MDFW - The Mystery Dungeon Tree of Information.
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 47: Line 47:
:tag('tr'):done()
:tag('tr'):done()
if shinyArg == nil or shinyArg == '' then
if shinyArg == nil or shinyArg == '' or string.lower(shinyArg) == 'no' or string.lower(shinyArg) == 'false' then
row
row
:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXSprite", args = {(monsterArg or ""), size = "64x64px"}}):done()
:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXSprite", args = {(monsterArg or ""), size = "64x64px"}}):done()
Line 62: Line 62:
if typeTwo == nil or typeTwo == '' then
if typeTwo == nil or typeTwo == '' then
row
row
:tag('td'):attr("colspan", "2"):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeOne}}):done()
:tag('th'):attr("colspan", "2"):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeOne}}):done()
else
else
row
row
:tag('td'):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeOne}}):done()
:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeOne}}):done()
:tag('td'):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeTwo}}):done()
:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeTwo}}):done()
end
end


Line 77: Line 77:


output
output
:tag('table'):addClass("MDWiki"):cssText("text-align: center; margin: auto; width: 50%;")
:tag('table'):addClass("wikitable"):cssText("text-align: center; margin: auto; width: 50%;")
:node(header)
:node(header)
:node(rows)
:node(rows)

Latest revision as of 09:34, 26 January 2025

Template-info.png Documentation

This template generates a list of Pokémon present in a Rescue Team Camp for Pokémon Mystery Dungeon: Rescue Team DX.

Usage

{{#invoke:Rescue Team DX Camp Pokémon table|main
  | pokémon_1 = 
  | shiny_1  = 
  ...
  | pokémon_n = 
  | shiny_n  = 
}}

Example

{{#invoke:Rescue Team DX Camp Pokémon table|main
  | pokémon_1 = Celebi
  | shiny_1   = yes
  |-
  | pokémon_2 = Pikachu
  | shiny_2   = no
}}
SpritePokémonType
NormalShinyEnglishJapanese
Celebi's sprite.Celebi's shiny sprite.CelebiセレビィPsychic-typeGrass-type
Pikachu's sprite.NonePikachuピカチュウElectric-type

--------------------------------------------------------------------------------
--
--					Module:Rescue Team DX Camp Pokémon table
--
--------------------------------------------------------------------------------

local p = {}
local mw = require('mw')

function p.main(frame)
	local data = require("Module:Rescue Team DX Pokémon Data Cell")
	local metatable = {__index = function () return "" end}
	setmetatable(data, metatable)
	local args = frame.args

	local output = mw.html.create()
	local header = mw.html.create()
	-- Header row
	header
		:tag('tr')
			:tag('th'):attr("colspan", "2"):wikitext("Sprite"):done()
			:tag('th'):attr("colspan", "2"):wikitext(frame:expandTemplate{title = "RescueTeamDX", args = {"Pokémon"}}):done()
			:tag('th'):attr("colspan", "2"):attr("rowspan", "2"):cssText("width: 20%"):wikitext(frame:expandTemplate{title = "RescueTeamDX", args = {"Type"}}):done()
		:tag('tr')
			:tag('th'):cssText("width: 20%"):wikitext("Normal"):done()
			:tag('th'):cssText("width: 20%"):wikitext("Shiny"):done()
			:tag('th'):cssText("width: 20%"):wikitext("English"):done()
			:tag('th'):cssText("width: 20%"):wikitext("Japanese"):done()

	-- Data rows
	local rows = mw.html.create()
	local i = 1

	while true do
		local row = mw.html.create()
		local monsterArg = args["pokémon_" .. i]
		local shinyArg = args["shiny_" .. i]

		if not monsterArg and not shinyArg then
			break -- exit loop when no more rows are found
		end

		local typeOne = data[monsterArg]["type1"] or ""
		local typeTwo = data[monsterArg]["type2"] or ""

		row
			:tag('tr'):done()
			
		if shinyArg == nil or shinyArg == '' or string.lower(shinyArg) == 'no' or string.lower(shinyArg) == 'false' then
			row
				:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXSprite", args = {(monsterArg or ""), size = "64x64px"}}):done()
				:tag('th'):wikitext("None"):done()
		else
			row
				:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXSprite", args = {(monsterArg or ""), size = "64x64px"}}):done()
				:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXSprite", args = {(monsterArg or ""), size = "64x64px", shiny = "true"}}):done()
		end
		row
			:tag('td'):wikitext(frame:expandTemplate{title = "RescueTeamDX", args = {(monsterArg or "")}}):done()
			:tag('td'):wikitext(data[monsterArg]["ja"]):done()

		if typeTwo == nil or typeTwo == '' then
			row
				:tag('th'):attr("colspan", "2"):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeOne}}):done()
		else
			row
				:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeOne}}):done()
				:tag('th'):wikitext(frame:expandTemplate{title = "RescueTeamDXType", args = {typeTwo}}):done()
		end

		rows
			:node(row)
			:allDone()
		
		i = i + 1
	end

	output
		:tag('table'):addClass("wikitable"):cssText("text-align: center; margin: auto; width: 50%;")
			:node(header)
			:node(rows)
	return tostring(output)

end

return p