Module

WorldPills

From Dogcraft Wiki

Revision as of 01:21, 29 June 2022 by Domino (talk | contribs) (Created page with "local p = {} --p stands for package function subworld(world, subworld) input = mw.ustring.lower(world .. subworld) subworlds = {"husky", "beagle", "akita", "corgi", "labrad...")
(diff) โ† Older revision | Latest revision (diff) | Newer revision โ†’ (diff)

Documentation for this module may be created at Module:WorldPills/doc

local p = {} --p stands for package

function subworld(world, subworld)
	input = mw.ustring.lower(world .. subworld)
	subworlds = {"husky", "beagle", "akita", "corgi", "labrador", "shepherd"}
	for key,value in ipairs(subworlds) do 
		if (mw.ustring.find(input, value, 1, true) ~= nil) then
			return value
		end
	end
	return ''--return 'not found'
end

function world(world, subworld)
	input = mw.ustring.lower(world .. subworld)
	worlds = {"survival 1", "survival 2", "survival 3", "survival 4", "survival 5", "creative", "patreon", "hub", "amplified", "MCMMO", "skyblock"}
	for key,value in ipairs(worlds) do 
		if (mw.ustring.find(input, value, 1, true) ~= nil) then
			return value
		end
	end
	if (mw.ustring.find(input, 'survival', 1, true) ~= nil) then
		return 'survival 1'
	end
	return ''--return 'not found'
end

function p.single(frame)
	color = frame.args[color] or 'lightslategray'
	world = world(frame.args[1], frame.args[2])
	subworld = subworld(frame.args[1], frame.args[2])
	
	if (subworld ~= '') then
		return ('[[' .. world .. '|<span class="world-pill" style="background:' .. color ..
		'; padding: 3px 7px; color: white; font-weight: bold; border-radius: 7.5px; display: inline-block;">' .. world .. 
		'</span>]] [[' .. subworld .. '|<span class="world-pill" style="background:' .. color .. 
		'; padding: 3px 7px; color: white; font-weight: bold; border-radius: 7.5px; display: inline-block;">' .. subworld .. '</span>]]')
	elseif (world ~= '') then
		return ('[[' .. world .. '|<span class="world-pill" style="background:' .. color .. 
			'; padding: 3px 7px; color: white; font-weight: bold; border-radius: 7.5px; display: inline-block;">' .. world .. '</span>]]')
	else 
		return ''
	end
	
end

return p
This page was last modified on 29 June 2022, at 01:21. (4 months ago)