From 8ae756f2bb674ff60d5e43a14924eaa972beebb8 Mon Sep 17 00:00:00 2001 From: Lio Young Date: Sat, 10 Apr 2021 03:52:00 +0200 Subject: [PATCH] more variables --- src/utils/types.ts | 25 ++++++++++++++++++++----- variables.ts | 42 ++++++++++++++++++++++++++++++++++++------ 2 files changed, 56 insertions(+), 11 deletions(-) diff --git a/src/utils/types.ts b/src/utils/types.ts index 253ee5a..380ceda 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -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 { diff --git a/variables.ts b/variables.ts index 703fd5c..65f31bf 100644 --- a/variables.ts +++ b/variables.ts @@ -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" } \ No newline at end of file