forked from pokemoncentral/wiki-lua-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLearnlist-hf.lua
558 lines (470 loc) · 19.7 KB
/
Learnlist-hf.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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
-- I vari headers e footers dei learnlist, tutti riuniti per condividere
-- la tabella dei colori
-- TODO: add a Lua interface for many of the functions here
local d = {}
local mw = require('mw')
local txt = require('Wikilib-strings')
local lib = require('Wikilib-learnlists')
local w = require('Wikilib')
local multigen = require('Wikilib-multigen')
local wform = require('Wikilib-forms')
local css = require('Css')
local cc = require('ChooseColor')
local gendata = require("Gens-data")
local pokes = require("Poké-data")
-- Tabelle dati
-- Tabella con i valori del colspan della cella con la generazione,
-- che deve coprire tutta la tabella, in base al tipo di header/footer
-- e alla generazione
local cs = {}
cs.level = {6, 6, 9, 9, 8, 11, 8}
cs.tm = {7, 7, 10, 10, 8, 11, 8}
cs.breed = {6, 6, 9, 9, 7, 10, 7}
cs.tutor = {6, 6, 12, 13, 10, 13, 8}
cs.preevo, cs.event = cs.breed, cs.breed
-- Tabella con i valori del colspan e del rowspan della prima cella,
-- divisi per tipo poi per generazione dell'header
local firstcell = {cs = {}, rs = {}}
-- In futuro dovranno essere tutti > 1
firstcell.cs.level = {1, 1, 1, 3, 2, 2, 2, 2}
firstcell.cs.tm = {1, 1, 1, 1, 1, 1, 1, 1}
firstcell.cs.breed = firstcell.cs.tm
firstcell.cs.tutor = {1, 1, 3, 3, 2, 2, 2, 3}
firstcell.cs.preevo = firstcell.cs.breed
firstcell.cs.event = firstcell.cs.breed
firstcell.rs.level = {1, 1, 1, 2, 2, 2, 2, 2}
firstcell.rs.breed = {1, 1, 1, 1, 1, 1, 1, 1}
firstcell.rs.tm = firstcell.rs.breed
firstcell.rs.tutor = firstcell.rs.breed
firstcell.rs.preevo = firstcell.rs.breed
firstcell.rs.event = firstcell.rs.breed
-- Tabella con i vari metodi di apprendimento delle mosse
local ways = {}
ways.level = 'aumentando di livello'
ways.tm = 'tramite MT/MN'
ways.tm2 = 'tramite MT'
ways.breed = 'tramite accoppiamento'
ways.tutor = "dall'Insegnamosse"
ways.preevo = 'tramite evoluzioni precedenti'
ways.event = 'tramite eventi'
-- Tabella con le celle della prima riga degli headers
local cells = {}
cells.moveandtype = '!! rowspan = "${r}" | [[Mossa]] !! rowspan = "${r}" | [[Tipo]] '
cells.ppp = [=[!! rowspan = "${r}" | [[Potenza|Pot.]]
! rowspan = "${r}" | [[Precisione|Prec.]]
! rowspan = "${r}" | [[PP]] ]=]
cells.cat = '!! rowspan = "${r}" | [[Categoria danno|Cat.]] '
cells.gara = [=[!! rowspan = "${r}" | [[Virtù]]
! rowspan = "${r}" | [[Saggio di Recitazione|Fascino]] ]=]
cells.inib = '!! rowspan = "${r}" | [[Intralcio]] '
cells.level = '! colspan = "${c}" | [[Livello|Lv.]] '
cells.tm = '! colspan = "${c}" | [[MT]] '
cells.tmhm = '! colspan = "${c}" | [[MT]]/[[MN]] '
cells.breed = '! colspan = "${c}" | [[Mossa Uovo|${parent}]] '
cells.tutor = '! colspan = "${c}" | [[Videogiochi Pokémon|Gioco]] '
cells.preevo = '! colspan = "${c}" | [[Evoluzione|Stadio]] '
cells.event = '! colspan = "${c}" | [[Pokémon evento|Evento]] '
cells.basic = table.concat{cells.moveandtype, cells.ppp}
cells.category = table.concat{cells.moveandtype, cells.cat, cells.ppp}
cells[1], cells[2] = cells.basic, cells.basic
cells[5], cells[7], cells[8] = cells.category, cells.category, cells.category
cells[3] = table.concat{cells.basic, cells.gara, cells.inib}
cells[4] = table.concat{cells.category, cells.gara}
cells[6] = table.concat{cells.category, cells.gara, cells.inib}
-- Tabella con le celle dei giochi per il levelh
-- incompleta causa mancata implementazione del sistema a due celle
local games = {}
games[4] = [=[
|- class="${textcolor}"
! style="min-width: 2.2em;" | [[Pokémon Diamante e Perla|DP]]
! style="min-width: 2em;" | [[Pokémon Platino|Pt]]
! style="min-width: 3em;" | [[Pokémon Oro Heartgold e Argento Soulsilver|HGSS]]]=]
games[5] = [=[
|- class="${textcolor}"
! style="min-width: 2.2em;" | [[Pokémon Nero e Bianco|NB]]
! style="min-width: 3em;" | [[Pokémon Nero 2 e Bianco 2|N2B2]]]=]
games[6] = [=[
|- class="${textcolor}"
! style="min-width: 2.2em;" | [[Pokémon X e Y|XY]]
! style="min-width: 3em;" | [[Pokémon Rubino Omega e Zaffiro Alpha|ROZA]]]=]
games[7] = [=[
|- class="${textcolor}"
! style="min-width: 2.2em;" | [[Pokémon Sole e Luna|SL]]
! style="min-width: 3em;" | [[Pokémon Ultrasole e Ultraluna|USUL]]]=]
games[8] = [=[
|- class="${textcolor}"
! style="min-width: 2.2em;" | [[Pokémon Spada e Scudo|SpSc]]
! style="min-width: 3em;" | [[Pokémon Diamante Lucente e Perla Splendente|DLPS]]]=]
-- Tabella con i Pokémon baby ottenibili tramite incensi, necessaria
-- per le righe aggiuntive del footer per le mosse Uovo
local baby = {}
baby.Marill, baby.Azumarill = 'Azurill', 'Azurill'
baby.Wobbuffet = 'Wynaut'
baby.Roselia, baby.Roserade = 'Budew', 'Budew'
baby.Chimecho = 'Chingling'
baby.Sudowoodo = 'Bonsly'
baby['Mr. Mime'] = 'Mime Jr.'
baby.Chansey, baby.Blissey = 'Happiny', 'Happiny'
baby.Snorlax = 'Munchlax'
baby.Mantine = 'Mantyke'
-- Tabella con le righe da aggiungere ai footer: manca preevo
-- perché non vi è nessuna riga da aggiungere
local rowsf = {}
rowsf.level = [=[*Il livello "Inizio" indica una mossa conosciuta da ${poke} ottenuto a livello 1 in ${genl} generazione.
*Le mosse segnate al livello "Evo" possono essere apprese al momento dell'evoluzione.]=]
rowsf.breed1 = [=[*Le mosse segnate con un asterisco (*) si ottengono solo con una [[catena di accoppiamenti]] su ${poke} in ${genl} generazione.
*Le mosse segnate con una doppia croce (‡) possono essere ottenute solo da un Pokémon che le abbia apprese in una generazione precedente.
*Le mosse segnate con un'abbreviazione di un gioco in apice si possono ottenere su ${poke} solo in quel gioco.]=]
rowsf.breed2 = [=[
*Le mosse segnate con una croce (†) si possono ottenere su ${poke} solo se ad uscire dall'Uovo è [[${baby}]], e non altrimenti.]=]
rowsf.tutor = [=[*Un'abbreviazione bianca in una casella colorata indica che ${poke} può imparare la mossa dall'Insegnamosse in quel gioco.
*Un'abbreviazione colorata su sfondo bianco indica che ${poke} non può imparare la mossa dall'Insegnamosse in quel gioco.]=]
rowsf.event = '*Un livello in apice indica che ${poke} può imparare questa mossa normalmente in ${genl} generazione a quel livello.'
rowsf.last = [[
*Clicca sui numeri delle generazioni in alto per vedere le mosse apprese ${way} nelle altre generazioni.]]
-- Testo da aggiungere per le forme
rowsf.forms = {}
rowsf.forms.none = "'evoluzione"
rowsf.forms.yes = '\'evoluzione o una [[Differenze di forma#${poke}|forma alternativa]]'
rowsf.forms.mega = 'a [[Megaevoluzione]]'
-- Funzioni di supporto
-- Generano i link alle altre generazione, in alto a destra degli headers
local genlink = function(gen, method, poke)
method = (method == 'tm' and tonumber(gen) > 6) and 'tm2' or method
if gen == gendata.latest then
return txt.interp('[[${poke}#${way}|${genroman}]]',
{poke = poke, way = string.fu(ways[method]),
genroman = gendata[gen].roman})
else
return txt.interp('[[${poke}/Mosse apprese in ${genletters} generazione#${way}|${genroman}]]',
{poke = poke, genletters = gendata[gen].ext,
way = string.fu(ways[method]), genroman = gendata[gen].roman})
end
end
--[[
Builds the box with links to learnlist subpages of older gens
in learnlist headers.
Arguments:
- genh: gen to which the list refers
- genp: gen in which the Pokémon was introduced. The special
value 0 indicates that there should be no box (eg: for
glitch Pokémon)
- method: the kind of the learnlist this box refers to (eg: level,
tm, ...)
- poke: name of the Pokémon the learnlist refers to
--]]
local oldgenslinks = function(genh, genp, method, poke)
if genp == gendata.latest or genp == 0 then
return 'Nessuna'
end
local str = {}
for a = genp, gendata.latest do
if a ~= genh then
table.insert(str, genlink(a, method, poke))
end
end
return table.concat(str, ' • ')
end
-- Crea le celle dell'ultima riga degli headers
local lowrow = function(gen, kind, tc)
local values = {r = firstcell.rs[kind][gen],
c = firstcell.cs[kind][gen], parent = gen > 5 and
'Genitore' or 'Padre', textcolor = tc}
kind = (kind == 'tm' and gen < 7) and 'tmhm' or kind
local baseStr = table.concat{cells[kind], cells[gen],
kind == 'level' and games[gen] or ''}
return txt.interp(baseStr, values)
end
-- Genera solo le righe dei footer diverse in base al tipo dello stesso
local rowf = function(kind, gen, poke)
local rows = rowsf[kind] or ''
if kind == 'breed' then
rows = rowsf.breed1 .. (baby[poke] and rowsf.breed2 or '')
end
return txt.interp(rows, {poke = poke, genl = gendata[gen].ext,
baby = baby[poke]})
end
-- Crea i vari headers; chiamata da tutti gli header
local header = function(pars, kind)
local tipo1, tipo2 = pars[2] or 'Sconosciuto', pars[3] or 'Sconosciuto'
local genh, genp = tonumber(pars[4]) or 0, tonumber(pars[5]) or 0
local poke = pars[1] or ''
return txt.interp([=[
<div class="text-center max-width-xl-100">
<div class="roundy text-center inline-block max-width-xl-100" style="${bg}">
<div class="flex-row-center-around flex-wrap ${textcolor}" style="padding: 0.5ex;"><div><span class="big-font"><span class="big-font">'''${gentitle} generazione'''</span></span></div>
<div class="text-center" style="font-weight: bold; padding: 0.5ex;">
<div class="small-font" style="margin-top: 0.5ex;">Altre generazioni:</div>
<div>${links}</div>
</div>
</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}"
${low_row}]=],
{
textcolor = cc.forModGradBgLua(tipo1, tipo2),
bg = css.horizGradLua{type1 = tipo1, type2 = tipo2},
gentitle = string.fu(gendata[genh].ext),
links = oldgenslinks(genh, genp, kind, poke),
low_row = lowrow(genh, kind, cc.forModGradBgLua(tipo1, tipo2))
})
end
-- Genera i footer, chiamata da tutti i footer
local footer = function(pars, kind)
local tipo1, tipo2 = pars[2] or 'Sconosciuto', pars[3] or 'Sconosciuto'
local form = string.lower(pars.form or 'none')
local genf, genp = tonumber(pars[4]) or 0, tonumber(pars[5]) or 0
local poke = pars[1] or ''
return txt.interp([=[
|}</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${form} di ${poke}.${last}
</div>
</div>
</div>]=],
{
textcolor = cc.forModGradBgLua(tipo1, tipo2),
kindrows = rowf(kind, genf, poke),
poke = poke,
form = txt.interp(rowsf.forms[form], {poke = poke}) or '',
last = genp < gendata.latest and txt.interp(rowsf.last, {way = ways[kind]}) or ''
})
end
d.levelh = function(frame)
return header(lib.sanitize(mw.clone(frame.args)), 'level')
end
d.Levelh = d.levelh
d.levelhLGPE = function(frame)
local pars = lib.sanitize(mw.clone(frame.args))
local tipo1, tipo2 = pars[2] or 'Sconosciuto', pars[3] or 'Sconosciuto'
local genh, genp = tonumber(pars[4]) or 0, tonumber(pars[5]) or 0
local poke = pars[1] or ''
return txt.interp([=[
<div class="text-center max-width-xl-100">
<div class="roundy text-center inline-block max-width-xl-100" style="${bg}">
<div class="flex-row-center-around flex-wrap" style="padding: 0.5ex;"><div class="big-font"><span class="big-font ${textcolor}">'''Settima generazione: [[Pokémon: Let's Go, Pikachu! e Let's Go, Eevee!|LGPE]]'''</span></div>
</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|Lv.]]
! [[Mossa]]
! [[Tipo]]
! [[Categoria danno|Cat.]]
! [[Potenza|Pot.]]
! [[Statistiche#Precisione|Prec.]]
! [[PP]]]=],
{
textcolor = cc.forModGradBgLua(tipo1, tipo2),
bg = css.horizGradLua{type1 = tipo1, type2 = tipo2}
})
end
d.LevelhLGPE = d.levelhLGPE
d.levelhLPA = function(frame)
local p = w.trimAll(frame.args)
local pokename = mw.text.decode(p[1]):lower()
local abbr = p.form or ""
local pokedata = multigen.getGen(pokes[wform.nameToDataindex(pokename .. abbr)])
local genh = tonumber(p[2]) or 0
return txt.interp([=[
<div class="text-center max-width-xl-100">
<div class="roundy text-center inline-block max-width-xl-100" style="${bg}">
<div class="flex-row-center-around flex-wrap" style="padding: 0.5ex;"><div class="big-font"><span class="big-font ${textcolor}">'''Ottava generazione: [[Leggende Pokémon: Arceus|LPA]]'''</span></div>
</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|Lv.]]
! rowspan="2" | [[Mossa]]
! rowspan="2" | [[Tipo]]
! rowspan="2" | [[Categoria danno|Cat.]]
! rowspan="2" | [[Potenza|Pot.]]
! rowspan="2" | [[Statistiche#Precisione|Prec.]]
! rowspan="2" | [[PP]]
|- class="${textcolor}"
! Imp
! Master ]=],
{
textcolor = cc.forModGradBgLua(pokedata.type1, pokedata.type2),
bg = css.horizGradLua(pokedata)
})
end
d.LevelhLPA = d.levelhLPA
-- Header per le mosse imparate tramite MT/MN
d.tmh = function(frame)
return header(lib.sanitize(mw.clone(frame.args)), 'tm')
end
d.Tmh = d.tmh
d.tmhLGPE = function(frame)
local pars = lib.sanitize(mw.clone(frame.args))
local tipo1, tipo2 = pars[2] or 'Sconosciuto', pars[3] or 'Sconosciuto'
local genh, genp = tonumber(pars[4]) or 0, tonumber(pars[5]) or 0
local poke = pars[1] or ''
return txt.interp([=[
<div class="text-center max-width-xl-100">
<div class="roundy text-center inline-block max-width-xl-100" style="${bg}">
<div class="flex-row-center-around flex-wrap" style="padding: 0.5ex;"><div class="big-font"><span class="big-font ${textcolor}">'''Settima generazione: [[Pokémon: Let's Go, Pikachu! e Let's Go, Eevee!|LGPE]]'''</span></div>
</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|Pot.]]
! [[Statistiche#Precisione|Prec.]]
! [[PP]]]=],
{
textcolor = cc.forModGradBgLua(tipo1, tipo2),
bg = css.horizGradLua{type1 = tipo1, type2 = tipo2}
})
end
d.TmhLGPE = d.tmhLGPE
-- Header per le mosse imparate aumentando di livello
d.breedh = function(frame)
return header(lib.sanitize(mw.clone(frame.args)), 'breed')
end
d.Breedh = d.breedh
-- Header per le mosse imparate dall'Insegnamosse
d.tutorh = function(frame)
return header(lib.sanitize(mw.clone(frame.args)), 'tutor')
end
d.Tutorh = d.tutorh
d.tutorhLPA = function(frame)
local p = w.trimAll(frame.args)
local pokename = mw.text.decode(p[1]):lower()
local abbr = p.form or ""
local pokedata = multigen.getGen(pokes[wform.nameToDataindex(pokename .. abbr)])
local genh = tonumber(p[2]) or 0
return txt.interp([=[
<div class="text-center max-width-xl-100">
<div class="roundy text-center inline-block max-width-xl-100" style="${bg}">
<div class="flex-row-center-around flex-wrap" style="padding: 0.5ex;"><div class="big-font"><span class="big-font ${textcolor}">'''Ottava generazione: [[Leggende Pokémon: Arceus|LPA]]'''</span></div>
</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 = "1" | [[Videogiochi Pokémon|Gioco]]
! [[Mossa]]
! [[Tipo]]
! [[Categoria danno|Cat.]]
! [[Potenza|Pot.]]
! [[Statistiche#Precisione|Prec.]]
! [[PP]]]=],
{
textcolor = cc.forModGradBgLua(pokedata.type1, pokedata.type2),
bg = css.horizGradLua(pokedata)
})
end
d.tutorhLPA = d.tutorhLPA
-- Header per le mosse imparate tramite evoluzioni precedenti
d.prevoh = function(frame)
return header(lib.sanitize(mw.clone(frame.args)), 'preevo')
end
d.Prevoh, d.preevoh, d.Preevoh = d.prevoh, d.prevoh, d.prevoh
-- Header per le mosse imparate tramite eventi
d.eventh = function(frame)
return header(lib.sanitize(mw.clone(frame.args)), 'event')
end
d.Eventh = d.eventh
-- Footer per le mosse imparate aumentando di livello
d.levelf = function(frame)
return footer(lib.sanitize(mw.clone(frame.args)), 'level')
end
d.Levelf = d.levelf
-- It's not accurate, but almost so I'll use this because right now I'm in a
-- hurry
d.levelfLGPE = d.levelf
d.levelfLPA = function(frame)
local p = w.trimAll(frame.args)
local pokename = mw.text.decode(p[1]):lower()
local abbr = p.form or ""
local pokedata = multigen.getGen(pokes[wform.nameToDataindex(pokename .. abbr)])
local genf = tonumber(p[2]) or 0
return txt.interp([=[
|}</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),
kindrows = rowf('level', genf, pokedata.name),
poke = pokedata.name,
})
end
-- Footer per le mosse imparate tramite MT/MN
d.tmf = function(frame)
return footer(lib.sanitize(mw.clone(frame.args)), 'tm')
end
d.Tmf = d.tmf
-- It's not accurate, but almost so I'll use this because right now I'm in a
-- hurry
d.tmfLGPE = d.tmf
-- Footer per le mosse imparate tramite accoppiamento
d.breedf = function(frame)
return footer(lib.sanitize(mw.clone(frame.args)), 'breed')
end
d.Breedf = d.breedf
-- Footer per le mosse imparate tramite Insegnamosse
d.tutorf = function(frame)
return footer(lib.sanitize(mw.clone(frame.args)), 'tutor')
end
d.Tutorf = d.tutorf
d.tutorfLPA = function(frame)
local p = w.trimAll(frame.args)
local pokename = mw.text.decode(p[1]):lower()
local abbr = p.form or ""
local pokedata = multigen.getGen(pokes[wform.nameToDataindex(pokename .. abbr)])
local genf = tonumber(p[2]) or 0
return txt.interp([=[
|}</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),
kindrows = rowf('tutor', genf, pokedata.name),
poke = pokedata.name,
})
end
-- Footer per le mosse imparate tramite accoppiamento
d.prevof = function(frame)
return footer(lib.sanitize(mw.clone(frame.args)), 'preevo')
end
d.Prevof, d.Preevof, d.preevof = d.prevof, d.prevof, d.prevof
-- Footer per le mosse imparate tramite evento
d.eventf = function(frame)
return footer(lib.sanitize(mw.clone(frame.args)), 'event')
end
d.Eventf = d.eventf
-- Entry per un Pokémon che impara tutte le MT e MN
d.alltm = function(frame)
local p = lib.sanitize(mw.clone(frame.args))
local gen = tonumber(p[2]) or gendata.latest
local moveKind = {Tm = gen > 6 and '[[MT]]' or '[[MT]] e [[MN]]',
Tutor = 'mossa tutor'}
return txt.interp([=[
|-
! class="white-bg black-text" style="padding: 0.1em 0.3em;" colspan ="${cs}" | ${poke} può imparare ''qualsiasi'' ${moveKind} in ${gen} generazione${except}.]=],
{
poke = p[1] or 'Questo Pokémon',
moveKind = moveKind[p[3] or 'Tm'],
gen = gendata[gen].ext or 'brockolosa',
except = p[3] == 'Tm' and '' or ' tranne [[mosse tutor peculiari|quelle peculiari]]',
cs = cs.tm[gen],
})
end
d.AllTM, d.Alltm = d.alltm, d.alltm
return d