Модуль:Research: различия между версиями
Материал из Space Station 14 Вики
Pok (обсуждение | вклад) мНет описания правки |
Pok (обсуждение | вклад) мНет описания правки |
||
Строка 2: | Строка 2: | ||
function p.main(frame) | function p.main(frame) | ||
local icon = frame.args. | local icon = frame.args.icon or "" | ||
local name = frame.args.name or "" | local name = frame.args.name or "" | ||
local discipline = frame.args.discipline or "" | local discipline = frame.args.discipline or "" |
Версия от 11:05, 6 октября 2024
Для документации этого модуля может быть создана страница Модуль:Research/doc
local p = {} function p.main(frame) local icon = frame.args.icon or "" local name = frame.args.name or "" local discipline = frame.args.discipline or "" local tier = frame.args.tier or "" local cost = frame.args.cost or "" local recipeUnlocks = frame.args.recipeUnlocks or "" local disciplineIcon = "" local disciplineName = "" local out = "" if discipline == "Arsenal" then disciplineName = "Арсенал" elseif discipline == "Industrial" then disciplineName = "Промышленность" elseif discipline == "Experimental" then disciplineName = "Экспериментальное" elseif discipline == "CivilianServices" then disciplineName = "Обслуживание персонала" end out = out .. '<div class="research" id="'.. discipline ..'">' out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64px|центр|link=]]</div>' out = out .. '<div class="research__name">' .. name .. '[[Файл:' .. discipline .. '.png|16px|link=]]</div>' out = out .. '<div class="research__type">' out = out .. '<div>Уровень: ' .. tier .. ' ,</div>' out = out .. '<div class="research__category">' .. disciplineName .. '</div>' out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. cost .. '</span></div>' out = out .. '</div>' out = out .. '<div class="research__unblocks">Разблокирует:' out = out .. '<ul>' out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. recipeUnlocks .. '.png|'.. recipeUnlocks .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. recipeUnlocks .. '}}</li>') out = out .. '</ul>' out = out .. '</div>' out = out .. '</div>' return out end return p