mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
🆙 Init V3
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { IAvatarInfo } from './IAvatarInfo';
|
||||
|
||||
export class AvatarInfoRentableBot implements IAvatarInfo
|
||||
{
|
||||
public static RENTABLE_BOT: string = 'IRBI_RENTABLE_BOT';
|
||||
|
||||
public name: string = '';
|
||||
public motto: string = '';
|
||||
public webID: number = 0;
|
||||
public figure: string = '';
|
||||
public badges: string[] = [];
|
||||
public carryItem: number = 0;
|
||||
public roomIndex: number = 0;
|
||||
public amIOwner: boolean = false;
|
||||
public amIAnyRoomController: boolean = false;
|
||||
public roomControllerLevel: number = 0;
|
||||
public ownerId: number = -1;
|
||||
public ownerName: string = '';
|
||||
public botSkills: number[] = [];
|
||||
|
||||
constructor(public readonly type: string)
|
||||
{}
|
||||
}
|
||||
Reference in New Issue
Block a user