-
Notifications
You must be signed in to change notification settings - Fork 0
/
string.lua
72 lines (64 loc) · 1.75 KB
/
string.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
local p = {}
-- Used in Template:Monster by Property:Hit_dice
function p.first_word(frame)
local text = frame.args[1]
for token in string.gmatch(text, '[^%s,]+') do
return token
end
end
-- Used in Template:Monster by Property:Monster_magic_resistance
function p.fix_magic_resistance(frame)
local text = frame.args[1]
if text == 'Immune' or text == 'immune' then
return '1000'
end
return text
end
-- Used in Template:Monster by Property:Monster_size
function p.fix_monster_size(frame)
local text = frame.args[1]
found, _, token = string.find(text, '|([^%]]+)%]')
if found then
return token
end
return text
end
-- Used in Template:Monster by Property:Monster_intelligence
function p.fix_monster_intelligence(frame)
return p.fix_monster_size(frame)
end
-- Used in Template:Armour
function p.fix_gdr(frame)
local text = frame.args[1]
new_text, _ = string.gsub(text, '%%', '')
return new_text
end
-- Used in Template:Schoollink
function p.school_to_skill(frame)
local school = frame.args[1]
if school == 'Poison' or school == 'Air' or school == 'Fire' or
school == 'Ice' or school == 'Earth' then
return school .. ' Magic'
elseif school:sub(-1) == 'y' or school:sub(-1) == 's' then
-- "Necromancy" isn't pluralised as a skill, and "Hexes" and "Charms" are
-- already pluralized as a magic school. The others are singular as a
-- school, plural as a skill.
return school
else
return school .. 's'
end
end
-- Used for getting correct sort key for categories
function p.sort_key(frame)
local name = mw.title.getCurrentTitle().text
local key = name
:gsub('^[Bb]ook of ', '')
:gsub('^[Aa] ', '')
:gsub('^[Tt]he ', '')
if key == '' then
return name
else
return key
end
end
return p