-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLearnlist-LPZA.lua
More file actions
285 lines (262 loc) · 9.45 KB
/
Learnlist-LPZA.lua
File metadata and controls
285 lines (262 loc) · 9.45 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
--[[
Learnlists for Pokémon Legends: Z-A
]]
local l = {}
-- stylua: ignore start
local mw = require('mw')
local txt = require('Wikilib-strings')
local tab = require('Wikilib-tables')
local evolib = require('Wikilib-evos')
local formsLib = require('Wikilib-forms')
local multigen = require('Wikilib-multigen')
local w = require('Wikilib')
local box = require('Box')
local cc = require('ChooseColor')
local css = require('Css')
local learnlistHf = require('Learnlist-hf')
local render = require('Render')
local moves = require("Move-LPZA-data")
local pokes = require("Poké-data")
-- stylua: ignore end
local ALPHA_MOVE_ICON = "[[File:Icona_Alfa_LPA.png|Pokémon alfa|25px]]"
local worstMistake = function(type)
return type == "coleot" and "coleottero" or type
end
local processInput = function(frame)
local p = w.trimAll(frame.args)
local pokeName = mw.text.decode(table.remove(p, 1)):lower()
local dataIndex = formsLib.nameToDataindex(pokeName, p.form or "")
local pokeData = multigen.getGen(pokes[dataIndex])
local pokeTypes = tab.map({ pokeData.type1, pokeData.type2 }, worstMistake)
local relatedTypes = tab.map(
tab.merge(
evolib.formTypesList(dataIndex, 9),
evolib.evoTypesList(dataIndex, 9)
),
worstMistake
)
return p, pokeData, pokeTypes, relatedTypes
end
local computeSTAB = function(moveData, pokeTypes, relatedTypes)
if moveData.category == "stato" then
return ""
elseif tab.search(pokeTypes, moveData.type) then
return "'''"
elseif tab.search(relatedTypes, moveData.type) then
return "''"
else
return ""
end
end
local rightColumns = function(moveData, pokeTypes, relatedTypes, nameNotes)
return string.interp(
[=[
| class="black-text" style="padding: 0.1em 0.3em;" | ${stab}[[${name}]]${stab}${nameNotes}
| class="height-100" style="padding: 0.8ex 0.3ex;" | ${type}
| class="height-100" style="padding: 0.8ex 0.3ex;" | ${category}
| style="padding: 0.1em 0.3em;" | ${power}
| style="padding: 0.1em 0.3em;" | ${recharge}
| style="padding: 0.1em 0.3em;" | ${range}]=],
{
name = moveData.name,
stab = computeSTAB(moveData, pokeTypes, relatedTypes),
nameNotes = nameNotes or "",
type = box.typeBoxLua(moveData.type, { "thick" }),
category = box.catBoxLua(moveData.category, { "thick" }),
power = moveData.power or "—",
recharge = moveData.recharge,
range = moveData.range,
}
)
end
local levelEntry = function(level, plusLevel, moveName, pokeTypes, relatedTypes)
return string.interp(
[=[
|-
| class="black-text" style="padding: 0.1em 0.3em;" | ${level}
| class="black-text" style="padding: 0.1em 0.3em;" | ${plusLevel}
${rightColumns}]=],
{
level = level,
plusLevel = plusLevel,
rightColumns = rightColumns(
moves[moveName:lower()],
pokeTypes,
relatedTypes
),
}
)
end
l.level = function(frame)
local p, pokeData, pokeTypes, relatedTypes = processInput(frame)
local entryFunc = function(args)
local level, plusLevel, moveName = table.unpack(args)
return levelEntry(level, plusLevel, moveName, pokeTypes, relatedTypes)
end
-- TODO: add links to "Tempo di recupero" and "Raggio"
return string.interp(
[=[
<div class="text-center">
<div class="roundy inline-block max-width-xl-100" style="${bg} padding: 0.2em;">
<div class="flex-row-center-around flex-wrap big-font" style="padding: 0.5ex;"><span class="big-font ${textcolor}">'''Nona generazione: [[Leggende Pokémon: Z-A|LPZA]]'''</span></div>
<div style="overflow-x: auto; margin: 0 0.3ex;">
{| class="white-rows max-width-xl-100 width-xl-100 no-border-spacing" style="margin-top: 0; background: transparent;"
|- class="text-center ${textcolor}"
! colspan="2" | [[Livello]]
! rowspan="2" | [[Mossa]]
! rowspan="2" | [[Tipo]]
! rowspan="2" | [[Categoria danno|Cat.]]
! rowspan="2" | [[Potenza]]
! rowspan="2" | '''Tempo di recupero'''
! rowspan="2" | '''Raggio'''
|- class="${textcolor}"
! Imp
! [[File:Icona Mossa più.png|Mossa +|25px]]
${levelMoves}
|}
</div>
<div class="text-left small-font ${textcolor}" style="line-height: 1em; padding: 0 0.5ex 1ex;">
${kindrows}
*Il '''grassetto''' indica una mossa che ha il [[bonus di tipo]] quando viene usata da un ${poke}.
*Il ''corsivo'' indica una mossa che ha il bonus di tipo solo quando viene usata da un'evoluzione o una [[Differenze di forma|forma alternativa]] di ${poke}
</div>
</div>
</div>]=],
{
textcolor = cc.forModGradBgLua(pokeData.type1, pokeData.type2),
bg = css.horizGradLua(pokeData),
levelMoves = render.renderLua(entryFunc, p),
kindrows = learnlistHf.rowf("level", 9, pokeData.name),
poke = pokeData.name,
}
)
end
l.Level = l.level
local tmEntry = function(tm, moveName, isAlphaPlus, pokeTypes, relatedTypes)
local moveData = moves[moveName:lower()]
return string.interp(
[=[
|-
| class="black-text" style="padding: 0.1em 0.3em;" | [[File:MT_${type}_VI_Sprite_Zaino.png]] [[${tm}]]
${rightColumns}]=],
{
tm = tm,
type = txt.first_uppercase(moveData.type),
rightColumns = rightColumns(
moveData,
pokeTypes,
relatedTypes,
isAlphaPlus and (" " .. ALPHA_MOVE_ICON) or ""
),
}
)
end
l.tm = function(frame)
local p, pokeData, pokeTypes, relatedTypes = processInput(frame)
local entryFunc = function(args)
local tm, moveName, isAlphaPlus = table.unpack(args)
return tmEntry(
tm,
moveName,
(isAlphaPlus or "no"):lower() == "yes",
pokeTypes,
relatedTypes
)
end
-- TODO: add links to "Tempo di recupero" and "Raggio"
return string.interp(
[=[
<div class="text-center">
<div class="roundy inline-block max-width-xl-100" style="${bg} padding: 0.2em;">
<div class="flex-row-center-around flex-wrap big-font" style="padding: 0.5ex;"><span class="big-font ${textcolor}">'''Nona generazione: [[Leggende Pokémon: Z-A|LPZA]]'''</span></div>
<div style="overflow-x: auto; margin: 0 0.3ex;">
{| class="white-rows max-width-xl-100 width-xl-100 no-border-spacing" style="margin-top: 0; background: transparent;"
|- class="text-center ${textcolor}"
! [[MT]]
! [[Mossa]]
! [[Tipo]]
! [[Categoria danno|Cat.]]
! [[Potenza]]
! '''Tempo di recupero'''
! '''Raggio'''
${levelMoves}
|}
</div>
<div class="text-left small-font ${textcolor}" style="line-height: 1em; padding: 0 0.5ex 1ex;">
${kindrows}
*Il '''grassetto''' indica una mossa che ha il [[bonus di tipo]] quando viene usata da un ${poke}.
*Il ''corsivo'' indica una mossa che ha il bonus di tipo solo quando viene usata da un'evoluzione o una [[Differenze di forma|forma alternativa]] di ${poke}
*Un ${alphaIcon} indica che la mossa può essere già conosciuta da un ${poke} [[Pokémon alfa|alfa]] come [[mossa +]].
</div>
</div>
</div>]=],
{
textcolor = cc.forModGradBgLua(pokeData.type1, pokeData.type2),
bg = css.horizGradLua(pokeData),
levelMoves = render.renderLua(entryFunc, p),
kindrows = learnlistHf.rowf("tm", 9, pokeData.name),
alphaIcon = ALPHA_MOVE_ICON,
poke = pokeData.name,
}
)
end
l.Tm = l.tm
local eventEntry = function(event, moveName, pokeTypes, relatedTypes)
return string.interp(
[=[
|-
| style="padding: 0.1em 0.3em;" | ${event}
${rightColumns}]=],
{
event = event,
rightColumns = rightColumns(
moves[moveName:lower()],
pokeTypes,
relatedTypes
),
}
)
end
l.event = function(frame)
local p, pokeData, pokeTypes, relatedTypes = processInput(frame)
local entryFunc = function(args)
local event, moveName = table.unpack(args)
return eventEntry(event, moveName, pokeTypes, relatedTypes)
end
-- TODO: add links to "Tempo di recupero" and "Raggio"
return string.interp(
[=[
<div class="text-center">
<div class="roundy inline-block max-width-xl-100" style="${bg} padding: 0.2em;">
<div class="flex-row-center-around flex-wrap big-font" style="padding: 0.5ex;"><span class="big-font ${textcolor}">'''Nona generazione: [[Leggende Pokémon: Z-A|LPZA]]'''</span></div>
<div style="overflow-x: auto; margin: 0 0.3ex;">
{| class="white-rows max-width-xl-100 width-xl-100 no-border-spacing" style="margin-top: 0; background: transparent;"
|- class="text-center ${textcolor}"
! Evento
! [[Mossa]]
! [[Tipo]]
! [[Categoria danno|Cat.]]
! [[Potenza]]
! '''Tempo di recupero'''
! '''Raggio'''
${levelMoves}
|}
</div>
<div class="text-left small-font ${textcolor}" style="line-height: 1em; padding: 0 0.5ex 1ex;">
${kindrows}
*Il '''grassetto''' indica una mossa che ha il [[bonus di tipo]] quando viene usata da un ${poke}.
*Il ''corsivo'' indica una mossa che ha il bonus di tipo solo quando viene usata da un'evoluzione o una [[Differenze di forma|forma alternativa]] di ${poke}
</div>
</div>
</div>]=],
{
textcolor = cc.forModGradBgLua(pokeData.type1, pokeData.type2),
bg = css.horizGradLua(pokeData),
levelMoves = render.renderLua(entryFunc, p),
kindrows = learnlistHf.rowf("event", 9, pokeData.name),
poke = pokeData.name,
}
)
end
l.Event = l.event
return l