Editing Module:Param Parse
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 3: | Line 3: | ||
--]=] |
--]=] |
||
-- <nowiki> |
-- <nowiki> |
||
require('strict') |
|||
local Infobox = require('Module:Infobox') |
local Infobox = require('Module:Infobox') |
||
local currency = require('Module:Currency').parse |
local currency = require('Module:Currency').parse |
||
Line 35: | Line 34: | ||
return nil |
return nil |
||
end |
end |
||
num = parse.number(out) |
|||
if num == nil then |
if num == nil then |
||
return nil |
return nil |
||
Line 111: | Line 110: | ||
-- Premade Params -- |
-- Premade Params -- |
||
-------------------- |
-------------------- |
||
-- Standardized actions function |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
-- Standardized name function |
-- Standardized name function |
||
Line 140: | Line 133: | ||
-- Standardized description function |
-- Standardized description function |
||
function parse.description_func(description, examine) |
|||
if not description and examine then |
|||
description = examine |
|||
⚫ | |||
return parse.has_content(description) |
|||
⚫ | |||
parse.description = { |
parse.description = { |
||
name = 'description', |
name = 'description', |
||
func = {name = parse.description_func, params = {Infobox.raw_param('description'), Infobox.raw_param('examine')}}, |
|||
⚫ | |||
smw_property = 'Description', |
smw_property = 'Description', |
||
category_incomplete = 'Needs description', |
category_incomplete = 'Needs description', |
||
Line 273: | Line 272: | ||
-- Release |
-- Release |
||
function unix_time(date) |
|||
-- Convert a time to unix time |
-- Convert a time to unix time |
||
if date == nil then |
if date == nil then |
||
Line 313: | Line 312: | ||
-- Value |
-- Value |
||
function parse.value_func(val) |
function parse.value_func(val) |
||
⚫ | |||
local status, val = pcall(currency, val) |
|||
⚫ | |||
⚫ | |||
⚫ | |||
end |
end |
||
parse.value = { |
parse.value = { |
||
Line 400: | Line 396: | ||
func = {name = parse.number_or_number_range_high, params = {Infobox.raw_param('profession_b_level')}}, |
func = {name = parse.number_or_number_range_high, params = {Infobox.raw_param('profession_b_level')}}, |
||
smw_property = 'Profession Level B High', |
smw_property = 'Profession Level B High', |
||
⚫ | |||
parse.profession = { |
|||
name = 'profession', |
|||
⚫ | |||
⚫ | |||
smw_property = 'Profession' -- TODO - Need to create property page |
|||
} |
} |
||
Line 415: | Line 418: | ||
smw_func = parse.yes_no_smw, |
smw_func = parse.yes_no_smw, |
||
category_incomplete = 'Needs passiveness' |
category_incomplete = 'Needs passiveness' |
||
⚫ | |||
function parse.duration_func(hours) |
|||
hours = string.gsub(hours or '',',','') |
|||
return (tonumber(hours) .. " Hours") |
|||
⚫ | |||
⚫ | |||
⚫ | |||
func = parse.duration_func, |
|||
⚫ | |||
⚫ | |||
} |
} |
||
Line 479: | Line 470: | ||
smw_func = parse.difficulty_smw, |
smw_func = parse.difficulty_smw, |
||
category_incomplete = 'Needs difficulty' |
category_incomplete = 'Needs difficulty' |
||
} |
|||
local valid_quest_types = { |
|||
['main'] = 'Main', |
|||
['side'] = 'Side' |
|||
} |
|||
function parse.quest_type_func(type) |
|||
local valid_type = valid_quest_types[string.lower(type or '')] |
|||
if valid_type then |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
return nil |
|||
⚫ | |||
function parse.quest_type_smw(type) |
|||
local valid_type = valid_quest_types[string.lower(type or '')] |
|||
if valid_type then |
|||
return valid_type |
|||
end |
|||
return nil |
|||
end |
|||
-- Quest type |
|||
parse.quest_type = { |
|||
name = 'quest_type', |
|||
func = parse.quest_type_func, |
|||
smw_property = 'quest_type', |
|||
smw_func = parse.quest_type_smw, |
|||
⚫ | |||
} |
} |
||
Line 531: | Line 492: | ||
local level_valid = parse.number(level) |
local level_valid = parse.number(level) |
||
local profession_valid = parse.has_content(profession) |
local profession_valid = parse.has_content(profession) |
||
local profession_valid_link = profession_valid |
|||
if not profession_valid and not level_valid then |
if not profession_valid and not level_valid then |
||
Line 548: | Line 508: | ||
end |
end |
||
return '[[File:'..profession_valid..'_icon.png|link='.. |
return '[[File:'..profession_valid..'_icon.png|link='..profession_valid..'|width=18x18]] '..level_valid |
||
end |
end |
||
Line 606: | Line 566: | ||
} |
} |
||
function attack_style_func(style) |
|||
local attack_style = valid_attack_styles[string.lower(style or '')] |
local attack_style = valid_attack_styles[string.lower(style or '')] |
||
if attack_style then |
if attack_style then |
||
Line 618: | Line 578: | ||
end |
end |
||
function attack_style_smw(style) |
|||
local attack_style = valid_attack_styles[string.lower(style or '')] |
local attack_style = valid_attack_styles[string.lower(style or '')] |
||
if attack_style then |
if attack_style then |
||
Line 649: | Line 609: | ||
smw_func = attack_style_smw, |
smw_func = attack_style_smw, |
||
category_incomplete = 'Needs vulnerable to', |
category_incomplete = 'Needs vulnerable to', |
||
⚫ | |||
function uses_item_smw(item) |
|||
local item = parse.has_content |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
smw_func = uses_item_smw, |
|||
⚫ | |||
} |
} |
||