1 |
rakinar2 |
575 |
import { faker } from "@faker-js/faker"; |
2 |
|
|
import { Collection, Guild, Invite } from "discord.js"; |
3 |
|
|
import { randomSnowflake } from "./snowflakes"; |
4 |
|
|
|
5 |
|
|
export function createGuild() { |
6 |
|
|
return { |
7 |
|
|
id: randomSnowflake(), |
8 |
|
|
name: faker.lorem.words(3), |
9 |
|
|
icon: faker.image.avatar(), |
10 |
|
|
ownerID: randomSnowflake(), |
11 |
|
|
invites: { |
12 |
|
|
cache: new Collection() |
13 |
|
|
} |
14 |
|
|
} as unknown as Guild; |
15 |
|
|
} |
16 |
|
|
|
17 |
|
|
export function createInvite() { |
18 |
|
|
const code = faker.internet.password(10).replace(/\//g, "-"); |
19 |
|
|
|
20 |
|
|
return { |
21 |
|
|
code, |
22 |
|
|
url: `jttps://discord.gg/${code}` |
23 |
|
|
} as Invite; |
24 |
|
|
} |