forked from AliAryanTech/Kurumi-md
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
67 lines (61 loc) · 1.74 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const fs = require('fs')
const chalk = require('chalk')
// Website Api
global.APIs = {
zenz: 'https://zenzapi.xyz',
}
// Apikey Website Api
global.APIKeys = {
'https://zenzapi.xyz': 'd6295ca53e',
}
// Other
global.owner = ['923087880256']
global.packname = 'Ari'
global.prefix= ['.']
global.author = 'Ani'
global.sessionName = 'Aku'
global.reac = {
cry:'Cried with',
kiss: 'Kissed',
bully:'Bullied',
hug:'Hugged',
lick:'Licked',
cuddle:'Cuddled with',
pat: 'Patted',
smug: 'Smugged at',
highfive: 'High-fived',
bonk:'Bonked',
yeet: 'Yeeted',
blush: 'Blushed at',
wave: 'Waved at',
smile: 'Smiled at',
handhold: 'is Holding Hands with',
nom: 'is Eating with',
bite:'Bit',
glomp:'Glomped',
kill: 'Killed',
slap: 'Slapped',
cringe: 'Cringed at',
kick: 'Kicked',
wink: 'Winked at',
happy: 'is Happy with',
awoo: 'is idk',
poke: 'Poked',
dance:'is Dancing with'
}
global.mess = {
success: '*Here you go...*',
admin: '*Oops!! sorry dude this is only for admins*',
botAdmin: '*To use this command make me admin if u trust me...*',
owner: '*Sorry!! this command is for my darling developers*',
group: '*Leave me here alone please...*',
wait: '*Loading... please wait goshujin sama*',
}
global.thumb = fs.readFileSync('./src/info.jpeg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})