Dorm3D Room
Dorm3D Room represents the data associated with a room/location in the Dorm3D feature:
Property | Type | Description |
---|---|---|
id | number |
The ID of the shop. |
name | string |
The name of the room. |
type | RoomType |
The type of the room. |
characters | number[] |
List of Dorm3DCharacter ids that can visit this location for free. |
invitable | Dorm3DInvite[] |
List of guests that can be invited to this location. |
memories | number[] |
List of memory IDs available in this location. At the moment these are useless as the data does not provide memories yet. |
servers | AlServer |
Servers this room exists on |
collectables | number[] |
List of Dorm3DCollectable item ids available in this location. |
icons | string |
The icon of the room. Available under https://al.mrlar.dev/<icon>.webp . |
Dorm3D Invite
Dorm3D Invite represents the data associated inviting a character to a location:
Property | Type | Description |
---|---|---|
id | number |
The ID of the character. |
cost | number |
The associated cost. |
currency | Currency |
The currency used. |
discount? | number |
(Optional) Percentage discount |
Dorm3D Character
Dorm3D Character represents the data associated with character/ship that is available in Dorm3D:
Property | Type | Description |
---|---|---|
id | number |
The ID of the ship/character. |
gid | number |
The group ID of the ship. |
name | string |
The name of the character. |
room_id | number |
The ID of their private room. |
icon | string |
The icon of the character. . Available under https://al.mrlar.dev/<icon>.webp . |
servers | AlServer |
Servers this character exists on |
gifts | number[] |
List of Dorm3DGift item ids that can be given to this character. |
furniture | number[] |
List of Dorm3DFurniture item ids that can be placed in their private room. |
rarity | Rarity |
The (ship) rarity of this character. |
favor_levels | FavorLevel[] |
Favor levels this character can reach. |
Favor Level
Favor Level represents the data associated with a single favor level of a Dorm3D Character:
Property | Type | Description |
---|---|---|
needed | number |
Amount of favor needed. |
level | number |
The level index. |
items | ItemDrop[] |
Items granted for reaching this level. |
Dorm3D Gift
Dorm3D Gift represents the data associated with a gift item in Dorm3D it.
It extends Item
with type=27
and additionally provides:
Property | Type | Description |
---|---|---|
purchaseable | boolean |
Whether this item can be bought on demand. |
expires | number |
UNIX timestamp after which this gift cannot be bought anymore, 0 if it can always be bought, -1 if it cannot be bought.. |
ship | number |
ID of the ship this gift is exclusive to, or 0 if it is universal. |
Dorm3D Furniture
Dorm3D Furniture represents the data associated with a furniture item in Dorm3D it.
It extends Item
with type=27
and additionally provides:
Property | Type | Description |
---|---|---|
purchaseable | boolean |
Whether this item can be bought on demand. |
expires | number |
UNIX timestamp after which this furniture cannot be bought anymore, 0 if it can always be bought, -1 if it cannot be bought. |
room_id | number |
The ID of the room this furniture can be placed in. |
furni_type | FurnitureType |
The type of furniture this item represents. |
exclusive | boolean |
Whether this furniture is exclusive to a specific character. This only really makes the game UI tell you it’s valuable |
Dorm3D Collectable
Dorm3D Collectable represents the data associated with a collectable item in Dorm3D it.
It extends Item
with type=27
and additionally provides:
Property | Type | Description |
---|---|---|
room_id | number |
The ID of the room this item can be found in. |
time | number |
The time of day this item can be found 0 is any time, 1 is day and 2 is night. |
Room Type
Room Type is a numeric value with the range [1, 2]
where each
number represents an in-game shop type:
Value | Label |
---|---|
1 | Private Quarter |
2 | Common Area |
Furniture Type
Furniture Type is a numeric value with the range [1, 6]
where each
number represents an in-game shop type:
Value | Label |
---|---|
1 | Wallpaper |
2 | Floor |
3 | Decoration |
4 | Bed |
5 | Couch |
6 | Table |