-
Notifications
You must be signed in to change notification settings - Fork 0
/
MessageGetter.js
56 lines (55 loc) · 1.49 KB
/
MessageGetter.js
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
// @ts-check
"use strict";
export class MessageGetter {
/**
* @param {import("./character/Character").メンバー} メンバー
*/
static newEntry(メンバー) {
return {
content: "以下の内容で登録しました",
embeds: [
{
title: "新規登録完了",
description: メンバー.名前,
fields: [
{
name: "性別",
value: メンバー.性別,
inline: true,
},
{
name: "職業",
value: メンバー.現職.名前,
inline: true,
},
{
name: "HP",
value: メンバー.ステータス.HP.現在値.toString(),
inline: true,
},
{
name: "MP",
value: メンバー.ステータス.HP.現在値.toString(),
inline: true,
},
{
name: "攻撃力",
value: メンバー.ステータス.攻撃力.現在値.toString(),
inline: true,
},
{
name: "守備力",
value: メンバー.ステータス.守備力.現在値.toString(),
inline: true,
},
{
name: "素早さ",
value: メンバー.ステータス.素早さ.現在値.toString(),
inline: true,
},
],
},
],
}
}
}