Ir para o conteúdo

Módulo:Staff/data

De Undertale Wiki

Erro em Lua em package.lua na linha 80: module 'Dev:Docbunto' not found.


--- Staff badge appearance data as well as which users should be given badges.
--  This module is protected because regular users generally shouldn't feel a
--  need to (or have permissions for) change which user is placed in which
--  group.
--  @file               {table} staff_data

--- Map of a user's group to their staff category name, WDS icon suffix and
--  name of a group member in non-MediaWiki terms (administrator instead of
--  sysop).
--  When the <code>icon</code> property is left out, no icon is displayed on
--  the page.
--  @property           {table} staff_data.appearance

--- Map of users to their respective groups, since that data cannot be grabbed
--  using Scribunto's standard library.
--  @property           {table} staff_data.users

return {
    appearance = {
        ['bureaucrat'] = {
            category = 'Burocratas',
            icon     = 'admin',
            name     = 'bureaucrat'
        },
        ['sysop'] = {
            category = 'Administradores',
            icon     = 'admin',
            name     = 'administrator'
        },
        ['content-moderator'] = {
            category = 'Moderadores de Conteúdo',
            icon     = 'content-moderator',
            name     = 'Content Moderator'
        },
        ['threadmoderator'] = {
            category = 'Moderadores de Discussões',
            icon     = 'discussion-moderator',
            name     = 'Discussions Moderator'
        },
        ['chatmoderator'] = {
            category = 'Chat Moderators',
            icon     = 'discussion-moderator',
            name     = 'Chat Moderator'
        },
        ['rollback'] = {
            category = 'Patrulhadores',
            name     = 'patroller'
        }
    },
    users = {
        -- Bureaucrats
        ['Cacagibin']           = 'bureaucrat',
        -- Administrators
        ['Cacagibin']           = 'sysop',
        -- Content Moderators
        ['Carol the Cat']       = 'content-moderator',
        -- Discussions Moderators
        -- Chat Moderators
        -- Patrollers
    }
}