more variables

This commit is contained in:
Lio Young 2021-04-10 03:52:00 +02:00
parent 7721b4f67b
commit 8ae756f2bb
No known key found for this signature in database
GPG Key ID: 789795A11879E169
2 changed files with 56 additions and 11 deletions

View File

@ -77,6 +77,7 @@ export interface Config {
interface Developer {
id: string;
link: string
}
interface Supabase {
@ -88,14 +89,28 @@ interface Apis {
sheri: string;
yiffrest: string;
}
interface Contributor {
id: string;
link: string
nick: string
reason: string
}
interface Variables {
name: string;
prefix: string[];
/**
* Developers of this Bot
*/
developers: Developer[];
contributors: Contributor[]
// ! Mainly for the Info Command tbh
name: string;
source: string
avatar: string
tagline: string
color: string,
support: {
id: string,
invite: string
}
website: string
}
interface Pkg {

View File

@ -1,8 +1,4 @@
export default {
/**
* Name of the Bot in Logs
*/
name: "Panthera",
/**
* Default Prefixes
*/
@ -12,7 +8,41 @@ export default {
*/
developers: [
{
id: "318044130796109825" // Lio
/**
* Discord ID of the Developer
*/
id: "318044130796109825", // Lio
link: "https://kji.tf/twitter"
}
]
],
/**
* Contributors, in one way or another, that helped me make Thaldrin
*/
contributors: [
{
id: "150745989836308480",
link: "https://github.com/Cynosphere",
nick: "Cynthia",
reason: "Letting me copy HiddenPhox' Shortlink feature."
},
{
id: "356323373443448843",
link: "https://twitter.com/ThalLycal",
nick: "Thaldrin",
reason: "Letting me use his Sona as a Mascot. <:lioLove:760165648063397942> "
},
],
/**
* Name of the Bot
*/
name: "Panthera",
source: `[t8.pm/source](https://t8.pm/source)`,
avatar: "https://thaldrin.media/avatar.png",
support: {
id: "828978320279863306",
invite: "https://thaldr.in/"
},
tagline: "A Random Image and Utility Bot",
color: "#ff995d",
website: "thaldr.in"
}