blob: e22d63bb1ed5ba36db8c1baefea683573f6ac505 (
plain)
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
68
69
|
import { type Snowflake } from 'discord.js';
import { DataTypes, type Sequelize } from 'sequelize';
import { BaseModel } from '../BaseModel.js';
export interface LevelModel {
user: Snowflake;
guild: Snowflake;
xp: number;
}
export interface LevelModelCreationAttributes {
user: Snowflake;
guild: Snowflake;
xp?: number;
}
/**
* Leveling information for a user in a guild.
*/
export class Level extends BaseModel<LevelModel, LevelModelCreationAttributes> implements LevelModel {
/**
* The user's id.
*/
public declare user: Snowflake;
/**
* The guild where the user is gaining xp.
*/
public declare guild: Snowflake;
/**
* The user's xp.
*/
public declare xp: number;
/**
* The user's level.
*/
public get level(): number {
return Level.convertXpToLevel(this.xp);
}
/**
* Initializes the model.
* @param sequelize The sequelize instance.
*/
public static initModel(sequelize: Sequelize): void {
Level.init(
{
user: { type: DataTypes.STRING, allowNull: false },
guild: { type: DataTypes.STRING, allowNull: false },
xp: { type: DataTypes.INTEGER, allowNull: false, defaultValue: 0 }
},
{ sequelize }
);
}
public static convertXpToLevel(xp: number): number {
return Math.floor((-25 + Math.sqrt(625 + 200 * xp)) / 100);
}
public static convertLevelToXp(level: number): number {
return 50 * level * level + 25 * level; // 50x² + 25x
}
public static genRandomizedXp(): number {
return Math.floor(Math.random() * (40 - 15 + 1)) + 15;
}
}
|