Editing Module:Enemy List
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: | ||
local album_xp_data = require('Module:Experience/data').album |
local album_xp_data = require('Module:Experience/data').album |
||
local Array = require('Module:Array') |
local Array = require('Module:Array') |
||
local lang = mw.language.getContentLanguage() |
|||
local function formatNum(n) |
|||
if n == nil then |
|||
return '' |
|||
end |
|||
return lang:formatNum(n) |
|||
end |
|||
local p = {} |
local p = {} |
||
Line 59: | Line 51: | ||
:tag('td'):wikitext(monster['Unlock level']):done() |
:tag('td'):wikitext(monster['Unlock level']):done() |
||
:tag('td'):wikitext(monster['Profession Level A']):done() |
:tag('td'):wikitext(monster['Profession Level A']):done() |
||
:tag('td'):wikitext |
:tag('td'):wikitext(monster.Health):done() |
||
:tag('td'):wikitext(format_attack_style(monster['Attack style'])):done() |
:tag('td'):wikitext(format_attack_style(monster['Attack style'])):done() |
||
:tag('td'):wikitext(format_attack_style(monster['Immune to'])):done() |
:tag('td'):wikitext(format_attack_style(monster['Immune to'])):done() |
||
Line 70: | Line 62: | ||
row |
row |
||
:tag('td'):wikitext(table.concat(location_text, ', ')):done() |
:tag('td'):wikitext(table.concat(location_text, ', ')):done() |
||
:tag('td'):wikitext |
:tag('td'):wikitext(monster.Experience):done() |
||
:tag('td'):wikitext |
:tag('td'):wikitext(monster['Album XP']):done() |
||
end |
end |
||