mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 22:30:23 +00:00
feat: added perms
This commit is contained in:
parent
436ed20473
commit
3e6870e423
@ -1,28 +1,35 @@
|
|||||||
export const Status = {
|
export const Status = {
|
||||||
online: {
|
online: {
|
||||||
text: '온라인',
|
text: '온라인',
|
||||||
color: 'green-400'
|
color: 'green-400',
|
||||||
},
|
},
|
||||||
idle: {
|
idle: {
|
||||||
text: '자리 비움',
|
text: '자리 비움',
|
||||||
color: 'yellow-300'
|
color: 'yellow-300',
|
||||||
},
|
},
|
||||||
dnd: {
|
dnd: {
|
||||||
text: '다른 용무중',
|
text: '다른 용무중',
|
||||||
color: 'red-500'
|
color: 'red-500',
|
||||||
},
|
},
|
||||||
offline: {
|
offline: {
|
||||||
text: '오프라인',
|
text: '오프라인',
|
||||||
color: 'gray-500'
|
color: 'gray-500',
|
||||||
},
|
},
|
||||||
null: {
|
null: {
|
||||||
text: '알 수 없음',
|
text: '알 수 없음',
|
||||||
color : 'gray-500'
|
color: 'gray-500',
|
||||||
},
|
},
|
||||||
'???': {
|
'???': {
|
||||||
text: '알 수 없음',
|
text: '알 수 없음',
|
||||||
color: 'gray-500'
|
color: 'gray-500',
|
||||||
}
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const perms = {
|
||||||
|
general: 0x0,
|
||||||
|
staff: 0x1,
|
||||||
|
bughunter: 0x2,
|
||||||
|
booster: 0x4,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const libs = [
|
export const libs = [
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user