View source for Module:Gifted item
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {}
local lib = require('Module:Feature')
local Icon_list = require('Module:Icon list').buildList
local characters = mw.loadData('Module:Gifted item/data')
local order = { 'love', 'like', 'neutral', 'dislike', 'hate' }
local categories = mw.html.create()
local noDupe = {}
local blankReturn = {
love = 'No character loves this item.',
like = 'No character likes this item.',
neutral = 'No character is neutral towards this item.',
dislike = 'No character dislikes this item.',
hate = 'No character hates this item.'
}
local function adj(preference, cap)
if preference == 'neutral' then
if cap then return 'Neutral' else return 'neutral' end
else
if cap then return preference:gsub("^%l", string.upper) .. 'd' else return preference .. 'd' end
end
000
1:0
Template used on this page:
Return to Module:Gifted item.