complete guides

This commit is contained in:
2023-06-09 21:30:24 +02:00
parent 24c120a890
commit 3e152864fd
3 changed files with 187 additions and 115 deletions

View File

@ -1,12 +1,12 @@
import { AttachmentBuilder } from "discord.js"
const splashScreen = new AttachmentBuilder('./server/assets/images/set_splashscreen.png')
const startScreen = new AttachmentBuilder('./server/assets/images/start_screen.png')
const serverConnection = new AttachmentBuilder('./server/assets/images/server_verbindung.png')
const accountChoice = new AttachmentBuilder('./server/assets/images/auswahl_anmeldung.png')
const loginScreen = new AttachmentBuilder('./server/assets/images/login_screen.png')
const overview = new AttachmentBuilder('./server/assets/images/jellyfin_ubersicht.png')
const joingroup = new AttachmentBuilder('./server/assets/images/gruppe_beitreten.png')
const resume = new AttachmentBuilder('./server/assets/images/wiedergabe_fortsetzen.png')
const leavegroup = new AttachmentBuilder('./server/assets/images/gruppe_verlassen.png')
export const splashScreen = new AttachmentBuilder('./server/assets/images/set_splashscreen.png')
export const startScreen = new AttachmentBuilder('./server/assets/images/start_screen.png')
export const serverConnection = new AttachmentBuilder('./server/assets/images/server_verbindung.png')
export const accountChoice = new AttachmentBuilder('./server/assets/images/auswahl_anmeldung.png')
export const loginScreen = new AttachmentBuilder('./server/assets/images/login_screen.png')
export const overview = new AttachmentBuilder('./server/assets/images/jellyfin_ubersicht.png')
export const joingroup = new AttachmentBuilder('./server/assets/images/gruppe_beitreten.png')
export const resume = new AttachmentBuilder('./server/assets/images/wiedergabe_fortsetzen.png')
export const leavegroup = new AttachmentBuilder('./server/assets/images/gruppe_verlassen.png')
export const attachedImages = [splashScreen, startScreen, serverConnection, accountChoice, loginScreen, overview, resume, leavegroup, joingroup]