プロフィール
パラメータ表示Attributes
| STR | 6486 |
|---|
| DEX | 461 |
|---|
| VIT | 7169 |
|---|
| INT | 223 |
|---|
| MND | 395 |
|---|
Offense
| クリティカル | 3485 |
|---|
| 意思力 | 1908 |
|---|
| ダイレクトヒット | 1912 |
|---|
Defense
Melee
Spell
| 攻撃魔法威力 | 223 |
|---|
| 回復魔法威力 | 395 |
|---|
| スペルスピード | 420 |
|---|
Role
自己紹介
class UserComponent {
private static instance: UserComponent;
public static getInstance(): UserComponent {
this.instance ??= new UserComponent();
return this.instance;
}
private constructor() {}
public greet(): void {
console.log('by8=');
}
}
async function main(): Promise<void> {
const character = UserComponent.getInstance();
character.greet();
}
main();