Module:Morganstedmanms

Revision as of 17:30, 2 March 2024 by Morganstedmanms (talk | contribs) (Created page with "local p = {} function p.main(frame) local names = { "Kenichiro Aoki", "Ashima Astra", "Bengus", "Betten Court", "Nanae Chrono", "Omar Dogan", "Dowman Sayman", "Fairouz Ai", "Falcoon", "Fenyo_N", "Mille Feuille", "Butch Hartman", "Leslie Hung", "Ryo Imamura", "Hajime Isayama", "Aya Ito", "Tatsuro Iwamoto", "Masaaki Iwane", "K-Suwabe", "Kano Sisters", "Kohaku Kuroboshi", "Stanley 'Artgerm' Lau", "Dragon Garow Lee", "Kei Mizuryu"...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Morganstedmanms/doc

local p = {}

function p.main(frame)
    local names = {
        "Kenichiro Aoki", "Ashima Astra", "Bengus", "Betten Court", "Nanae Chrono",
        "Omar Dogan", "Dowman Sayman", "Fairouz Ai", "Falcoon", "Fenyo_N",
        "Mille Feuille", "Butch Hartman", "Leslie Hung", "Ryo Imamura", "Hajime Isayama",
        "Aya Ito", "Tatsuro Iwamoto", "Masaaki Iwane", "K-Suwabe", "Kano Sisters",
        "Kohaku Kuroboshi", "Stanley 'Artgerm' Lau", "Dragon Garow Lee", "Kei Mizuryu",
        "Atsushi Nakayama", "Namori", "Asako Nishida", "Kazuya Nuri", "Bkub Okawa",
        "Sakura", "Kaho Shibuya", "Kou Takasugi", "Tana-Taka", "Tiv", "Mamoru Yokota",
        "Akiho Yoshizawa", "Miscellaneous"
    }

    -- Build the template output
    local output = ""
    for i, name in ipairs(names) do
        output = output .. "{{AnchorButton|" .. name .. "}}"
    end

    return output
end

return p