UNPKG
@develable/rutapbot-d20
Version:
latest (0.0.1)
0.0.1
[KR] Rutap Bot will makes your discord life better!
@develable/rutapbot-d20
/
src
/
settings
/
TEXT.ts
5 lines
(4 loc)
•
250 B
text/typescript
View Raw
1
2
3
4
5
export
const
commandNotFound
:
string
[] = [
"명령어를 찾을 수 없습니다!"
,
"알 수 없는 명령어입니다!"
];
export
const
randomText =
function
(
text
:
string
[]
):
string
{
return
text[
Math
.
floor
(
Math
.
random
()*(text.
length
+
1
))]; }