Editing Module:QuestDetails
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 8: | Line 8: | ||
mw.smw.set({ |
mw.smw.set({ |
||
["start_point"] = args.start_point, |
["start_point"] = args.start_point, |
||
}) |
|||
end |
|||
if args.required_for then |
|||
mw.smw.set({ |
|||
["required_for"] = args.required_for, |
|||
}) |
|||
end |
|||
if args.next_quest then |
|||
mw.smw.set({ |
|||
["next_quest"] = args.next_quest, |
|||
}) |
}) |
||
end |
end |
||
Line 23: | Line 13: | ||
mw.smw.set({ |
mw.smw.set({ |
||
["requirements"] = '\n'..args.requirements, |
["requirements"] = '\n'..args.requirements, |
||
}) |
|||
end |
|||
if args.items then |
|||
mw.smw.set({ |
|||
["items"] = '\n'..args.items, |
|||
}) |
}) |
||
end |
end |
||
Line 67: | Line 52: | ||
:done() |
:done() |
||
if (args.required_for) then |
|||
table |
|||
:tag( 'tr' ) |
|||
:tag( 'td' ) |
|||
:tag( 'b' ) |
|||
:wikitext('Required for') |
|||
:done() |
|||
⚫ | |||
:done() |
|||
:tag( 'td' ) |
|||
:tag('div') |
|||
:newline() |
|||
:wikitext( args.required_for ) |
|||
⚫ | |||
:done() |
|||
:done() |
|||
end |
|||
table |
|||
:tag( 'tr' ) |
:tag( 'tr' ) |
||
:tag( 'td' ) |
:tag( 'td' ) |
||
⚫ | |||
:tag( 'b' ) |
:tag( 'b' ) |
||
:wikitext('Requirements') |
:wikitext('Requirements') |
||
:done() |
:done() |
||
⚫ | |||
:done() |
:done() |
||
:tag( 'td' ) |
:tag( 'td' ) |
||
:attr('style', 'max-width:85%; width:auto; padding: 0.3em;') |
|||
:tag('div') |
:tag('div') |
||
:addClass('lighttable checklist') |
:addClass('lighttable checklist') |
||
:newline() |
:newline() |
||
:wikitext(requirements) |
:wikitext(requirements) |
||
⚫ | |||
:newline() |
|||
:done() |
|||
:done() |
:done() |
||
:done() |
:done() |
||
if (args.items) then |
|||
table |
|||
:tag( 'tr' ) |
|||
:tag( 'td' ) |
|||
:attr('style', 'vertical-align:top; width:15%; padding: 1em;') |
|||
:tag( 'b' ) |
|||
:wikitext('Items') |
|||
:done() |
|||
:done() |
|||
:tag( 'td' ) |
|||
:attr('style', 'max-width:85%; width:auto; padding: 0.3em;') |
|||
:tag('div') |
|||
:addClass('lighttable checklist') |
|||
:newline() |
|||
:wikitext(args.items) |
|||
:newline() |
|||
:done() |
|||
:done() |
|||
:done() |
|||
end |
|||
if (args.recommended) then |
if (args.recommended) then |
||
Line 135: | Line 78: | ||
:done() |
:done() |
||
:tag( 'td' ) |
:tag( 'td' ) |
||
:attr('style', 'max-width:85%; width:auto; padding-left: 1em;') |
|||
:tag('div') |
:tag('div') |
||
:addClass('lighttable checklist') |
|||
:newline() |
:newline() |
||
:wikitext( args.recommended ) |
:wikitext( args.recommended ) |
||
⚫ | |||
:newline() |
|||
:done() |
:done() |
||
:done() |
:done() |
||
Line 155: | Line 96: | ||
:done() |
:done() |
||
:tag( 'td' ) |
:tag( 'td' ) |
||
:tag(' |
:tag('p') |
||
: |
:wikitext( args.enemies ) |
||
:wikitext( args.enemies ) |
|||
:done() |
:done() |
||
:attr('style', 'max-width:85%; width:auto; padding-left: 1em; padding-right: 2em;') |
:attr('style', 'max-width:85%; width:auto; padding-left: 1em; padding-right: 2em;') |