Skip to content

Instantly share code, notes, and snippets.

@leolion3
Last active March 30, 2024 13:14
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leolion3/ccf654ab60c8e110c65ef948da6af461 to your computer and use it in GitHub Desktop.
Save leolion3/ccf654ab60c8e110c65ef948da6af461 to your computer and use it in GitHub Desktop.
How to set up a Lego Universe Server using DLU

How to set up a Lego Universe Server using DLU

Foreword

This guide showcases how to set up a Darkflame Universe server for Lego Universe on Linux (and the Windows Subsystem for Linux WSL)

It has been tested and deemed working ob both WSL 1 running Ubuntu 20.04, HiveOS (basically Ubuntu 18.04) and on Ubuntu 20.04 Azure and Oracle VMs.

The guide is constantly being updated to be more accurate for inexperienced users and to showcase ways of automating the setup process, as well as showcasing how to automate server maintenance and how to keep it up to date.

Youtube Tutorial

Video Thumbnail

(Semi-)Automatic Installation

(*) As of recently, there is a Dockerfile available for easily building the server. To run this, download it to the folder where the res and locale directories are present, and then just execute docker build . -t lego_universe to build the image, and then run the image using

docker run -p 1001:1001/udp -p 2000:2000/udp -p 2005:2005/udp -p 3000-3300:3000-3300/udp lego_universe

The server will listen on the docker container's ip address by default, and you will be able to access the server on localhost.

Below you can find a tool called buildserver.sh that automatically does almost all the steps in this tutorial. The only thing you need to do is download the client to the machine you wish to build the server on and supply the res folder's location to the tool when prompted. Note: Due to the nature of Bash, usage of ~ is not permitted. Furthermore, leave out the trailing slash and use slashes instead of backslashes. A valid res path would look like this

/home/ubuntu/client/res

Prerequisites

Install the Windows Subsystem for Linux (WSL), it is much easier than doing the stuff in native windows. Or drop Windows for the server altogether and use Linux. This might generally be a good idea as I've had 6 Bluesreens of Death because of memory leaks in the MySQL connector and due to accidentally misconfiguring the server's ini files. On linux the MySQL server would crash, where on Windows it wouldn't be able to handle MySQL crashing in WSL.

After installing wsl, launch a commandline console (Windows Terminal preferrably) and enter "wsl" and hit enter to launch the Windows Subsystem for Linux. On Linux, open a Terminal instance.

Getting the sourcecode

You can get the sourcecode from Darkflame's Github or from my Fork

Installing git

Install git using

sudo apt install git -y

Downloading the sourcecode

To clone the repository, copy the repository link and execute

git clone https://github.com/DarkflameUniverse/DarkflameServer.git --recursive

**Note:** If you forget the "--recursive" tag then you need to initialize the submodules afterwards using

git submodule init
git submodule update --recursive

Installing Required Libraries

To compile the sourcecode you need both cmake and gcc, along with the ZLib library. Install them using

sudo apt update && sudo apt upgrade -y && sudo apt install gcc cmake zlib1g-dev -y

You might have to install build-essential and zlib aswell

sudo apt-get update
sudo apt-get install build-essential -y
sudo apt-get install zlib1g-dev -y

Setting the correct Network Protocol

Nano into the file "CMakeVariables.txt" and set "NET_VERSION" to 171022. If using a DLU Client (modded), set it to 171023.

Nano can be used by typing in "nano" followed by the file you would like to edit. To exit nano, hit CTRL+X then y and then enter to save. If you wish to discard the changes, type n instead of y when prompted.

For example, to edit the CMakeVariables.txt file type in

nano CMakeVariables.txt

Compiling the sourcecode

CD into the directory that was created and then execute the following series of commands

mkdir build
cd build
cmake ..
make

One-liner

mkdir build && cd build && sudo apt update && sudo apt upgrade -y && cmake .. && make

Setting up the database

mariaDB

  • Install MariaDB
sudo apt-get install mariadb-server -y
  • Start the service
sudo /etc/init.d/mysql start

on Linux, you can just execute

sudo service mysql start

instead.

  • Login
sudo mysql -u root -p

and enter the password (if you haven't changed it, the password is also root)

  • Create a new database and name it whatever you like, in this example we're using "darkflame"

CREATE DATABASE `darkflame`;
  • Create a new user for the darkflame server (the server should NOT connect using the root user!)
CREATE USER 'dflame'@'localhost' IDENTIFIED BY 'dflame';
GRANT ALL PRIVILEGES ON darkflame.* TO 'dflame'@'localhost';
  • Note: The user also needs access to the dbo.UNIX_TIMESTAMP subroutine so the WorldServer doesn't crash whenever you load a leaderboard ingame. Execute
GRANT EXECUTE ON PROCEDURE dbo.UNIX_TIMESTAMP TO 'dflame'@'localhost';

or

GRANT EXECUTE ON PROCEDURE UNIX_TIMESTAMP TO 'dflame'@'localhost'; 
  • You can check the available databases to make sure yours was created using
show databases;
  • Select the database using
use darkflame;

Creating tables

  • Either execute the following while in the build/ directory
mysql -u dflame -p darkflame < ../migrations/dlu/0_initial.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/1_unique_charinfo_names.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/2_reporter_id.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/3_add_performance_cost.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/4_friends_list_objectids.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/5_brick_model_sd0.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/6_property_behaviors.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/7_make_play_key_id_nullable.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/8_foreign_play_key.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/9_Update_Leaderboard_Storage.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/10_Security_updates.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/11_fix_cheat_detection_table.sql
  • Or create the tables from the initial.sql file manually (you can copy paste each query - or the whole big query - into the console and then hit enter)
CREATE OR REPLACE TABLE accounts (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    name VARCHAR(35) NOT NULL UNIQUE,
    password TEXT NOT NULL,
    gm_level INT UNSIGNED NOT NULL DEFAULT 0,
    locked BOOLEAN NOT NULL DEFAULT FALSE,
    banned BOOLEAN NOT NULL DEFAULT FALSE,
    play_key_id INT NOT NULL DEFAULT 0,
    created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(),
    mute_expire BIGINT UNSIGNED NOT NULL DEFAULT 0
);
CREATE OR REPLACE TABLE charinfo (
    id BIGINT NOT NULL PRIMARY KEY,
    account_id INT NOT NULL REFERENCES accounts(id),
    name VARCHAR(35) NOT NULL,
    pending_name VARCHAR(35) NOT NULL,
    needs_rename BOOLEAN NOT NULL DEFAULT FALSE,
    prop_clone_id BIGINT UNSIGNED AUTO_INCREMENT UNIQUE,
    last_login BIGINT UNSIGNED NOT NULL DEFAULT 0,
    permission_map BIGINT UNSIGNED NOT NULL DEFAULT 0
);
CREATE OR REPLACE TABLE charxml (
    id BIGINT NOT NULL PRIMARY KEY REFERENCES charinfo(id),
    xml_data LONGTEXT NOT NULL
);
CREATE OR REPLACE TABLE command_log (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    character_id BIGINT NOT NULL REFERENCES charinfo(id),
    command VARCHAR(256) NOT NULL
);
CREATE OR REPLACE TABLE friends (
    player_id BIGINT NOT NULL REFERENCES charinfo(id),
    friend_id BIGINT NOT NULL REFERENCES charinfo(id),
    best_friend BOOLEAN NOT NULL DEFAULT FALSE,
    PRIMARY KEY (player_id, friend_id)
);
CREATE OR REPLACE TABLE leaderboard (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    game_id INT UNSIGNED NOT NULL DEFAULT 0,
    last_played TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(),
    character_id BIGINT NOT NULL REFERENCES charinfo(id),
    time BIGINT UNSIGNED NOT NULL,
    score BIGINT UNSIGNED NOT NULL DEFAULT 0
);
CREATE OR REPLACE TABLE mail (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    sender_id INT NOT NULL DEFAULT 0,
    sender_name VARCHAR(35) NOT NULL DEFAULT '',
    receiver_id BIGINT NOT NULL REFERENCES charinfo(id),
    receiver_name VARCHAR(35) NOT NULL,
    time_sent BIGINT UNSIGNED NOT NULL,
    subject TEXT NOT NULL,
    body TEXT NOT NULL,
    attachment_id BIGINT NOT NULL DEFAULT 0,
    attachment_lot INT NOT NULL DEFAULT 0,
    attachment_subkey BIGINT NOT NULL DEFAULT 0,
    attachment_count INT NOT NULL DEFAULT 0,
    was_read BOOLEAN NOT NULL DEFAULT FALSE
);
CREATE OR REPLACE TABLE object_id_tracker (
    last_object_id BIGINT UNSIGNED NOT NULL DEFAULT 0 PRIMARY KEY
);
CREATE OR REPLACE TABLE pet_names (
    id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    pet_name TEXT NOT NULL,
    approved INT UNSIGNED NOT NULL
);
CREATE OR REPLACE TABLE play_keys (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    key_string CHAR(19) NOT NULL UNIQUE,
    key_uses INT NOT NULL DEFAULT 1,
    created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(),
    active BOOLEAN NOT NULL DEFAULT TRUE
);
CREATE OR REPLACE TABLE properties (
    id BIGINT NOT NULL PRIMARY KEY,
    owner_id BIGINT NOT NULL REFERENCES charinfo(id),
    template_id INT UNSIGNED NOT NULL,
    clone_id BIGINT UNSIGNED REFERENCES charinfo(prop_clone_id),
    name TEXT NOT NULL,
    description TEXT NOT NULL,
    rent_amount INT NOT NULL,
    rent_due BIGINT NOT NULL,
    privacy_option INT NOT NULL,
    mod_approved BOOLEAN NOT NULL DEFAULT FALSE,
    last_updated BIGINT NOT NULL,
    time_claimed BIGINT NOT NULL,
    rejection_reason TEXT NOT NULL,
    reputation BIGINT UNSIGNED NOT NULL,
    zone_id INT NOT NULL
);
CREATE OR REPLACE TABLE ugc (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    account_id INT NOT NULL REFERENCES accounts(id),
    character_id BIGINT NOT NULL REFERENCES charinfo(id),
    is_optimized BOOLEAN NOT NULL DEFAULT FALSE,
    lxfml MEDIUMBLOB NOT NULL,
    bake_ao BOOLEAN NOT NULL DEFAULT FALSE,
    filename TEXT NOT NULL DEFAULT ''
);
CREATE OR REPLACE TABLE properties_contents (
    id BIGINT NOT NULL PRIMARY KEY,
    property_id BIGINT NOT NULL REFERENCES properties(id),
    ugc_id INT NULL REFERENCES ugc(id),
    lot INT NOT NULL,
    x FLOAT NOT NULL,
    y FLOAT NOT NULL,
    z FLOAT NOT NULL,
    rx FLOAT NOT NULL,
    ry FLOAT NOT NULL,
    rz FLOAT NOT NULL,
    rw FLOAT NOT NULL
);
CREATE OR REPLACE TABLE activity_log (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    character_id BIGINT NOT NULL REFERENCES charinfo(id),
    activity INT NOT NULL,
    time BIGINT UNSIGNED NOT NULL,
    map_id INT NOT NULL
);
CREATE OR REPLACE TABLE bug_reports (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    body TEXT NOT NULL,
    client_version TEXT NOT NULL,
    other_player_id TEXT NOT NULL,
    selection TEXT NOT NULL,
    submitted TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP()
);
CREATE OR REPLACE TABLE servers (
    id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    name TEXT NOT NULL,
    ip TEXT NOT NULL,
    port INT NOT NULL,
    state INT NOT NULL,
    version INT NOT NULL DEFAULT 0
);
  • Check to see that all tables were created using
SHOW TABLES;
  • Exit by typing in "exit" and hitting enter

Res Folder Setup

  • In the "build/" directory create a new directory called "res"
mkdir res
  • Copy the folders "maps", "macros", "BrickModels", "names" and the file "chatplus_en_us.txt" from the "res/" folder in your client to the "res/" folder in the server's "build/" folder
  • If you want to be able to use additonal words other than the ones in the chatplus file, execute the following (while in "build/res"):
curl -O https://raw.githubusercontent.com/dwyl/english-words/master/words.txt
cat words.txt >> chatplus_en_us.txt
rm words.txt

This will add "over 466k English words" to the allowed wordlist (including cuss words, you can remove these).

  • [NOTE] In earlier commits the chat didn't work because the "chatplus_en_us.txt" had DOS line endings (\n\r) and these needed to be converted to unix ones (\n). One way to do this is using dos2unix:
sudo apt-get install dos2unix -y
dos2unix chatplus_en_us.txt
  • [NOTE] In earlier commits unapproved pet names also had a visual bug where the background was shifted. This was also due to their DOS line endings. If you face this issue, go into the "names/" directory and execute dos2unix for every txt file in it.
  • Unzip the "/resources/navmeshes.zip" file to "build/res/maps/navmeshes" (the binary files should be inside the folder navmeshes). The following command can be executed from the "build/" directory.
mkdir res/maps/navmeshes/
unzip ../resources/navmeshes.zip res/maps/navmeshes/.

[NOTE] If you missed this step you will notice as soon as stromlings start glitching through walls.

  • In the build directory create a "locale" directory if it does not already exist.
mkdir locale
  • Copy over or create symlinks from "locale.xml" in your client's "locale" directory to the "build/locale" directory (simlink: "ln -s path/to/client/directory/locale/locale.xml locale/locale.xml" - note that the client directory must always be accessible to the server and the location must never change, therefor copying it is recommended)

SQLite Setup

  • Download this using the following command (on Windows execute the following in CMD, DO NOT execute it in Powershell as the syntax will be marked as incorrect, because "curl" in Powershell is an alias of Invoke-WebRequest. You can remove the alias using "Remove-Alias -Name curl" or in powershell 5.x+ "Remove-Item Alias:someAlias")
curl -O https://raw.githubusercontent.com/lcdr/utils/master/utils/fdb_to_sqlite.py

and place it inside the unpacked client's "res" folder, then execute (while in the clients unpacked "res/" folder, on Windows omit the "3" in "python3")

python3 ./fdb_to_sqlite.py ./cdclient.fdb
  • Rename "cdclient.sqlite" into "CDServer.sqlite" and move it from the client's "res/" folder into the server's "build/res" directory. ("build/res/CDServer.sqlite")
  • Install sqlite3
sudo apt install sqlite3 -y
  • Execute the queries found under "migrations/cdserver" (while in "/build/res"). [NOTE] If it says that the files cannot be found, you either did not use the --recursive flag while cloning the directory or did not move the CDServer.sqlite into the right location. Please see above how to initiate the submodules after having already cloned the repository if the first point applies.
sqlite3 CDServer.sqlite < ../../migrations/cdserver/0_nt_footrace.sql
sqlite3 CDServer.sqlite < ../../migrations/cdserver/1_fix_overbuild_mission.sql
sqlite3 CDServer.sqlite < ../../migrations/cdserver/2_script_component.sql
sqlite3 CDServer.sqlite < ../../migrations/cdserver/3_plunger_gun_fix.sql
sqlite3 CDServer.sqlite < ../../migrations/cdserver/4_nt_footrace_parrot.sql

DO NOT DELETE THE cdclient.fdb FILE AS DLU NOW CHECKS FOR ITS EXISTANCE TO DETERMINE THE CLIENT VERSION. If you are updating your server to the latest version, you need to copy the file over again if you deleted it prior to the latest update (October 2022).

INI Files

  • In the build folder there will now be 4 ini files (authconfig.ini, chatconfig.ini, masterconfig.ini, worldconfig.ini, sharedconfig.ini). Nano into each of them (or use whatever other text editor you use) and set the database address to 127.0.0.1 (or localhost), the username and password to the ones you set above in MariaDB and the database name to the name you set above. Example:
mysql_host=127.0.0.1
mysql_database=darkflame
mysql_username=dflame
mysql_password=dflame

Additionally, you might have to add the following line to sharedconfig.ini:

client_location=./res

If you want to run the server locally or online, you will have to also set the "external_ip" accordingly. See section "Online Multiplayer" for help setting this address.

Validate

Before running the server, make sure your "build" directory has the following structure and that no files are missing:

DarkflameServer/
├── build/
|   ├── AuthServer
|   ├── ChatServer
|   ├── MasterServer
|   ├── WorldServer
|   ├── locale/
|   │   └── locale.xml
|   ├── res/
|   |   ├── cdclient.fdb
|   |   ├── CDServer.sqlite
|   |   ├── chatplus_en_us.txt
|   |   ├── macros/
|   |   |   └── ...
|   |   ├── BrickModels/
|   |   |   └── ...
|   |   ├── maps/
|   |   |   ├── navmeshes/
|   |   |   |   └── ...
|   |   |   └── ...
|   |   └── names/
|   |       └── ...
|   ├── authconfig.ini
|   ├── chatconfig.ini
|   ├── masterconfig.ini
|   ├── worldconfig.ini
|   ├── sharedconfig.ini
|   └── ...
└── ...

Adding Admin user and running server

  • While in the server's "build" directory, execute
./MasterServer -a

to add an admin

  • Run the server using
sudo ./MasterServer

(sudo because the port is under 1000 and either needs firewall access or sudo)

Brick-by-Brick Building

Note: it seems like this issue has been fixed and it is no longer required to do any of the following steps. If you're still on an older server version, you should update it.

For Brick-by-Brick building, an HTTP server should be running and returning error code "404-Not Found" at all times on the client side. This can be achieved by running a python simple HTTP server in the background. To do this, execute the following command on a client's machine:

python3 -m http.server 80 &

The HTTP server may later be terminated by bringing it back to the foreground using

fg

and then by hitting CTRL+C.

Alternatively, you can set the client's UGCSERVERIP in the client's boot.cfg file to leolion3.github.io/404 as shown below:

UGCSERVERIP=0:leolion3.github.io/404

Known Errors

Errors in MySQL Connector

If you receive any type of error saying there was an error with the MySQL Connector, then ensure that:

  • the MySQL Service is running
sudo service mysql status
  • The database was configured correctly, and the server is able to access the database you created. To test this, try to manually log into mysql using the username/password you set for the server

mysql -u dflame -p

then check to make sure the database exists

show databases;

then check to make sure the tables exist

use darkflame;
show tables;

the following tables should exist:

+---------------------+
| Tables_in_darkflame |
+---------------------+
| accounts            |
| activity_log        |
| bug_reports         |
| charinfo            |
| charxml             |
| command_log         |
| friends             |
| leaderboard         |
| mail                |
| object_id_tracker   |
| pet_names           |
| play_keys           |
| properties          |
| properties_contents |
| servers             |
| ugc                 |
+---------------------+

then check to make sure the tables configured correctly by attempting to read out some of the data

select * from accounts;

which should return a table containing some data (if you already created an admin), as shown below

+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
| id | name        | password                                                     | gm_level | locked | banned | play_key_id | created_at          | mute_expire |
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
|  1 | TestAccount | $2a$12$N0bXz4ERLQFr9pcrhl3JtekXrj0tLFamObrkDjwi/QGMv46TRHnWm |        9 |      0 |      0 |           0 | 2021-12-05 00:00:00 |           0 |
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+

Manually Updating User Data

If for some reason you need to manually update user data, you can do so by logging into mysql and updating the tables. In this example, I will showcase how to manually update a user's password.

The user passwords are hashed using BCrypt with 12 rounds. For creating the hash and keeping things simple, I will be using an online tool.

Our reference user is going to be a user named "TestAccount" with a current password of "Test" (irrelevant) and an ID of "1" (knowing the user's ID is key to being able to change his data in the table). My current "accounts" table looks like this (see above how to show data from a table in MySQL):

+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
| id | name        | password                                                     | gm_level | locked | banned | play_key_id | created_at          | mute_expire |
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
|  1 | TestAccount | $2a$12$N0bXz4ERLQFr9pcrhl3JtekXrj0tLFamObrkDjwi/QGMv46TRHnWm |        9 |      0 |      0 |           0 | 2021-12-05 00:00:00 |           0 |
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
  • First off, log into mysql using your username/password combination and then select the server's database:
mysql -u dflame -p
USE darkflame;
  • Generate a new password using the online tool. My new password will be "test123" (your hash for the same password will look different because of the different salt used), with a hash value of "$2a$12$J.38IJLJLbvPwkaYsCayqef.9lsXFwyuUFiaAN0Om2XVpzMIvyHjK".
  • Update the "password" column in the "accounts" table using:
UPDATE accounts SET password='$2a$12$J.38IJLJLbvPwkaYsCayqef.9lsXFwyuUFiaAN0Om2XVpzMIvyHjK' WHERE id=1;
  • You should get a prompt telling you the query executed successfully
Query OK, 1 row affected (0.017 sec)
Rows matched: 1  Changed: 1  Warnings: 0
  • Check to see the changed data
select * from accounts;
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
| id | name        | password                                                     | gm_level | locked | banned | play_key_id | created_at          | mute_expire |
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+
|  1 | TestAccount | $2a$12$J.38IJLJLbvPwkaYsCayqef.9lsXFwyuUFiaAN0Om2XVpzMIvyHjK |        9 |      0 |      0 |           0 | 2021-12-05 00:00:00 |           0 |
+----+-------------+--------------------------------------------------------------+----------+--------+--------+-------------+---------------------+-------------+

Client Config

Please ensure that you and your friends change the line UGCUSE3DSERVICES=7:1, in your boot.cfg file to UGCUSE3DSERVICES=7:0,

Not doing this can result in disconnects after finishing certain missions/achievements on an attempted world switch.

Avant Gardens Survival Bug

As stated on the Darkflame Repository: "The client script for the survival minigame has a bug in it which can cause the minigame to not load." Fox fixing this, do the following:

  • open the client's "res/scripts/ai/minigame/survival/l_zone_survival_client.lua" in a text editor. (preferably one with line count displayed)
  • Navigate all the way to the bottom to line 617
  • Where it says "PlayerReady(self)", change it to "onPlayerReady(self)"
  • Save the file, overwriting Read-only mode. If it cannot be edited in Notepad++, click on "Edit" and then on "Clear Read-Only Flag" and repeat the steps above.

Assembly Logo not Displayed

The Assembly Logo is not correctly displayed in some unpacked clients. The reason for this is a misconfigured path in the client's "assembly_sign_anim_sm.kfm" file. To fix it, do the following:

  • open the file "res/animations/3dui/assembly_sign_anim_sm.kfm". Don't worry about all the "NULL" flags, this is due to the nature of the file type.
  • In Notepad++, clear the read only flag. See "Avant Gardens Survival Bug" on how to do this. In other text editors, you will have to overwrite the read-only flag when saving.
  • Replace the very first readable symbol from a "9" to a "(".
  • Replace "z:lwo\4_game\client\res" by .\..\..
  • The resulting file should look like this Screenshot 2021-12-10 015023

Connecting to the server

Based on how your server is hosted, you have to set the server's ip address in the client's "boot.cfg" to either of the following:

  • localhost - if the server is hosted on the same machine
  • The server's IPv4 Address - if the server is hosted on the same network
  • The server's public IP Address - if the server is hosted on a different network.

To change the IP Address in the client, edit the "boot.cfg" file and set the IP Address for both the "PATCHSERVERIP" and "AUTHSERVERIP". A valid configuration for a server on the same network (with an IPv4 Address of "192.168.1.123") would look as shown below.

SERVERNAME=0:Your Server's Name,
PATCHSERVERIP=0:192.168.1.123,
AUTHSERVERIP=0:192.168.1.123,
[... More stuff down here ...]

Automation

Foreword

This section is NOT intended for normal server operators. While the functionalities below are indeed very useful they may be a tad too complex for normal users. You may attempt to set up some of the below functionalities for your server, but you may indeed fail.

Note: Don't forget to enable the x-bit on the bash scripts to be able to execute them (if not using a .sh file extension) using chmod +x filename

Keeping Server Up-to-Date

Now since the server's source code is ever changing, one wants to be able to update the server without losing the current ingame progress. To cope with this, one might want to use 2 repositories instead of 1:

  • One containing the server's source code, which is updated occasionally to include the newest features and bug fixes
  • Another one containing the actual server, which is backed up to the cloud (or to a local resource) to store the users' progress and not have to go through the entire setup process every single time the server is updated.

The way I set this up is with the following structure:

Somefolder/
└── DarkflameServer/
└── Github/
    └── DarkflameServer/

The "DarkflameServer" has the same internal structure of "Github/DarkflameServer", however instead of actually containing the same directories and C++ source files it instead has symlinks to the files inside the "Github/DarkflameServer" directory. This allows me to independantly update the "DarkflameServer" repository without affecting the current server's status, since the "DarkflameServer" directory is also a git repository, which is instead used for backing up the server. To skip the whole "res" folder setup, I also chose to keep the "res" folder in my own repository by removing it from the .gitignore. This means that all I have to do when updating the server's source code is to re-run the "make" instruction and then replace the ini files with my server's config files, where both tasks have also been automated using some bash scripts.

Note: In the following steps, whenever the "original DarkflameServer directory" is mentioned we are talking about the "DarkflameServer/" directory and not about "Github/DarkflameServer". E.g. your own repository with your own version of the server which only contains symlinks, not the actual clone of DarkflameServer by DLU.

To do this yourself

  • Create the top directory and clone a version of "DarkflameServer" into it and set it up as explained above (set up the server as you normally would). After doing so, navigate into the root of the cloned repository and delete the following directories and files:
    • .git - since we are going to set up a different git repository for backing up our server. You may aswell just change the upstream URL inside the .git/config file, but this is not recommended for less experienced people.
    • CMakeLists.txt
    • CMakeVariables.txt
    • dAuthServer
    • dChatFilter
    • dChatServer
    • dCommon
    • dDatabase
    • dGame
    • dMasterServer
    • dNet
    • dPhysics
    • dScripts
    • dNavigation
    • dWorldServer
    • dZoneManager
    • migrations
    • resources
    • thirdparty
    • vanity
    • versions.txt using:
rm -rf .git
rm CMakeLists.txt
rm CMakeVariables.txt
rm -rf dAuthServer
rm -rf dChatFilter
rm -rf dChatServer
rm -rf dCommon
rm -rf dDatabase
rm -rf dGame
rm -rf dMasterServer
rm -rf dNet
rm -rf dPhysics
rm -rf dScripts
rm -rf dNavigatiom
rm -rf dWorldServer
rm -rf dZoneManager
rm -rf migrations
rm -rf resources
rm -rf thirdparty
rm -rf vanity
rm versions.txt
  • Navigate out of the "DarkflameServer" directory and create a new directory called "Github". cd into this directory and clone the "DarkflameServer" repository again.
  • Create symlinks for the previously deleted files to the newly cloned repository (execute these while in the original "DarkflameServer" directory, not the "Github/DarkflameServer" one)
ln -s ../Github/DarkflameServer/CMakeLists.txt CMakeLists.txt
ln -s ../Github/DarkflameServer/CMakeVariables.txt CMakeVariables.txt
ln -s ../Github/DarkflameServer/dAuthServer dAuthServer
ln -s ../Github/DarkflameServer/dChatFilter dChatFilter
ln -s ../Github/DarkflameServer/dChatServer dChatServer
ln -s ../Github/DarkflameServer/dCommon dCommon
ln -s ../Github/DarkflameServer/dDatabase dDatabase
ln -s ../Github/DarkflameServer/dGame dGame
ln -s ../Github/DarkflameServer/dMasterServer dMasterServer
ln -s ../Github/DarkflameServer/dNet dNet
ln -s ../Github/DarkflameServer/dPhysics dPhysics
ln -s ../Github/DarkflameServer/dNavigation dNavigation
ln -s ../Github/DarkflameServer/dScripts dScripts
ln -s ../Github/DarkflameServer/dWorldServer dWorldServer
ln -s ../Github/DarkflameServer/dZoneManager dZoneManager
ln -s ../Github/DarkflameServer/migrations migrations
ln -s ../Github/DarkflameServer/resources resources
ln -s ../Github/DarkflameServer/thirdparty thirdparty
ln -s ../Github/DarkflameServer/vanity vanity
ln -s ../Github/DarkflameServer/versions.txt versions.txt
  • Create a directory called ini_files and cd into it
  • Copy over the 4 ini files you configured previously to this directory
  • Create a file called fix_ini_files:
cp authconfig.ini ../build/authconfig.ini
cp chatconfig.ini ../build/chatconfig.ini
cp masterconfig.ini ../build/masterconfig.ini
cp worldconfig.ini ../build/worldconfig.ini
  • Whenever you rebuild the server, simply cd into ini_files and execute ./fix_ini_files to copy over your configs.
  • Modify the ".gitignore" file inside the original "DarkflameServer" directory to include the "res/" and "locale/" directories:
!build/res/
!build/locale/
  • Create a new repository somewhere (locally or on Github/Gitlab etc.) and clone it locally. Then move the .git directory from it into the original "DarkflameServer" directory. (replacing the one we deleted previously)
  • You may now back-up your server independently, all the while keeping it up to date with Darkflame. (You just have to pull the "Github/DarkflameServer" repository whenever it is updated and recompile your server)

Note: Since the symlinks may break when you clone the repository to a different system, you may want to add a "fixlnks" file in the root of your repository to automate the symlink creation:

rm CMakeLists.txt
rm CMakeVariables.txt
rm dAuthServer
rm dChatFilter
rm dChatServer
rm dCommon
rm dDatabase
rm dGame
rm dMasterServer
rm dServer
rm dNet
rm dPhysics
rm dScripts
rm dWorldServer
rm dZoneManager
rm migrations
rm resources
rm thirdparty
rm vanity
rm cmake
rm versions.txt
ln -s ../Github/DarkflameServer/dServer dServer
ln -s ../Github/DarkflameServer/cmake cmake
ln -s ../Github/DarkflameServer/CMakeLists.txt CMakeLists.txt
ln -s ../Github/DarkflameServer/CMakeVariables.txt CMakeVariables.txt
ln -s ../Github/DarkflameServer/dAuthServer dAuthServer
ln -s ../Github/DarkflameServer/dChatFilter dChatFilter
ln -s ../Github/DarkflameServer/dChatServer dChatServer
ln -s ../Github/DarkflameServer/dCommon dCommon
ln -s ../Github/DarkflameServer/dDatabase dDatabase
ln -s ../Github/DarkflameServer/dGame dGame
ln -s ../Github/DarkflameServer/dMasterServer dMasterServer
ln -s ../Github/DarkflameServer/dNet dNet
ln -s ../Github/DarkflameServer/dPhysics dPhysics
ln -s ../Github/DarkflameServer/dScripts dScripts
ln -s ../Github/DarkflameServer/dWorldServer dWorldServer
ln -s ../Github/DarkflameServer/dZoneManager dZoneManager
ln -s ../Github/DarkflameServer/migrations migrations
ln -s ../Github/DarkflameServer/resources resources
ln -s ../Github/DarkflameServer/thirdparty thirdparty
ln -s ../Github/DarkflameServer/vanity vanity
ln -s ../Github/DarkflameServer/versions.txt versions.txt

Backing up and restoring server database

To back up your server's database, you can dump it to an sql file:

sudo /etc/init.d/mysql start
mysqldump -u dflame -p darkflame > backup.sql
sudo /etc/init.d/mysql stop

The data can also be restored using:

sudo /etc/init.d/mysql start
mysql -u dflame -p darkflame < darkflame.sql
sudo /etc/init.d/mysql stop

If you have set up your own github repository for your server as shown previously, then you might want to automate the back-up process of your database. To do this, in the root of your repository "DarkflameServer/":

  • create a directory called darkflame_database and another one called fix_database.
  • cd into fix_database
  • create a file named export_database:
rm ../darkflame_database/darkflame.sql
sudo /etc/init.d/mysql start
mysqldump -u dflame -p darkflame > ../darkflame_database/darkflame.sql
sudo /etc/init.d/mysql stop
  • create a second file called import_database:
sudo /etc/init.d/mysql start
mysql -u dflame -p darkflame < ../darkflame_database/darkflame.sql
sudo /etc/init.d/mysql stop
  • To export your database you may now execute ./export_database. To import it ./import_database.

Note: See the next section for how to automate the backup process further.

Note: Restoring the database without it being empty will most likely not work. To avoid conflicts in the SQL Database, drop the current one and import your backup instead.

drop database darkflame;
create database darkflame;

Note: If you would like to automate your repo backup using a Cron job while the server is running, then you have to omit the sudo /etc/init.d/mysql start and sudo /etc/init.d/mysql stop commands in the backup script (export_database).

Server run/shutdown/backup automation

To automate the server further, cd into the build directory.

  • Create a file called "runserver":
sudo service mysql start
sudo ./MasterServer
  • Create another file called "endserver":
cd ../fix_database
./export_database
sudo service mysql stop
cd ..
git add .
git commit -m "update database"
git push
  • To run the server, simply execute "./runserver". To stop it and back-up your progress, execute "./endserver", which will automatically back up the database to an sql file and push the stuff to your repository.

Automated Backup using Cron job

Note: if you want to back up your server/database while the server is running then you have to omit the sudo /etc/init.d/mysql start and sudo /etc/init.d/mysql stop in export_database and endserver scripts

  • Create a new cron job using
crontab -e
  • Scroll all the way to the bottom and add a new cron job (The syntax for the first 2 parameters is MM HH, e.g. at what time the job should run. I will set mine to run at 1 am every night). Note that you have to first cd into your server's "build/" directory to be able to execute the backup script, so you need to chain the execution command to a cd command.
* 1 * * * cd /path/to/DarkflameServer/build && ./endserver
  • Exit crontab by pressing ESC and then hitting 0

Multiplayer

To set up the server for multiplayer you need to change the "external_ip" in the masterserver's ini file and the IP Addresses in the client's boot config file (set the client's ip address to whatever you set the server's address in the steps below).

LAN Multiplayer

To play on LAN you need to set the "external_ip" to your local IPv4 address. To get it on windows, execute

ipconfig

and copy the value beside "IPv4 Address"

To get it on Linux, execute

ip route get 1.2
  • If you don't have "ip", use the legacy "ifconfig" command
ifconfig

Online Multiplayer

To create an online multiplayer the "external_ip" needs to be set to your Public IP Address. You can get this by executing

curl https://api.ipify.org

in Linux or on Windows in CMD (Powershell has an Alias that sets Curl to use Invoke-WebRequest, which returns the data inside the Content variable, so in powershell you would have to execute (curl https://api.ipify.org).Content to get the ip address)

Firewall rules and port forwarding

For using online multiplayer you need your firewall to allow access as well as your router to forward the ports to your local machine. Besides the legal limitations on running a Lego Universe online multiplayer server, I would not recommend running a server on your own machine, on your own network, while having this many ports open because of the security concerns it brings with it for inexperienced users. Proceed at your own risk.

Lego Universe requires the following ports to operate:

  • Port 1001 UDP for client authentication
  • Port 2000 UDP for the masterserver
  • Port 2005 UDP for the chat server
  • Ports 3000-3300 (start port is defined in the masterserver's ini and set to 3000) UDP for the worlds
  • Port 5000 TCP for the Account Manager

You will need to both allow access through firewall for these ports as well as forward them.

Note: If you are running advanced networking gear then make sure "L2 Isolation" is NOT enabled. If you are concerned about security, set up the server on a different virtual network and enable some firewall rules. (In Unifi, create a new Network and set it to be isolated from the rest of your networks, then set LAN In rules to Drop any traffic originating from the Network and going into one of your other networks)

Commands and Items

Commands

Notation:

  • <> brackets: this value has to be set
  • [] brackets: this value is optional
Command Functionality GM Level
/gmlevel <level> Set player's GM level. 9 is Mythran, 0 is for normal players.
/gmadditem <itemID> [quantity] Give the player an item (or many if quantity was set) 8

For more see the Darkflame Repo

Special Items

Item Description
Objects_1727_name (Jetpack) 1727
Objects_2243_name (Insta-kill hammer) 2243
#!/usr/bin/env python3
"""
This script can be used to send database dumps to a discord channel.
This is done in my own server to allow my friends to have their own backup of
the server data, should something ever go wrong or they decide to leave the server.
Authored by: Leonard Haddad
Licensed under the MIT License
Requires discord.py module: pip install discord.py
>> pip3 install discord.py
"""
import discord
import datetime
TOKEN = 'YOUR_DISCORD_API_BOT_TOKEN' # Check out: https://www.writebots.com/discord-bot-token/
filename = 'darkflame.sql' # Dump file created by the export_database script
print('\n')
print('========= DLU discord db-dump Tool by Leonard Haddad =========')
print('Github: https://github.com/leolion3')
print('Website: https://leolion.tk/')
print('Provided in accords with the MIT licence')
print('==============================================================')
print('\n')
# Remove user password hashes for their privacy when publicly sending the message in discord.
# To add the password back in (to be able to play from a backup):
# - log into mysql using: mysql -u dflame -pdflame
# - select the darkflame database using: use darkflame;
# - show the available accounts using: select * from accounts; and note down the id of your account (the leftmost column)
# - generate your password again using the tool https://bcrypt-generator.com/
# - insert it back into the database using: update accounts set password='YOUR_NEW_PASSWORD_HASH' where id=YOUR_ACCOUNT_ID;
# - exit mysql using: exit
data = []
with open(filename, 'rb') as f:
for data in f.readlines():
if b'INSERT INTO `accounts` VALUES' in data:
break
if data == []:
print('Password hashes not found! Exiting!')
exit(-1)
data = data.replace(b'INSERT INTO `accounts` VALUES (', b'').replace(b');\n', b'').split(b'),(')
hashes = []
i = 0
for entry in data:
entry = entry.decode().split(',')
entry[2] = "''"
entry = ','.join(entry)
data[i] = entry
i += 1
statement = 'INSERT INTO `accounts` VALUES (' + '),('.join(data) + ');\n'
new_filename = 'darkflame_backup.sql'
with open(new_filename, 'wb+') as w:
with open(filename, 'rb') as f:
for data in f.readlines():
if b'INSERT INTO `accounts` VALUES' in data:
w.write(bytes(statement, 'utf-8'))
else:
w.write(data)
client = discord.Client(intents=discord.Intents.default())
@client.event
async def on_ready():
channel = client.get_channel(YOUR_DISCORD_CHANNEL_ID) # Can be found by right clicking the channel and copying the url. Second >>number<< after the slash is the server id.
await channel.send(f'Latest SQL data dump ({datetime.datetime.now()})', file=discord.File(new_filename))
exit(0)
client.run(TOKEN)
#!/bin/bash
# Tool by Leonard Haddad, https://github.com/leolion3
# Provided in accords with the MIT license
echo ''
echo '\033[0;33m===== DLU Installation Tool by Leonard Haddad ====='
echo '\033[0;36mGithub: https://github.com/leolion3'
echo '\033[0;36mWebsite: https://leolion.tk/'
echo '\033[0;36mProvided in accords with the MIT licence'
echo '\033[0;33m==================================================='
echo ''
echo '\033[1;32mSetup will start in 10 seconds...'
sleep 10
# Set geographic location, required for cmake
echo '\033[0;34m[LOG] Setting geographic data...\033[1;32m'
sudo export TZ=Europe/Minsk && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
echo '\033[0;34m[LOG] Data set.\033[1;32m'
# Install required libraries
echo '\033[0;34m[LOG] Installing dependencies...\033[1;32m'
sudo apt update && sudo apt install --upgrade -y gcc libssl-dev cmake git zlib1g-dev mariadb-server sqlite3 curl python3 python3-pip
sudo apt-get update && sudo apt-get install --upgrade -y build-essential
echo '\033[0;34m[LOG] Libraries installed.\033[1;32m'
# Clone repo and submodules
echo '\033[0;34m[LOG] Cloning repository...\033[1;32m'
git clone https://github.com/DarkflameUniverse/DarkflameServer.git --recursive
cd DarkflameServer
echo '\033[0;34m[LOG] Repository cloned.\033[1;32m'
# Build project
echo '\033[0;34m[LOG] Building project...\033[1;32m'
mkdir -p build && cd build
cmake .. && make
echo '[\033[0;34mLOG] Project built!\033[1;32m'
# Create database
sudo service mysql start
sudo mysql --user="root" --password="root" --execute="CREATE DATABASE darkflame;"
sudo mysql --user="root" --password="root" --execute="CREATE USER 'dflame'@'localhost' IDENTIFIED BY 'dflame';"
sudo mysql --user="root" --password="root" --execute="GRANT ALL PRIVILEGES ON darkflame.* TO 'dflame'@'localhost';"
sudo mysql --user="root" --password="root" --execute="GRANT EXECUTE ON PROCEDURE dbo.UNIX_TIMESTAMP TO 'dflame'@'localhost';"
mysql -u dflame -pdflame darkflame < ../migrations/dlu/0_initial.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/1_unique_charinfo_names.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/2_reporter_id.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/3_add_performance_cost.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/4_friends_list_objectids.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/5_brick_model_sd0.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/6_property_behaviors.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/7_make_play_key_id_nullable.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/8_foreign_play_key.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/9_Update_Leaderboard_Storage.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/10_Security_updates.sql
mysql -u dflame -pdflame darkflame < ../migrations/dlu/11_fix_cheat_detection_table.sql
echo '\033[0;34m[LOG] Created MySQL User and Database.\033[1;32m'
# Create res folder
mkdir -p res
echo '\033[0;34m[LOG] Created "build/res" folder\033[1;32m'
echo '\033[0;33m[MANUAL INTERACTION REQUIRED] Please enter the path to your clients "res/" folder (needs to be on this machine and accessible).\033[1;32m'
read -p ">> Path (include first '/', does not support '~'! Don't add trailing '/'! Example: '/home/myusr/Client/res'): " resPath
# Create dirs
mkdir -p res/maps
mkdir -p res/macros
mkdir -p res/BrickModels
mkdir -p res/names
echo '\033[0;34m[LOG] Copying maps...\033[1;32m'
cp -r "$resPath/maps/"* res/maps/
echo '\033[0;34m[LOG] Copying macros...\033[1;32m'
cp -r "$resPath/macros/"* res/macros/
echo '\033[0;34m[LOG] Copying BrickModels...\033[1;32m'
cp -r "$resPath/BrickModels/"* res/BrickModels/
echo '\033[0;34m[LOG] Copying names and chatplus_en_us.txt...\033[1;32m'
cp -r "$resPath/names/"* res/names/
cp "$resPath/chatplus_en_us.txt" res/chatplus_en_us.txt
# Navmeshes
echo '\033[0;34m[LOG] Unzipping navmeshes...\033[1;32m'
unzip ../resources/navmeshes.zip -d res/maps
# Locale
mkdir -p locale
echo '\033[0;34m[LOG] Created "build/locale" folder.\033[1;32m'
cp "$resPath/../locale/locale.xml" locale/locale.xml
# SQLite
echo '\033[0;34m[LOG] Converting cdclient to CDServer...\033[1;32m'
curl -O https://raw.githubusercontent.com/lcdr/utils/master/utils/fdb_to_sqlite.py
cp "$resPath/cdclient.fdb" cdclient.fdb
python3 fdb_to_sqlite.py cdclient.fdb
echo '\033[0;34m[LOG] Generated CDServer.sqlite.\033[1;32m'
mv cdclient.sqlite res/CDServer.sqlite
mv cdclient.fdb res/cdclient.fdb
sqlite3 res/CDServer.sqlite < ../migrations/cdserver/0_nt_footrace.sql
sqlite3 res/CDServer.sqlite < ../migrations/cdserver/1_fix_overbuild_mission.sql
sqlite3 res/CDServer.sqlite < ../migrations/cdserver/2_script_component.sql
sqlite3 res/CDServer.sqlite < ../migrations/cdserver/3_plunger_gun_fix.sql
sqlite3 res/CDServer.sqlite < ../migrations/cdserver/4_nt_footrace_parrot.sql
sudo rm fdb_to_sqlite.py
# Set IP Address
echo '\033[0;34m[LOG] Enter an IP Address for your server!\033[1;32m'
read -p ">> IP Address: " ipAddress
# Change Addresses in ini files
sed -i -e 's/mysql_host=/mysql_host=localhost/g' authconfig.ini
sed -i -e 's/mysql_host=/mysql_host=localhost/g' chatconfig.ini
sed -i -e 's/mysql_host=/mysql_host=localhost/g' masterconfig.ini
sed -i -e 's/mysql_host=/mysql_host=localhost/g' worldconfig.ini
sed -i -e 's/mysql_host=/mysql_host=localhost/g' sharedconfig.ini
sed -i -e 's/mysql_database=/mysql_database=darkflame/g' authconfig.ini
sed -i -e 's/mysql_database=/mysql_database=darkflame/g' chatconfig.ini
sed -i -e 's/mysql_database=/mysql_database=darkflame/g' masterconfig.ini
sed -i -e 's/mysql_database=/mysql_database=darkflame/g' worldconfig.ini
sed -i -e 's/mysql_database=/mysql_database=darkflame/g' sharedconfig.ini
sed -i -e 's/mysql_username=/mysql_username=dflame/g' authconfig.ini
sed -i -e 's/mysql_username=/mysql_username=dflame/g' chatconfig.ini
sed -i -e 's/mysql_username=/mysql_username=dflame/g' masterconfig.ini
sed -i -e 's/mysql_username=/mysql_username=dflame/g' worldconfig.ini
sed -i -e 's/mysql_username=/mysql_username=dflame/g' sharedconfig.ini
sed -i -e 's/mysql_password=/mysql_password=dflame/g' authconfig.ini
sed -i -e 's/mysql_password=/mysql_password=dflame/g' chatconfig.ini
sed -i -e 's/mysql_password=/mysql_password=dflame/g' masterconfig.ini
sed -i -e 's/mysql_password=/mysql_password=dflame/g' worldconfig.ini
sed -i -e 's/mysql_password=/mysql_password=dflame/g' sharedconfig.ini
sed -i -e "s/external_ip=localhost/external_ip=$ipAddress/g" authconfig.ini
sed -i -e "s/external_ip=localhost/external_ip=$ipAddress/g" chatconfig.ini
sed -i -e "s/external_ip=localhost/external_ip=$ipAddress/g" masterconfig.ini
sed -i -e "s/external_ip=localhost/external_ip=$ipAddress/g" sharedconfig.ini
sed -i -e 's/client_location=/client_location=.\/res/g' sharedconfig.ini
echo '\033[0;33m[READY] INI file variables set. Server is ready.\033[1;32m'
echo '\033[0;34m[LOG] Creating admin account...\033[1;32m'
./MasterServer -a
echo '\033[0;34m[LOG] Admin account created.\033[1;32m'
echo '\033[0;33mSetup complete, exiting...\033[1;32m'
# Circle-CI Pipeline by Leonard Haddad
# Note: This pipeline should be placed within your github repo which is responsible for keeping the server up to date,
# NOT within the Darkflame fork (in your LegoUniverseServer repo)! See my automations on Medium or Github for more info!
version: 2.1
runs-on: self-hosted
jobs:
build:
docker:
- image: ubuntu:latest
steps:
- checkout
- run:
name: "Set geographic location"
command: "export TZ=Europe/Minsk && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && pwd"
- run:
name: "Update repos"
command: "apt update && apt upgrade -y && apt-get update && apt-get upgrade -y"
- run:
name: "Installing GCC"
command: 'apt update && apt install -y gcc'
- run:
name: "Install build essential"
command: 'apt-get update && apt-get install -y build-essential'
- run:
name: "Install CMAKE"
command: 'apt update && apt install -y libssl-dev cmake'
- run:
name: "Create dirs"
command: "cd .. && mkdir Github && cd project"
- run:
name: "Install git"
command: "apt update && apt install git -y"
- run:
name: "Install ZLib"
command: "apt update && apt install -y zlib1g-dev"
- run:
name: "Clone Server"
command: "git clone https://github.com/leolion3/DarkflameServer ../Github/DarkflameServer --recursive"
- run:
name: "Install tinyxml"
command: "apt install -y libasio-dev libtinyxml2-dev"
- run:
name: "Build"
command: "./fixlnks && cd build && sed -i -e 's/add_subdirectory(tests)/#add_subdirectory(tests)/g' ../CMakeLists.txt && cmake .. && make -j8"
workflows:
server-build:
jobs:
- build
#!/usr/bin/env python3
"""
This script can be used to create new users.
To get a new password hash, use the tool https://bcrypt-generator.com/
Authored by: Leonard Haddad
Licensed under the MIT License
Requires mysql-connector-python: https://pypi.org/project/mysql-connector-python/
>> pip3 install mysql-connector-python
"""
import mysql.connector
import sys
print('\n')
print('========= DLU user creation Tool by Leonard Haddad =========')
print('Github: https://github.com/leolion3')
print('Website: https://leolion.tk/')
print('Provided in accords with the MIT licence')
print('============================================================')
print('\n')
if len(sys.argv) < 3:
print('Usage: ./create_account [new_username] [new_password_hash]')
exit(-1)
connection = mysql.connector.connect(
host='localhost',
database='darkflame',
user='dflame',
password='dflame'
)
if not connection.is_connected():
print('Error connecting to database! Terminating...')
exit(-1)
cursor = connection.cursor()
username = sys.argv[1]
password_hash = sys.argv[2]
QUERY = f"insert into accounts values (NULL, '{username}', '{password_hash}', 0, 0, 0, 0, NULL, 0);"
cursor.execute(QUERY)
connection.commit()
connection.close()
#!/usr/bin/env python3
"""
This script can be used to notify a discord channel of server start-ups and shutdowns.
Authored by: Leonard Haddad
Licensed under the MIT License
Requires discord.py module: pip install discord.py
>> pip3 install discord.py
"""
import discord
import sys
import datetime
TOKEN = 'YOUR_DISCORD_API_BOT_TOKEN' # Check out: https://www.writebots.com/discord-bot-token/
print('\n')
print('========= DLU server status Tool by Leonard Haddad =========')
print('Github: https://github.com/leolion3')
print('Website: https://leolion.tk/')
print('Provided in accords with the MIT licence')
print('============================================================')
print('\n')
if len(sys.argv) < 2:
print("Usage: './discord_status_notify start' or './discord_status_notify stop' or './discord_status_notify updated'")
exit(-1)
mode = sys.argv[1]
client = discord.Client(intents=discord.Intents.default())
@client.event
async def on_ready():
channel = client.get_channel(YOUR_CHANNEL_ID) # right click the channel and hit copy url. It is the second >>number<< after the slash
if mode == 'start':
await channel.send(f'Server started up! Time: ({datetime.datetime.now()})')
elif mode == 'stop':
await channel.send(f'Server shut down! Time: ({datetime.datetime.now()})')
elif mode == 'updated':
await channel.send(f'Server was updated! Time: ({datetime.datetime.now()})')
exit(0)
client.run(TOKEN)
FROM ubuntu:20.04
ENV ipAddress localhost
RUN export TZ=Europe/Berlin && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt update && apt install --upgrade -y gcc libssl-dev cmake git zlib1g-dev mariadb-server sqlite3 curl python3 python3-pip
RUN apt-get update && apt-get install --upgrade -y build-essential
WORKDIR /app
RUN git clone https://github.com/DarkflameUniverse/DarkflameServer.git --recursive
WORKDIR /app/DarkflameServer/
RUN mkdir -p build
WORKDIR /app/DarkflameServer/build/
# Update to latest CMake
RUN apt remove --purge --auto-remove cmake -y
RUN apt purge --auto-remove cmake
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
RUN apt install -y software-properties-common lsb-release
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 42D5A192B819C5DA
RUN apt-add-repository "deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main"
RUN apt update
RUN apt install kitware-archive-keyring
RUN rm /etc/apt/trusted.gpg.d/kitware.gpg
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6AF7F09730B3F0A4
RUN apt update
RUN apt install cmake -y
RUN cmake .. && make -j4
RUN service mysql start && mysql --user="root" --password="root" --execute="CREATE DATABASE darkflame;" && mysql --user="root" --password="root" --execute="CREATE USER 'dflame'@'localhost' IDENTIFIED BY 'dflame';" && mysql --user="root" --password="root" --execute="GRANT ALL PRIVILEGES ON darkflame.* TO 'dflame'@'localhost';" && mysql -u dflame -pdflame darkflame < ../migrations/dlu/0_initial.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/1_unique_charinfo_names.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/2_reporter_id.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/3_add_performance_cost.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/4_friends_list_objectids.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/5_brick_model_sd0.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/6_property_behaviors.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/7_make_play_key_id_nullable.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/8_foreign_play_key.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/9_Update_Leaderboard_Storage.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/10_Security_updates.sql && mysql -u dflame -pdflame darkflame < ../migrations/dlu/11_fix_cheat_detection_table.sql
RUN mkdir -p /app/res
RUN mkdir -p /app/res/maps
RUN mkdir -p /app/res/macros
RUN mkdir -p /app/res/BrickModels
RUN mkdir -p /app/res/names
COPY res/maps/ /app/res/maps/
COPY res/macros/ /app/res/macros/
COPY res/BrickModels/ /app/res/BrickModels/
COPY res/names/ /app/res/names/
COPY res/chatplus_en_us.txt /app/res/chatplus_en_us.txt
RUN apt install unzip -y
RUN unzip /app/DarkflameServer/resources/navmeshes.zip -d /app/res/maps
RUN mkdir -p locale
COPY ./locale/locale.xml /app/locale/locale.xml
WORKDIR /app
RUN curl https://raw.githubusercontent.com/lcdr/utils/master/utils/fdb_to_sqlite.py -o /app/fdb_to_sqlite.py
COPY ./res/cdclient.fdb /app/cdclient.fdb
RUN python3 /app/fdb_to_sqlite.py /app/cdclient.fdb
RUN mv /app/cdclient.sqlite /app/res/CDServer.sqlite
RUN mv /app/cdclient.fdb /app/res/cdclient.fdb
RUN sqlite3 /app/res/CDServer.sqlite < /app/DarkflameServer/migrations/cdserver/0_nt_footrace.sql
RUN sqlite3 /app/res/CDServer.sqlite < /app/DarkflameServer/migrations/cdserver/1_fix_overbuild_mission.sql
RUN sqlite3 /app/res/CDServer.sqlite < /app/DarkflameServer/migrations/cdserver/2_script_component.sql
RUN sqlite3 /app/res/CDServer.sqlite < /app/DarkflameServer/migrations/cdserver/3_plunger_gun_fix.sql
RUN sqlite3 /app/res/CDServer.sqlite < /app/DarkflameServer/migrations/cdserver/4_nt_footrace_parrot.sql
RUN rm fdb_to_sqlite.py
WORKDIR /app/DarkflameServer/build
RUN sed -i -e 's/mysql_host=/mysql_host=localhost/g' authconfig.ini
RUN sed -i -e 's/mysql_host=/mysql_host=localhost/g' chatconfig.ini
RUN sed -i -e 's/mysql_host=/mysql_host=localhost/g' masterconfig.ini
RUN sed -i -e 's/mysql_host=/mysql_host=localhost/g' worldconfig.ini
RUN sed -i -e 's/mysql_host=/mysql_host=localhost/g' sharedconfig.ini
RUN sed -i -e 's/mysql_database=/mysql_database=darkflame/g' authconfig.ini
RUN sed -i -e 's/mysql_database=/mysql_database=darkflame/g' chatconfig.ini
RUN sed -i -e 's/mysql_database=/mysql_database=darkflame/g' masterconfig.ini
RUN sed -i -e 's/mysql_database=/mysql_database=darkflame/g' worldconfig.ini
RUN sed -i -e 's/mysql_database=/mysql_database=darkflame/g' sharedconfig.ini
RUN sed -i -e 's/mysql_username=/mysql_username=dflame/g' authconfig.ini
RUN sed -i -e 's/mysql_username=/mysql_username=dflame/g' chatconfig.ini
RUN sed -i -e 's/mysql_username=/mysql_username=dflame/g' masterconfig.ini
RUN sed -i -e 's/mysql_username=/mysql_username=dflame/g' worldconfig.ini
RUN sed -i -e 's/mysql_username=/mysql_username=dflame/g' sharedconfig.ini
RUN sed -i -e 's/mysql_password=/mysql_password=dflame/g' authconfig.ini
RUN sed -i -e 's/mysql_password=/mysql_password=dflame/g' chatconfig.ini
RUN sed -i -e 's/mysql_password=/mysql_password=dflame/g' masterconfig.ini
RUN sed -i -e 's/mysql_password=/mysql_password=dflame/g' worldconfig.ini
RUN sed -i -e 's/mysql_password=/mysql_password=dflame/g' sharedconfig.ini
RUN sed -i -e "s/external_ip=localhost/external_ip=host.docker.internal/g" authconfig.ini
RUN sed -i -e "s/external_ip=localhost/external_ip=host.docker.internal/g" chatconfig.ini
RUN sed -i -e "s/external_ip=localhost/external_ip=host.docker.internal/g" masterconfig.ini
RUN sed -i -e "s/external_ip=localhost/external_ip=host.docker.internal/g" sharedconfig.ini
RUN sed -i -e "s/use_sudo_auth=1/use_sudo_auth=0/g" masterconfig.ini
RUN sed -i -e "s/dont_use_keys=0/dont_use_keys=1/g" authconfig.ini
RUN sed -i -e 's/client_location=/client_location=.\/res/g' sharedconfig.ini
RUN ln -s /app/res /app/DarkflameServer/build/
RUN echo "#!/bin/bash" > /app/entrypoint.sh && \
echo "/etc/init.d/mysql start" >> /app/entrypoint.sh && \
echo "sleep 10" >> /app/entrypoint.sh && \
echo "/app/DarkflameServer/build/MasterServer" >> /app/entrypoint.sh && \
chmod +x /app/entrypoint.sh
EXPOSE 1001/udp 2000/udp 2005/udp 3000-3300/udp
CMD ["/bin/bash", "/app/entrypoint.sh"]
#!/bin/bash
# Tool by Leonard Haddad, https://github.com/leolion3
# Provided in accords with the MIT license
echo ''
echo '\033[0;33m========= DLU database backup Tool by Leonard Haddad ========='
echo '\033[0;36mGithub: https://github.com/leolion3'
echo '\033[0;36mWebsite: https://leolion.tk/'
echo '\033[0;36mProvided in accords with the MIT licence'
echo '\033[0;33m=============================================================='
echo ''
echo '\033[1;32mCreating database dump...'
rm darkflame.sql
mysqldump -u dflame -pdflame darkflame > ./darkflame.sql
echo '\033[1;32mSending database backup to discord...'
./backup_to_discord
echo '\033[1;32mBackup complete!'
echo '\033[1;32mTip: If you havent done so already, make sure to set up a new cron job for this script so that your database is automatically backed up on a daily basis!'

Lego Universe Item/Object Ids

Taken from LUNI Server

Object Ids

Object Name Decimal Value Hexadecimal Value
Small Bag of Faction Tokens 10012 271c
Stromling Pirate 10014 271e
Stromling Admiral 10015 271f
Un-Stink Potion 10021 2725
Nova Starbeam – Model Vendor 10023 2727
Brutus Speck – Model Vendor 10026 272a
Autumn Helix – Model Vendor 10027 272b
Lotus Firehammer – Model Vendor 10028 272c
Squall Aye – Model Vendor 10029 272d
Cup of Yo 10038 2736
Stromling Ape 10041 2739
Basic Smash Behavior 10044 273c
Oliver Sudden – Foot Race Host 10046 273e
Drop Power-Ups Behavior 10048 2740
Play Sound Behavior 10049 2741
Elevator Behavior 10050 2742
Spin Around Behavior 10051 2743
Move Forward and Back Behavior 10056 2748
Patrol Behavior 10057 2749
Move Around Behavior 10058 274a
Proximity Alarm Behavior 10059 274b
Proximity Build Behavior 10060 274c
Greeter Behavior 10061 274d
Auto Elevator Behavior 10062 274e
Basic Enemy Behavior 10063 274f
Juke Box Behavior 10064 2750
Pirate Captain’s Hut Model 10069 2755
Pirate Tower Model 10070 2756
Pirate Idol Model 10071 2757
Palm Tree Model 2 10072 2758
Pirate Staircase Model 10073 2759
Pirate Gate Model 10074 275a
Pirate Wall Model 1 10075 275b
Pirate Wall Model 2 10076 275c
Pirate Wall Model 3 10077 275d
Pirate Wall End Model 10078 275e
Pirate Wall With Gunport Model 10079 275f
Pirate Wall Bridge Model 10080 2760
Pirate Barrel Hut Model 1 10081 2761
Pirate Barrel Hut Model 2 10082 2762
Pirate Barrel Hut Model 3 10083 2763
Pirate Corner Wall Model 10084 2764
Pirate Corner Lookout Model 10085 2765
Pirate Medium Wall Model 10086 2766
Pirate Small Wall Model 10087 2767
Pirate T-Wall Model 10088 2768
Pirate T-Wall With Stairs Model 10089 2769
Pirate Ship Model 5 10090 276a
Pirate Ship Model 1 10091 276b
Pirate Ship Model 3 10092 276c
Pirate Ship Model 2 10093 276d
Pirate Ship Model 4 10094 276e
Medium Bag of Faction Tokens 10095 276f
Large Bag of Faction Tokens 10096 2770
Hess LaCoil – Starbase Technician 10099 2773
Plate 1×2 with Vertical Stub 100 64
Starbase 3001 Ambient 10100 2774
AG Starbase 3001 Mission Giver 10101 2775
Red Double Breasted Uniform 10121 2789
Blue Double Breasted Uniform 10122 278a
Green Soccer Shirt 10123 278b
Island Dolphin Shirt 10124 278c
Queen Shirt 10125 278d
Winged Wrench Shirt 10127 278f
Vampire Shirt 10128 2790
Beta Tester Shirt 10129 2791
Weightlifter Shirt 10130 2792
Fire Brick Shirt 10131 2793
Worker 10137 2799
Nails Henrik – LEGO Club Technician 10138 279a
K-733N – Cleaning Bot 10139 279b
Boss Burno Large3 10145 27a1
Splendid Pants 10164 27b4
Mega Brick Booster Pack 10165 27b5
Bradford Rant Shirt 10167 27b7
Pod 1 Captain Shirt 10168 27b8
Pod 2 Captain Shirt 10169 27b9
Pod 3 Captain Shirt 10170 27ba
Pod 4 Captain Shirt 10171 27bb
Pod 5 Captain Shirt 10172 27bc
Pod 6 Captain Shirt 10173 27bd
Pod 7 Captain Shirt 10174 27be
Forklift with Vertical Fork 10175 27bf
Technic Turntable 10176 27c0
Technic Arrow Gun 6x2x2 10177 27c1
Snake Tail Piece 10178 27c2
Dragon’s Head 10179 27c3
Armored Dragon’s Head 10180 27c4
Technic Universal Joint 10181 27c5
Mindstorms Linear Actuator 10-15 M 10182 27c6
Shark 8×16 10183 27c7
Minifigure Torso with Right Arm Prosthesis 10184 27c8
Train Buffer 1 10185 27c9
Train Buffer 2 10186 27ca
Cow 10187 27cb
Mini Rock Monster 1 10188 27cc
Tile 1×2 with Steering Wheel 10189 27cd
Minifigure Legs 10190 27ce
Mini Bicycle 10191 27cf
Control Stick with Base 10192 27d0
Turntable 4×4 10193 27d1
Hinge Plate 1×2 1×2 Complete 10194 27d2
Turntable 2×2 10195 27d3
Monkey 10196 27d4
Window with Frame 2x6x6 10197 27d5
Horse 10198 27d6
Polar Bear 10199 27d7
Plate 1×2 with Vertical Fork 101 65
Minifigure Torso 10200 27d8
Tabletop Soccer Minifigure Socket 10201 27d9
Click-Turntable 4×4 with Sliding Block 10202 27da
Technic Shock Absorber, Extra Hard 10203 27db
Minifigure Legs with Right Wooden Leg 10204 27dc
Minifigure Torso with Left Hook Prosthesis 10205 27dd
Cannon 10206 27de
Rock Monster 1, Medium Large 10207 27df
Mini Rock Monster 2 10208 27e0
Rock Monster 2, Medium Large 10209 27e1
Drum Holder 2×2 10228 27f4
Drum Ø11 10229 27f5
Tire Ø14 Smooth 10230 27f6
Brick 1×2 with Vertical Pin Top Part 10231 27f7
Brick 1×2 with Vertical Pin Hole Bottom Part 10232 27f8
Treasure chest 2×4 Bottom Part 10233 27f9
Treasure chest 2×4 Lid 10234 27fa
Crocodile, Body 10236 27fc
Crocodile/Dragon Top Jaw 10237 27fd
Crocodile/Dragon Tail 10238 27fe
Dinosaurus Tail 10241 2801
Tyrannosaurus Rex Top Jaw 10243 2803
Triceratops Top Jaw 10244 2804
Body 5x2x4, Left 10245 2805
Body 5x2x4 with Pins, Right 10246 2806
Neck – Tail Rotary Joint 10247 2807
Baby Dino Head 10248 2808
Leg 4x8x5 2/3 10249 2809
Dragon’s Head 2 10250 280a
Dragon’s Tail 10251 280b
Leg 5x8x7 2/3 without Decoration 10252 280c
Cockpit Glass 6x4x2 10253 280d
Horn with Shaft 10254 280e
Technic Shell 3x5x3 10255 280f
Animal Body 4x12x5 10256 2810
Dragon’s Head, Jaw 10257 2811
Glass for Frame 1x2x2 10258 2812
Glass for Frame 1x4x3 10259 2813
Troll, Right Hand 10260 2814
Troll, Left Hand 10261 2815
Troll, Right Arm, Assembled 10262 2816
Troll, Left Arm, Assembled 10263 2817
Turntable 4×4 Bottom Part 10264 2818
BIONICLE Claw 10265 2819
Dragon 10266 281a
Tyrannosaurus Rex Body 4x12x8 10267 281b
Triceratops Body 4x11x5 10268 281c
Stegosaurus Body 4x12x6 10269 281d
Window for Plane Front 6x10x4 10270 281e
Plane Front 6x10x4 with Window 10271 281f
Left Arm for Rock Monster 2, Medium Large 10272 2820
Right Arm for Rock Monster 2, Medium Large 10273 2821
Rising Platform Behavior 10290 2832
White Cat Backpack 10295 2837
Black Cat Backpack 10296 2838
Kendrix Starfish – Property Guard 10299 283b
Plate 2×2 with Bilateral Wheel Bearings 102 66
Sunny Rayhawk – Property Guard 10300 283c
Knuck Brassels – Property Guard 10301 283d
Pre-Order Astronaut Pack 10312 2848
Brown Owl Backpack 10313 2849
Surprise Model Pack 10316 284c
Classical Corner Model 10318 284e
Classical Gate Model 10319 284f
Classical Exterior Gate Model 10320 2850
Classical Wall Model 10321 2851
Classical Short Wall Model 1 10322 2852
Classical Short Wall Model 2 10323 2853
Classical Short Wall Model 3 10324 2854
Classical Short Wall Model 4 10325 2855
Classical Short Wall Model 5 10326 2856
Classical Short Wall Model 6 10327 2857
House Bathtub Model 1 10328 2858
House Bathtub Model 2 10329 2859
House Closed Door Model 1 10330 285a
House Open Door Model 1 10331 285b
House Closed Door Model 2 10332 285c
House Open Door Model 2 10333 285d
House Closed Door Model 3 10334 285e
House Open Door Model 3 10335 285f
House Kitchen Model 1 10336 2860
House Kitchen Model 2 10337 2861
House Kitchen Model 3 10338 2862
House Laundry Model 1 10339 2863
House Laundry Model 2 10340 2864
House Library Model 1 10341 2865
House Library Model 2 10342 2866
House Library Model 3 10343 2867
House Library Model 4 10344 2868
House Toilet Model 2 10345 2869
House Vanity Model 1 10346 286a
House Vanity Model 2 10347 286b
House Vanity Model 3 10348 286c
House Vanity Model 4 10349 286d
House Wall Arch Model 10350 286e
House Wall Art Model 1 10351 286f
House Wall Art Model 2 10352 2870
House Wall Blank Model 1 10353 2871
House Wall Blank Model 2 10354 2872
House Wall Blank Model 3 10355 2873
House Wall Corner Model 1 10356 2874
House Wall Corner Model 2 10357 2875
House Wall Corner Model 3 10358 2876
House Wall Fireplace Model 1 10359 2877
House Window Model 1 10360 2878
House Window Model 2 10361 2879
House Window Model 3 10362 287a
House Window Model 4 10363 287b
House Window Model 5 10364 287c
House Window Model 6 10365 287d
Farm Barn Back Model 10366 287e
Farm Barn Front Model 10367 287f
Farm Barn Middle Model 10368 2880
Farm Silo Model 1 10369 2881
Farm Silo Model 2 10370 2882
Farm Tractor Model 10371 2883
Farm Trailer Model 10372 2884
Farm Fence Gate Model 10373 2885
Farm Fence Short Model 10374 2886
Farm Fence Tall Model 10375 2887
Stromling Pirate 10378 288a
Stromling Admiral 10379 288b
Dark Ronin 10380 288c
Maelstrom Horseman 10381 288d
Basic Platform Model 10385 2891
Basic Platform Behavior 10388 2894
House Model Pack 1 10396 289c
House Model Pack 2 10397 289d
House Model Pack 3 10398 289e
House Model Pack 4 10399 289f
Plate 1×2 with Handle Type 2 103 67
House Model Pack 5 10400 28a0
House Model Pack 6 10401 28a1
Fancy Tree Model Pack 10417 28b1
Toy Robot Behavior 10422 28b6
AG Property Pushback Platform – Interact Behavior 10424 28b8
AG Property Pushback Platform 1 10426 28ba
Basic Shortsword 10431 28bf
Basic Spear 10432 28c0
Basic Hammer 10433 28c1
Elite Battle Axe 10434 28c2
Survival Strombie 10435 28c3
Improved Scythe of Whirlwind 10436 28c4
AG Property Pushback Platform – Touch Behavior 10444 28cc
Basic Smash Behavior 10446 28ce
Basic Platform Behavior 10447 28cf
Spin Right Behavior 10448 28d0
Circular Patrol Behavior 10449 28d1
Alarm Behavior 10450 28d2
Remote Detonator Behavior 10451 28d3
Dynamite Behavior 10452 28d4
Greeter Behavior 10453 28d5
Build Event Rocket Pack 10458 28da
Basic AI Behavior 10461 28dd
Imagination Dispenser Behavior 10489 28f9
Advanced Smash Behavior 10490 28fa
Damage Behavior 10491 28fb
Unleash Power-Ups Behavior 10492 28fc
Stromling 10495 28ff
Stromling Pirate 10497 2901
Dark Ronin 10498 2902
Slope Brick 1x1x2/3 104 68
Carrot 10507 290b
Snowshoe 10508 290c
Dark Ronin 10512 2910
Pirate Fort Model Pack 1 10513 2911
Pirate Fort Model Pack 2 10514 2912
Pirate Fort Model Pack 3 10515 2913
Pirate Fort Model Pack 4 10516 2914
Pre-Order Book 10519 2917
Beta Tester Book 10520 2918
LEGO Club Book 10521 2919
Slope Brick 1×3 Curved 105 69
Stromling Mech 10695 29c7
Stromling Ape 10696 29c8
Dark Spiderling 10697 29c9
Bradford Rant Book 10698 29ca
Subscription Renewal Book 10699 29cb
Rim Ø18 Wide 106 6a
Brickmaster Model Pack 10700 29cc
Robot Citizen 10742 29f6
Robot Citizen 10743 29f7
Robot Citizen 10744 29f8
Robot Citizen 10745 29f9
Blue Starfish 10746 29fa
Pink Starfish 10747 29fb
Chester the Moose 10748 29fc
Drill Press Model 10750 29fe
Fortress Archway Model 10751 29ff
Fortress Big Bonsai Model 10752 2a00
Fortress Cart Model 10753 2a01
Fortress Dojo Part Model 10754 2a02
Fortress Dragon Kite Model 10755 2a03
Fortress Dragon Statue Model 10756 2a04
Fortress Elevator Model 10757 2a05
Fortress Gong Model 10758 2a06
Fortress Inside Corner Model 10759 2a07
Fortress Lantern Model 10760 2a08
Fortress Large Outside Corner Model 10761 2a09
Fortress Large Wall Model 10762 2a0a
Fortress Big Lizard Shrine Model 10763 2a0b
Fortress Pond Model 10764 2a0c
Fortress Ramp Model 10765 2a0d
Fortress Small Outside Corner Model 10766 2a0e
Fortress Small Wall Model 10767 2a0f
Fortress Sun Dial Model 10768 2a10
Fortress Wall Gate Model 10769 2a11
Fortress Wall Gate Sliding Door Model 10770 2a12
Fortress Watch Tower Model 10771 2a13
Fortress Zen Garden Model 1 10772 2a14
Fortress Zen Garden Model 2 10773 2a15
Fortress Zen Garden Model 3 10774 2a16
Fortress Zen Garden Model 4 10775 2a17
Fortress Zen Garden Model 5 10776 2a18
Fortress Zen Garden Model 6 10777 2a19
Fortress Zen Garden Model 7 10778 2a1a
Fortress Zen Garden Model 8 10779 2a1b
Fortress Zen Garden Model 9 10780 2a1c
Toolchest Model 1 10781 2a1d
Toolchest Model 2 10782 2a1e
Workbench Model 10783 2a1f
AC Unit Model 10788 2a24
Bird Post Model 10789 2a25
Brown Chair Model 10790 2a26
Brown Chair With Arms Model 10791 2a27
Brown Couch Model 10792 2a28
Brown Dining Table Model 10793 2a29
Brown Dining Table With Chair Model 10794 2a2a
Brown Table Model 2 10795 2a2b
Brown Table Model 1 10796 2a2c
China Cabinet Model 10797 2a2d
Deer Head Model 10798 2a2e
Drinking Fountain Model 1 10799 2a2f
Glass for Frame 1x4x6 107 6b
Generator Model 10800 2a30
Grandfather Clock Model 10801 2a31
Green Flames Model 10802 2a32
Playground Pig Ride Model 10803 2a33
Playground Ride Model 10804 2a34
See Saw Model 10805 2a35
Throne Model 10806 2a36
Trough and Horses Model 10807 2a37
Water Pump Model 10808 2a38
Armchair Model 10809 2a39
Bathtub Model 10810 2a3a
Black Silver Chair Model 10811 2a3b
Black Silver Dining Table Model 10812 2a3c
Brown Silver Chair Model 10813 2a3d
Brown Silver Dining Table Model 10814 2a3e
Coffee Table Model 10815 2a3f
Deck Chair Model 10816 2a40
Dog House Model 10817 2a41
Dollhouse Model 10818 2a42
Double Bed Model 10819 2a43
Evergreen Plant Model 10820 2a44
King Bed Model 10821 2a45
Large Plant Model 10822 2a46
Lime Blue Table Model 10823 2a47
Lounge Chair Model 1 10824 2a48
Love Seat Model 2 10825 2a49
Love Seat Model 1 10826 2a4a
Blue Polka Dot Chair Model 10827 2a4b
Lime Polka Dot Chair Model 10828 2a4c
Pink Polka Dot Chair Model 10829 2a4d
Yellow Polka Dot Chair Model 10830 2a4e
Sink Model 10831 2a4f
Small Plant Model 10832 2a50
Red and White Sofa Model 10833 2a51
Sofa Table Model 10834 2a52
Step Stool Model 10835 2a53
Tan Chair Model 10836 2a54
Toilet Model 10837 2a55
Wooden Chair Model 10838 2a56
Wooden Dining Table Model 10839 2a57
Flamingo Model 10840 2a58
Sun Dial Model 10841 2a59
Fruit Cart Model 10842 2a5a
Rickshaw Model 10843 2a5b
Lamp Model 10844 2a5c
Plant Model 10845 2a5d
TV Set Model 10846 2a5e
Bird Bath Model 2 10847 2a5f
Drinking Fountain Model 2 10848 2a60
Dumpster Model 10849 2a61
Flower Statue Model 10850 2a62
Gnome Model 10851 2a63
Anvil Model 10852 2a64
Crane Game Model 10853 2a65
Electric Radiator Model 10854 2a66
Espresso Machine Model 10855 2a67
Fireplace Model 10856 2a68
Flower Model 10857 2a69
Fountain Model 10858 2a6a
Fridge Model 10859 2a6b
Furnace Model 10860 2a6c
Guide Model 10861 2a6d
Gum Dispenser Model 10862 2a6e
Ice Cabinet Model 10864 2a70
Ice Cooler Model 10865 2a71
Mushroom Model 10866 2a72
Newspaper Stand Model 10867 2a73
Park Bunny Model 10868 2a74
Phone Booth Model 10869 2a75
Picnic Model 10870 2a76
Pirate Steering Wheel Toy Model 10871 2a77
Record Player Model 10872 2a78
Sand Castle Model 10873 2a79
Space Crane Model 10874 2a7a
Table Saw Model 10875 2a7b
Tread Mill Model 10876 2a7c
Toy Duck Model 10877 2a7d
Toy Excavator Model 10878 2a7e
Toy Push Car Model 10879 2a7f
Toy Tractor Model 10880 2a80
Warning Sign Model 10882 2a82
Water Heater Model 10883 2a83
Water Well Model 10884 2a84
Workbench Model 10887 2a87
Birdhouse Model 10888 2a88
Bird Bath Model 3 10889 2a89
Lounge Chair Model 2 10890 2a8a
Draggle 10984 2ae8
m30325 10990 2aee
m62408 10991 2aef
Proximity Rebuild Behavior 10993 2af1
Manipulate Model Behavior 10996 2af4
Touch Sensitive Platform Behavior 10997 2af5
Washing Machine Brick 109 6d
Proximity Build Behavior 11030 2b16
Fragile Model Behavior 11032 2b18
Sounds on Touch Behavior 11033 2b19
Technic 15M Beam 11039 2b1f
Cone 1×1 11040 2b20
Plate 1×1 with Collar and Bilateral Studs 110 6e
BroadSword 11113 2b69
Elephant Head 11114 2b6a
Black Sheep Behavior 11115 2b6b
Ninja Guard 11128 2b78
Plate 2x4x1 1/3 with Side Bows 11134 2b7e
Tire Ø21×12 Normal, Wide 11135 2b7f
Wall 1x4x5 with Bowed Window 11137 2b81
Plate 1×1 with Vertical Clip 11141 2b85
Otto Matic – Starbase Technician 11142 2b86
Ninja Fortress Model Pack 1 11160 2b98
Ninja Fortress Model Pack 2 11161 2b99
Ninja Garden Model Pack 1 11162 2b9a
Mouse Behavior 11163 2b9b
Yam Waterwolf – Racing Vendor 11177 2ba9
Beta Testing Gear Pack 11181 2bad
Robot City Rocket Nose Cone 11189 2bb5
Robot City Rocket Cockpit 11190 2bb6
Robot City Rocket Engine 11191 2bb7
Jadeoria Rocket Nose Cone 11192 2bb8
Jadeoria Rocket Cockpit 11193 2bb9
Jadeoria Rocket Engine 11194 2bba
Imagination Spinjitzu Double-Bladed Dagger 11195 2bbb
Shipwreck Hideout Model 1 11197 2bbd
Shipwreck Hideout Model 2 11198 2bbe
Shipwreck Hideout Model 3 11199 2bbf
Slope Brick 45° 1×2 Inverted 111 6f
Shipwreck Hideout Model 4 11200 2bc0
Boundless Possibilities Model 11201 2bc1
White Owl Backpack 11207 2bc7
Robot City Welder 11209 2bc9
Jadeoria Fly 11210 2bca
Moonbase Fuel Rod 11211 2bcb
Stromling Invader 11212 2bcc
Stromling Mech Invader 11213 2bcd
Dark Spiderling Invader 11214 2bce
Stromling Pirate Invader 11215 2bcf
Stromling Admiral Invader 11216 2bd0
Stromling Ape Invader 11217 2bd1
Dark Ronin Invader 11218 2bd2
Maelstrom Horseman Invader 11219 2bd3
Maelstrom Dragon Invader 11220 2bd4
Newtestdude 11222 2bd6
Testdude2 11223 2bd7
Torchblight – Maelstrom Dragon 11225 2bd9
Burnshout – Maelstrom Dragon 11226 2bda
Moonbase Circuit Board 11228 2bdc
Unit 32 11232 2be0
Unit 16 11233 2be1
Unit 64 11234 2be2
2by3 11235 2be3
Commander Han Nibble 11236 2be4
Dee the Chickadee 11237 2be5
Muldone 11238 2be6
Muldone 11239 2be7
Muldone 11240 2be8
Muldone 11241 2be9
Muldone 11242 2bea
ND – Seabury Ryan 11244 2bec
ND – puccio matt 11245 2bed
ND – Grundy Peter 11246 2bee
Daily Token Pack 11256 2bf8
Maelstrom Beaver 11259 2bfb
Maelstrom Rabbit 11260 2bfc
nd – brubaker chris 11263 2bff
Grabble 11265 2c01
Sentinel Shield 11272 2c08
NPC Brick Fury HoloHUD1 11283 2c13
Dino-Pack 11286 2c16
Grey T-Rex Backpack 11287 2c17
White Top Hat 11291 2c1b
NPC Grunt Helmet Red 11292 2c1c
NPC Grunt Armor Red 11293 2c1d
nd – brown scott 11294 2c1e
Peppy’s Black Mug 11298 2c22
Handsome Mug 11299 2c23
Foliate Tree, Globe 112 70
Nate the Snake 11300 2c24
BestBuy Reward Pack 11309 2c2d
Sears Reward Pack 11310 2c2e
Best Buy Reward Pack 11311 2c2f
Amazon Reward Pack 11312 2c30
GameStop Reward Pack 11313 2c31
Target Reward Pack 11314 2c32
Founder’s Reward Pack 11315 2c33
12 Month Subscriber Reward Pack 11316 2c34
LEGO Universe Experience Reward Pack 11317 2c35
DJ Microphone 11318 2c36
Baggle 11387 2c7b
Zaggle 11388 2c7c
Slope Brick 25° 2×3 113 71
Improved Revolver 11432 2ca8
Frog Hat Set 11455 2cbf
Adventurer Whip 2 11458 2cc2
Adventurer Whip 3 11459 2cc3
Inventor Offhand 2 – Proxy 11460 2cc4
Inventor Offhand 3 – Proxy 11461 2cc5
Shinobi Offhand 2 – Proxy 11462 2cc6
Shinobi Offhand 3 – Proxy 11463 2cc7
Jingle Blazer Engine Panel 11498 2cea
Jingle Blazer Front Bumper 11499 2ceb
Slope Brick 25° 1×3 Inverted 114 72
Jingle Blazer Rear Bumper 11501 2ced
Jingle Blazer Rear Panel 11502 2cee
Jingle Blazer Side Panels 11503 2cef
nd – sherland chris 11504 2cf0
Choo-Choo Charger Engine Panel 11505 2cf1
nd – atencio phillip 11506 2cf2
Choo-Choo Charger Front Bumper 11507 2cf3
Choo-Choo Charger Rear Bumper 11508 2cf4
Choo-Choo Charger Rear Panel 11509 2cf5
Choo-Choo Charger Side Panels 11510 2cf6
Airport Airplane Model 1 11526 2d06
Airport Airplane Model 2 11527 2d07
Airport Airplane Model 3 11528 2d08
Airport Airplane Model 4 11529 2d09
Airport Airplane Model 5 11530 2d0a
Airport Airplane Model 6 11531 2d0b
Airport Airplane Model 7 11532 2d0c
Airport Baggage Empty Cart Model 11533 2d0d
Airport Baggage Full Cart Model 11534 2d0e
Airport Baggage Claim Model 11535 2d0f
Airport Baggage Conveyor Model 11536 2d10
Airport Barrier Model 1 11537 2d11
Airport Barrier Model 2 11538 2d12
Airport Barrier Model 3 11539 2d13
Airport Lowered Cargo Lift Model 1 11540 2d14
Airport Raised Cargo Lift Model 1 11541 2d15
Airport Lowered Cargo Lift Model 2 11542 2d16
Airport Raised Cargo Lift Model 2 11543 2d17
Airport Cart Model 1 11544 2d18
Airport Cart Model 2 11545 2d19
Airport Cart Model 3 11546 2d1a
Airport Cart Model 4 11547 2d1b
Airport Cart Model 5 11548 2d1c
Airport Chairs Model 1 11549 2d1d
Airport Chairs Model 2 11550 2d1e
Airport Check In Model 11551 2d1f
Airport Check In Desk Model 11552 2d20
Airport Column Model 1 11553 2d21
Airport Column Model 2 11554 2d22
Airport Entrance Model 1 11555 2d23
Airport Escalator Model 11556 2d24
Airport Firetruck Model 1 11557 2d25
Airport Firetruck Model 2 11558 2d26
Airport Fueltruck Model 1 11559 2d27
Airport Fueltruck Model 2 11560 2d28
Airport Gate Model 11561 2d29
Airport Helicopter Model 1 11562 2d2a
Airport Helicopter Model 2 11563 2d2b
Airport Helicopter Model 4 11564 2d2c
Airport Blue Lights Model 11565 2d2d
Airport Clear Lights Model 11566 2d2e
Airport Red Lights Model 11567 2d2f
Airport Yellow Lights Model 11568 2d30
Airport Monitors Model 11569 2d31
Airport Phone Model 1 11570 2d32
Airport Phone Model 2 11571 2d33
Airport Security Model 1 11572 2d34
Airport Security Model 2 11573 2d35
Airport Stairs Model 1 11574 2d36
Airport Tower Model 11575 2d37
Airport Tractor Model 11576 2d38
Airport Trashcan Model 1 11577 2d39
Airport Trashcan Model 2 11578 2d3a
Airport Trashcan Model 3 11579 2d3b
Airport Wall Model 1 11580 2d3c
Airport Wall Model 2 11581 2d3d
Airport Wall Model 3 11582 2d3e
Airport Wall Model 4 11583 2d3f
Airport Wall Model 5 11584 2d40
Airport Wall Model 6 11585 2d41
Airport Wall Model 7 11586 2d42
Airport Corner Wall Model 11587 2d43
Airport Gusset Corner Wall Model 11588 2d44
Airport Gusset Straight Wall Model 11589 2d45
Airport Wheelchair Model 11590 2d46
Airport Windsock Model 11591 2d47
Farm Barn Door Model 1 11592 2d48
Farm Barn Door Model 2 11593 2d49
Farm Barn Door Model 3 11594 2d4a
Farm Barn Door Model 4 11595 2d4b
Farm Barn Door Model 5 11596 2d4c
Farm Barn Door Model 6 11597 2d4d
Farm Barn Door Model 7 11598 2d4e
Farm Barn Door Model 8 11599 2d4f
Slope Brick 75° 1x2x3 115 73
Farm Barn Short End Model 11600 2d50
Farm Barn Tall End Model 11601 2d51
Farm Barn Porch Model 11602 2d52
Farm Barn Porch Corner Model 11603 2d53
Farm Barn Shed End Model 11604 2d54
Farm Barn Shed End Left Model 11605 2d55
Farm Barn Shed End Right Model 11606 2d56
Farm Barn Shed Side Model 11607 2d57
Farm Barn Side Short Model 11608 2d58
Farm Barn Side Tall Model 11609 2d59
Farm Barn Side Tall Window Model 11610 2d5a
Farm Barn Wall Arch Model 11611 2d5b
Farm Barn Window Model 1 11612 2d5c
Farm Barn Window Model 2 11613 2d5d
Farm Barn Window Model 3 11614 2d5e
Farm Barn Window Model 4 11615 2d5f
Farm Barn Window Model 5 11616 2d60
Farm Barn Window Model 6 11617 2d61
Farm Barn Window Model 7 11618 2d62
Farm Barn Window Model 8 11619 2d63
Farm Barn Window Model 9 11620 2d64
Construction Barricade 1 Model 11621 2d65
Construction Barricade 2 Model 11622 2d66
Construction Barricade 3 Model 11623 2d67
Construction Compactor Model 11624 2d68
Construction Cone Model 11625 2d69
Construction Closed Container Model 11626 2d6a
Construction Closed Container 2 Model 11627 2d6b
Construction Closed Container 3 Model 11628 2d6c
Construction Open Container 1 Model 11629 2d6d
Construction Open Container 2 Model 11630 2d6e
Construction Open Container 3 Model 11631 2d6f
Construction Crane 1 Model 11632 2d70
Construction Crane 2 Model 11633 2d71
Construction Fence 1 Model 11634 2d72
Construction Fence 2 Model 11635 2d73
Construction Fence 3 Model 11636 2d74
Construction Generator Model 11637 2d75
Construction Lift 1 Model 11638 2d76
Construction Lift 2 Model 11639 2d77
Construction Lift 3 Model 11640 2d78
Construction Lift 4 Model 11641 2d79
Construction Light Trailer Model 11642 2d7a
Construction Loader 1 Model 11643 2d7b
Construction Loader 2 Model 11644 2d7c
Construction Rock Model 11645 2d7d
Construction Scaffold 1 Model 11646 2d7e
Construction Scaffold 2 Model 11647 2d7f
Construction Scaffold 3 Model 11648 2d80
Construction Shovel Model 11649 2d81
Construction Sign 1 Model 11650 2d82
Construction Sign 2 Model 11651 2d83
Construction Stairs 1 Model 11652 2d84
Construction Steamroller Model 11653 2d85
Construction Supplies 1 Model 11654 2d86
Construction Supplies 2 Model 11655 2d87
Construction Trailer 1 Model 11656 2d88
Construction Trailer 2 Model 11657 2d89
Construction Truck 1 Model 11658 2d8a
Construction Truck 2 Model 11659 2d8b
Construction Truck 3 Model 11660 2d8c
Construction Truck 4 Model 11661 2d8d
Construction Truck 5 Model 11662 2d8e
Construction Truck 6 Model 11663 2d8f
Construction Truck 7 Model 11664 2d90
Construction Truck 8 Model 11665 2d91
Construction Truck 9 Model 11666 2d92
Doom Star Module Model 1 11667 2d93
Doom Star Module Model 2 11668 2d94
Doom Star Module Model 3 11669 2d95
Doom Star Module Model 4 11670 2d96
Doom Star Module Model 5 11671 2d97
Doom Star Module Model 6 11672 2d98
Doom Star Module Model 7 11673 2d99
Doom Star Module Model 8 11674 2d9a
Doom Star Module Model 9 11675 2d9b
Doom Star Module Model 10 11676 2d9c
Doom Star Module Model 11 11677 2d9d
Doom Star Module Model 12 11678 2d9e
Doom Star Module Model 13 11679 2d9f
Doom Star Module Model 14 11680 2da0
Doom Star Module Model 15 11681 2da1
Doom Star Module Model 16 11682 2da2
Doom Star Trench Model 1 11683 2da3
Doom Star Trench Model 2 11684 2da4
Doom Star Trench Model 3 11685 2da5
Doom Star Trench Model 4 11686 2da6
Doom Star Trench Model 5 11687 2da7
Doom Star Trench Model 6 11688 2da8
Doom Star Trench Model 7 11689 2da9
Doom Star Trench Model 8 11690 2daa
Doom Star Trench Inside Corner Model 11691 2dab
Doom Star Trench Outside Corner Model 11692 2dac
Farm Bale Model 11693 2dad
Farm Baler Model 11694 2dae
Farm Barn Back Model 11695 2daf
Farm Barn Front Model 11696 2db0
Farm Barn Middle Model 11697 2db1
Farm Chicken Model 11698 2db2
Farm Chicken Coop Model 11699 2db3
Plate 2×2 with 2 Snaps 116 74
Farm Chopper Model 11700 2db4
Farm Clothesline Model 11701 2db5
Farm Disc Model 11702 2db6
Farm Feed Trough Model 11703 2db7
Farm 4WD Model 11704 2db8
Farm Garden Model 1 11705 2db9
Farm Garden Model 2 11706 2dba
Farm Harvest Wagon Model 11707 2dbb
Farm Horse Trailer Model 11708 2dbc
Farm Pickup Model 11709 2dbd
Farm Sheep Model 11710 2dbe
Farm Silo Model 1 11711 2dbf
Farm Silo Model 2 11712 2dc0
Farm Tractor Model 1 11713 2dc1
Farm Trailer Model 11714 2dc2
Farm Truck Model 11715 2dc3
Farm Windmill Model 11716 2dc4
Farm Fence Gate Model 11717 2dc5
Farm Fence Short Model 11718 2dc6
Farm Fence Tall Model 11719 2dc7
Mech Bay Ball-Bot Model 11720 2dc8
Mech Bay Ball-Bot Base Corner Model 11721 2dc9
Mech Bay Ball-Bot Base Elevator Model 11722 2dca
Mech Bay Ball-Bot Base Energy Fence Model 11723 2dcb
Mech Bay Ball-Bot Base Gate Model 11724 2dcc
Mech Bay Ball-Bot Base Power Generator Model 11725 2dcd
Mech Bay Ball-Bot Base Sensor Tower Model 11726 2dce
Mech Bay Ball-Bot Base Spare Part Model 11727 2dcf
Mech Bay Ball-Bot Base Tall Corner Model 11728 2dd0
Mech Bay Ball-Bot Bay Model 11729 2dd1
Mech Bay Ball-Bot Boss Model 11730 2dd2
Mech Bay Service Ball-Bot Model 11731 2dd3
Micro City Block 1 Model 11732 2dd4
Micro City Block 2 Model 11733 2dd5
Micro City Block 3 Model 11734 2dd6
Micro City Block 4 Model 11735 2dd7
Micro City Block Corner 1 Model 11736 2dd8
Micro City Block Corner 2 Model 11737 2dd9
Micro City Block Corner 3 Model 11738 2dda
Micro City Block Corner 4 Model 11739 2ddb
Micro City Gas Station 1 Model 11740 2ddc
Micro City Gas Station 2 Model 11741 2ddd
Micro City House 1 Model 11742 2dde
Micro City House 2 Model 11743 2ddf
Micro City House 3 Model 11744 2de0
Micro City Office Building Model 11745 2de1
Micro City Skyscraper with Monkey Model 11746 2de2
Micro City Town Hall Model 11747 2de3
Micro City Monster with Car Model 11748 2de4
Micro City Fountain Model 11749 2de5
Micro City Plain Model 11750 2de6
Micro City Statue Model 11751 2de7
Micro City Trees Model 11752 2de8
Micro City Car 1 Model 11753 2de9
Micro City Car 2 Model 11754 2dea
Micro City Car 3 Model 11755 2deb
Micro City Car 4 Model 11756 2dec
Micro City Car 5 Model 11757 2ded
Micro City Crane Truck Model 11758 2dee
Micro City Crawler Crane Model 11759 2def
Micro City Defense Force 1 Model 11760 2df0
Micro City Defense Force 2 Model 11761 2df1
Micro City Defense Force 3 Model 11762 2df2
Micro City Fire Truck 1 Model 11763 2df3
Micro City Fire Truck 2 Model 11764 2df4
Micro City Fire Truck 3 Model 11765 2df5
Micro City Fire Truck 4 Model 11766 2df6
Micro City Fire Truck 5 Model 11767 2df7
Micro City Garbage Truck Model 11768 2df8
Micro City Police Car Model 11769 2df9
Micro City Semi Truck and Trailer Model 11770 2dfa
Micro City Semi Truck Cab Model 11771 2dfb
Micro City Truck 1 Model 11772 2dfc
Micro City Truck 2 Model 11773 2dfd
Micro City Van 1 Model 11774 2dfe
Micro City Van 2 Model 11775 2dff
Micro City Van 3 Model 11776 2e00
Office Chair 1 Model 11777 2e01
Office Chair 2 Model 11778 2e02
Office Copier Model 11779 2e03
Office Credenza 1 Model 11780 2e04
Office Credenza 2 Model 11781 2e05
Office Desk 1 Model 11782 2e06
Office Desk 2 Model 11783 2e07
Office Desk 3 Model 11784 2e08
Office Desk 4 Model 11785 2e09
Office Desk 5 Model 11786 2e0a
Office Desk 6 Model 11787 2e0b
Office File Cabinet 1 Model 11788 2e0c
Office File Cabinet 2 Model 11789 2e0d
Office Partition 1 Model 11790 2e0e
Office Partition 2 Model 11791 2e0f
Office Plant 1 Model 11792 2e10
Office Plant 2 Model 11793 2e11
Office Plant 3 Model 11794 2e12
Office Shelf 1 Model 11795 2e13
Office Shelf 2 Model 11796 2e14
Office Shelf 3 Model 11797 2e15
Office Stapler Model 11798 2e16
Office Table 1 Model 11799 2e17
Rim Ø8 117 75
Office Table 2 Model 11800 2e18
Office Water Cooler Model 11801 2e19
Farm Shed Door Model 1 11802 2e1a
Farm Shed Door Model 2 11803 2e1b
Farm Shed Door Model 3 11804 2e1c
Farm Shed Door Model 4 11805 2e1d
Farm Shed Door Model 5 11806 2e1e
Farm Shed End Left Double Model 11807 2e1f
Farm Shed End Left Single Model 11808 2e20
Farm Shed End Right Double Model 11809 2e21
Farm Shed End Right Model 11810 2e22
Farm Shed End Narrow Model 11811 2e23
Farm Shed End Wide Model 11812 2e24
Farm Shed End Model 11813 2e25
Farm Shed Wall Short Model 1 11814 2e26
Farm Shed Wall Short Model 2 11815 2e27
Farm Shed Wall Short Model 3 11816 2e28
Farm Shed Window Model 1 11817 2e29
Farm Shed Window Model 2 11818 2e2a
Farm Shed Window Model 3 11819 2e2b
Farm Shed Window Model 4 11820 2e2c
Farm Shed Window Model 5 11821 2e2d
Space Fort Bunk Model 11822 2e2e
Space Fort Computer Model 11823 2e2f
Space Fort Crate Stack Model 11824 2e30
Space Fort Footlocker Model 11825 2e31
Space Fort Generator Model 11826 2e32
Space Fort Gun Rack Model 1 11827 2e33
Space Fort Gun Rack Model 2 11828 2e34
Space Fort Locker Model 1 11829 2e35
Space Fort Locker Model 2 11830 2e36
Space Fort Medical Stretcher Model 1 11831 2e37
Space Fort Table Model 1 11832 2e38
Space Fort Tool Rack Model 1 11833 2e39
Space Fort Tool Rack Model 2 11834 2e3a
Space Fort Tool Rack Model 3 11835 2e3b
Space Fort Barricade Door Model 11836 2e3c
Space Fort Forcefield Door Model 11837 2e3d
Space Fort Slotted Door Model 11838 2e3e
Space Fort Camera Model 11839 2e3f
Space Fort Cannon Model 11840 2e40
Space Fort Flak Model 11841 2e41
Space Fort Lightning Model 11842 2e42
Space Fort Missiles Model 11843 2e43
Space Fort Searchlight Defender Model 11844 2e44
Space Fort Invader Model 11845 2e45
Space Fort Wide Wall Gate Model 11846 2e46
Space Fort Medium Wall Model 11847 2e47
Space Fort Short Wall Model 11848 2e48
Space Fort Short Armored Wall Model 11849 2e49
Space Fort Short Wall with Bulletholes Model 11850 2e4a
Space Fort Battle-Damaged Short Wall Model 11851 2e4b
Space Fort Short Gunport Wall Model 11852 2e4c
Space Fort Short Inside Corner Wall Model 11853 2e4d
Space Fort Short Opening Wall Model 11854 2e4e
Space Fort Short Outside Corner Wall Model 11855 2e4f
Space Fort Tall Wall Model 11856 2e50
Space Fort Tall Wall with Bulletholes Model 11857 2e51
Treehouse No Bridge Corner Model 11858 2e52
Treehouse Two Bridges Corner Model 11859 2e53
Treehouse Elevator Platform Model 11860 2e54
Treehouse Elevator Tree Model 11861 2e55
Treehouse No Bridges Four Way Model 11862 2e56
Treehouse Ground Rock Pool Model 11863 2e57
Treehouse Rocks Model 1 11864 2e58
Treehouse Rocks Model 2 11865 2e59
Treehouse Rocks Model 3 11866 2e5a
Treehouse Hut Model 11867 2e5b
Treehouse Observation Platform Model 11868 2e5c
Treehouse Straight Bridge Model 11869 2e5d
Treehouse Large Tree Model 11870 2e5e
Treehouse Medium Tree Model 11871 2e5f
Treehouse Small Tree Model 11872 2e60
Winter Fireplace Model 11873 2e61
Winter Gingerbread House Door Model 1 11874 2e62
Winter Gingerbread House Door Model 2 11875 2e63
Winter Gingerbread House End Model 1 11876 2e64
Winter Gingerbread House End Model 2 11877 2e65
Winter Gingerbread House Side Model 1 11878 2e66
Winter Gingerbread House Window Model 1 11879 2e67
Winter Northpole Model 11880 2e68
Winter Penguin Model 11881 2e69
Winter Present Model 1 11882 2e6a
Winter Present Model 2 11883 2e6b
Winter Present Model 3 11884 2e6c
Winter Reindeer Model 11885 2e6d
Winter Sleigh Model 11886 2e6e
Winter Snowman Model 11887 2e6f
Winter Snowmobile Model 11888 2e70
Winter Train Car Model 11889 2e71
Winter Train Engine Model 11890 2e72
Winter Train Tender Model 11891 2e73
Winter Tree Model 1 11892 2e74
Winter Tree Model 2 11893 2e75
Rank 1 Sorcerer Book 118 76
Ribbit’s Top Hat 11909 2e85
Rank 1 Shinobi Book 11922 2e92
Rank 1 Adventurer Book 11923 2e93
Rank 1 Space Ranger Book 11924 2e94
Rank 1 Inventor Book 11925 2e95
Rank 2 Adventurer Book 11926 2e96
Rank 2 Shinobi Book 11927 2e97
Rank 2 Space Ranger Book 11928 2e98
Rank 2 Inventor Book 11929 2e99
Rank 3 Adventurer Book 11931 2e9b
Rank 3 Shinobi Book 11932 2e9c
Rank 3 Space Ranger Book 11933 2e9d
Rank 3 Inventor Book 11934 2e9e
Forge Honcho – Starbase Captain 11981 2ecd
Talli Reeko – Stromling Invader 11982 2ece
ED-902 – Stromling Mech Invader 11983 2ecf
Muffet Bane – Dark Spiderling Invader 11984 2ed0
Gull Rawstew – Stromling Pirate Invader 11985 2ed1
Admiral Flogmore – Stromling Admiral Invader 11986 2ed2
Roo Morgg – Stromling Ape Invader 11987 2ed3
Grim Daisho – Dark Ronin Invader 11988 2ed4
Butterscorch – Maelstrom Dragon Invader 11989 2ed5
Brannan Landers – Sentinel Faction Sergeant 11991 2ed7
Bronson Jarls – Sentinel Faction Lieutenant 11992 2ed8
Sherland Powers – Nexus Force Pilot 11997 2edd
Neido – Ninja of Imagination 11998 2ede
Oni Rider Ikusa – Maelstrom Horseman 11999 2edf
Brick 2×2 with Bow and Studs 1199 4af
Slope Brick 45° 2×4 Inverted Double with Cut-Out 119 77
Skeleton Miner 12000 2ee0
Hardhead – Skeleton Miner 12001 2ee1
Skeleton Engineer 12002 2ee2
Blackmarrow – Skeleton Engineer 12003 2ee3
Skeleton Pit Boss 12004 2ee4
Nuckal – Skeleton Lightning General 12005 2ee5
Steering Nozzle with 2 Studs 1200 4b0
Skeleton Leg 1201 4b1
Fire Brawl Front Bumper 12020 2ef4
Fire Brawl Front Bumper 12021 2ef5
Fire Brawl Engine Panel 12022 2ef6
Fire Brawl Engine Panel 12023 2ef7
Fire Brawl Rear Bumper 12024 2ef8
Fire Brawl Rear Bumper 12025 2ef9
Fire Brawl Rear Panel 12026 2efa
Fire Brawl Rear Panel 12027 2efb
Fire Brawl Side Panels 12028 2efc
Fire Brawl Side Panels 12029 2efd
Robot Torso 1202 4b2
Mach Lava Front Bumper 12030 2efe
Mach Lava Front Bumper 12031 2eff
Mach Lava Engine Panel 12032 2f00
Mach Lava Engine Panel 12033 2f01
Mach Lava Rear Bumper 12034 2f02
Mach Lava Rear Bumper 12035 2f03
Mach Lava Rear Panel 12036 2f04
Mach Lava Rear Panel 12037 2f05
Mach Lava Side Panels 12038 2f06
Mach Lava Side Panels 12039 2f07
Robot Arm 1203 4b3
Zip Lash – Racing Ninja 12044 2f0c
Melty Puddles 12055 2f17
Construction Bot 12056 2f18
Robot Leg 1×2 with Clip 1205 4b5
Robot Arm with Clip 1206 4b6
Robot Torso with Shaft 1207 4b7
Robot Arm with Angled Hand 1208 4b8
White Neckerchief 12094 2f3e
Crux Prime Armor 12095 2f3f
Nexus Airtanks 12098 2f42
Minifigure Head 1209 4b9
Brick 2×2 Round 120 78
Mosaic Shoulderpads 12101 2f45
Sunflower Seed 12102 2f46
Maneater Seeds 12103 2f47
Massive Firecracker 12107 2f4b
Balloon Animals 12108 2f4c
Sensei Wu’s Imagination Tea 12109 2f4d
Bracket 1×1 with Pin Hole – 1×1 with Stud 1210 4ba
Spring Shoes 12110 2f4e
S.N.A.C.K. 12114 2f52
Nexus Force Supply Crate 12115 2f53
Juggling Bag 12116 2f54
Peppermint Lane – Frostburgh Racing Host 12117 2f55
Sneezy Icewhisker – The Wizard of Frostburgh 12118 2f56
Sugarplum Fritz – Frostburgh Toymaker 12119 2f57
Tiny Wheels with Axle 1211 4bb
Hansel Tinsel – Frostivus Vendor 12121 2f59
Wenn Wuzzit – Venture League Time Traveler 12122 2f5a
Tool Holder 1212 4bc
Fork Connector with 4 Tips 1213 4bd
Hand Ladle 1214 4be
Space Blaster with Grooves 1215 4bf
Duke Exeter – via Nexus Terminal 12163 2f83
Nozzle 1216 4c0
Megaphone 1217 4c1
Robot Arm with Stud and Clip 1218 4c2
Skid 1×4 with Stud and Clip 1219 4c3
Brick 1×4 with Studs on Side 121 79
Telephone Receiver 1220 4c4
Sakura Moonstone – Monastery Ruins Vendor 12214 2fb6
Heimlich Stewblaster – Supplies Vendor 12215 2fb7
Sarge Bot 12216 2fb8
MG Sarge Bot 12217 2fb9
Pod Captain 1 Pack 12220 2fbc
Pod Captain 2 Pack 12221 2fbd
Pod Captain 3 Pack 12222 2fbe
Pod Captain 4 Pack 12223 2fbf
Pod Captain 5 Pack 12224 2fc0
Pod Captain 6 Pack 12225 2fc1
Pod Captain 7 Pack 12226 2fc2
Chalice 1222 4c6
Winter Model Surprise Giftbox 12231 2fc7
Candy Cane 12237 2fcd
Light Sword Handle 1223 4c7
Gingerbread Cookie 12240 2fd0
Hot Cocoa 12241 2fd1
Warm Cap 12242 2fd2
Binoculars, Round 1224 4c8
Nexus Naomi – Nexus Tower Artificial Intelligence 12255 2fdf
Trek Furino – Venture League Guard 12256 2fe0
Augie Ninewells – Assembly Guard 12257 2fe1
Hael Storm – Venture League Faction Leader 12258 2fe2
Dr. Overbuild – Assembly Faction Leader 12259 2fe3
Wheel for Skate Board 1225 4c9
Bullet Mullet – Sentinel Faction Guard 12260 2fe4
Duke Exeter – Sentinel Faction Leader 12261 2fe5
Vanda Darkflame – Paradox Faction Leader 12262 2fe6
Meyer Muckrake – Paradox Guard 12263 2fe7
Rippled Bar on Stud Socket with 2 Clips 1226 4ca
Snow Storm 12281 2ff9
Winter Model Giftbox 12282 2ffa
Jolly Beard 12283 2ffb
Snowball 12288 3000
Winter Parka 12289 3001
Cyborg Arm with Pin Hole 1228 4cc
Flannel Pants 12291 3003
Reindeer 12294 3006
Snow Flake Shield 12295 3007
Present Shield 12296 3008
Winter Sweater 12297 3009
Snowy Tree Shirt 12298 300a
Flannel Shirt 12299 300b
Frame 1x4x6 for Door 122 7a
Superior Hand Bell 12300 300c
Banneret’s Helm 12308 3014
Maelstrom Eye Shield 12309 3015
Tip of the Tail Ø6 1230 4ce
Ogre Buckler 12310 3016
Bowling Shirt 12311 3017
Tie Dye Shirt 12312 3018
Lucky Woodsman’s Axe 12313 3019
Javelin of Lightning 12314 301a
Great Crescent Wrench 12315 301b
Cutlass of Blocking 12316 301c
Aura Blossoms 12317 301d
Doc in a Box 12319 301f
Dragon’s Wing 1231 4cf
Skeleton Bone 12322 3022
Nexus Talon Datacard 12323 3023
Technic Steering Wheel 1232 4d0
Small Candy Cane Giftbox 12338 3032
Large Candy Cane Giftbox 12339 3033
Technic Bumper 1x4x7 1233 4d1
Blue and Yellow Present Model 12348 303c
Winter Bakery Model 1 12349 303d
Spoiler with Framework and 2 Pins 1234 4d2
Winter Bakery Model 2 12350 303e
Winter Bakery Model 3 12351 303f
Winter Toy Shop Bench Model 12352 3040
Winter Toy Shop Building Model 12353 3041
Winter Toy Shop Jack-in-the-Box Model 12354 3042
Winter Toy Shop Ladder Model 12355 3043
Winter Toy Shop Lamp Post Model 12356 3044
Winter Toy Shop Teddybear Model 12357 3045
Technic Railing with 2 Pins 1235 4d3
Technic Air Intake Curved with 2 Pins 1236 4d4
Portabello Citizen 12373 3055
Parka Jacket 12374 3056
Dark One 12379 305b
Technic Ridge Profile with 2 Pins 1237 4d5
Frostburgh Delivery Package 12380 305c
Elite Dark Spiderling 12387 3063
Sentry Translator 12389 3065
Technic Pin with Friction 1238 4d6
Spider Boss Processor 12390 3066
Technic Cross Axle 4 1239 4d7
Technic Brick Framing 4×6 123 7b
Technic Cross Axle 6 1240 4d8
Technic Cross Axle 8 1241 4d9
Very Large Bag of Faction Tokens 12424 3088
Extra Large Bag of Faction Tokens 12425 3089
Explorien Bot Pants 12426 308a
PaperFigShield 12427 308b
NPC Large Bone Sickle 12428 308c
Technic Cross Axle 12 1242 4da
Stegosaurus Pet 12431 308f
Saber Cat Pet 12432 3090
Gryphon Pet 12433 3091
Alien Pet 12434 3092
Flogmore’s Hat 12435 3093
Banana Gun 12437 3095
Technic Cross Axle 10 1243 4db
Technic Cross Axle 3 1244 4dc
Thumpin’ Bass 12451 30a3
Technic Cross Axle Extension, Rippled 1245 4dd
Mach Lava Car Pack 12462 30ae
Safe Housing 12464 30b0
Safe Lock 12465 30b1
Safe Functionator 12466 30b2
Oni Rider Seibatsu – Maelstrom Horseman 12467 30b3
Oni Rider Kikin – Maelstrom Horseman 12468 30b4
Oni Rider Shi – Maelstrom Horseman 12469 30b5
Technic Pin 1.5 with Friction 1246 4de
Overstuffed Briefcase 12471 30b7
Explorien Bot Helm 12472 30b8
Cherry Blast 12474 30ba
Fossilized Pet Bone 12475 30bb
Alien Pod 12479 30bf
Technic Pin with Cross Axle 1247 4df
Alien Shell 12480 30c0
Alien Core 12481 30c1
Hello Griffy Doll 12482 30c2
Sentinel Pet Egg 12483 30c3
Scarlet Scythe 12486 30c6
Technic Cross Axle 3 with Stud 1248 4e0
Maelstrom Sample 12492 30cc
Banana Split 12493 30cd
Skeleton Ziggurat Model 12495 30cf
Skeleton Watchtower Wall Model 12496 30d0
Skeleton Corner Wall Model 12497 30d1
Skeleton Wall Model 12498 30d2
Skeleton T-Wall Model 12499 30d3
Technic Bush 1249 4e1
Angle Bracket Plate 1×2 / 2×2 124 7c
Skeleton Skull Tower Model 12500 30d4
Skeleton Short Wall Model 12501 30d5
Skeleton Ribcage Bridge Model 12502 30d6
Skeleton Repair Facility Model 12503 30d7
Skeleton Wall Pillars Model 12504 30d8
Skeleton Mobile Drilling Rig Model 12505 30d9
Skeleton Hover Drone Model 12506 30da
Skeleton Gate Model 12507 30db
Skeleton Elevator Model 12508 30dc
Technic Pin 0.75 1250 4e2
LEGO Dice 12513 30e1
Spark Thrower 12514 30e2
Riffin’ Guitar 12518 30e6
Technic Friction Pin 1.5 with Cross Axle Hole 1251 4e3
Rockin’ Keyboards 12520 30e8
Farm Model Pack 1 12521 30e9
Farm Model Pack 2 12522 30ea
Farm Model Pack 3 12523 30eb
Behavior Model Pack 1 12524 30ec
Behavior Model Pack 2 12525 30ed
Behavior Model Pack 3 12526 30ee
Doom Star Model Pack 1 12527 30ef
Doom Star Model Pack 2 12528 30f0
Doom Star Model Pack 3 12529 30f1
Technic Axle 2 with Grooves 1252 4e4
Headbash Helmet 12530 30f2
Technic Cross Axle 5 1253 4e5
AG – testduder 12540 30fc
Hammer Stromling 12542 30fe
Howdy Cowboy Hat 12546 3102
Venture Explorer Datacard 12547 3103
Exceptional Pea Shooter 12549 3105
1/2 Bush 1254 4e6
Model Vending Machine 12550 3106
Pocket Cannon 12554 310a
Skeleton Model Pack 1 12557 310d
Skeleton Model Pack 2 12558 310e
Skeleton Model Pack 3 12559 310f
Technic Pin Double 1.5 with Cross Axle 1255 4e7
Skeleton Model Pack 4 12560 3110
King Bling Crown 12561 3111
Evergiving Goblet 12562 3112
Stink Bomb 12569 3119
Technic Beam 3 with 2 Lateral Cross Axle Holes 1256 4e8
Dark Spiderling 12575 311f
Argo Butterchunks – Property Guard 12576 3120
GF Medium Property Mission Giver 01 12577 3121
FV Medium Property Mission Giver 01 12578 3122
AG Large Property Mission Giver 01 12579 3123
Technic Pin 1.5 1257 4e9
GF Large Property Mission Giver 01 12580 3124
FV Large Property Mission Giver 01 12581 3125
NS Small Property Mission Giver 01 12582 3126
TEST NS Medium Property Mission Giver 01 12583 3127
NS Large Property Mission Giver 01 12584 3128
Stromling Mech 12585 3129
Stromling 12586 312a
Stromling Mech 12587 312b
Dark Spiderling 12588 312c
Stromling Pirate 12589 312d
Technic Pin with Friction and Cross Axle 1258 4ea
Stromling Admiral 12590 312e
Kinga Hurl – Stromling Ape 12591 312f
Rugby Shirt 12593 3131
Flowin’ MC 12594 3132
Blaster 12595 3133
Savage Club 12596 3134
Impact Wrench 12597 3135
Witch’s Surf-Broom 12598 3136
Crux Planet Shield 12599 3137
Technic Cross Axle 7 1259 4eb
Rank 1 Space Marauder Book 125 7d
Murgle Blotch – Stromling Champion 12600 3138
Padded Toque of Healing 12601 3139
Hammerhurl Stromling 12602 313a
Cuirass Armor 12603 313b
Stromling Mech Invader 12604 313c
Elite Dark Spiderling 12605 313d
Whack Bliddo – Dark Spiderling Invader 12609 3141
Technic Click Joint with Pin 1260 4ec
Dark Ronin 12610 3142
Maelstrom Horseman 12611 3143
Borborygmus – Maelstrom Dragon 12612 3144
Riot Shield 12613 3145
Technic 1×3 Flange with Stub on top and 2 Pins 1261 4ed
Ripsaw 12627 3153
Technic 1×3 Flange with Hinge and 2 Pins 1262 4ee
T-Rex Shirt 12630 3156
The Serratorizer 12636 315c
The Powerjouster 12637 315d
The Broadsider 12638 315e
Technic Bracket Beam with 4 Pins 1263 4ef
Hoppy 12640 3160
The Samuraizor 12642 3162
TOOLS_DONOTPLACE_DELETEMEPLEASE 12645 3165
The Rutcarver 12647 3167
Technic Tube 2 1264 4f0
Hammer Stromling 12653 316d
Vargas the Tormented – Maelstrom Horseman Invader 12654 316e
The Scythe of Quakes 12656 3170
The Sword of Fire 12657 3171
The Nunchuks of Lightning 12658 3172
The Shurikens of Ice 12659 3173
Pneumatic T-Piece 1265 4f1
Handy Spanner 12667 317b
Sapphire Scepter 12669 317d
Knotwork Shield 12672 3180
Fleur-de-Lis Shield 12675 3183
Wolf Shield 12677 3185
Bat Lord Shield 12678 3186
Ogre-Jaw Shield 12681 3189
Baseball Jersey 1 12682 318a
Bat Lord Shirt 12686 318e
Cool Car Muscle Shirt 12688 3190
Dashiki Shirt 12689 3191
Explorien Bot Shirt 12690 3192
Flaming Tire Shirt 12691 3193
Harlequin Shirt 12693 3195
Pit Stop Racing Shirt 12695 3197
Poncho 12696 3198
Scale Mail Shirt 12698 319a
Denim Shirt 12700 319c
Wedding Dress 12702 319e
Cool Car Euro Shirt 12705 31a1
Cool Car Import Shirt 12706 31a2
Blacktron Shirt 12707 31a3
Banded Armor 12708 31a4
Tire Tracks shirt 12709 31a5
Paisley Shirt 12710 31a6
Blocks Shirt 12711 31a7
Biking Jersey 12712 31a8
Futuron Shirt 12714 31aa
Tiki Batik Shirt 12715 31ab
Elite Broadsword 12718 31ae
Super Cleaver 12719 31af
Super Dagger 12720 31b0
Super Fang 12721 31b1
Heroic Trident of Lightning 12722 31b2
Wand of Repulsion 12723 31b3
Super Morning Star 12724 31b4
Golden Battle Axe 12725 31b5
Little Friend 12726 31b6
Elite Javelin 12728 31b8
Elite Long Barrel Blaster 12729 31b9
Fantastic Pilum 12730 31ba
Spike Hammer 12731 31bb
Massive Spear 12732 31bc
Heavy Staff 12733 31bd
Zweihander 12734 31be
The Big One! 12735 31bf
Visored Space Helm 12737 31c1
Plunger Hat 12740 31c4
Dragon Helm MK II 12741 31c5
Medic Shield 12742 31c6
Mosaic Shield 12743 31c7
Construction Shield 12744 31c8
Body Armor 12747 31cb
Classic Astronaut Shirt 12748 31cc
Cow Skull Shirt 12749 31cd
Safety Vest 12753 31d1
Shark Shirt 12754 31d2
Tribal Shirt 12755 31d3
Mosaic Shirt 12756 31d4
Bone Suit Shirt 12758 31d6
Elite Basher 12759 31d7
Elite Sword of Blocking 12760 31d8
Double Blaster 12761 31d9
Battle Croissant 12762 31da
BBQ Drumstick 12763 31db
Big Fountain Soda 12764 31dc
Energy Bar 12765 31dd
Xpresso 12766 31de
Buff Out Armor Brush 12767 31df
Bassinet Helm 12768 31e0
Visored Racing Helmet 12769 31e1
Cutoff Jeans 12770 31e2
Trousers 12771 31e3
Banana-Wrang 12772 31e4
Wooden Shield 12773 31e5
Super Frankfurter 12774 31e6
Super Hatchet 12775 31e7
Super Scimitar 12776 31e8
Battle Bread 12777 31e9
Carrot of Courage 12778 31ea
Dancin’ Hat 12779 31eb
Egyptian Headdress 12780 31ec
Bat Lord Helmet 12781 31ed
Eisenhut 12782 31ee
Forester’s Hood 12783 31ef
Iron Barbute 12784 31f0
Miners’ Helm 12785 31f1
Dragon Helm MK III 12786 31f2
Comfy Jeans 12788 31f4
Flight Suit Legs 12789 31f5
Harlequin Costume Legs 12792 31f8
Lederhosen Legs 12793 31f9
Pinstripe Pant Legs 12796 31fc
Racing Legs 12797 31fd
Bone Suit Pants 12798 31fe
Mosaic Pants 12801 3201
Bat Lord Staff 12802 3202
TEST Shane Pet 12806 3206
The Wormholer 12809 3209
The Doomslicer 12816 3210
The Wingreaper 12817 3211
Skeleton Idol Model 12818 3212
Make-Shift Buddy 1 12828 321c
Make-Shift Buddy 2 12829 321d
Make-Shift Buddy 3 12830 321e
Morbid Orbit Rocket Nose Cone 12838 3226
Morbid Orbit Rocket Cockpit 12839 3227
Morbid Orbit Rocket Engine 12840 3228
Nexus Naomi – Nexus Tower Artificial Intelligence 12841 3229
Starskull Rocket Nose Cone 12848 3230
Starskull Rocket Cockpit 12849 3231
Starskull Rocket Engine 12850 3232
Terror Comet Rocket Nose Cone 12851 3233
Terror Comet Rocket Cockpit 12852 3234
Terror Comet Rocket Engine 12853 3235
Cyborg Helmet 12886 3256
Skeleton Rocket Nose Cone Package 12889 3259
Skeleton Rocket Cockpit Package 12890 325a
Skeleton Rocket Engine Package 12891 325b
Mosaic Jester Cap 12901 3265
Imagination Spinjitzu Hood 12918 3276
Imagination Spinjitzu Shirt 12919 3277
Imagination Spinjitzu Pants 12920 3278
Summoner Staff 3 12921 3279
Summoner Orb 3 12922 327a
Summoner Shoulderpads 3 12923 327b
Summoner Hat 3 12924 327c
Mosaic Wand 12927 327f
Mint Condition Front Bumper 12933 3285
Mint Condition Engine Panel 12934 3286
Mint Condition Rear Bumper 12935 3287
Mint Condition Rear Panel 12936 3288
Mint Condition Side Panels 12937 3289
Summoner Robe 3 12945 3291
Summoner Pants 3 12946 3292
Engineer Shirt 3 12947 3293
Engineer Pants 3 12949 3295
Knight Breastplate 3 12950 3296
Knight Leggings 3 12951 3297
Samurai Breastplate 3 12952 3298
Samurai Leggings 3 12953 3299
Buccaneer Shirt 3 12954 329a
Buccaneer Pantaloons 3 12955 329b
Daredevil Jacket 3 12956 329c
Daredevil Pants 3 12957 329d
Sorcerer Breastplate 3 12958 329e
Sorcerer Pants 3 12959 329f
Space Marauder Jacket 3 12960 32a0
Space Marauder Pants 3 12961 32a1
Engineer Helmet 3 12962 32a2
Engineer Vest 3 12963 32a3
Engineer Wrench 3 12964 32a4
Engineer Controller 3 12965 32a5
Knight Helm 3 12966 32a6
Knight Shoulderpads 3 12967 32a7
Knight Greatsword 3 12968 32a8
Knight Shield 3 12969 32a9
Samurai Helm 3 12976 32b0
Samurai Katana 3 12977 32b1
Samurai Bow 3 12978 32b2
Buccaneer Hat 3 12981 32b5
Buccaneer Pistol & Cutlass 3 12982 32b6
Sorcerer Hat 3 12983 32b7
Sorcerer Wand 3 12984 32b8
Sorcerer Orb 3 12985 32b9
Space Marauder Helm 3 12986 32ba
Space Marauder Blaster 3 12987 32bb
Space Marauder Launcher 3 12988 32bc
Sorcerer Shoulderpads 3 12989 32bd
Buccaneer Bandolier 3 12990 32be
Space Marauder Shoulderpads 3 12991 32bf
Samurai Shoulderpads 3 12992 32c0
Daredevil Helmet 3 12993 32c1
Daredevil Flareguns 3 12994 32c2
Daredevil Shoulderpads 3 12995 32c3
Bone Suit Helm 12997 32c5
Bat Lord Pants 13000 32c8
Assembly Device Core Model 13002 32ca
Assembly Device Cage Model 13003 32cb
Assembly Device Base Model 13004 32cc
Soap Gun 13014 32d6
Skeleton Schematic Page 13057 3301
Cracked Ronin’s Helm 13058 3302
Splintered Horseman’s Lance 13059 3303
Fright Speed Front Bumper 13062 3306
Fright Speed Engine Panel 13063 3307
Fright Speed Rear Bumper 13064 3308
Fright Speed Rear Panel 13065 3309
Fright Speed Side Panels 13066 330a
Skeleton Dragon Pet 13067 330b
Skeleton Watchman 13068 330c
Fright Speed Car Part Pack 13073 3311
Nuckal’s Maelstrom Crystal 13074 3312
Premium Surprise Pack 13097 3329
Surprise Pack 13099 332b
Rank 1 Engineer Book 130 82
Quality Surprise Pack 13102 332e
Superior Surprise Pack 13103 332f
Premium Gem Pack 13109 3335
Gem Pack 13110 3336
Quality Gem Pack 13112 3338
Superior Gem Pack 13113 3339
Surprise Model Pack 13117 333d
Large Bag of Green Imaginite 13134 334e
Large Bag of Green Imaginite 13135 334f
Large Bag of Green Imaginite 13136 3350
Large Bag of Green Imaginite 13137 3351
Medium Bag of Red Imaginite 13138 3352
Medium Bag of Red Imaginite 13139 3353
Medium Bag of Red Imaginite 13140 3354
Medium Bag of Red Imaginite 13141 3355
Small Bag of Blue Imaginite 13143 3357
Small Bag of Blue Imaginite 13144 3358
Small Bag of Blue Imaginite 13145 3359
Small Bag of Blue Imaginite 13146 335a
Great Corseque 13147 335b
Skeleton Chair Model 13151 335f
Skeleton Fountain Model 13152 3360
Skeleton Lamp Model 13153 3361
Skeleton Lamp Stand Model 13154 3362
Skeleton Pet Model 13155 3363
Skeleton Scepter Stand Model 13156 3364
Skeleton Small Table Model 13157 3365
Skeleton Statue Model 13158 3366
Skeleton Throne Model 13159 3367
Skeleton Weapon Rack Model 1 13160 3368
Skeleton Weapon Rack Model 2 13161 3369
Bud Nippit – Property Guard 13183 337f
Black Sheep Model 13197 338d
Burger Model 13198 338e
Cage Model 13199 338f
Rank 1 Summoner Book 131 83
Carrot Model 13200 3390
Cheese Model 13201 3391
Chicken Model 13202 3392
Chicken Dinner Model 13203 3393
Platform Fence Model 13204 3394
Platform Model 13205 3395
Crab Creature Model 13206 3396
Dynamite Model 13207 3397
Plunger Model 13208 3398
Fire Beast Model 13209 3399
Fountain Model 13210 339a
Gooble Model 13211 339b
Salamunky Model 13212 339c
Hot Air Balloon Model 13213 339d
Ice Cage Model 13214 339e
Jukebox Model 13215 339f
Magnet Model 13216 33a0
Spider Model 13217 33a1
Minecart Model 13218 33a2
Deepfish Model 13219 33a3
Powerbot Model 13220 33a4
Pteranodon Model 13221 33a5
Punkbot Model 13222 33a6
Rat Model 13223 33a7
Rhino Model 13224 33a8
Rock Beast Model 13225 33a9
Rock Transport Model 13226 33aa
Rosebush Model 13227 33ab
Sauropod Model 13228 33ac
Sentry Bot Model 13229 33ad
Snowman Model 13230 33ae
Ice Spike Ring Model 13231 33af
Ice Spike Platform Model 13232 33b0
Summoning Stone Model 13233 33b1
Theropod Model 13234 33b2
Thropper Model 13235 33b3
Tracker Bot Model 13236 33b4
Trophy Model 13237 33b5
Turtle Model 13238 33b6
White Sheep Model 13239 33b7
Wolf Model 13240 33b8
Wolf Pup Model 13241 33b9
Wood Gear Model 13242 33ba
Assembly Solarblast Rocket Nose Cone 13255 33c7
Assembly Solarblast Rocket Cockpit 13256 33c8
Assembly Solarblast Rocket Engine 13257 33c9
Paradox Darkwarp Rocket Nose Cone 13258 33ca
Paradox Darkwarp Rocket Cockpit 13259 33cb
Paradox Darkwarp Rocket Engine 13260 33cc
Sentinel Startalon Rocket Nose Cone 13261 33cd
Sentinel Startalon Rocket Cockpit 13262 33ce
Sentinel Startalon Rocket Engine 13263 33cf
Venture League Astroscout Rocket Nose Cone 13264 33d0
Venture League Astroscout Rocket Cockpit 13265 33d1
Venture League Astroscout Rocket Engine 13266 33d2
Brick with Bow 1x3x2 13267 33d3
Fig-Eating Plant 13297 33f1
Achilles Plutarch – Gear Vendor 13300 33f4
Curved Brick with 2 Studs 13321 3409
Nikolai Gammapulse – Sentinel Vendor 13376 3440
Rutger Hemoglobin – Clothing Vendor 13377 3441
Sutoro Hatto – Paradox Vendor 13378 3442
Axon Klaxon – Brick Vendor 13379 3443
Torbert Oscillator – Assembly Vendor 13380 3444
Barry Smoothmoves – Model Vendor 13381 3445
Gwen Tweenbangle – Model Vendor 13382 3446
Ace Warprider – Modules Vendor 13383 3447
Billy Ganges – Venture League Vendor 13384 3448
Olivia Nightshade – Supplies Vendor 13392 3450
Burke Barrelchest – Property Launch Pad Guard 13418 346a
Exceptional Pea Shooter MKII 13423 346f
Anchors Away 13426 3472
Samurai Statue Model 13427 3473
Paradox Blindsider Front Bumper 13500 34bc
Paradox Blindsider Engine Panel 13501 34bd
Paradox Blindsider Side Panels 13502 34be
Paradox Blindsider Rear Panel 13503 34bf
Paradox Blindsider Rear Bumper 13504 34c0
Sentinel Stalwart Front Bumper 13505 34c1
Sentinel Stalwart Engine Panel 13506 34c2
Sentinel Stalwart Side Panels 13507 34c3
Sentinel Stalwart Rear Panel 13508 34c4
Sentinel Stalwart Rear Bumper 13509 34c5
Assembly Blockader Front Bumper 13512 34c8
Assembly Blockader Engine Panel 13513 34c9
Assembly Blockader Side Panels 13514 34ca
Assembly Blockader Rear Panel 13515 34cb
Assembly Blockader Rear Bumper 13516 34cc
Venture League Hinterlander Front Bumper 13517 34cd
Venture League Hinterlander Engine Panel 13518 34ce
Venture League Hinterlander Side Panels 13519 34cf
Venture League Hinterlander Rear Panel 13520 34d0
Venture League Hinterlander Rear Bumper 13521 34d1
Stromling Admiral Elite 13523 34d3
Stromling Ape Elite 13524 34d4
Scanning Helm 13525 34d5
Green Tiki Shirt 13526 34d6
Nexus Tower Shirt 13527 34d7
Nexus Tower Gift Bag 13529 34d9
Bone Daddy 13539 34e3
Imagination Backpack 13544 34e8
Improved Push Broom 13545 34e9
Parrot Pants 13546 34ea
Maelstrom Shirt 13547 34eb
Sentinel Box Disguise 13548 34ec
Skeleton Miner 13558 34f6
Skeleton Engineer 13568 3500
Mr. Ree – Shady Vendor 13569 3501
Sentinel Super Soda 2 13574 3506
Assembly Awesome-Ade 2 13575 3507
Paradox Power Potion 2 13576 3508
Venture Vitality Vial 2 13577 3509
Achilles’ Shield 13578 350a
Oil Can 13579 350b
Foreman Radio 13580 350c
Skeleton Key 13581 350d
Mole Whacker 13582 350e
Gem Hammer 13583 350f
Overcharged Blaster 13584 3510
Gat Gun Sprayer 13585 3511
Launcher 13586 3512
Bottled Water 13587 3513
Skeleton Pit Boss 13588 3514
Nexus Dropship Rocket Nose Cone 13590 3516
Nexus Dropship Rocket Cockpit 13591 3517
Nexus Dropship Rocket Engine 13592 3518
Nexus Tower Rocket Nose Cone 13593 3519
Nexus Tower Rocket Cockpit 13594 351a
Nexus Tower Rocket Engine 13595 351b
Venture Koi Rocket Nose Cone 13596 351c
Venture Koi Rocket Cockpit 13597 351d
Venture Koi Rocket Engine 13598 351e
Surprise Model Pack 13604 3524
Shard Armor 13617 3531
Micro City Model Pack 1 13623 3537
Micro City Model Pack 2 13624 3538
Micro City Model Pack 3 13625 3539
Zoo Wall Straight Pillar Model 13639 3547
Zoo Wall Pillar Gate Support Model 13640 3548
Zoo Wall Corner Pillar Model 13641 3549
Zoo Wall Panel Model 13642 354a
Zoo Wall Gate Model 13643 354b
Zoo Sign Model 2 13644 354c
Zoo Sign Model 1 13645 354d
Zoo Ramped Path Model 13646 354e
Zoo Raised Pathway with Railing Model 13647 354f
Zoo Raised Pathway Model 13648 3550
Zoo Pathway Corner Model 2 13649 3551
Zoo Pathway Corner Model 1 13650 3552
Zoo Angled Bridge Pathway Model 2 13651 3553
Zoo Angled Bridge Pathway Model 1 13652 3554
Zoo Long Pathway Model 13653 3555
Zoo Short Pathway Model 13654 3556
Zoo Hot Dog Cart Model 13655 3557
Zoo Gift Stand Model 13656 3558
Zoo Straight Wooden Fence Model 13657 3559
Zoo Wooden Fence Gate Model 13658 355a
Zoo Wooden Fence Corner with Gate Model 13659 355b
Zoo Wooden Fence Corner Model 13660 355c
Zoo Straight Sloped Fence Model 13661 355d
Zoo Sloped Fence with Open Gate Model 13662 355e
Zoo Sloped Fence with Closed Gate Model 13663 355f
Zoo Sloped Outside Corner Fence Model 13664 3560
Zoo Sloped Inside Fence Corner Model 13665 3561
Zoo Straight Rock Fence Model 2 13666 3562
Zoo Straight Rock Fence Model 1 13667 3563
Zoo Rock Fence Pillar with Torches Model 13668 3564
Zoo Rock Fence Corner Model 13669 3565
Zoo Straight Petting Zoo Fence Model 2 13670 3566
Zoo Straight Petting Zoo Fence Model 1 13671 3567
Zoo Petting Zoo Fence with Open Gate Model 13672 3568
Zoo Petting Zoo Fence with Closed Gate Model 13673 3569
Zoo Petting Zoo Fence Corner Model 13674 356a
Zoo Electrified Straight Fence Model 13675 356b
Zoo Electrified Gatehouse Model 13676 356c
Zoo Electrified Gate Model 13677 356d
Zoo Electrified Outside Fence Corner Model 13678 356e
Zoo Electrified Inside Fence Corner Model 13679 356f
Zoo Barred Straight Fence Model 13680 3570
Zoo Barred Fence with Open Gate Model 13681 3571
Zoo Barred Fence with Closed Gate Model 13682 3572
Zoo Barred Outside Fence Corner Model 13683 3573
Zoo Barred Inside Fence Corner Model 13684 3574
Zoo Critter House Middle Model 2 13685 3575
Zoo Critter House Middle Model 1 13686 3576
Zoo Critter House End Model 2 13687 3577
Zoo Critter House End Model 1 13688 3578
Zoo Straight Courtyard Edge Model Long 13689 3579
Zoo Straight Courtyard Edge Model Short 13690 357a
Zoo Courtyard Edge Corner Model 13691 357b
Zoo Courtyard Model Long 13692 357c
Zoo Courtyard Model Short 13693 357d
Zoo Straight Building Wall Model 13694 357e
Zoo Building Wall with Open Doors Model 13695 357f
Zoo Building Wall with Closed Doors Model 13696 3580
Zoo Building Wall Corner Model 13697 3581
Zoo Building Roof with Tower Model 13698 3582
Zoo Building Roof Model 13699 3583
Zoo Straight Aviary Wall Model 13700 3584
Zoo Aviary Wall End Cap Model 13701 3585
Zoo Aviary Wall Corner Model 13702 3586
Zoo Straight Aviary Floor Model 4 13703 3587
Zoo Straight Aviary Floor Model 3 13704 3588
Zoo Straight Aviary Floor Model 2 13705 3589
Zoo Straight Aviary Floor Model 1 13706 358a
Zoo Aviary Floor Corner Model 4 13707 358b
Zoo Aviary Floor Corner Model 3 13708 358c
Zoo Aviary Floor Corner Model 2 13709 358d
Zoo Aviary Floor Corner Model 1 13710 358e
Vintage Sentry Hut Model 13711 358f
Vintage Guard House Model 13712 3590
Vintage Fortress Model 13713 3591
Vintage Ballista Model 13714 3592
Toaster Model 2 13715 3593
Toaster Model 1 13716 3594
Safari Waterhole Model 13717 3595
Safari Umbrella Model 13718 3596
Safari Termite Mound Model 13719 3597
Safari Tent Model 2 13720 3598
Safari Tent Model 1 13721 3599
Safari Rover Model 13722 359a
Safari Plane Model 13723 359b
Safari Lion Rock Model 13724 359c
Safari Gate Model 13725 359d
Safari Cooking Place Model 13726 359e
Safari Bench Model 13727 359f
Safari Baobab Tree Model 13728 35a0
Pirate’s Picnic Basket 13737 35a9
Dragon Disguise 13741 35ad
Nexus Jawbox 13773 35cd
Duke Exeter’s Sword 13777 35d1
Yawny Goodknight – Sentinel Guard 13783 35d7
Ben’s Butter Spreaders 13786 35da
Sensei Wu – Spinjitzu Master 13789 35dd
Cole – Ninja of Earth 13790 35de
Zane – Ninja of Ice 13791 35df
Jay – Ninja of Lightning 13792 35e0
Kai – Ninja of Fire 13793 35e1
Toshiro Gojira – Ninjago Monastery Guard 13794 35e2
Cringe Lo – Good-for-Nothing 13795 35e3
Furious Urufu – Dog Boy 13796 35e4
Bozu Roku – Ninjago Villager 13797 35e5
Hari Howzen – Ninjago Monastery Guard 13798 35e6
Nya – Ninjago Gear Vendor 13799 35e7
Johnny Umami – Ninjago Supplies Vendor 13800 35e8
Bubu Mumu – Ninjago Models Vendor 13801 35e9
Honor Accolade – Commendation Vendor 13806 35ee
Golden Telescope 13814 35f6
Crux Prime Console 13835 360b
Assembly Box Disguise 13891 3643
Venture League Box Disguise 13892 3644
Hat of Wizardry 13911 3657
Hat of Magecraft 13912 3658
Hat of the Adept 13913 3659
Helm of the Mountain King 13914 365a
Helm of the Blacksmith 13915 365b
Hood of the Mystic 13916 365c
Hood of the Sage 13917 365d
Heroic Halberd 13918 365e
Elite Halberd 13919 365f
Superior Halberd 13920 3660
Superior Crossbow of Blasting 13921 3661
Heroic Force Blade 13922 3662
Elite Force Blade 13923 3663
Bone Wolf 13995 36ab
Skeleton Blacksmith 14007 36b7
Skeleton Marksman 14008 36b8
Skeleton Commando 14009 36b9
Skeleton Blacksmith 14024 36c8
Skeleton Raider 14025 36c9
Skeleton Commando 14026 36ca
Skeleton Overseer 14027 36cb
Skeleton Marksman 14028 36cc
Skeleton Mad Scientist 14029 36cd
Snazzy Pants 14091 370b
Jazzy Pants 14092 370c
Zazzy Pants 14093 370d
Racemaster Shirt 14095 370f
Race Ace Shirt 14096 3710
Master Driver Shirt 14097 3711
Race Ace Helmet 14098 3712
Racemaster Helmet 14099 3713
Master Driver Helmet 14100 3714
Bricksel Adams Shirt 14101 3715
Photojournalist Shirt 14102 3716
Paparazzi Shirt 14103 3717
Survival Mech Shirt 14104 3718
Spiderling Shirt 14105 3719
Stromling Shirt 14106 371a
Exceptional Pea Shooter MK Ia 14107 371b
The Terrible Wand 14108 371c
The Furious Morning Star 14109 371d
Skyme’s Shirt 14113 3721
One-Eye’s Shirt 14114 3722
Peg-Leg’s Shirt 14115 3723
4 Riders Shirt 14116 3724
Kinga Hurl Shirt 14117 3725
Murgle Blotch Shirt 14118 3726
Nexus Force Shield MK III 14119 3727
Nexus Force Shield MK II 14120 3728
Nexus Force Shield MK I 14121 3729
Skyme’s Blunderbuss 14122 372a
One-Eye’s Blunderbuss 14123 372b
Peg-Leg’s Blunderbuss 14124 372c
Mega Bag of Faction Tokens 14125 372d
Ultra Bag of Faction Tokens 14126 372e
Ultra-Mega Bag of Faction Tokens 14127 372f
Atlantis Squid Helm 14128 3730
Dr. Overbuild’s Property Scanner 14132 3734
Hood of Quakes 14136 3738
12 Month Membership Reward 14147 3743
6 Month Membership Reward 14148 3744
Imagimeter Base Chunk 14150 3746
Treasure Finder 14169 3759
Pants of Quakes 14172 375c
Gi of Quakes 14173 375d
NJ – Small Lantern 14176 3760
Journal of the Founders 14186 376a
Green Frog’s Egg 14191 376f
White Cat’s Fish 14192 3770
Light Gray Mouse’s Cheese 14193 3771
Brown Dog’s Bone 14194 3772
Game Card Reward Pack 14195 3773
Game Card Reward Pack 14196 3774
Game Card Reward Pack 14197 3775
Game Card Reward Pack 14198 3776
Slope Brick 25° 3×3 Outside Corner 141 8d
Nexus Tower Model 14203 377b
Ace’s Jetpack 14219 378b
Gwen’s Smoke Machine 14221 378d
Rutger’s Hair Gel 14222 378e
Meyer’s Thinking Hat 14223 378f
Proto – Brandi’s Ninjago Rail starter 14230 3796
Musclenaut GT Rocket Nose Cone 14310 37e6
Musclenaut GT Rocket Cockpit 14311 37e7
Musclenaut GT Rocket Engine 14312 37e8
Trial Sentinel Gear 14315 37eb
Trial Paradox Gear 14321 37f1
Jett Moonshot – Venture League Officer 14349 380d
Trial Assembly Gear 14353 3811
Trial Venture League Gear 14359 3817
Plunger Gun 14378 382a
Maelstrom Spider Queen 14381 382d
Ninjago in a Box 14397 383d
Plate 1×2 with Single Stud 143 8f
Rocco Sirocco – Student of Earth Spinjitzu 14426 385a
Classic Blue Rocket Nose Cone 14444 386c
Classic Blue Rocket Cockpit 14445 386d
Classic Blue Rocket Engine 14446 386e
Classic Pink Rocket Nose Cone 14451 3873
Classic Pink Rocket Cockpit 14452 3874
Classic Pink Rocket Engine 14453 3875
Classic Yellow Rocket Nose Cone 14454 3876
Classic Yellow Rocket Cockpit 14455 3877
Classic Yellow Rocket Engine 14456 3878
Rock Fruit 14467 3883
Shock Fruit 14468 3884
Flame Fruit 14470 3886
Frost Fruit 14471 3887
Maelstrom Dagger 14472 3888
Bone Bucket Building Instructions 14473 3889
Ninja Target Building Instructions 14474 388a
Skull-a-Ton Building Instructions 14475 388b
Earth Key 14486 3896
Fire Key 14487 3897
Ice Key 14488 3898
Lightning Key 14489 3899
Skeleton Trooper 14491 389b
Chaos Cleaner Instructions 14493 389d
Shoulder Socket Wrench 14494 389e
Hammer Toe 14495 389f
Finger Nail 14496 38a0
Diamond Gem 14497 38a1
Dragon Mask 14499 38a3
Plate 2×6 144 90
Cringe Lo’s Love Note 14500 38a4
Lucky Wolf’s Paw 14501 38a5
Dirt Sandwich 14502 38a6
Electric Hoagie 14503 38a7
Yucki-Yaki 14504 38a8
Chilly Freezesteak 14506 38aa
Bento Blocks 14507 38ab
Bamboo Bite 14508 38ac
Flame-Roasted Popsicle 14509 38ad
Rockolate Bar 14511 38af
Onyx Gem 14512 38b0
Rib Bone 14516 38b4
Tail Bone 14517 38b5
Eye Bone 14518 38b6
Funny Bone 14519 38b7
Jaw Bone 14521 38b9
Spider Queen’s Postcard 14549 38d5
Earth Ninja Kit 14552 38d8
Maelstrom Cube 14553 38d9
Hamster Wheel 14555 38db
Flashlight 14556 38dc
Spare Robot Part 14557 38dd
Rocco’s Earth Student Kit 14558 38de
Dark Gray Frog’s Egg 14559 38df
Red Frog’s Egg 14560 38e0
Yellow Frog’s Egg 14561 38e1
Black Cat’s Fish 14562 38e2
Tan Cat’s Fish 14563 38e3
Orange Cat’s Fish 14564 38e4
White Mouse’s Cheese 14565 38e5
Brown Mouse’s Cheese 14566 38e6
Dark Gray Mouse’s Cheese 14567 38e7
Dark Gray Dog’s Bone 14568 38e8
Red Dog’s Bone 14569 38e9
Reddish Brown Dog’s Bone 14570 38ea
Red Scorpion’s Stinger 14571 38eb
Dark Spiderling 14572 38ec
Booty Chest 14590 38fe
Lucky Shovel 14591 38ff
Maelstrom Vacuum 14592 3900
Training Katana 14669 394d
Stone Katana 14678 3956
Med Pack 14679 3957
Armor Repair Kit 14680 3958
Shimmering Katana 14682 395a
Fury Katana 14683 395b
Flowing Katana 14684 395c
Hidden Blade 14685 395d
Purified Dark Blade 14691 3963
Shark Rocket Nose Cone 14692 3964
Shark Rocket Cockpit 14693 3965
Shark Rocket Engine 14694 3966
Pencil Rocket Nose Cone 14695 3967
Pencil Rocket Cockpit 14696 3968
Pencil Rocket Engine 14697 3969
LEGO Club Rocket Nose Cone 14698 396a
LEGO Club Rocket Cockpit 14699 396b
LEGO Club Rocket Engine 14700 396c
Duck Rocket Nose Cone 14701 396d
Duck Rocket Cockpit 14702 396e
Duck Rocket Engine 14703 396f
Training Keibo 14705 3971
Duck Car Front Bumper 14708 3974
Duck Car Engine Panel 14709 3975
Duck Car Side Panels 14710 3976
Duck Car Rear Panel 14711 3977
Duck Car Rear Bumper 14712 3978
Training Yari 14713 3979
Sankaku Yari 14714 397a
Cave Diver 14715 397b
Purified Bone 14731 398b
Artisan’s Hammer 14734 398e
Purified Blacksmith’s Hammer 14736 3990
Dune Buggy Front Bumper 14739 3993
Dune Buggy Engine Panel 14740 3994
Dune Buggy Side Panels 14741 3995
Dune Buggy Rear Panel 14742 3996
Dune Buggy Rear Bumper 14743 3997
Racemaster Front Bumper 14744 3998
Racemaster Engine Panel 14745 3999
Racemaster Side Panels 14746 399a
Racemaster Rear Panel 14747 399b
Racemaster Rear Bumper 14748 399c
Race Ace Front Bumper 14749 399d
Race Ace Engine Panel 14750 399e
Race Ace Side Panels 14751 399f
Race Ace Rear Panel 14752 39a0
Race Ace Rear Bumper 14753 39a1
Master Driver Front Bumper 14754 39a2
Master Driver Engine Panel 14755 39a3
Master Driver Side Panels 14756 39a4
Master Driver Rear Panel 14757 39a5
Master Driver Rear Bumper 14758 39a6
LEGO Club Front Bumper 14759 39a7
LEGO Club Engine Panel 14760 39a8
LEGO Club Side Panels 14761 39a9
LEGO Club Rear Panel 14762 39aa
LEGO Club Rear Bumper 14763 39ab
Purified Axe 14764 39ac
Ninjago Fire Temple Model 14766 39ae
Game Card Reward Pack 14767 39af
Game Card Reward Pack 14768 39b0
Game Card Reward Pack 14769 39b1
Game Card Reward Pack 14770 39b2
Game Card Reward Pack 14771 39b3
Game Card Reward Pack 14772 39b4
Game Card Reward Pack 14773 39b5
Game Card Reward Pack 14774 39b6
Game Card Reward Pack 14775 39b7
Game Card Reward Pack 14776 39b8
Game Card Reward Pack 14777 39b9
Game Card Reward Pack 14778 39ba
Kai’s Training Dagger 14780 39bc
Purified Bone Dagger 14801 39d1
Red Cape 14805 39d5
Blue Cape 14806 39d6
White Cape 14807 39d7
Black Cape 14808 39d8
Pink Cape 14809 39d9
Green Cape 14810 39da
Brown Cape 14811 39db
Yellow Cape 14812 39dc
Orange Cape 14813 39dd
Purple Cape 14814 39de
Brown Shoulder Owl 14816 39e0
White Shoulder Owl 14817 39e1
Black Shoulder Owl 14818 39e2
Training Bo Staff 14829 39ed
Purified Double-Axe 14837 39f5
Spinning Yari 14840 39f8
Kai’s First Gi 15843 3de3
Cole’s First Gi 15844 3de4
Earth Key 15846 3de6
Lightning Key 15847 3de7
Ice Key 15848 3de8
Fire Key 15849 3de9
Wilt Bonsai – Ninjago Villager 15851 3deb
Wo Izemi – Ninjago Villager 15866 3dfa
Sushi Delivery System 15892 3e14
Scorpion Whip 15907 3e23
Stinger 15909 3e25
Sharp Kunai 15911 3e27
Crimson Kabuto 15914 3e2a
Tarnished Kabuto 15916 3e2c
Practice Kabuto 15917 3e2d
Athlete’s Shade 15918 3e2e
Workman’s Rice Hat 15919 3e2f
Scholar’s Travel Hat 15920 3e30
Waza Matta – Ninjago Villager 15922 3e32
Hasa Sad – Ninjago Villager 15924 3e34
Rice Hat 15926 3e36
Gloomy Megumi – Ninjago Villager 15927 3e37
Momo Tanpopo – Ninjago Villager 15929 3e39
Apothecary’s Hood 15935 3e3f
Hobby Hood 15936 3e40
Ki Filled Hood 15937 3e41
Dark Red Plate 15943 3e47
Yellow Plate 15944 3e48
Kiro Swordsman’s Hood 15947 3e4b
Micro Castle Model 1 15949 3e4d
Micro Castle Model 2 15950 3e4e
Micro Castle Model 3 15951 3e4f
Micro Castle Model 4 15952 3e50
Slash and Stitch 15954 3e52
Thought Blade 15955 3e53
Spearman’s Healing Hood 15959 3e57
Piercing Patch Hood 15960 3e58
Think and Throw 15961 3e59
Turtle Pack 15974 3e66
Imaginite Pack 15975 3e67
Duck Car Reward Pack 15976 3e68
Shark Rocket Reward Pack 15977 3e69
Pencil Rocket Reward Pack 15978 3e6a
Duck Rocket Reward Pack 15979 3e6b
Dune Buggy Reward Pack 15980 3e6c
Subscription Reward Pack 15982 3e6e
Subscription Reward Pack 15983 3e6f
Crimson Guard 15990 3e76
Blue O-Yoroi 15991 3e77
Dark Defense 15992 3e78
Scale Mail 15993 3e79
Shimmering O-Yoroi 15994 3e7a
NS – Race Place distant track 16006 3e86
Frakjaw’s Maelstrom Battle Mace 16012 3e8c
Cole’s Climbing Flag 16015 3e8f
Ninjago Hound Treat 16023 3e97
Cringe Lo – Good-for-Nothing 16033 3ea1
Imaginite herbs 16035 3ea3
Old Sushi 16037 3ea5
Bancha Tea 16038 3ea6
Cotton Repair Kit 16041 3ea9
Chopov – Skeleton of Earth 16047 3eaf
Frakjaw – Skeleton of Fire 16048 3eb0
Krazi – Skeleton of Lightning 16049 3eb1
Bonezai – Skeleton of Ice 16050 3eb2
Exploding Ninjago Kunai 16059 3ebb
Maelstrom Bone Axe 16060 3ebc
Jay’s First Gi 16063 3ebf
Zane’s First Gi 16064 3ec0
Murasaki Gi 16065 3ec1
Faded Gi 16066 3ec2
Haiiro Gi 16067 3ec3
Midori Gi 16068 3ec4
Daidaiiro Gi 16069 3ec5
Worn Gi 16070 3ec6
Faded Kosode 16082 3ed2
Dark Kosode 16083 3ed3
Common Kosode 16084 3ed4
Sakura’s Festival Kimono 16085 3ed5
Nya’s Casual Kimono 16086 3ed6
Classy Kimono 16087 3ed7
Kai’s First Gi Pants 16095 3edf
Cole’s First Gi Pants 16096 3ee0
Jay’s First Gi Pants 16098 3ee2
Zane’s First Gi Pants 16099 3ee3
Murasaki Pants 16100 3ee4
Faded Gi Pants 16101 3ee5
Haiiro Gi Pants 16102 3ee6
Midori Gi Pants 16103 3ee7
Daidaiiro Gi Pants 16105 3ee9
Worn Gi Pants 16106 3eea
Common Kosode Pants 16118 3ef6
Dark Kosode Pants 16119 3ef7
Faded Kosode Pants 16120 3ef8
Kuro Hakama 16121 3ef9
Kai’s Loungy Pants 16122 3efa
Murasaki Hakama 16123 3efb
Maelstrom Double-Axe 16146 3f12
Chopov’s Maelstrom Dark Blade 16147 3f13
Maelstrom Bone Dagger 16148 3f14
Krazi’s Maelstrom Bone 16149 3f15
Maelstrom Blacksmith’s Hammer 16150 3f16
Purified Battle Mace 16151 3f17
Valiant Knight’s Cape 16179 3f33
Valiant Samurai’s Cape 16180 3f34
Valiant Space Ranger’s Cape 16181 3f35
Valiant Engineer’s Cape 16182 3f36
Valiant Summoner’s Cape 16183 3f37
Valiant Inventor’s Cape 16184 3f38
Valiant Daredevil’s Cape 16185 3f39
Valiant Buccaneer’s Cape 16186 3f3a
Valiant Adventurer’s Cape 16187 3f3b
Valiant Space Marauder’s Cape 16188 3f3c
Valiant Sorcerer’s Cape 16189 3f3d
Valiant Shinobi’s Cape 16190 3f3e
Bone Wolf 16191 3f3f
Dark Spiderling 16197 3f45
Earth Dragon Pet 16210 3f52
Castle Inner Corner Model 16247 3f77
Castle Small Corner Model 16248 3f78
Castle Gate Model 16249 3f79
Castle Ramp Model 16250 3f7a
Quality Longsword 16251 3f7b
Gi of Storms 16266 3f8a
Gi of Frost 16267 3f8b
Gi of Flames 16268 3f8c
Pants of Storms 16269 3f8d
Pants of Frost 16270 3f8e
Pants of Flames 16271 3f8f
Hood of Storms 16272 3f90
Hood of Frost 16276 3f94
Hood of Flames 16277 3f95
NAMED MECH 16280 3f98
NAMED STROMLING 16282 3f9a
NAMED SPIDERLING 16283 3f9b
Frakjaw – Skeleton of Fire 16289 3fa1
Telescope, Lever 16317 3fbd
Window 2×4/1×4 16319 3fbf
Steering Lever 16320 3fc0
Plate 1×2 with Hinge 16321 3fc1
Wheel with Spokes Ø27.4 16322 3fc2
Cockpit 4x4x4 16323 3fc3
Suspension Bridge 4x16x3 16324 3fc4
Plateau 16x16x2 1/3 16325 3fc5
Windscreen 4x4x3 16326 3fc6
Approach 16x16x2 1/3 16327 3fc7
Windscreen 3x10x3 16328 3fc8
Technic Steering Wheel 16329 3fc9
Plastic Motor, Cylinder 16330 3fca
Plastic Motor, Piston 16331 3fcb
Plastic Motor, Main Pin 16332 3fcc
Plastic Motor, Crank/Cross 16333 3fcd
Sideboard 2×4 16334 3fce
Rim Ø61.6 x 13.6 16335 3fcf
Front Fork 16336 3fd0
Trencher, Shovel 16337 3fd1
Wall Corner 6x6x12 16338 3fd2
Wing 4x8x3 1/3 2×4 Under 16339 3fd3
Windscreen 1x4x1 1/3 16340 3fd4
Mummy Coffin 16341 3fd5
Mummy Coffin Lid 16342 3fd6
Banner with 3.18 Stick 3×8 16343 3fd7
Roadway Straight 16×32 16344 3fd8
Bowed Cockpit 6x8x3 16345 3fd9
Cockpit 6x12x2 16346 3fda
Flex Tube 12 M 16347 3fdb
Windscreen 6x4x4 16348 3fdc
Cockpit 4x8x4 16349 3fdd
Technic Gear 16350 3fde
Technic Steering-Gear 3M 16351 3fdf
Technic Steering Gear, Bearing 2M 16352 3fe0
Flex Rod 14M 16353 3fe1
Flex Rod 16M 16354 3fe2
Spoked Wheel Ø56 16355 3fe3
Steering Wheel/Crank 16356 3fe4
Mini Dragon 16357 3fe5
Roof 4×4 with Hinge 16358 3fe6
Link for Grab 16359 3fe7
Grab for Link 16360 3fe8
Cockpit 6x8x4 16361 3fe9
Plate 2×4 with Snap 4xØ4.85 16362 3fea
Hinge Plate 1×2 1/2 16363 3feb
Hinge Plate 1×2 1/2 16364 3fec
Hinge Plate 1×4 16365 3fed
Brick 4×6 16366 3fee
Exhaust Pipe, Left 16367 3fef
Exhaust Pipe, Right 16368 3ff0
Farmer’s Cap 16370 3ff2
Hinge Plate 1×2.5 without Knob 16371 3ff3
Plate 1×4 Vertical Hinge 16372 3ff4
Goggles 16373 3ff5
Holder with Cross Axle and Knob 16374 3ff6
Brick 6x6x2 W. Ø4.85 16375 3ff7
Puck Ø16 x 2/3 16379 3ffb
Globe 16380 3ffc
Roof Tile 4×4/45° with Hinge 16381 3ffd
Outercable 64mm 16383 3fff
Outer Cable 256mm 16384 4000
Sprocket, Ø40.7 16385 4001
Link with Snap with Fork 16386 4002
Link with Snap with Friction 16387 4003
Connecting Link 16388 4004
Double Wing 8×8 16389 4005
Cockpit Element 4x8x3 16390 4006
Wall Hinge 45° 16391 4007
Wall 1x12x12 16392 4008
Windscreen 2x12x4 16393 4009
Differential 3M Z 28 16394 400a
Cross Block 3×2 16395 400b
Beam R. Frame 5×11 Ø4.85 16396 400c
Beam Frame 5×7 Ø 4.85 16397 400d
Beam 2 with Ball Ø 10.2 16398 400e
Flame 16399 400f
7M Double Ball Shell with Cross Hinge 16400 4010
Rack 13 M 16401 4011
Rack with Ball 16402 4012
Toothed Bar 10M 16403 4013
Technic Toothed Bar 8M 16404 4014
Lamp Shade 16405 4015
Outercable 80mm 16406 4016
Cone Wheel Z20 Ø4.85 16407 4017
Beam 3M Ø4.85 with Fork 16408 4018
Wall 3x3x6, 45° 16409 4019
Front 4x6x1 2/3 16410 401a
Rack 7 M 16411 401b
Wig, Medium Hair 16412 401c
Catapult Arm 1×4 16413 401d
Camel 16414 401e
Porcupine, Shoulder Armor 16415 401f
Track Element, 5×1.5 16416 4020
Motorcycle Tire Ø 94.2 16417 4021
Motorcycle Rim Ø 75 16419 4023
Ostrich 16420 4024
Knight`s Helmet 16421 4025
Ball Cup Double Ø10.2, 5M 16422 4026
Brick 2×2 with Groove 16423 4027
Beam A 7M Ball/Cup Ø10.2 16424 4028
Beam A 6M Ball/Cup Ø10.2 16425 4029
Beam A 5M Ball/Cup Ø10.2 16426 402a
Beam A 4M Ball/Cup Ø10.2 16427 402b
Beam B 6M Ball/Cup Ø10.2 16428 402c
Beam B 5M Ball/Cup Ø10.2 16429 402d
Beam C 5M Cup/Cup Ø10.2 16430 402e
Beam Torso 9×9 Ball Ø10.2 16431 402f
Beam Torso 7×9 Ball Ø10.2 16432 4030
Beam 3M Snap/Ball Ø10.2 16433 4031
Wig, Short Hair 16434 4032
Wig, Long Hair 16435 4033
Owl 16436 4034
Windscreen 6x3x2 16438 4036
Dog with Knob 16439 4037
Lattice for Frame 4×6 16440 4038
Sack 16441 4039
Round Wall 3x6x10 16442 403a
Plate 1×4 with 2 Knobs 16443 403b
Ø3.2 Shaft with Cored Knob 16444 403c
5 M. Ø3.2 Bone 16445 403d
Brick 1x3x2 with Inside and Outside Bow 16446 403e
Cross Block/Form 2x2x2 16447 403f
Brick 1×6 with Inside Bow 16448 4040
Armour with Spike 16449 4041
Star with Ø3.2 Wheel 16450 4042
Hat 16451 4043
Skeleton Torso 16452 4044
Skeleton Arm 16453 4045
Skeleton Leg 16454 4046
General Skeleton Head 16455 4047
Skeletonhead with Knob 16456 4048
Head with Underjaw with Ø3.2 Shaft 16457 4049
Headtop with Ø3.2 Grip 16458 404a
Sensei Beard 16459 404b
Dragon Head 16460 404c
Egyptian Sword 16461 404d
Anubis Head 16462 404e
Horus Hat 16463 404f
Egyptian Eaglewing 16464 4050
Scarab Shield with Ø 3.2 Shaft 16465 4051
Shaft Ø3.2 with Cored Ø3.2 Hole 16466 4052
Hand 2x3x2 Ball Cup Ø10.2 16467 4053
Skeleton Arm 16468 4054
NAMED Stromling Pirate 16470 4056
NAMED Stromling Admiral 16471 4057
NAMED Stromling Ape 16473 4059
NAMED Dark Ronin 16474 405a
NAMED Maelstrom Horseman 16475 405b
Dragon Relic of Earth 16482 4062
Dragon Relic of Fire 16483 4063
Dragon Relic of Lightning 16484 4064
Dragon Relic of Ice 16485 4065
Purified Dagger 16488 4068
Lightning Ninja Kit 16496 4070
Fire Ninja Kit 16497 4071
Ice Ninja Kit 16498 4072
Tomoko Moonstone – Ninjago Clothing Vendor 16499 4073
Kodo Pandaheart – Ninjago Monastery Guard 16500 4074
Podo Pandaheart – Ninjago Monastery Guard 16501 4075
Crowbar 16507 407b
Helmet with Ø3.2 Shaft at Front 16509 407d
Skeleton Mad Scientist 16511 407f
Monastery Blacksmith Model 16517 4085
Monastery Bridge Model 16518 4086
Monastery Drum Model 16519 4087
Monastery Left Entrance Model 16520 4088
Monastery Right Entrance Model 16521 4089
Monastery Flag Banner Model 16523 408b
Monastery Single Flag Model 16524 408c
Monastery Large Gate Model 16525 408d
Monastery Wall with Gate Model 16526 408e
Monastery Small Gate Model 16527 408f
Monastery Mountain Shrine Model 16528 4090
Monastery Railing Model 16529 4091
Monastery Rock Chunk Model 16530 4092
Monastery Screen Model 16531 4093
Monastery Shrine Model 16532 4094
Monastery Tower Model 16533 4095
Monastery Thin Wall Model 1 16534 4096
Monastery Thin Wall Model 2 16535 4097
Monastery Thin Wall Corner Model 16536 4098
Monastery Wall Model 1 16537 4099
Monastery Wall Model 2 16538 409a
Monastery Wall Model 3 16539 409b
Monastery Wall Model 4 16540 409c
Monastery Wall Model 5 16541 409d
Monastery Inside Wall Corner Model 16542 409e
Monastery Outside Wall Corner Model 1 16543 409f
Monastery Outside Wall Corner Model 2 16544 40a0
Monastery Wall with Stairs Model 16545 40a1
Monastery Water Tower Model 16546 40a2
Wu’s Imagination Staff 16551 40a7
Skeleton Outpost Flag Model 16565 40b5
Skeleton Outpost Large Gate Model 16566 40b6
Skeleton Outpost Small Gate Model 16567 40b7
Skeleton Outpost Guard Model 16568 40b8
Skeleton Outpost Keep Model 16569 40b9
Skeleton Outpost Patroller Model 16570 40ba
Skeleton Outpost Spire Model 16571 40bb
Skeleton Outpost Stable Model 16572 40bc
Skeleton Outpost Tower Model 16573 40bd
Skeleton Outpost Wall Model 16574 40be
Skeleton Outpost Corner 1 Model 16575 40bf
Skeleton Outpost Corner 2 Model 16576 40c0
Skeleton Outpost Short Wall 1 Model 16577 40c1
Skeleton Outpost Short Wall 2 Model 16578 40c2
Skeleton Outpost T-Wall Model 16579 40c3
Skeleton Outpost Tall Wall Model 16580 40c4
Skeleton Outpost Wall Arch Model 16581 40c5
Skeleton Outpost Wall with Skull Model 16582 40c6
Skeleton Outpost Wall with Stairs 1 Model 16583 40c7
Skeleton Outpost Wall with Stairs 2 Model 16584 40c8
Skeleton Outpost Weapon Rack Model 16585 40c9
Shouty McBullhorn – Nexus Force Barker 16589 40cd
Disciple’s Katana 16595 40d3
Student’s Katana 16596 40d4
Forged Katana 16597 40d5
Crimson Yari 16598 40d6
Wave Spike 16599 40d7
Shimmering Yari 16600 40d8
Bright Lance 16601 40d9
Rage 16602 40da
Bento Box 16603 40db
Chopsticks 16604 40dc
Cole’s Hood of Quakes 16605 40dd
Cole’s Gi of Quakes 16606 40de
Cole’s Pants of Quakes 16607 40df
Jay’s Hood of Storms 16608 40e0
Jay’s Gi of Storms 16609 40e1
Jay’s Pants of Storms 16610 40e2
Zane’s Hood of Frost 16611 40e3
Zane’s Gi of Frost 16612 40e4
Zane’s Pants of Frost 16613 40e5
Kai’s Hood of Flames 16614 40e6
Kai’s Gi of Flames 16615 40e7
Kai’s Pants of Flames 16616 40e8
2011 Championship Sparkler 16629 40f5
Maelstrom Dagger 16632 40f8
Kai’s DX Pants of Flames 16633 40f9
Kai’s DX Gi of Flames 16634 40fa
Zane’s DX Gi of Frost 16635 40fb
Zane’s DX Pants of Frost 16636 40fc
Jay’s DX Gi of Storms 16637 40fd
Jay’s DX Pants of Storms 16638 40fe
Cole’s DX Gi of Quakes 16639 40ff
Cole’s DX Pants of Quakes 16640 4100
Dragon Mask 16644 4104
Urufu’s Treasure 16650 410a
Urufu’s Treasure 16651 410b
Urufu’s Treasure 16652 410c
Urufu’s Treasure 16653 410d
Urufu’s Treasure 16654 410e
Bank Note II 16656 4110
Bank Note II 16657 4111
Crocodile Egg 16898 4202
Corner Brick 1x2x2 16 10
Great Halberd 1720 6b8
Nexus Force Helmet 1726 6be
Superior Pirate’s Scimitar 1764 6e4
Plate 2×2 Round 178 b2
Slope Brick 45° 2×2 Corner, Inverted 179 b3
Panel 1x2x3 17 11
Plate 2×10 180 b4
Fermie LaBoosh – Gear Vendor 1867 74b
Great Katana 1879 757
Hot Chocolate 1883 75b
Red Ninja Hood – Maelstrom Infused 1889 761
Black Pirate Scarf 1890 762
Exceptional Flintlock Rifle of Blasting 1891 763
Tile 1×2 Grill 18 12
Betty Hatchesbatten – Pirate Guard 1933 78d
Ralphie Brig-Eyes – Pirate Jailkeeper 1934 78e
Diablo Phil – Pirate Brawler 1935 78f
Morty Mizzenmast – Pirate Chumchopper 1936 790
Captain Jack Knife – Pirate Captain 1938 792
Numb Chuck – Paradox Ninja 1954 7a2
Healing Banana 1966 7ae
Corner Plate 1x2x2 19 13
Generic player 1 1
Amber Gem 2097196 20002c
Rank 1 Buccaneer Book 20 14
Whip with Loop 2135 857
Spruce Tree 2137 859
Banana 2160 870
Pirate Bosun 2165 875
Toby Squidbarrel – Pirate Cabin Boy 2183 887
Notion Potion 2198 896
Rank 1 Daredevil Book 21 15
Pirate Flag 2208 8a0
Ninja Flag 2209 8a1
Arrrthur Arrrbuckle – Pirate Mechanic 2240 8c0
Billy Picaroon – Brick Vendor 2264 8d8
Enrique Tharshebloze – Pirate Lookout 2279 8e7
Bonny Belay – Pirate Rigger 2280 8e8
Simon Soupspoon – Pirate Cook 2281 8e9
Dustbin 22 16
Ninja Messenger 2399 95f
Technic Bearing Plate 2×2 with Pin Hole 23 17
Yan Parablister – Gear Vendor 2414 96e
Kammy Kazei – Gear Vendor 2419 973
Master Fong Shader – Paradox Sensei 2498 9c2
Slope Brick 75° 1x2x3 Inverted 24 18
Bright Red Pants 2508 9cc
Bright Orange Pants 2509 9cd
Brick Yellow Pants 2511 9cf
Medium Blue Pants 2513 9d1
Sand Green Pants 2514 9d2
Dark Green Pants 2515 9d3
Earth Green Pants 2516 9d4
Earth Blue Pants 2517 9d5
Bright Blue Pants 2519 9d7
Sand Blue Pants 2520 9d8
Dark Stone Grey Pants 2521 9d9
Medium Stone Grey Pants 2522 9da
White Pants 2523 9db
Black Pants 2524 9dc
Reddish Brown Pants 2526 9de
Dark Red Pants 2527 9df
Great Longsword of Lightning 2586 a1a
White Baseball Cap 2587 a1b
Chef Hat 2588 a1c
Celebration Wand 2589 a1d
Brick 1×2 with Pin 25 19
Worthy Large Axe 2615 a37
Great Prismatic Wrench 2616 a38
Bullhorn 2617 a39
Quicksicle 2620 a3c
Improved Ladle 2622 a3e
Wizard Hat 2623 a3f
Kettle Helmet 2624 a40
Black Knit Cap 2627 a43
Superior Cutlass 2630 a46
Shiver Me Timbers Axe 2631 a47
Brown Pirate Hat 2632 a48
Black Pirate Hat 2633 a49
Binoculars 2634 a4a
Pirate Captain Hat 2635 a4b
Maelstrom-Infused White Ninja Hood 2641 a51
Maelstrom-Infused Black Ninja Hood 2642 a52
Exceptional Hatchet 2643 a53
Worthy Corseque 2644 a54
White Conical Hat 2647 a57
Black Hood 2648 a58
Brick 1×16 26 1a
Tile 1×1 with Clip 27 1b
Plate 1×4 with 2 Snaps 28 1c
Monument Shirt 2942 b7e
Musical Notes Shirt 2943 b7f
Concert Superstar Shirt 2944 b80
No Robots Shirt 2945 b81
Boom Box 2946 b82
Red Striped Crew Shirt 2950 b86
Blue Striped Crew Shirt 2951 b87
Yellow Striped Crew Shirt 2952 b88
White Pirate Ship Shirt 2953 b89
Black Pirate Ship Shirt 2954 b8a
No Ninjas Shirt 2955 b8b
White Ninja Gi 2957 b8d
Black Ninja Gi 2958 b8e
Throwing Star Shirt 2959 b8f
No Pirates Shirt 2960 b90
Ninja Buckler Shield 2962 b92
Mantis Style Maelstrom Hammer 2963 b93
Red Pirate Scarf 2979 ba3
Bubble Blower 2985 ba9
Funky Horn 2986 baa
Red Conical Hat 2988 bac
Yo Ho Ho Mug 2989 bad
Exceptional Flintlock Pistol 2990 bae
Armor Polish 2993 bb1
Healing Cherry 2994 bb2
Healing Apple 2995 bb3
Armor Shine 2996 bb4
Armor Gleam 2997 bb5
Strong Notion Potion 2998 bb6
Super Notion Potion 2999 bb7
Brick 2×4 29 1d
Guild Master 3001 bb9
Peppy Slapbiscuit 3002 bba
LEGO Universe Shirt 3010 bc2
BBQ Blast Hot Dog 3011 bc3
Everlasting Hot Dog 3012 bc4
Grey Knit Cap 3013 bc5
Panda Style Maelstrom Hammer 3014 bc6
Dragon Style Maelstrom Hammer 3015 bc7
Monkey Style Maelstrom Hammer 3016 bc8
Ninja Sentry 3029 bd5
Ninja Gardener 3030 bd6
Ninja Bricksmith 3032 bd8
Ninja Tree Sentry 3036 bdc
Blue Imaginite 3038 bde
Green Imaginite 3039 bdf
Red Imaginite 3040 be0
Ghostly Numb Chuck 3043 be3
Ninja Guild Master 3044 be4
Elephant Pet 3050 bea
Cat Pet 3054 bee
Exceptional Katana of Shielding 3065 bf9
Yar Har Har Sextant 3066 bfa
Worthy Shovel 3067 bfb
Improved Crescent Wrench 3077 c05
Black-Hearted Kevin – Pirate Cannoneer 3095 c17
Brick 2×3 30 1e
Amber Gem 3100 c1c
Merciless Ned – Pirate Scout 3110 c26
Superior Composite Mace 3121 c31
Broom Bot 3161 c59
Property Guard 3189 c75
Wild Elephant 3194 c7a
Triceratops Pet 3195 c7b
Brick 2×2 31 1f
Water Sprayer 3206 c86
Broombot 3247 caf
Reindeer 3253 cb5
Terrier Pet 3254 cb6
Coalessa – Assembly Mystic 3257 cb9
Skunk Pet 3261 cbd
Wild Reindeer 3266 cc2
Skunk 3279 ccf
Water Sprayer Module 1 3290 cda
Water Sprayer Module 2 3291 cdb
Water Sprayer Module 3 3292 cdc
Brick 1×2 32 20
Plate 1×2 with Handles 335 14f
Window Frame 4×3 336 150
Window for Frame 2×3 337 151
Wally Radish 3385 d39
Bella Pepper 3386 d3a
Glass for Frame 1x4x3 338 152
Brick 1×1 33 21
Door with Pane for Frame 4×5 340 154
Technic Brick 1×6 341 155
Technic Brick 1×12 342 156
Windscreen 3×6 25° 343 157
Telescope Stand 2x2x2 344 158
Cone 2x2x2 345 159
Cone 4x4x2 346 15a
Bracket Plate 2×2 – 2×2 347 15b
Antenna 4 348 15c
Plate 6×6 349 15d
Brick 2×10 34 22
Dish 4×4 Inverted 350 15e
Dish 8×8 Inverted 351 15f
Lion Pet 3520 dc0
Glass for Train Window 1x4x3 352 160
Frame 1x2x3 Narrow 353 161
Glass for Train Window 1x2x3 354 162
Seat 2x2x2 with 2 Studs 355 163
Tipper Body 4×6-Base 356 164
Gate 1x4x2 with 2 Studs 357 165
Bar 6 with Stop 359 167
Brick 2×8 35 23
Window Frame 2x4x3 360 168
Window 4×3 361 169
Tile 2×2 Round 362 16a
Grid Plate 8×8 363 16b
Slope Brick 25° 3×3 364 16c
Tile 1×8 365 16d
Plate 1×2 with Ladder 366 16e
Bunny Pet 3672 e58
Train Door 1x4x5 Left 367 16f
Train Door 1x4x5 Right 368 170
Glass for Train Door 369 171
Brick 1×8 36 24
Ladder 370 172
Car Chassis Plate 4×10 371 173
Hu Where – Ninja Picnicker 3723 e8b
Swabby Bilgebarrel – Pirate Picnicker 3724 e8c
Brick 1×2 with Groove 373 175
Brick 1×14 with Groove 374 176
Element for Rolling Gate 375 177
End Element for Rolling Gate 376 178
Technic Hub 30×20 378 17a
Plate 2×16 379 17b
Brick 1×6 37 25
Windscreen 2x4x2 Inverted 380 17c
Dish 6×6 Inverted with Grid 381 17d
Vegan Steven – Raptor-at-Large 3820 eec
Balloon Tire Ø8/Ø21 382 17e
Box 2x2x2 with Hinge 383 17f
Lid for Box 2x2x2 384 180
Firefighter Helmet 3852 f0c
Witch Hat 3853 f0d
Super Bobbejaan Spanner 3855 f0f
Flower Hat 3858 f12
Police Hat 3859 f13
Wooden Tub, Round 4×4 385 181
Hard Hat 3860 f14
Diver Helmet 3861 f15
Double Striped Skunk Shirt 3862 f16
Striped Skunk Shirt 3863 f17
Black Baseball Cap 3868 f1c
Orange Baseball Cap 3869 f1d
Panel Wall 1x5x6 with Window 386 182
Improved Witch Broom 3870 f1e
Basic Shovel 3872 f20
Frame Skylight 4x4x3/45° 387 183
Glass for Skylight 4x4x3/45° 388 184
Stanchion 2x4x5 Inclined 389 185
Brick 1×4 38 26
Plate 1×10 390 186
Leroy Duddsmith – Clothing Vendor 3917 f4d
Farnham Spoon – Supplies Vendor 3918 f4e
Wagon Wheel Spoked, Large 391 187
Bruno Underbite – Brick Vendor 3921 f51
Cecil Eyetwitch – Gear Vendor 3925 f55
Brick 1×3 with Bow 392 188
Conductor’s Shirt 3938 f62
Streamer 393 189
Slope Brick 25° 6×6 Double 394 18a
Plate 1×8 with Slide 395 18b
Slope Brick 6×8 396 18c
Cupboard 2x3x2 397 18d
Coalessa’s Flying Disc 3981 f8d
Cupboard Door 3×2 398 18e
Crocodile Pet 3994 f9a
Nancy the Lion – Coalessa’s Pet 3995 f9b
Drawer 399 18f
Plate 2×4 39 27
Technic Brick 1×4 3 3
Bob 4009 fa9
Brick 1x1x1 Round with Fins 400 190
Plate 1×4 with Offset Ends 401 191
Skee Daddle 4027 fbb
Bjorn Fjord 4028 fbc
Brick 2x2x2 Round with Fins 402 192
Windscreen 2x4x2 Vertical 403 193
Long Sleeve Shirt 4049 fd1
Camera Brick 1x2x2/3 404 194
Short Sleeve Shirt 4050 fd2
Checkered Shirt 4051 fd3
Open Collar Shirt 4052 fd4
Jacket with Pockets 4053 fd5
Business Jacket 4054 fd6
Coveralls 4055 fd7
Girl’s Business Jacket 4056 fd8
Business Suit 4057 fd9
Striped Zipper Jacket 4058 fda
Rumpled Jacket 4059 fdb
Plate 1×2 with Lattice Strut and End Tube 405 195
Casual Suit 4060 fdc
Yellow Flower Shirt 4061 fdd
Sailboat Shirt 4062 fde
Shirt with Vest 4063 fdf
Zipper Jacket 4064 fe0
Textured Polo Shirt 4065 fe1
Sparkle Tank Top 4066 fe2
Polo Shirt 4067 fe3
Ripped Shirt 4068 fe4
Red Vest 4069 fe5
Cockpit Bottom 6x6x1 1/3 406 196
Green Coveralls 4070 fe6
Girl’s Medieval Vest 4071 fe7
Medieval Vest 4072 fe8
Medieval Rags 4073 fe9
Boy’s Tank Top 4074 fea
Girl’s Tank Top 4075 feb
Girl’s Midriff Jacket 4076 fec
Corduroy Jacket 4077 fed
Oxford Sweater 4078 fee
Number 5 Jersey 4079 fef
Bracket 2×3 – 2×2 407 197
Starry Tank Top 4080 ff0
Hoodie 4081 ff1
Red Flower Shirt 4082 ff2
Long Sleeve Shirt 4083 ff3
Short Sleeve Shirt 4084 ff4
Checkered Shirt 4085 ff5
Open Collar Shirt 4086 ff6
Jacket with Pockets 4087 ff7
Business Jacket 4088 ff8
Coveralls 4089 ff9
Tap 1×1 408 198
Girl’s Business Jacket 4090 ffa
Business Suit 4091 ffb
Striped Zipper Jacket 4092 ffc
Rumpled Jacket 4093 ffd
Casual Suit 4094 ffe
Yellow Flower Shirt 4095 fff
Sailboat Shirt 4096 1000
Shirt with Vest 4097 1001
Zipper Jacket 4098 1002
Textured Polo Shirt 4099 1003
Propeller 3 Blades Ø5.5 409 199
Plate 2×3 40 28
Sparkle Tank Top 4100 1004
Polo Shirt 4101 1005
Ripped Shirt 4102 1006
Red Vest 4103 1007
Green Coveralls 4104 1008
Girl’s Medieval Vest 4105 1009
Medieval Vest 4106 100a
Medieval Rags 4107 100b
Boy’s Tank Top 4108 100c
Girl’s Tank Top 4109 100d
Plate 1×2 with Hook 410 19a
Girl’s Midriff Jacket 4110 100e
Corduroy Jacket 4111 100f
Oxford Sweater 4112 1010
Number 5 Jersey 4113 1011
Starry Tank Top 4114 1012
Hoodie 4115 1013
Red Flower Shirt 4116 1014
Long Sleeve Shirt 4117 1015
Short Sleeve Shirt 4118 1016
Checkered Shirt 4119 1017
Brick 1×1 Round with Cross Flower 411 19b
Open Collar Shirt 4120 1018
Jacket with Pockets 4121 1019
Business Jacket 4122 101a
Coveralls 4123 101b
Girl’s Business Jacket 4124 101c
Business Suit 4125 101d
Striped Zipper Jacket 4126 101e
Rumpled Jacket 4127 101f
Casual Suit 4128 1020
Yellow Flower Shirt 4129 1021
Brick 1×1 Round with Flower 412 19c
Sailboat Shirt 4130 1022
Shirt with Vest 4131 1023
Zipper Jacket 4132 1024
Textured Polo Shirt 4133 1025
Sparkle Tank Top 4134 1026
Polo Shirt 4135 1027
Ripped Shirt 4136 1028
Red Vest 4137 1029
Green Coveralls 4138 102a
Girl’s Medieval Vest 4139 102b
Angle Bracket 2×8 413 19d
Medieval Vest 4140 102c
Medieval Rags 4141 102d
Boy’s Tank Top 4142 102e
Girl’s Tank Top 4143 102f
Girl’s Midriff Jacket 4144 1030
Corduroy Jacket 4145 1031
Oxford Sweater 4146 1032
Number 5 Jersey 4147 1033
Starry Tank Top 4148 1034
Hoodie 4149 1035
Red Flower Shirt 4150 1036
Long Sleeve Shirt 4151 1037
Short Sleeve Shirt 4152 1038
Checkered Shirt 4153 1039
Open Collar Shirt 4154 103a
Jacket with Pockets 4155 103b
Business Jacket 4156 103c
Coveralls 4157 103d
Girl’s Business Jacket 4158 103e
Business Suit 4159 103f
Dish 2×2 Inverted 415 19f
Striped Zipper Jacket 4160 1040
Rumpled Jacket 4161 1041
Casual Suit 4162 1042
Yellow Flower Shirt 4163 1043
Sailboat Shirt 4164 1044
Shirt with Vest 4165 1045
Zipper Jacket 4166 1046
Textured Polo Shirt 4167 1047
Sparkle Tank Top 4168 1048
Polo Shirt 4169 1049
Cone 4x4x2 Hollow 416 1a0
Ripped Shirt 4170 104a
Red Vest 4171 104b
Green Coveralls 4172 104c
Girl’s Medieval Vest 4173 104d
Medieval Vest 4174 104e
Medieval Rags 4175 104f
Boy’s Tank Top 4176 1050
Girl’s Tank Top 4177 1051
Girl’s Midriff Jacket 4178 1052
Corduroy Jacket 4179 1053
Oxford Sweater 4180 1054
Number 5 Jersey 4181 1055
Starry Tank Top 4182 1056
Hoodie 4183 1057
Red Flower Shirt 4184 1058
Long Sleeve Shirt 4185 1059
Short Sleeve Shirt 4186 105a
Checkered Shirt 4187 105b
Open Collar Shirt 4188 105c
Jacket with Pockets 4189 105d
Ship Steering Wheel 418 1a2
Business Jacket 4190 105e
Coveralls 4191 105f
Girl’s Business Jacket 4192 1060
Business Suit 4193 1061
Striped Zipper Jacket 4194 1062
Rumpled Jacket 4195 1063
Casual Suit 4196 1064
Yellow Flower Shirt 4197 1065
Sailboat Shirt 4198 1066
Shirt with Vest 4199 1067
Plate 1×2 41 29
Zipper Jacket 4200 1068
Textured Polo Shirt 4201 1069
Sparkle Tank Top 4202 106a
Polo Shirt 4203 106b
Ripped Shirt 4204 106c
Red Vest 4205 106d
Green Coveralls 4206 106e
Girl’s Medieval Vest 4207 106f
Medieval Vest 4208 1070
Medieval Rags 4209 1071
Slope Brick 45° 4×4 Inverted Double with Cut-Out 420 1a4
Boy’s Tank Top 4210 1072
Girl’s Tank Top 4211 1073
Girl’s Midriff Jacket 4212 1074
Corduroy Jacket 4213 1075
Oxford Sweater 4214 1076
Number 5 Jersey 4215 1077
Starry Tank Top 4216 1078
Hoodie 4217 1079
Red Flower Shirt 4218 107a
Long Sleeve Shirt 4219 107b
Wedge 4×4 Triple, Inverted 421 1a5
Short Sleeve Shirt 4220 107c
Checkered Shirt 4221 107d
Open Collar Shirt 4222 107e
Jacket with Pockets 4223 107f
Business Jacket 4224 1080
Coveralls 4225 1081
Girl’s Business Jacket 4226 1082
Business Suit 4227 1083
Striped Zipper Jacket 4228 1084
Rumpled Jacket 4229 1085
Wedge 4×6 Inverted 422 1a6
Casual Suit 4230 1086
Yellow Flower Shirt 4231 1087
Sailboat Shirt 4232 1088
Shirt with Vest 4233 1089
Zipper Jacket 4234 108a
Textured Polo Shirt 4235 108b
Sparkle Tank Top 4236 108c
Polo Shirt 4237 108d
Ripped Shirt 4238 108e
Red Vest 4239 108f
Wedge 4×4 with Cut-Out 423 1a7
Green Coveralls 4240 1090
Girl’s Medieval Vest 4241 1091
Medieval Vest 4242 1092
Medieval Rags 4243 1093
Boy’s Tank Top 4244 1094
Girl’s Tank Top 4245 1095
Girl’s Midriff Jacket 4246 1096
Corduroy Jacket 4247 1097
Oxford Sweater 4248 1098
Number 5 Jersey 4249 1099
Slope Brick 25°/45° 4×3 424 1a8
Starry Tank Top 4250 109a
Hoodie 4251 109b
Red Flower Shirt 4252 109c
Long Sleeve Shirt 4253 109d
Short Sleeve Shirt 4254 109e
Checkered Shirt 4255 109f
Open Collar Shirt 4256 10a0
Jacket with Pockets 4257 10a1
Business Jacket 4258 10a2
Coveralls 4259 10a3
Airplane Window 425 1a9
Girl’s Business Jacket 4260 10a4
Business Suit 4261 10a5
Striped Zipper Jacket 4262 10a6
Rumpled Jacket 4263 10a7
Casual Suit 4264 10a8
Yellow Flower Shirt 4265 10a9
Sailboat Shirt 4266 10aa
Shirt with Vest 4267 10ab
Zipper Jacket 4268 10ac
Textured Polo Shirt 4269 10ad
Panel 1x4x2 with Windows 426 1aa
Sparkle Tank Top 4270 10ae
Polo Shirt 4271 10af
Ripped Shirt 4272 10b0
Red Vest 4273 10b1
Green Coveralls 4274 10b2
Girl’s Medieval Vest 4275 10b3
Medieval Vest 4276 10b4
Medieval Rags 4277 10b5
Boy’s Tank Top 4278 10b6
Girl’s Tank Top 4279 10b7
Panel 1x2x2 427 1ab
Girl’s Midriff Jacket 4280 10b8
Corduroy Jacket 4281 10b9
Oxford Sweater 4282 10ba
Number 5 Jersey 4283 10bb
Starry Tank Top 4284 10bc
Hoodie 4285 10bd
Red Flower Shirt 4286 10be
Long Sleeve Shirt 4287 10bf
Short Sleeve Shirt 4288 10c0
Checkered Shirt 4289 10c1
Panel 1x2x1 428 1ac
Open Collar Shirt 4290 10c2
Jacket with Pockets 4291 10c3
Business Jacket 4292 10c4
Coveralls 4293 10c5
Girl’s Business Jacket 4294 10c6
Business Suit 4295 10c7
Striped Zipper Jacket 4296 10c8
Rumpled Jacket 4297 10c9
Casual Suit 4298 10ca
Yellow Flower Shirt 4299 10cb
Jet Turbine with 2×2 Base 429 1ad
Plate 1×1 42 2a
Sailboat Shirt 4300 10cc
Shirt with Vest 4301 10cd
Zipper Jacket 4302 10ce
Textured Polo Shirt 4303 10cf
Sparkle Tank Top 4304 10d0
Polo Shirt 4305 10d1
Ripped Shirt 4306 10d2
Red Vest 4307 10d3
Green Coveralls 4308 10d4
Girl’s Medieval Vest 4309 10d5
Blades for Jet Turbine 430 1ae
Medieval Vest 4310 10d6
Medieval Rags 4311 10d7
Boy’s Tank Top 4312 10d8
Girl’s Tank Top 4313 10d9
Girl’s Midriff Jacket 4314 10da
Corduroy Jacket 4315 10db
Oxford Sweater 4316 10dc
Number 5 Jersey 4317 10dd
Starry Tank Top 4318 10de
Hoodie 4319 10df
Plate 2×2 with Landing Gear 431 1af
Red Flower Shirt 4320 10e0
Long Sleeve Shirt 4321 10e1
Short Sleeve Shirt 4322 10e2
Checkered Shirt 4323 10e3
Open Collar Shirt 4324 10e4
Jacket with Pockets 4325 10e5
Business Jacket 4326 10e6
Coveralls 4327 10e7
Girl’s Business Jacket 4328 10e8
Business Suit 4329 10e9
Inverted Windscreen 3x4x4 432 1b0
Striped Zipper Jacket 4330 10ea
Rumpled Jacket 4331 10eb
Casual Suit 4332 10ec
Yellow Flower Shirt 4333 10ed
Sailboat Shirt 4334 10ee
Shirt with Vest 4335 10ef
Zipper Jacket 4336 10f0
Textured Polo Shirt 4337 10f1
Sparkle Tank Top 4338 10f2
Polo Shirt 4339 10f3
Ripped Shirt 4340 10f4
Red Vest 4341 10f5
Green Coveralls 4342 10f6
Girl’s Medieval Vest 4343 10f7
Medieval Vest 4344 10f8
Medieval Rags 4345 10f9
Boy’s Tank Top 4346 10fa
Girl’s Tank Top 4347 10fb
Girl’s Midriff Jacket 4348 10fc
Corduroy Jacket 4349 10fd
Plate 6×6, 1/4-Circle 434 1b2
Oxford Sweater 4350 10fe
Number 5 Jersey 4351 10ff
Starry Tank Top 4352 1100
Hoodie 4353 1101
Red Flower Shirt 4354 1102
Long Sleeve Shirt 4355 1103
Short Sleeve Shirt 4356 1104
Checkered Shirt 4357 1105
Open Collar Shirt 4358 1106
Jacket with Pockets 4359 1107
Lattice 1x4x3 435 1b3
Business Jacket 4360 1108
Coveralls 4361 1109
Girl’s Business Jacket 4362 110a
Business Suit 4363 110b
Striped Zipper Jacket 4364 110c
Rumpled Jacket 4365 110d
Casual Suit 4366 110e
Yellow Flower Shirt 4367 110f
Sailboat Shirt 4368 1110
Shirt with Vest 4369 1111
Grating 1x4x6 with 2 Horizontal Clips 436 1b4
Zipper Jacket 4370 1112
Textured Polo Shirt 4371 1113
Sparkle Tank Top 4372 1114
Polo Shirt 4373 1115
Ripped Shirt 4374 1116
Red Vest 4375 1117
Green Coveralls 4376 1118
Girl’s Medieval Vest 4377 1119
Medieval Vest 4378 111a
Medieval Rags 4379 111b
Boy’s Tank Top 4380 111c
Girl’s Tank Top 4381 111d
Girl’s Midriff Jacket 4382 111e
Corduroy Jacket 4383 111f
Oxford Sweater 4384 1120
Number 5 Jersey 4385 1121
White Tank Top 4386 1122
Hoodie 4387 1123
Red Flower Shirt 4388 1124
Long Sleeve Shirt 4389 1125
Short Sleeve Shirt 4390 1126
Checkered Shirt 4391 1127
Open Collar Shirt 4392 1128
Jacket with Pockets 4393 1129
Business Jacket 4394 112a
Coveralls 4395 112b
Girl’s Business Jacket 4396 112c
Business Suit 4397 112d
Striped Zipper Jacket 4398 112e
Rumpled Jacket 4399 112f
Plate 4×10 43 2b
Casual Suit 4400 1130
Yellow Flower Shirt 4401 1131
Sailboat Shirt 4402 1132
Shirt with Vest 4403 1133
Zipper Jacket 4404 1134
Textured Polo Shirt 4405 1135
Sparkle Tank Top 4406 1136
Polo Shirt 4407 1137
Ripped Shirt 4408 1138
Red Vest 4409 1139
Green Coveralls 4410 113a
Girl’s Medieval Vest 4411 113b
Medieval Vest 4412 113c
Medieval Rags 4413 113d
Boy’s Tank Top 4414 113e
Girl’s Tank Top 4415 113f
Girl’s Midriff Jacket 4416 1140
Corduroy Jacket 4417 1141
Oxford Sweater 4418 1142
Number 5 Jersey 4419 1143
Starry Tank Top 4420 1144
Hoodie 4421 1145
Red Flower Shirt 4422 1146
Long Sleeve Shirt 4423 1147
Short Sleeve Shirt 4424 1148
Checkered Shirt 4425 1149
Open Collar Shirt 4426 114a
Jacket with Pockets 4427 114b
Business Jacket 4428 114c
Coveralls 4429 114d
Girl’s Business Jacket 4430 114e
Business Suit 4431 114f
Striped Zipper Jacket 4432 1150
Rumpled Jacket 4433 1151
Casual Suit 4434 1152
Yellow Flower Shirt 4435 1153
Sailboat Shirt 4436 1154
Shirt with Vest 4437 1155
Zipper Jacket 4438 1156
Textured Polo Shirt 4439 1157
Sparkle Tank Top 4440 1158
Polo Shirt 4441 1159
Ripped Shirt 4442 115a
Red Vest 4443 115b
Green Coveralls 4444 115c
Girl’s Medieval Vest 4445 115d
Medieval Vest 4446 115e
Medieval Rags 4447 115f
Boy’s Tank Top 4448 1160
Girl’s Tank Top 4449 1161
Lattice 9X13 M 444 1bc
Girl’s Midriff Jacket 4450 1162
Corduroy Jacket 4451 1163
Oxford Sweater 4452 1164
Number 5 Jersey 4453 1165
Starry Tank Top 4454 1166
Hoodie 4455 1167
Red Flower Shirt 4456 1168
Long Sleeve Shirt 4457 1169
Short Sleeve Shirt 4458 116a
Checkered Shirt 4459 116b
Open Collar Shirt 4460 116c
Jacket with Pockets 4461 116d
Business Jacket 4462 116e
Coveralls 4463 116f
Girl’s Business Jacket 4464 1170
Business Suit 4465 1171
Striped Zipper Jacket 4466 1172
Rumpled Jacket 4467 1173
Casual Suit 4468 1174
Yellow Flower Shirt 4469 1175
Brick 1x2x5 with Groove 446 1be
Sailboat Shirt 4470 1176
Shirt with Vest 4471 1177
Zipper Jacket 4472 1178
Textured Polo Shirt 4473 1179
Sparkle Tank Top 4474 117a
Polo Shirt 4475 117b
Ripped Shirt 4476 117c
Red Vest 4477 117d
Green Coveralls 4478 117e
Girl’s Medieval Vest 4479 117f
Shroud, Small 447 1bf
Medieval Vest 4480 1180
Medieval Rags 4481 1181
Boy’s Tank Top 4482 1182
Girl’s Tank Top 4483 1183
Girl’s Midriff Jacket 4484 1184
Corduroy Jacket 4485 1185
Oxford Sweater 4486 1186
Number 5 Jersey 4487 1187
Starry Tank Top 4488 1188
Hoodie 4489 1189
Red Flower Shirt 4490 118a
Long Sleeve Shirt 4491 118b
Short Sleeve Shirt 4492 118c
Checkered Shirt 4493 118d
Open Collar Shirt 4494 118e
Jacket with Pockets 4495 118f
Business Jacket 4496 1190
Coveralls 4497 1191
Girl’s Business Jacket 4498 1192
Business Suit 4499 1193
Bow 1x6x 3 1/3 449 1c1
Plate 4×4 44 2c
Striped Zipper Jacket 4500 1194
Rumpled Jacket 4501 1195
Casual Suit 4502 1196
Yellow Flower Shirt 4503 1197
Sailboat Shirt 4504 1198
Shirt with Vest 4505 1199
Zipper Jacket 4506 119a
Textured Polo Shirt 4507 119b
Sparkle Tank Top 4508 119c
Polo Shirt 4509 119d
Brick 2x4x2 with Bottom Connection on Sides 450 1c2
Ripped Shirt 4510 119e
Red Vest 4511 119f
Green Coveralls 4512 11a0
Girl’s Medieval Vest 4513 11a1
Medieval Vest 4514 11a2
Medieval Rags 4515 11a3
Boy’s Tank Top 4516 11a4
Girl’s Tank Top 4517 11a5
Girl’s Midriff Jacket 4518 11a6
Corduroy Jacket 4519 11a7
Plate 10×10 Octagonal with Cut-Out 451 1c3
Oxford Sweater 4520 11a8
Number 5 Jersey 4521 11a9
Starry Tank Top 4522 11aa
Hoodie 4523 11ab
Red Flower Shirt 4524 11ac
Long Sleeve Shirt 4525 11ad
Short Sleeve Shirt 4526 11ae
Checkered Shirt 4527 11af
Open Collar Shirt 4528 11b0
Jacket with Pockets 4529 11b1
Bush 452 1c4
Business Jacket 4530 11b2
Coveralls 4531 11b3
Girl’s Business Jacket 4532 11b4
Business Suit 4533 11b5
Striped Zipper Jacket 4534 11b6
Rumpled Jacket 4535 11b7
Casual Suit 4536 11b8
Yellow Flower Shirt 4537 11b9
Sailboat Shirt 4538 11ba
Shirt with Vest 4539 11bb
Zipper Jacket 4540 11bc
Textured Polo Shirt 4541 11bd
Sparkle Tank Top 4542 11be
Polo Shirt 4543 11bf
Ripped Shirt 4544 11c0
Red Vest 4545 11c1
Green Coveralls 4546 11c2
Girl’s Medieval Vest 4547 11c3
Medieval Vest 4548 11c4
Medieval Rags 4549 11c5
Castle Balcony 4x8x2 454 1c6
Boy’s Tank Top 4550 11c6
Girl’s Tank Top 4551 11c7
Girl’s Midriff Jacket 4552 11c8
Corduroy Jacket 4553 11c9
Oxford Sweater 4554 11ca
Number 5 Jersey 4555 11cb
Starry Tank Top 4556 11cc
Hoodie 4557 11cd
Red Flower Shirt 4558 11ce
Long Sleeve Shirt 4559 11cf
Short Sleeve Shirt 4560 11d0
Checkered Shirt 4561 11d1
Open Collar Shirt 4562 11d2
Jacket with Pockets 4563 11d3
Business Jacket 4564 11d4
Coveralls 4565 11d5
Girl’s Business Jacket 4566 11d6
Business Suit 4567 11d7
Striped Zipper Jacket 4568 11d8
Rumpled Jacket 4569 11d9
Windscreen 2x5X1 1/3 456 1c8
Casual Suit 4570 11da
Yellow Flower Shirt 4571 11db
Sailboat Shirt 4572 11dc
Shirt with Vest 4573 11dd
Zipper Jacket 4574 11de
Textured Polo Shirt 4575 11df
Sparkle Tank Top 4576 11e0
Polo Shirt 4577 11e1
Ripped Shirt 4578 11e2
Red Vest 4579 11e3
Green Coveralls 4580 11e4
Girl’s Medieval Vest 4581 11e5
Medieval Vest 4582 11e6
Medieval Rags 4583 11e7
Boy’s Tank Top 4584 11e8
Girl’s Tank Top 4585 11e9
Girl’s Midriff Jacket 4586 11ea
Corduroy Jacket 4587 11eb
Oxford Sweater 4588 11ec
Number 5 Jersey 4589 11ed
Starry Tank Top 4590 11ee
Hoodie 4591 11ef
Red Flower Shirt 4592 11f0
Long Sleeve Shirt 4593 11f1
Short Sleeve Shirt 4594 11f2
Checkered Shirt 4595 11f3
Open Collar Shirt 4596 11f4
Jacket with Pockets 4597 11f5
Business Jacket 4598 11f6
Coveralls 4599 11f7
Lattice Fence 1x8x2 2/3 459 1cb
Plate 4×6 45 2d
Girl’s Business Jacket 4600 11f8
Business Suit 4601 11f9
Striped Zipper Jacket 4602 11fa
Rumpled Jacket 4603 11fb
Casual Suit 4604 11fc
Yellow Flower Shirt 4605 11fd
Sailboat Shirt 4606 11fe
Shirt with Vest 4607 11ff
Zipper Jacket 4608 1200
Textured Polo Shirt 4609 1201
Angle Bracket 2x5x2 1/3 460 1cc
Sparkle Tank Top 4610 1202
Polo Shirt 4611 1203
Ripped Shirt 4612 1204
Red Vest 4613 1205
Green Coveralls 4614 1206
Girl’s Medieval Vest 4615 1207
Medieval Vest 4616 1208
Medieval Rags 4617 1209
Boy’s Tank Top 4618 120a
Girl’s Tank Top 4619 120b
Wooden Door 4×8 with 1/4-Circle Top 461 1cd
Girl’s Midriff Jacket 4620 120c
Corduroy Jacket 4621 120d
Oxford Sweater 4622 120e
Number 5 Jersey 4623 120f
Starry Tank Top 4624 1210
Hoodie 4625 1211
Red Flower Shirt 4626 1212
Corner Plate 6x6x45° 462 1ce
Arch Brick 1x12x3 464 1d0
Brick 1×10 465 1d1
Brick 1×12 466 1d2
Wheel Hard-Plastic Ø24 Small 467 1d3
Palm Stem Element 468 1d4
Hanger 1×6 with 4 Studs 469 1d5
Plate 6×10 46 2e
Palm Leaf 470 1d6
Stromling 4712 1268
Classic Rocket Nose Cone 4713 1269
Classic Rocket Cockpit 4714 126a
Classic Rocket Engine 4715 126b
Steampunk Rocket Nose Cone 4716 126c
Steampunk Rocket Cockpit 4717 126d
Steampunk Rocket Engine 4718 126e
Pod Rocket Nose Cone 4719 126f
Pod Rocket Cockpit 4720 1270
Pod Rocket Engine 4721 1271
Brick 4×6 Wedge with Cut-Out 472 1d8
Plate 2×2 2/3 with 2 Snaps 473 1d9
Eeekums – Monkey Picnicker 4746 128a
Tile 8×8 Round with 4 Studs 474 1da
Tile 4×4 with 4 Studs 475 1db
Tile 4×6 with 12 Studs 476 1dc
Arch Brick 1x4x2 477 1dd
Arch 1x6x2 478 1de
Tile 1×2 with Handle 1x4x2 479 1df
Plate 4×8 47 2f
Brick 1x4x1 1/3 with Bowed Ridge 480 1e0
Brick 2×4 with Bowed Ridge 481 1e1
Improved Firefighter Axe 4824 12d8
Washbowl 4×4 with 4 Studs 482 1e2
Brick 2×3 with Curved Top 483 1e3
Swabbie the Monkey 4853 12f5
Cannonball 4859 12fb
Technic Brick 4×4 Round 486 1e6
Panel 1x1x1 Corner 487 1e7
Basic Shortsword 4880 1310
Basic Spear 4881 1311
Basic Hammer 4883 1313
Cone 3x3x2 488 1e8
Door with Pane for Frame 2x6x6 489 1e9
Plate 6×8 48 30
Frame 2x6x6 490 1ea
DJ Studd – Nimbus Station Mixmaster 4918 1336
Tail Fin 2x6x4 491 1eb
Prismatic Baseball Cap 4924 133c
Hub Ø17mm with 4 Studs 492 1ec
Brick 2×4 with 2 Pins 493 1ed
Dominic Knack – Gear Vendor 4968 1368
Plant with 3 Leaves 496 1f0
Money Magnet 4977 1371
Container Door 1x2x3 497 1f1
Train Window 1x4x3 498 1f2
Wedge Brick 2×3 Right 499 1f3
Slope Brick 45° 2×2 49 31
PRDX-4 – Robot Picnicker 5004 138c
Kant Dance 5006 138e
Sofie Cushion 5007 138f
Dusty Holster – Cowboy Picnicker 5009 1391
Wedge Brick 2×3 Left 500 1f4
Kirsten Quasar – Astronaut Picnicker 5010 1392
Tile 4×8 with 12 Studs 501 1f5
Plate 1×6 with Railing 502 1f6
Castle Maiden’s Headdress 5032 13a8
Crash Helmet Visor 5033 13a9
Warhorse Caparison 5035 13ab
Dolly without Wheel 5036 13ac
Plate 1×2 with Tow Bar and Ball 5037 13ad
Tipper Body 3×4-Base 5038 13ae
Knapsack 5039 13af
Tile 1×6 503 1f7
Admiral’s Hat 5040 13b0
Sabre 5041 13b1
Paddle 5046 13b6
Head Scarf 5047 13b7
Three-Cornered Hat 5048 13b8
Shako 5049 13b9
Tile 1×2 with Water Tap 504 1f8
Parrot 5050 13ba
Shark Body 5051 13bb
Shark Jaw 5052 13bc
Middle Section Ship 8×16 5054 13be
Flintlock Rifle 5055 13bf
Crossbow 5056 13c0
Oval Battle Shield 5058 13c2
Knight Armor with Skirt 5059 13c3
Tap Element 1×2 505 1f9
Ghost Costume 5060 13c4
Visor for Knight’s Helmet 5061 13c5
Life Vest 5062 13c6
Fishing Rod 5063 13c7
Technic Hub Ø30 5064 13c8
Tire Ø43.2 5065 13c9
Bar 7 with Stopper and Pin on End 5066 13ca
Technic Dish Ø24 5067 13cb
Technic Axle 2 with Ball 5068 13cc
Brick 2×2 with Cross Axle Hole and 2 Pins 506 1fa
Steering Wheel Ø24 5070 13ce
Pantograph with Vertical Fork 5071 13cf
Propeller Ø9 with 2 Blades and Pin Hole 5072 13d0
Semi Trailer Truck Chassis 6×34 5073 13d1
Brick 1×2 Hollow 5074 13d2
Straight Rail 5075 13d3
Brick 1x1x2 with Shutter Holder 5078 13d6
Peaked Cap 5079 13d7
Plate 2×4 Cross Coupling 5080 13d8
Plate 2×4 Across Hinge 5081 13d9
Technic Gear Wheel 8 5082 13da
Technic Gear Wheel 24 5083 13db
Technic Crown Gear 24 5084 13dc
Plate 2×2 with Coupling Ball 5086 13de
Construction Worker’s Helmet 5089 13e1
Firefighter’s Helmet 5090 13e2
Firefighter’s Axe 5091 13e3
Push Broom 5092 13e4
Shovel 5093 13e5
Oxygen Bottles 5094 13e6
Vest 5095 13e7
PickAxe 5096 13e8
Great Helm with Neck Protection 5097 13e9
Knight Shield Triangular 5098 13ea
Shortsword 5099 13eb
Tire Ø14.4 Smooth, Wide 509 1fd
Slope Brick 45° 1×2 50 32
Battle Axe 5100 13ec
Knight Jousting Lance 5101 13ed
Hair Brush 5102 13ee
Shutter 2×3 5103 13ef
Cylinder Hat 5105 13f1
Baker’s Hat 5106 13f2
Mug with Holder 5107 13f3
Wig, Boy 5108 13f4
Handheld Radio 5109 13f5
Handle Bar with Hinge 510 1fe
Screwdriver/Wrench 5110 13f6
Technic Gear Wheel 16 5111 13f7
Train Bogie Plate 4×6 5112 13f8
Train Wagon Chassis 6×28 5113 13f9
Car Chassis Plate 4×5 5114 13fa
Boat Mast 2x2x3 5115 13fb
Pipe Wrench 5116 13fc
Broom 5117 13fd
Ladle 5118 13fe
Pot with Handles 5119 13ff
Plate 2×2 with Parabolic Ring 511 1ff
Loaf of Bread 5120 1400
Space Gun 5123 1403
Pitcher 5124 1404
Butterfly Net 5125 1405
Large Axe 5126 1406
Slope Brick 45° 8×2 5127 1407
Suitcase 5128 1408
Metal Detector 5129 1409
Window Frame 1x2x2 2/3 Curved Top 512 200
Horse Saddle 5130 140a
Spear 5133 140d
Quiver 5134 140e
Bow 5135 140f
Knight Tournament Helmet 5136 1410
Sliding Gate 6×5 5137 1411
Sledgehammer 5138 1412
Pannier 5139 1413
Iron Bars for Window 513 201
Pan 5140 1414
Pot with Handle 5141 1415
Wig with Wavy Hair 5142 1416
Stretcher 2×6 5145 1419
Underframe for Stretcher 5146 141a
Brick 2×2 with Pin on Top 5149 141d
Fly-Screen for Window 514 202
Jetpack with Studs 5150 141e
Oar 5151 141f
Element Separator 5152 1420
Surfboard 10M 5156 1424
Rock Face 4x10x6 5158 1426
Rock Face 3x8x7 5159 1427
Octopus 5160 1428
Frogman Visor 5161 1429
Wig Ponytail 5162 142a
Ice Saw 5164 142c
Dragon-Knight Helmet 5165 142d
Halberd 5166 142e
Magic Wand 5167 142f
Horse Dragon Mask with Clip 5168 1430
Flame with Haft 5169 1431
Grating 1x4x2 with 2 Studs 516 204
Dragon’s Arm, Right 5170 1432
Dragon’s Arm, Left 5171 1433
Magic Hat 5173 1435
Santa Beard 5174 1436
Fireman Breathing Mask 5175 1437
Brick 12×12 1/4-Circle 5176 1438
Tile 6×12 with 22 Studs 5179 143b
Grating 4x4x2 with 2 Studs 1/4-Circle 517 205
Cone 1×1 5180 143c
Feeding Bottle 5181 143d
Brick 4X10 5182 143e
Windscreen 4x4x1 5185 1441
Kitten 5186 1442
1×1 Round with Ice Cream 5187 1443
Dish Ø24 5188 1444
Skeleton Body Type 1 5189 1445
Plate 6×6 Octagonal with Cut-Out 518 206
Skeleton Arm Type 1 5190 1446
Technic Beam 2 with Lateral Cross Axle Hole 5191 1447
Train Wagon Chassis 6×24 5192 1448
Technic Pin with Ball 5193 1449
Technic Half Beam 3 5194 144a
Cherry 5195 144b
Astronaut Visor 5196 144c
Panel 1x4x3 5197 144d
Hand-Held Scanner 5198 144e
Plate Wing 6x8x2/3 with Lattice 5199 144f
Slope Brick 45° 2×2 Outside Corner 51 33
Plate 1×4 with Lateral Reversed Hook 5200 1450
Morion Helmet 5201 1451
Harpoon 5M 5203 1453
Camera 5204 1454
Diver’s Mask 5205 1455
Oxygen Bottle with Tube 5206 1456
Bat 5207 1457
Chain 16M 5208 1458
Bat Helmet 5209 1459
Petals/Propeller with 4 Studs 520 208
Crystal Globe 5210 145a
Snake 5211 145b
Alien Breastplate 5212 145c
Indian Feather with Bolt 5213 145d
Indian Feather with Clip 5214 145e
Revolver 5215 145f
Neck Scarf 5216 1460
Officer’s Cap 5217 1461
Rifle 5218 1462
Brick 2x2x3 5219 1463
Sea Grass 521 209
Movie Camera 5220 1464
Vehicle Cabin 4×5 with 2 seats 5221 1465
Magnifying Glass 5222 1466
Diamond with Stick 5223 1467
Sextant 5224 1468
Rucksack, Opening 5225 1469
Safari Hat 5226 146a
Pharaoh’s Headdress 5227 146b
Scorpion 5228 146c
Flying Goggles 5229 146d
Plate 2×2 with Square Ring 522 20a
Flying Helmet 5230 146e
Safari Helmet 5231 146f
Ninja Sword 5232 1470
Samurai Armor 5233 1471
Ninja Headgear 5234 1472
Slope Brick 45° 4×6 Double Inverted 5235 1473
Grating 1x4x6 with 4 Horizontal Clips 523 20b
Strap 12M 5240 1478
Grappling Hook 5241 1479
Ice Axe 5242 147a
Circular Saw 5243 147b
Energy Element 5244 147c
Insectoid Helmet 5245 147d
Shell 5246 147e
Popsicle 5247 147f
Fish Ornament with Stick 5248 1480
Brick with Bow 1x5x4 Inverted 524 20c
Pneumatic Hammer 5250 1482
Slider Roller with Handle 5251 1483
Spider 5252 1484
Spider Web 5253 1485
Helicopter Chassis 4x7x3 5254 1486
Square Sign with Vertical Clip 5255 1487
Triangular Sign with Vertical Clip 5256 1488
Round Sign with Clip 5257 1489
Knight’s Helmet with Brim 5258 148a
Brick with Lion Head 5259 148b
Inca Helmet 5260 148c
Snowshoe 5261 148d
Polar Hood with Fur Lining 5262 148e
Rock 4x4x1 1/3 Top Part 5263 148f
Binoculars, High-tech 5264 1490
Polar Rucksack 5265 1491
Space Helmet without Chin Strap 5266 1492
Lifering with Stud 5267 1493
Robot Legs 5268 1494
Hood 5269 1495
Rock Crystal 5270 1496
Hook with Ball 1×3 5271 1497
Ball Coupling with Vertical Fork 5272 1498
Panel 1x4x1 5274 149a
Dino Cub 5275 149b
Wig with Multiple Braids 5276 149c
Technic Brick 1×2 with 2 Pins 5278 149e
Martian Head with Clip 5279 149f
Martian Legs with Clip 5280 14a0
Wig, Crew Cut 5282 14a2
Technic Half Beam 4 with Cuff 5284 14a4
Sprocket Wheel Ø24 5285 14a5
Bobbin 5286 14a6
Technic Angle Connector 90° 5287 14a7
Technic Angle Connector 112.5° 5288 14a8
Technic Angle Connector 157.5° 5289 14a9
Technic Half Beam 5 5290 14aa
Technic Half Beam 6 5291 14ab
Technic Half Beam 7 5292 14ac
Technic Angular Wheel 5293 14ad
Slope Brick 45° 4×6 Double 5294 14ae
Technic Rotor 2 Blades 5295 14af
Technic Bush with Pin Collar 5296 14b0
Technic Wheel Hard-Plastic 30.4×14 5297 14b1
Technic Angle Connector 135° 5298 14b2
Technic Half Beam 3×5 with Curve 5299 14b3
Staircase 4x6x7 529 211
Slope Brick 45° 2×2 Inside Corner 52 34
Technic Double Conical Wheel Z20 5300 14b4
Technic Double Conical Wheel Z12 5301 14b5
Technic Angular Beam 45° 3×7 5302 14b6
Technic 1x5x2 2/3 Support Block 5303 14b7
Technic Angular Beam 45° 4×4 5304 14b8
Technic Half Beam 1×4 5305 14b9
Technic Ball Joint 5306 14ba
Technic Beam 7 5307 14bb
Technic Beam 11 5308 14bc
Technic Cross-Joiner Double 2×1 with Bar 2 5309 14bd
Palisade Brick 1×4 530 212
Technic Flex Rod 7 5310 14be
Book 5311 14bf
Apple with Leaf 5312 14c0
Pot with Handle 5313 14c1
Turkey Drumstick 5314 14c2
Glass 5315 14c3
Sausage 5316 14c4
Banana 5317 14c5
Ice-Cream Cone 5318 14c6
Crab 5319 14c7
Starfish 5320 14c8
Croissant 5321 14c9
Comb 5322 14ca
Carrot 5323 14cb
Rosette with Ribbon 5324 14cc
Celery 5325 14cd
Frog 5326 14ce
Snowy Owl 5327 14cf
Rat 5328 14d0
Turban 5329 14d1
Old Man’s Wig 5330 14d2
Man’s Wig 5331 14d3
Boy’s Hair 5332 14d4
Wooden Door 4×6 with Pane 5333 14d5
Girl’s Hair 5334 14d6
BIONICLE Trident 5335 14d7
Radiator Grille 1x4x2 533 215
Dinosaur Back Fin 8x2x5 5341 14dd
Flipper with Pin 5342 14de
Mosasaur Bottom Jaw 5343 14df
Dino Foot 2x4x2/3 5345 14e1
Exhaust Pipe with Grooves and Pin 5347 14e3
Box 3×4 534 216
Technic Beam 13 5350 14e6
Knit Cap 5351 14e7
BIONICLE Eye 5352 14e8
Technic Half Beam 2 5353 14e9
Minifig Short Legs and Hips 5354 14ea
Wedge 3×12 Curved Right 5355 14eb
Wedge 3×12 Curved Left 5356 14ec
Ice Crystal 5357 14ed
Wolf’s Head 5358 14ee
Wig, Wolfman 5359 14ef
Dome 2x2x1 2/3 535 217
Skateboard 1 5360 14f0
Tire Ø17.6 5361 14f1
Basketball 5362 14f2
Snake Head with Pin 5363 14f3
Wig with Blow-dried Hairdo 5364 14f4
Technic Beam 2 5365 14f5
Scimitar 5366 14f6
Technic Pivot Joint 5367 14f7
Elephant Ear 5368 14f8
Elephant Tail/Trunk 5369 14f9
Hub with Spokes Ø17 536 218
Russian Fur Cap 5370 14fa
Spiked Pike 5371 14fb
Snake Body Piece 5373 14fd
Technic Skate 5374 14fe
Tire Ø43.2 5375 14ff
Knife 5377 1501
Panel 4x6x6 Sloped 537 219
Skateboard 2 5381 1505
Ice Hockey Helmet 5383 1507
Hockey Body Armor 5384 1508
Wedge 4×4 Triple with Tip 5385 1509
Rock Face 2x4x6 5386 150a
Glass Door with Frame 4×5 Left 5387 150b
Skull 3×3 with 2 Pins 5388 150c
Wing 4×7 Scaled 5389 150d
Plate 2×4 with 2 Pins 538 21a
Tile 8×16 5390 150e
Visor No. 1 Wise 5391 150f
Visor No. 3 Rookie 5392 1510
Visor No. 4 Brute 5393 1511
Visor No. 2 Joker 5394 1512
Visor No. 5 Evil 5395 1513
Horse Head Armor with Clip 5396 1514
Dark Knight Helmet 5397 1515
Knight Shield Octagonal with Stud 5398 1516
Sword with Inverted V-Guard 5399 1517
Brick 1×1 Round with 3 Bamboo Leaves 539 21b
Brick 1×1 Round 53 35
Technic Hub with 4 Sticks 5400 1518
Bracket 1×1 with Pin 5401 1519
Dog/Wolf 5402 151a
Technic Beam 3 with 4 Pins 5403 151b
Train Wheel Ø8.2/14.6 5404 151c
BIONICLE Claw 4×12 5405 151d
Rim Ø11.2 5406 151e
Tire Ø14.58 Narrow 5407 151f
Technic Dragon Wing with 2 Pin Holes 5409 1521
Slope Brick 45° 2x10x2 Double 540 21c
BIONICLE Tool with 2 Pins No. 1 5410 1522
BIONICLE Tool with 2 Pins No. 2 5411 1523
BIONICLE Tool with 2 Pins No. 3 5412 1524
BIONICLE Tool with 2 Pins No. 4 5413 1525
BIONICLE Tool with 2 Pins No. 5 5414 1526
BIONICLE Tool with 2 Pins No. 6 5415 1527
Tail with Jagged Fins and Shaft 5416 1528
Brick 1x4x1 1/3 with Studs on Side 5417 1529
Viking Helmet 5418 152a
BattleAxe Head with Horizontal Clip 5419 152b
Brick 2×10 with Bay 541 21d
BIONICLE Wolf’s Head 5420 152c
Technic Fork 3 with Pin 5421 152d
Mini-Head Toa No. 1 5422 152e
Mini-Head Piraka No. 2 5423 152f
Mini-Head Toa No. 2 5424 1530
Mini-Head Piraka No. 3 5425 1531
Mini-Head Toa No. 3 5426 1532
Mini-Head Piraka No. 4 5427 1533
Mini-Head Toa No. 4 5428 1534
Mini-Head Piraka No. 5 5429 1535
Motorbike Front Fork 542 21e
Mini-Head Toa No. 5 5430 1536
Mini-Head Piraka No. 6 5431 1537
Wig Manga 1 5433 1539
Wig Manga 2 5434 153a
Robot Torso 5435 153b
Jet Hull Top 8x8x2 5437 153d
Airplane Door 5438 153e
Mini-Head Toa No. 6 5439 153f
Rim for Motorcycle 543 21f
Mini Robot Legs with Stud 5440 1540
Technic Cross Axle 8 with End Stop 5441 1541
Spiked Tentacle 5444 1544
Mini-Head Piraka No. 1 5445 1545
Hammer 5446 1546
Oil Can 5447 1547
Drilling Machine 5448 1548
Screwdriver 5449 1549
Open Firm Key 5450 154a
Closed Wrench 5451 154b
Train Wheel with Cross Axle 5452 154c
Tire Ø37 Wide 5453 154d
Rim Ø18 Wide with Cross Axle Hole 5454 154e
Rim 30×20 5455 154f
BIONICLE Tool 1/12 5456 1550
BIONICLE Tool 2/12 5457 1551
BIONICLE Tool 3/12 5458 1552
BIONICLE Tool 4/12 5459 1553
Wooden Door 5×9 with Studs 545 221
BIONICLE Tool 5/12 5460 1554
BIONICLE Tool 6/12 5461 1555
BIONICLE Tool 7/12 5462 1556
BIONICLE Tool 8/12 5463 1557
BIONICLE Tool 9/12 5464 1558
BIONICLE Tool 10/12 5465 1559
BIONICLE Tool 11/12 5466 155a
BIONICLE Tool 12/12 5467 155b
Moulding Element with 4 Flowers 5468 155c
Balloon Tire Ø24 5469 155d
Brick 1×2 with Narrow Handle 546 222
Balloon Tire Ø37 5470 155e
Silver Harpoons 5471 155f
BIONICLE Blade 5476 1564
Mini-Head Bad Monster 8 5477 1565
Mini-Head Bad Monster 9 5478 1566
Mini-Head Good Monster 8 5479 1567
Brick 1×2 with Horizontal Clip 547 223
Mini-Head Good Monster 9 5480 1568
Mini-Head Bad Monster 7 5481 1569
Mini-Head Good Monster 7 5482 156a
Technic 3-Branch Cross Axle 5483 156b
Brick 2×2 with 2 Ball Joints 5484 156c
Brick 2×2 Ball Joint 5485 156d
Racing Tire Ø30.4 5486 156e
Round Cap 1×1 with Bar 5488 1570
Windscreen 3×6 25° 5489 1571
Fern Leaf 548 224
Door 1x3x4 Right 5491 1573
Left Door 1x3x4 5492 1574
Castle Tower Element 4x3x6 549 225
Skeleton Horse 5501 157d
Scythe Blade 5502 157e
Round Shield 5503 157f
Morningstar 5504 1580
Lightning Bolt with Handle 5505 1581
Frogman’s Feet 5506 1582
Lady Wig 5507 1583
Princess Hair 5508 1584
Technic Cross Axle 5.5 with Stop 5509 1585
Landing Skid 12x6x1 1/3 550 226
Technic Cross Axle Extension, Smooth 5510 1586
Panel 1x2x2 with Window 5511 1587
Skeleton Body Type 2 5514 158a
Technic Hub Ø31.37 5515 158b
Slope Brick 45° 4×6 Double Inverted with Cut-Out 5516 158c
Plate 1×2 with 2 Horizontal Clips 5517 158d
Plate 1×2 with Vertical Fork 5518 158e
Plate 4×4 Round with Pin Hole 5519 158f
Slope Brick 55° 1x6x5 551 227
Brick 1×1 with Horizontal Clip 5520 1590
Slope Brick 18° 1×4 5521 1591
Plate 1×2 with Hinge End 5522 1592
Plate 1×12 5523 1593
Slope Brick 65° 2x1x2 5524 1594
Technic Beam 2 with Cross Axle Hole 5525 1595
Panel 1x4x3 5526 1596
Frame 1x2x2 5527 1597
Frame 1x2x3 5528 1598
Frame 1x4x3 5529 1599
Cockpit Glass 4x5x3 552 228
Frame 1x4x6 5530 159a
Frame 2x4x3 5531 159b
Glass for Frame 1x2x3 5532 159c
Window ½ for Frame 1x4x3 5533 159d
Lid ½ for Frame 1x4x3 5534 159e
Glass Door with Stud for Frame 1x4x6 5535 159f
Lattice Door for Frame 1x4x6 5536 15a0
Door with Pane for Frame 1x4x6 5537 15a1
Arch with Groove 2x12x6 553 229
Door 1x3x3 Right 5542 15a6
Left Door 1x3x3 5543 15a7
Tire Ø21, Wide 5545 15a9
Dwarf King’s Helmet 5546 15aa
Dwarf Warrior’s Helmet 5547 15ab
Dwarf King Beard 5548 15ac
Dwarf Warrior Beard 5549 15ad
Catapult Arm 12 554 22a
Warrior Helmet 5550 15ae
Notched Scimitar 5551 15af
Flag 2×2 with Horizontal Clips 5552 15b0
Glass Door with Stud for 1x4x6 Frame 5553 15b1
Shutter 1x2x3 with Shaft 5554 15b2
Frame Slanting 3x4x3 5555 15b3
Nozzle with Shaft 5556 15b4
Slope Brick 2x4x2/3 Curved 5557 15b5
Technic Casing with Air Intakes 5558 15b6
Plate 1x4x2/3 with 2 Protruding Pistons 5559 15b7
Technic Pin 0.5 with Shaft 5560 15b8
Panel 1x4x2 with Windows 5561 15b9
Slope 1x2x2/3 Brick with Grating 5562 15ba
Airplane Landing Gear with Pin 5563 15bb
Brick 4x4x2 with Bow 5564 15bc
Spool Ø16 5565 15bd
Slope Brick 1×4 Curved 5570 15c2
Box 2x2x2 5571 15c3
Knight Shield Octagonal 5572 15c4
Lattice 1x4x3 5573 15c5
Breastplate 5576 15c8
Technic Tube 2 Straight with Slot 5577 15c9
Windscreen 8x5x2 Edged 5579 15cb
Catwalk 3x14x2 1/3 557 22d
Cockpit 6x8x4 with Vertical Fork 5580 15cc
Grappling Hook with Stick 5581 15cd
Wig with Long Ponytail 5582 15ce
Helmet with Jagged Jaw 5583 15cf
Barbed Wire 5585 15d1
Hub Cap Ø24 5586 15d2
Wig, Bowl Cut 5587 15d3
Brick 2×2 with Cup for Ball 5588 15d4
Plate 2×16 Rotor Blade 5589 15d5
Tipper Bucket 8x12x3 1/3 558 22e
Antique Key 5590 15d6
Wig, Boy 5592 15d8
Plate 2×2 with Ball Socket and Cross Axle Hole 5593 15d9
String with End Studs 30M 5594 15da
Bar 6 with Stop 5595 15db
Technic Beam 11 5597 15dd
Light Sword Handle 5598 15de
Plate 6x6x2/3 Cross with Dome 559 22f
Tile 1×2 55 37
Bucket 5601 15e1
Crown Helmet 5602 15e2
Fanfare Horn, Chrome 5604 15e4
Handle for Bucket 5605 15e5
Space Suit 5607 15e7
Goblet 5608 15e8
Corrugated Pipe 16mm 5609 15e9
Soccer Ball 5610 15ea
Magnet Cylindrical 5611 15eb
Glass Door with Frame 4×5 Right 5612 15ec
Train Bearing 3×6 5613 15ed
Brick 1×2 with Stub on Top 5616 15f0
Windscreen 4x3x3 Edged 5617 15f1
Brick Curved 1/4 2×2 5618 15f2
V-Belt Ø15 White 5619 15f3
Wheel Hard-Plastic Ø43 with Treads 561 231
V-Belt Ø24 Red 5620 15f4
V-Belt Ø26 Blue 5621 15f5
BaseBall Cap 5622 15f6
Propeller Ø7 with 3 Blades and Pin Hole 562 232
Doberman Pet 5635 1603
Buffalo Pet 5636 1604
Robot Dog Pet 5637 1605
Red Dragon Pet 5639 1607
Tile 4×4 with Palm Stem 563 233
Tortoise Pet 5640 1608
Green Dragon Pet 5641 1609
Mantis Pet 5642 160a
Panda Pet 5643 160b
Palm Leaves Quadruple 564 234
Tile 2×3 with 2 Horizontal Clips 565 235
Wedge Plate 6×12 Left 566 236
Wedge Plate 6×12 Right 567 237
Black Neck Scarf 5682 1632
Plate 3×3, 1/4-Circle 568 238
Great Mattock 5696 1640
Thruster with Grill on 2×2-Tile 569 239
Tile 1×1 56 38
Brick with Shaft 1x8x1 570 23a
Cylinder Brick 3x6x2 2/3 571 23b
Brick 2x2x2 Round 572 23c
Butterfly Shirt 5730 1662
Mission Giver Shirt 5731 1663
Raincloud Shirt 5732 1664
Minifigure Shirt 5733 1665
Space Jacket 5734 1666
Striped Shirt 5735 1667
Butterfly Shirt 5736 1668
Mission Giver Shirt 5737 1669
Raincloud Shirt 5738 166a
Minifigure Shirt 5739 166b
Astromech Robot Leg 573 23d
Space Jacket 5740 166c
Striped Shirt 5741 166d
Butterfly Shirt 5742 166e
Mission Giver Shirt 5743 166f
Raincloud Shirt 5744 1670
Minifigure Shirt 5745 1671
Space Jacket 5746 1672
Striped Shirt 5747 1673
Butterfly Shirt 5748 1674
Mission Giver Shirt 5749 1675
Slope Brick 18° 2×4 574 23e
Raincloud Shirt 5750 1676
Minifigure Shirt 5751 1677
Space Jacket 5752 1678
Striped Shirt 5753 1679
Butterfly Shirt 5754 167a
Mission Giver Shirt 5755 167b
Raincloud Shirt 5756 167c
Minifigure Shirt 5757 167d
Space Jacket 5758 167e
Striped Shirt 5759 167f
Windscreen 3x6x5 575 23f
Butterfly Shirt 5760 1680
Mission Giver Shirt 5761 1681
Raincloud Shirt 5762 1682
Minifigure Shirt 5763 1683
Space Jacket 5764 1684
Striped Shirt 5765 1685
Butterfly Shirt 5766 1686
Mission Giver Shirt 5767 1687
Raincloud Shirt 5768 1688
Minifigure Shirt 5769 1689
Brick 2×2 Round with Dome 576 240
Space Jacket 5770 168a
Striped Shirt 5771 168b
Butterfly Shirt 5772 168c
Mission Giver Shirt 5773 168d
Raincloud Shirt 5774 168e
Minifigure Shirt 5775 168f
Space Jacket 5776 1690
Striped Shirt 5777 1691
Butterfly Shirt 5778 1692
Mission Giver Shirt 5779 1693
Cockpit 4x7x2 Angular with Vertical Fork 577 241
Raincloud Shirt 5780 1694
Minifigure Shirt 5781 1695
Space Jacket 5782 1696
Striped Shirt 5783 1697
Butterfly Shirt 5784 1698
Mission Giver Shirt 5785 1699
Raincloud Shirt 5786 169a
Minifigure Shirt 5787 169b
Space Jacket 5788 169c
Striped Shirt 5789 169d
Slope Brick 65° 6x6x2 Inverted Quadruple 578 242
Butterfly Shirt 5790 169e
Mission Giver Shirt 5791 169f
Raincloud Shirt 5792 16a0
Minifigure Shirt 5793 16a1
Space Jacket 5794 16a2
Striped Shirt 5795 16a3
Butterfly Shirt 5796 16a4
Mission Giver Shirt 5797 16a5
Raincloud Shirt 5798 16a6
Minifigure Shirt 5799 16a7
Light Sword Blade 579 243
Space Jacket 5800 16a8
Striped Shirt 5801 16a9
Butterfly Shirt 5802 16aa
Mission Giver Shirt 5803 16ab
Raincloud Shirt 5804 16ac
Minifigure Shirt 5805 16ad
Space Jacket 5806 16ae
Striped Shirt 5807 16af
Butterfly Shirt 5808 16b0
Mission Giver Shirt 5809 16b1
Wedge 11° Double 2×16 580 244
Raincloud Shirt 5810 16b2
Minifigure Shirt 5811 16b3
Space Jacket 5812 16b4
Striped Shirt 5813 16b5
Butterfly Shirt 5814 16b6
Mission Giver Shirt 5815 16b7
Raincloud Shirt 5816 16b8
Minifigure Shirt 5817 16b9
Space Jacket 5818 16ba
Striped Shirt 5819 16bb
Plate 1×2 with Stub on Top 581 245
Butterfly Shirt 5820 16bc
Mission Giver Shirt 5821 16bd
Raincloud Shirt 5822 16be
Minifigure Shirt 5823 16bf
Space Jacket 5824 16c0
Striped Shirt 5825 16c1
Butterfly Shirt 5826 16c2
Mission Giver Shirt 5827 16c3
Raincloud Shirt 5828 16c4
Minifigure Shirt 5829 16c5
Cockpit 19° Bowed Type 2 582 246
Space Jacket 5830 16c6
Striped Shirt 5831 16c7
Hiccup Tablets 5832 16c8
Everlasting Hiccup Tablets 5833 16c9
Brick Booster Pack 5834 16ca
Super Brick Booster Pack 5835 16cb
Picnic Basket 5836 16cc
Super Picnic Basket 5837 16cd
Brick 1×2 with Vertical Fork and Vertical Stub 583 247
Red Brick Shirt 5842 16d2
Hawaiian Shirt 5843 16d3
Stromling Defeater Shirt 5844 16d4
Brick 1×4 with Vertical Fork and Vertical Stub 584 248
Brick 1×6 with Vertical Fork and Vertical Stub 585 249
Brick 2×2 with Vertical Stub 586 24a
Slope Brick 45° Inverted, Double with 2 Pins 587 24b
Shovel 4x6x2 1/3 with Vertical Fork 588 24c
Flap 2×8 with Vertical Fork 589 24d
Plate 1×8 58 3a
Slope Brick 75° 2x2x3 590 24e
Corner Plate 45° 4×4 591 24f
Corner Plate 45° 8×8 592 250
Corner Brick 45° 3×3 593 251
Basic Shortsword of Knockback 5948 173c
Lattice Brick 2x2x10 Type 1 594 252
Superior Longsword of Stunning 5952 1740
Great Shortsword of Stunning 5954 1742
Beam 2x16x1 2/3 with Studs and Lattice 595 253
Screen 4x8x2 Trapezoid Curved with Vertical Fork 596 254
Brick 1×2 with Horizontal Fork 597 255
Brick 1×2 with Horizontal Stub 598 256
Speedy Cap 5995 176b
Sky Lane – Venture League Explorer 5997 176d
Technic Bush with Horizontal Stub 599 257
Brick 1×3 59 3b
Wisp Lee – Paradox Researcher 6006 1776
Epsilon Starcracker – Nexus Force Scout 6007 1777
Beck Strongheart – Sentinel Faction Commander 6008 1778
Technic Bush with Horizontal Fork 600 258
Fitz Vanderbuilt – Sentinel Faction Engineer 6010 177a
Rusty Steele – Assembly Foreman 6011 177b
Vector Longview – Venture League Scout 6012 177c
Vector Longview – Assembly Surveyor 6013 177d
Sky Lane – Venture League Explorer 6014 177e
1×3 with Vertical Fork and Vertical Stub 601 259
Tiny Mushroom Model 6027 178b
Small Mushroom Model 6028 178c
Medium Mushroom Model 6029 178d
Panel 4x4x6 1/4-Circle 602 25a
Large Mushroom Model 6030 178e
Tiny Crate Model 6031 178f
Small Crate Model 6032 1790
Medium Crate Model 6033 1791
Large Crate Model 6034 1792
Wooden Barrel Model 6035 1793
Tent Model 6036 1794
Desk Model 6037 1795
Water Cooler Model 6039 1797
Plate 4×4 1/4-Circle 603 25b
Crate of Bananas Model 6040 1798
Pirate Lantern Model 6041 1799
Timeclock Model 6043 179b
Small Table Model 6044 179c
Brig Model 6045 179d
Plate 1×8 with Extended Slide 604 25c
Hat Stand Model 1 6053 17a5
Hat Stand Model 2 6054 17a6
Hat Stand Model 3 6055 17a7
Weapon Rack Model 6056 17a8
Sword Barrel Model 6058 17aa
Engine Block 2x2x2 2/3 Sloped 605 25d
Hut Model 6060 17ac
Coffee Table Model 6064 17b0
Cart Model 6065 17b1
Cot Model 6066 17b2
Raft with Sails Model 6068 17b4
Bonnet 2×2 Curved 606 25e
Fence Model 6071 17b7
Wood Pile Model 6072 17b8
Bonnet 2×2 Motor 607 25f
Thinking Hat 6086 17c6
Rotor 4x16x1 with 2 Blades 608 260
Steering Wheel Ø16 for Console 2×2 609 261
Plate 1×3 60 3c
Technic Brick 1×2 with 2 Pin Holes 610 262
Technic Plate 2×6 611 263
Technic Brick 1×14 612 264
Plate 1×2 with Slide 613 265
Wedge Plate 4×6 614 266
Technic Brick 1×2 with Cross Axle Hole 615 267
Windscreen 6x8x3 616 268
Technic Rotor 3 Blades 617 269
Technic Brick Framing 4×4 618 26a
Maelstrom-Infected Brick 6194 1832
Tan Aussie Hat 6197 1835
Aviator Helmet 6198 1836
Pith Helmet 6199 1837
Plate 1×2 with Technic Beam 619 26b
Brick 1×4 with Bow 61 3d
Astronaut Helmet 6200 1838
Thirst Quencher 6201 1839
Metal Legs, Solid 6202 183a
Basic Spear of Stunning 6203 183b
Great Scimitar of Rooting 6204 183c
Superior Halberd of Knockback 6205 183d
Nexus Force Healing Kit 6207 183f
Tile 1×2 with Technic Beam 620 26c
Technic Brick Framing 6×8 621 26d
Bert Scurvyburp – Pirate Quartermaster 6224 1850
Hugo First – Venture League Grunt 6227 1853
Classic Rocket Shirt 6229 1855
Technic Brick Corner 5×5 622 26e
Steampunk Rocket Shirt 6230 1856
Pod Rocket Shirt 6232 1858
Renee Tombcrusher – Venture League Explorer 6236 185c
Dinghy 8x18x3 1/3 623 26f
Spoked Wheel Ø43 624 270
Stromling Mech 6253 186d
Tower Roof Half 6x8x9 625 271
Pet Triceratops Shirt 6262 1876
Pet Doberman Shirt 6263 1877
Pet Buffalo Shirt 6264 1878
Bag of Peanuts 6265 1879
2/3 Brick 1×1 Round with Flanges 626 272
Plate 1×1 Round with Flanges 627 273
Theo Balfour – Sentinel Faction Grunt 6289 1891
Picket Fence 1x4x2 628 274
Plate 1×6 62 3e
Blue Chassis 6301 189d
Red Chassis 6302 189e
Brown Chassis 6303 189f
Green Chassis 6304 18a0
Back Wheels 6305 18a1
Front Left Wheel 6306 18a2
Front Right Wheel 6307 18a3
Spider Boss 6308 18a4
Wall 1x8x6 with Doorway and 2 Vertical Clips 630 276
Technic Column for Spiral Staircase 631 277
Brick 2×2 with Vertical Fork 632 278
Pet Rock Bridge Part 1 6332 18bc
Pet Rock Bridge Part 2 6333 18bd
Pet Rock Bridge Part 3 6334 18be
Sofia Amalgam – Gear Vendor 6338 18c2
Brick 1×4 with 2 Studs and Curved Ends 633 279
Robot Claw with Stud and Vertical Fork 634 27a
Stromling 6351 18cf
Dark Spiderling 6359 18d7
Saw Blade, Round Ø36.7 635 27b
Sentinel Faction Guard 6366 18de
Technic 4×4 Connector Ring 636 27c
Crash Helmut – Property Launch Pad Guard 6374 18e6
1×3 with Pin and Vertical Stub 637 27d
Technic Brick 2x2x2 with Click Joint Opening 638 27e
Stromling 6392 18f8
Plate 8×8 639 27f
Technic Pin 63 3f
Dark Spiderling 6408 1908
Pitched Roof 6x6x3 640 280
Custom Rocket 6416 1910
Stromling 6418 1912
Wedge 2×6 Curved Right 641 281
Wedge 2×6 Curved Left 642 282
Wedge 3x8x2 Curved Right 643 283
Wedge 3x8x2 Curved Left 644 284
Dark Spiderling 6454 1936
Shell 6x8x2 645 285
Shell 6x8x2 Inverted 646 286
Slope Brick 1×6 Curved 647 287
Slope Brick 1×6 Curved, Inverted 648 288
Wedge 2×6 Curved Inverted Right 649 289
Technic Brick 1×2 64 40
Wedge 2×6 Curved Inverted Left 650 28a
Island Jail Model 6518 1976
Lookout Post Model 6519 1977
Wedge Brick 2×4 Right 651 28b
Island Fort Model 6520 1978
Mini Raft Model 6521 1979
Volley Gun Model 6522 197a
Palm Tree Model 6523 197b
Island Plant Model 6524 197c
Deluxe Raft Model 6525 197d
Large Cannon Model 6526 197e
Wedge Brick 2×4 Left 652 28c
Wedge Plate 2×4 Right 653 28d
Wedge Plate 2×4 Left 654 28e
Stromling Pirate 6550 1996
Stromling Skeleton 6551 1997
Plate 2×2 with Wedged Fenders 655 28f
Stromling Mech 6563 19a3
Bonnet 2×2 656 290
Plate 2×4 with Grille 657 291
Cockpit 4x6x2 Curved 658 292
Plate 1×2 with Shaft 12M 659 293
Technic Brick 1×8 65 41
Lattice Door 4×7 2/3 660 294
Turbine 4x5x3 with 8 Studs 661 295
Turbine Wheel with Pin 662 296
Johnny Thunder – Venture League Hero 6630 19e6
Xeno Blueblade – Sentinel Vendor 6631 19e7
Cog Blammo – Paradox Vendor 6632 19e8
Meldric Steamvalve – Assembly Vendor 6633 19e9
Magnus Bumperdent – Venture League Vendor 6634 19ea
Mardolf the Orange – Assembly Wizard 6635 19eb
Rad Eccles – Mardolf’s Assistant 6636 19ec
Duck Shooting Gallery 6637 19ed
Milo Snackpigeon 6638 19ee
Slope Brick 18° 4×4 Corner 663 297
Wedge 2×4 Triple Left 664 298
Wedge 2×4 Triple Right 665 299
Stromling Mech 6668 1a0c
Wedge 4×6 Curved 666 29a
Wedge 4×6 Inverted 667 29b
Wedge Plate 4×4 with Cut-Out 668 29c
Wedge Brick 2×4 Right Sloped 669 29d
Plate 1×4 66 42
Wedge Brick 2×4 Left Sloped 670 29e
Wedge Plate 2×3 Right 671 29f
Warthog Pet 6720 1a40
Wedge Plate 2×3 Left 672 2a0
Ninja Prisoner Hashi 6732 1a4c
Ninja Prisoner Mashi 6733 1a4d
Ninja Prisoner Steve 6734 1a4e
Ninja Prisoner Bashi 6735 1a4f
Ninja Prisoner Zashi 6736 1a50
Race Driver 6738 1a52
Ludwig Clutchburn – Racing Vendor 6739 1a53
Brick 8×8 673 2a1
Improved Fishing Pole 6742 1a56
Blue Pirate Scarf 6746 1a5a
Brick Column 1x1x6 674 2a2
Modular Car Engine #1 6751 1a5f
Modular Car Engine #2 6752 1a60
Modular Car Engine #3 6753 1a61
Modular Car Engine #4 6754 1a62
Modular Car Engine #5 6755 1a63
Modular Car Front Bumper #1 6756 1a64
Modular Car Front Bumper #2 6757 1a65
Modular Car Front Bumper #3 6758 1a66
Modular Car Front Bumper #4 6759 1a67
Dish 3×3 Inverted 675 2a3
Modular Car Front Bumper #5 6760 1a68
Modular Car Imagination Tank #1 6761 1a69
Modular Car Imagination Tank #2 6762 1a6a
Modular Car Imagination Tank #3 6763 1a6b
Modular Car Imagination Tank #4 6764 1a6c
Modular Car Rear Bumper #1 6765 1a6d
Modular Car Rear Bumper #2 6766 1a6e
Modular Car Rear Bumper #3 6767 1a6f
Modular Car Spoiler #1 6768 1a70
Modular Car Spoiler #2 6769 1a71
Brick 8×16 676 2a4
Modular Car Spoiler #3 6770 1a72
Modular Car Spoiler #4 6771 1a73
Modular Car Spoiler #5 6772 1a74
Box of Pistols Model 6774 1a76
Small Cannon Model 6776 1a78
Box of Cups Model 6778 1a7a
Tiki Torch Model 6779 1a7b
Dish 6×6 Inverted 677 2a5
Mini Galleon Model 6781 1a7d
Mini Windrunner Model 6782 1a7e
Modular Car Body #1 6785 1a81
Stromling Admiral 6789 1a85
Plate 1×2 with Vertical Stub 678 2a6
Hardtack Biscuit 6790 1a86
Blue Shoulder Parrot 6792 1a88
Sideways Pirate Hat 6794 1a8a
Admiral Hat 6795 1a8b
Ship Blueprint 6796 1a8c
Jack Knife’s Treasure Map 6797 1a8d
White First Mate’s Shirt 6798 1a8e
First Mate’s Vest 6799 1a8f
Plate 1×4 with 2 Vertical Stubs 679 2a7
Windscreen 2x4x2 67 43
Brown First Mate’s Shirt 6800 1a90
Red Captain Shirt 6801 1a91
Blue Captain Shirt 6802 1a92
Blue Baseball Cap 6803 1a93
Stromling Ape 6806 1a96
Wagon Side 2×4 with Vertical Fork 680 2a8
Plate 4×4 with Vertical Fork 681 2a9
Slope Brick 45° Double with Vertical Fork 682 2aa
Parrot Model 6836 1ab4
Rat Model 6839 1ab7
Panel 2x4x3 Curved with Vertical Fork 683 2ab
Cat Model 6840 1ab8
Crab Model 6841 1ab9
Superior Mate’s Cutlass 6843 1abb
Quality Flintlock Pistol of Blasting 6844 1abc
Exceptional Long Axe 6845 1abd
Captain’s Cutlass 6846 1abe
Exceptional Flintlock Rifle 6847 1abf
Captain Jack’s Volleygun 6848 1ac0
Buckler Shield 6849 1ac1
Tail Fin 2x3x2 684 2ac
Blue Space Helmet 6850 1ac2
Worthy Knife 6851 1ac3
Great Composite Axe 6852 1ac4
Morion Helmet 6853 1ac5
Green Shoulder Parrot 6854 1ac6
Yellow Shoulder Parrot 6855 1ac7
Orange Shoulder Parrot 6856 1ac8
Plate 1×2 with Racer Mudguards 685 2ad
Clear Gem 6860 1acc
Dark Blue Gem 6861 1acd
Dark Red Gem 6862 1ace
Yellow Gem 6863 1acf
Green Gem 6864 1ad0
Light Blue Gem 6865 1ad1
Pink Gem 6866 1ad2
Clamshell Model 6869 1ad5
Front 2×2 with Suction Cup 686 2ae
Snake Model 6870 1ad6
Wally Hornswaggle – Scared Pirate 6876 1adc
Robot Citizen 6879 1adf
Banner 2×2 with Vertical Clips, Trapezoid 687 2af
Armored Viking Helmet 6880 1ae0
Improved Composite Axe 6881 1ae1
Compass 6882 1ae2
Telescope 6883 1ae3
Flash Bang 6884 1ae4
Stinky Fish 6885 1ae5
Tasty Fish 6886 1ae6
Superior Tiki Staff 6887 1ae7
Tile 1×4 with 2 Stubs on Top 688 2b0
Wedge 4×16 689 2b1
Hinge Brick 1×2 Base 68 44
Cowl 4x4x2/3 690 2b2
Mermaid Head 6912 1b00
Shell 6x10x2 691 2b3
Breastplate of Armor 1 6921 1b09
Turban of Healing 6922 1b0a
Wand of Freezing 1 6923 1b0b
Shield of Armor 6924 1b0c
Helm Of Entrapment 6925 1b0d
Shirt of Armor 6926 1b0e
Creative Pants 6927 1b0f
T-Shirt of Protection 6928 1b10
Armored Shirt 6929 1b11
Screen 4x8x2 Curved with Vertical Fork 692 2b4
Worthy Drumstick of Repulsion 6930 1b12
Shield of Shielding 6931 1b13
Wizard’s Hat of Whirlwind 6932 1b14
Hood of Healing 6933 1b15
Net of Bees 6934 1b16
Knit Cap of Stunning 6935 1b17
Exceptional Morning Star 6936 1b18
Basic Flintlock Pistol 6937 1b19
Elite Long Sword 6938 1b1a
Exceptional Ice Saw of Freezing 6939 1b1b
Wedge Plate 3×12 Left 693 2b5
Pirate Duck Model 6941 1b1d
Shark Model 6942 1b1e
Wedge Plate 3×12 Right 694 2b6
Starfish 6954 1b2a
Shell 6x10x2 Inverted 695 2b7
Wedge Plate 6×4 with Cut-Out 696 2b8
Numb Chuck’s Maelstrom Staff 6972 1b3c
Superior Fish on a Stick 6973 1b3d
Stromling Pirate 6974 1b3e
Stromling Admiral 6975 1b3f
Stromling Ape 6976 1b40
Nexus Force Commendation 6978 1b42
Nexus Force Commendation 6979 1b43
Technic Brick 2×3 with Ball Cup Vertical and Cylinder 697 2b9
Nexus Force Commendation 6980 1b44
Nexus Force Commendation 6981 1b45
Technic Brick 2×2 with Click Joint and Cylinder Joint 698 2ba
Technic Brick 2×3 with Click Joint and Cylinder Joint 699 2bb
Hinge Brick 1×2 Top 69 45
Bonnet 2x3x2/3 Curved with Flap and 2 Studs 700 2bc
Bonnet 2x2x2/3 Curved with 2 Studs 701 2bd
Bonnet 1x2x2/3 Curved with Flap 702 2be
Shovel 4x8x2 2/3 with Vertical Fork 703 2bf
Pirate Hook 7044 1b84
Cone Half 8x4x6 704 2c0
Frog Model 7057 1b91
Bat Model 7059 1b93
Wedge 4×4 Curved 705 2c1
Starfish Model 7060 1b94
Spider Model 7061 1b95
Worthy Force Blade 7068 1b9c
Great Fang 7069 1b9d
Wedge 4×4 Triple, Open with Struts 706 2c2
Superior Lance 7070 1b9e
Elite Club 7075 1ba3
Elite Cleaver 7078 1ba6
Worthy Javelin 7079 1ba7
Wedge 4×2 Triple 707 2c3
Boom Trap Kit 7084 1bac
Cockpit Frame 4x10x2 with Oval Cut-Out 708 2c4
Venture League Approval 7090 1bb2
Assembly Approval 7091 1bb3
Paradox Approval 7092 1bb4
Sentinel Faction Approval 7093 1bb5
Nexus Jay – Nexus Force Recruiter 7098 1bba
Melodie Foxtrot – Sentinel Faction Agent 7099 1bbb
Cockpit Oval with Vertical Fork 709 2c5
Plate 1×1 with Horizontal Clip 70 46
Cockpit Bottom 4x10x2 710 2c6
Strombie Captain 7110 1bc6
Brick 1×1 with 2 Studs 711 2c7
Candle Holder Model 7122 1bd2
Dock Model 7123 1bd3
Organ Model 7124 1bd4
Shack Model 7125 1bd5
Soda Rack Model 7126 1bd6
Treasure Chest Model 7127 1bd7
Sentinel Faction Battle Engineer 7128 1bd8
Brick 4×8 1/2-Circle 712 2c8
Black Firefighter Helmet 7133 1bdd
Cabinet Model 7134 1bde
Antique Chair Model 7135 1bdf
Brick 1×2 with Horizontal Fork and Vertical Stub 713 2c9
Duck Showcase Operator 7147 1beb
Lattice 3×28 714 2ca
Boat Mast 2x2x20 715 2cb
Mast 2×22 with Platform 4×4 716 2cc
Brick Curved 1/4 4×4 717 2cd
Technic Brick 2×2 with Cylinder 718 2ce
Technic Brick 2×2 with Ball Cup Horizontal Snap 719 2cf
Panel 1x2x3 71 47
Technic Brick 2×2 with Ball Cup Vertical 720 2d0
Technic Brick 2×2 with 2 Cylinders 721 2d1
Wedge Plate 3×4 with Cut-Out 722 2d2
Panel Wall 3x8x6 with Window 723 2d3
Bar 1.5 with Clip 724 2d4
Wedge 4×4 Triple 725 2d5
Plate 1×1 with Tooth 726 2d6
Boat Bow Plate 6×7 727 2d7
Elite Saw of Drowsiness 7283 1c73
Elite Blade of Knock Down 7284 1c74
Wedge Plate 3×8 Right 728 2d8
Wedge Plate 3×8 Left 729 2d9
Technic Pin 0.5 72 48
Wedge 4×4 730 2da
Brick 2×2 with Fender 731 2db
Dome 6×6 with Vertical Fork 732 2dc
Motorbike Chassis 733 2dd
BMX Bike Fairing 734 2de
Knight Helm 1 7355 1cbb
Engineer Helmet 1 7356 1cbc
Sorcerer Hat 1 7357 1cbd
Buccaneer Scarf 1 7358 1cbe
Knight Helm 2 7359 1cbf
Tire Ø20.9 735 2df
Knight Helm 3 7360 1cc0
Sorcerer Hat 2 7361 1cc1
Sorcerer Hat 3 7362 1cc2
Engineer Helmet 2 7363 1cc3
Engineer Helmet 3 7364 1cc4
Buccaneer Scarf 2 7365 1cc5
Buccaneer Hat 3 7366 1cc6
Knight Breastplate 1 7367 1cc7
Knight Breastplate 2 7368 1cc8
Knight Breastplate 3 7369 1cc9
Rim with Axle Ø14.58 736 2e0
Engineer Shirt 1 7370 1cca
Engineer Shirt 2 7371 1ccb
Engineer Shirt 3 7372 1ccc
Sorcerer Breastplate 1 7373 1ccd
Sorcerer Breastplate 2 7374 1cce
Sorcerer Breastplate 3 7375 1ccf
Buccaneer Shirt 1 7376 1cd0
Buccaneer Shirt 2 7377 1cd1
Buccaneer Shirt 3 7378 1cd2
Knight Leggings 1 7379 1cd3
Engine 2x2x1 1/3 with Air Intake 737 2e1
Knight Leggings 2 7380 1cd4
Knight Leggings 3 7381 1cd5
Engineer Pants 1 7382 1cd6
Engineer Pants 2 7383 1cd7
Engineer Pants 3 7384 1cd8
Sorcerer Pants 1 7385 1cd9
Sorcerer Pants 2 7386 1cda
Sorcerer Pants 3 7387 1cdb
Buccaneer Pantaloons 1 7388 1cdc
Buccaneer Pantaloons 2 7389 1cdd
Plate 1×2 with Radiator 738 2e2
Buccaneer Pantaloons 3 7390 1cde
Knight Greatsword 1 7391 1cdf
Knight Greatsword 2 7392 1ce0
Knight Greatsword 3 7393 1ce1
Engineer Wrench 1 7394 1ce2
Engineer Wrench 2 7395 1ce3
Engineer Wrench 3 7396 1ce4
Sorcerer Wand 1 7397 1ce5
Sorcerer Wand 2 7398 1ce6
Sorcerer Wand 3 7399 1ce7
Tile with Cover Curved 1×4.5 739 2e3
Slope Brick 25° 1×3 73 49
Buccaneer Pistol & Cutlass 1 7400 1ce8
Buccaneer Pistol & Cutlass 2 7401 1ce9
Buccaneer Pistol & Cutlass 3 7402 1cea
Knight Shield 2 7403 1ceb
Knight Shield 3 7404 1cec
Engineer Controller 2 7405 1ced
Engineer Controller 3 7406 1cee
Sorcerer Orb 2 7407 1cef
Sorcerer Orb 3 7408 1cf0
Knight Shoulderpads 3 7409 1cf1
Plate 1×2 with Spoiler 740 2e4
Ninja Tashi – Ninja Scout 7411 1cf3
Ninja Guard 7412 1cf4
Kenjin the Wise – Ninja Sage 7413 1cf5
Master Fong Shader – Paradox Sensei 7414 1cf6
Sorcerer Shoulderpads 3 7415 1cf7
Buccaneer Bandolier 3 7416 1cf8
Engineer Vest 3 7417 1cf9
Brickmaster Clang – Paradox Ninja 7423 1cff
Gathermaster Klex – Paradox Ninja 7424 1d00
Smashmaster Foom – Paradox Ninja 7425 1d01
Numb Chuck – Paradox Agent 7426 1d02
Zen Master 7428 1d04
Shu Fitts – Brick Vendor 7429 1d05
Kore Swordcube – Gear Vendor 7430 1d06
Vapor Overcast – Paradox Technician 7432 1d08
Hammer Brick 1 7436 1d0c
Hammer Brick 2 7437 1d0d
Hammer Brick 3 7438 1d0e
Hammer Brick 4 7439 1d0f
Wedge 3×10 Curved Left 743 2e7
Space Ranger Helmet 1 7442 1d12
Space Ranger Helmet 2 7443 1d13
Space Ranger Helmet 3 7444 1d14
Samurai Helm 1 7445 1d15
Samurai Helm 2 7446 1d16
Samurai Helm 3 7447 1d17
Space Marauder Helm 1 7448 1d18
Space Marauder Helm 2 7449 1d19
Wedge 3×10 Curved Right 744 2e8
Space Marauder Helm 3 7450 1d1a
Shinobi Hood 1 7451 1d1b
Shinobi Hood 2 7452 1d1c
Shinobi Hood 3 7453 1d1d
Inventor Goggles 1 7454 1d1e
Inventor Goggles 2 7455 1d1f
Inventor Goggles 3 7456 1d20
Summoner Hat 1 7457 1d21
Summoner Hat 2 7458 1d22
Summoner Hat 3 7459 1d23
Slope Brick 1x8x1 2/3 Curved with Arch 745 2e9
Adventurer Hat 1 7460 1d24
Adventurer Hat 2 7461 1d25
Adventurer Hat 3 7462 1d26
Daredevil Helmet 1 7463 1d27
Daredevil Helmet 2 7464 1d28
Daredevil Helmet 3 7465 1d29
Space Ranger Armor 1 7466 1d2a
Space Ranger Armor 2 7467 1d2b
Space Ranger Armor 3 7468 1d2c
Samurai Breastplate 1 7469 1d2d
Dish 10×10 746 2ea
Samurai Breastplate 2 7470 1d2e
Samurai Breastplate 3 7471 1d2f
Space Marauder Jacket 1 7472 1d30
Space Marauder Jacket 2 7473 1d31
Space Marauder Jacket 3 7474 1d32
Shinobi Gi 1 7475 1d33
Shinobi Gi 2 7476 1d34
Shinobi Gi 3 7477 1d35
Inventor Armor 1 7478 1d36
Inventor Armor 2 7479 1d37
Flag 5×6 Hexagonal with Horizontal Clips 747 2eb
Inventor Armor 3 7480 1d38
Summoner Robe 1 7481 1d39
Summoner Robe 2 7482 1d3a
Summoner Robe 3 7483 1d3b
Adventurer Coat 1 7484 1d3c
Adventurer Coat 2 7485 1d3d
Adventurer Coat 3 7486 1d3e
Daredevil Jacket 1 7487 1d3f
Daredevil Jacket 2 7488 1d40
Daredevil Jacket 3 7489 1d41
Wedge Plate 2×4 748 2ec
Space Ranger Pants 1 7490 1d42
Space Ranger Pants 2 7491 1d43
Space Ranger Pants 3 7492 1d44
Samurai Leggings 1 7493 1d45
Samurai Leggings 2 7494 1d46
Samurai Leggings 3 7495 1d47
Space Marauder Pants 1 7496 1d48
Space Marauder Pants 2 7497 1d49
Space Marauder Pants 3 7498 1d4a
Shinobi Leggings 1 7499 1d4b
Cowl 4x6x2/3 749 2ed
Plate 2×2 with Snap 74 4a
Shinobi Leggings 2 7500 1d4c
Shinobi Leggings 3 7501 1d4d
Inventor Pants 1 7502 1d4e
Inventor Pants 2 7503 1d4f
Inventor Pants 3 7504 1d50
Summoner Pants 1 7505 1d51
Summoner Pants 2 7506 1d52
Summoner Pants 3 7507 1d53
Adventurer Pants 1 7508 1d54
Adventurer Pants 2 7509 1d55
Adventurer Pants 3 7510 1d56
Daredevil Pants 1 7511 1d57
Daredevil Pants 2 7512 1d58
Daredevil Pants 3 7513 1d59
Space Ranger Zipgun 1 7514 1d5a
Space Ranger Zipgun 2 7515 1d5b
Space Ranger Zipgun 3 7516 1d5c
Samurai Katana 1 7517 1d5d
Samurai Katana 2 7518 1d5e
Samurai Katana 3 7519 1d5f
Car Chassis Plate 4x12x2/3 751 2ef
Space Marauder Blaster 1 7520 1d60
Space Marauder Blaster 2 7521 1d61
Space Marauder Blaster 3 7522 1d62
Shinobi Katana 1 7523 1d63
Shinobi Katana 2 7524 1d64
Shinobi Katana 3 7525 1d65
Inventor Improved Launcher 1 7526 1d66
Inventor Improved Launcher 2 7527 1d67
Inventor Improved Launcher 3 7528 1d68
Summoner Staff 1 7529 1d69
Brick 12×12 0 4.85 Combo 752 2f0
Summoner Staff 2 7530 1d6a
Summoner Staff 3 7531 1d6b
Adventurer Crossbow 1 7532 1d6c
Adventurer Crossbow 2 7533 1d6d
Adventurer Crossbow 3 7534 1d6e
Daredevil Flareguns 1 7535 1d6f
Daredevil Flareguns 2 7536 1d70
Daredevil Flareguns 3 7537 1d71
Space Ranger Pack 3 7538 1d72
Samurai Shoulderpads 3 7539 1d73
Brick 1×2 with 4 Studs 753 2f1
Space Marauder Shoulderpads 3 7540 1d74
Shinobi Shoulderpads 3 7541 1d75
Inventor Shoulderpads 3 7542 1d76
Daredevil Shoulderpads 3 7543 1d77
Space Ranger Launcher 2 7544 1d78
Space Ranger Launcher 3 7545 1d79
Samurai Bow 2 7546 1d7a
Samurai Bow 3 7547 1d7b
Space Marauder Launcher 2 7548 1d7c
Slope Brick 45° 1×6 Double Inverted with Cut-Out 754 2f2
Space Marauder Launcher 3 7550 1d7e
Summoner Shoulderpads 3 7555 1d83
Summoner Orb 2 7556 1d84
Summoner Orb 3 7557 1d85
Adventurer Backpack 3 7558 1d86
Wedge Plate 3×6 Right 755 2f3
Wedge Plate 3×6 Left 756 2f4
Red Shoulder Parrot 7570 1d92
Wheel Hard-Plastic with Spokes Ø56×22 757 2f5
Rank 1 Buccaneer Kit Package 7586 1da2
Rank 1 Sorcerer Kit Package 7589 1da5
Rim Ø18 758 2f6
Rank 1 Knight Kit Package 7590 1da6
Rank 1 Engineer Kit Package 7591 1da7
Red Ninja Gi 7592 1da8
Tipper Body 8x24x5 759 2f7
Party Pants 7601 1db1
Windscreen 4x3x1 1/3 760 2f8
Assembly Package 7610 1dba
Frame 1x4x6 with 2 Cross-Beams 761 2f9
Flap 3×12 with Vertical Fork 762 2fa
Goat Pet 7638 1dd6
Lattice Brick 2x2x10 Type 2 763 2fb
Quarter Circle Brick with Sloped Rim 10×10 764 2fc
Panel 1x6x5 765 2fd
Tube Straight 2 with Stud 766 2fe
Seperator 7672 1df8
Infected Citizen 7679 1dff
Tube Curved 2×2 767 2ff
Parabolic Dish 768 300
Crab Pet 7694 1e0e
Exhaust Pipe with Pin 769 301
Brick 1×1 with 4 Studs 76 4c
Buttery Croissant 7724 1e2c
Healing Drumstick 7725 1e2d
Wand of Freezing 2 7727 1e2f
Skater Helmet 7728 1e30
Viking Helm 7729 1e31
Red Racing Helmet 7730 1e32
Aussie Hat 7731 1e33
Walkie Talkie 7732 1e34
Improved Frying Pan 7733 1e35
Improved Push Broom 7734 1e36
Pet Bunny Shirt 7735 1e37
Pet Terrier Shirt 7736 1e38
Pet Cat Shirt 7737 1e39
Target Duck Shirt 7739 1e3b
LEGO Dice Shirt 7740 1e3c
Wolves Shirt 7741 1e3d
Firefighter Coat 7742 1e3e
Police Jacket 7743 1e3f
Witch Robe 7744 1e40
Chef Jacket 7745 1e41
Diver Wetsuit 7746 1e42
Overalls 7747 1e43
Flower Shirt 7748 1e44
Wizard Tunic 7749 1e45
Kurt Tussle – Nexus Force Guard 7752 1e48
Picnic Table Model 7758 1e4e
Double Trash Can Model 7759 1e4f
Trash Can Model 7761 1e51
Workbench with Toolbox Model 7766 1e56
Welder Model 7767 1e57
Fire Extinguisher Model 7768 1e58
Computer Model 7769 1e59
Brick Column 2x2x11 776 308
Bench Model 7770 1e5a
Cooler Model 7771 1e5b
Piano Model 7773 1e5d
Guitar Model 7774 1e5e
Bass Guitar Model 7775 1e5f
Firecracker 7778 1e62
Clod Chucking Shovel 7779 1e63
Rubber Boat 6×10 777 309
Hat of Sprouting Imagination 7780 1e64
Aviator Hat with Goggles 7781 1e65
Wolf Head Helmet 7782 1e66
Retro Movie Camera 7783 1e67
Mega Chest Armor 7784 1e68
Flash Bulb 7785 1e69
Mega Helm 7786 1e6a
Cauldron of Life 7787 1e6b
Fountain of Imagination 7788 1e6c
Sun Headdress 7789 1e6d
Bay Window 3x8x6 778 30a
Jester Hat 7790 1e6e
Fish Hat 7792 1e70
Grey Kepi Hat 7793 1e71
Portable Drumset 7794 1e72
Flash Pants 7797 1e75
Bow 1x3x2 77 4d
Blastbreath – Maelstrom Dragon 7805 1e7d
Fire Hydrant Model 7808 1e80
Trike Chassis 780 30c
Duck Model 7812 1e84
Drumset Model 7813 1e85
Dark Ronin 7815 1e87
Maelstrom Horseman 7816 1e88
Cash Register Model 7818 1e8a
DJ Table Model 7822 1e8e
Tank Pallet Model 7825 1e91
Oil Drum Model 7826 1e92
Dolly Model 7827 1e93
Torch Cart Model 7828 1e94
Engine Model 7829 1e95
Pallet Model 7830 1e96
Vendor Rack Model 7832 1e98
Pharaoh’s Hat 7834 1e9a
Jonesy’s Fishing Pole 7848 1ea8
Lamppost 2x2x7 784 310
Quality Bass Guitar 7850 1eaa
Exceptional Guitar 7851 1eab
Flag 2×2 with Horizontal Clips 785 311
Brick with Bow 1x5x4 787 313
Tail Fin on Tile 1×4 788 314
Slope Brick 1×3 45° Inverted Double 789 315
Rim Ø11 Wide 78 4e
Panel Wall 3x3x6 Corner 791 317
Tire Ø30.4 Narrow 792 318
Tile 2×2 Round with Hanger on Top 793 319
Panel 1x2x2 with Window 794 31a
Towing Bars with 1×2 and 2×2 Plates 795 31b
Outpost Console 7973 1f25
Bamboo Model 7974 1f26
Corner Plate 10×10 45° 797 31d
LEGO Dice 7989 1f35
Blue Kepi Hat 7990 1f36
Black Racing Helmet 7991 1f37
Blue Racing Helmet 7992 1f38
Airplane Wing 4×9 800 320
Plate 2×2 with Airplane Landing Gear 801 321
Rank 1 Space Ranger Kit Package 8027 1f5b
Rank 1 Samurai Kit Package 8028 1f5c
Rank 1 Space Marauder Kit Package 8029 1f5d
Plant Leaves 6×5 802 322
Rank 1 Shinobi Kit Package 8030 1f5e
Rank 1 Inventor Kit Package 8031 1f5f
Rank 1 Daredevil Kit Package 8032 1f60
Rank 1 Summoner Kit Package 8033 1f61
Rank 1 Adventurer Kit Package 8034 1f62
Nemesis Helm 8035 1f63
Warlord Helm 8036 1f64
Green Racing Helmet 8037 1f65
White Racing Helmet 8038 1f66
Yellow Racing Helmet 8039 1f67
Windscreen 6×6 Octagonal with Hinge 803 323
Dark Grey Racing Helmet 8040 1f68
Light Grey Racing Helmet 8041 1f69
Lantern Model 8049 1f71
Corner Plate 3×6 Double 45° 804 324
Small Shrine Model 8050 1f72
Armchair Model 8051 1f73
Goblet Box Model 8055 1f77
Propeller Ø3.5 with 3 Blades 805 325
Café Table Model 8066 1f82
Picnic Blanket Model 8067 1f83
Console Model 8068 1f84
Yellow Barricade Model 8069 1f85
Plant Leaves 4×3 806 326
Barricade Model 8073 1f89
Birdhouse Model 8077 1f8d
Tile 1×4 807 327
Black Shako Hat 8084 1f94
Red Shako Hat 8085 1f95
Red Imperial Shirt 8086 1f96
Blue Imperial Shirt 8087 1f97
Chainsaw Stromling 8088 1f98
Hammer Stromling 8089 1f99
Tile 1×2 with Handle 808 328
Stromling Mech 8090 1f9a
Stromling Mech 8091 1f9b
Custom Racing Car 8092 1f9c
Dark Spiderling 8096 1fa0
Dark Spiderling 8097 1fa1
Brick 2x4x2 with Studs on Sides 809 329
Rank 1 Knight Book 80 50
Small Spruce Tree 810 32a
Angle Bracket Plate 1×2 / 1×4 811 32b
Car Chassis 8129 1fc1
Windscreen 3x4x1/3 812 32c
Steel Rim Wheels 8130 1fc2
Hyperstarter Engine Panel 8131 1fc3
Chase Cutter Rear Panel 2 8132 1fc4
Paragon Warp Side Panels 1 8133 1fc5
Chase Cutter Front Bumper 1 8134 1fc6
Chase Cutter Rear Bumper 2 8135 1fc7
Plate 2×12 814 32e
Corner Plate 45° 3×3 815 32f
Brick 1x1x5 816 330
Brick 1x2x5 817 331
Tile 2×2 with Pin on Top 818 332
Corner Brick 3×3 with Cut-Out 819 333
Brick with Bow 4x1x1 1/3 81 51
Sky Lane – Venture League Explorer 8205 200d
Swifty McGurk – Racing Pirate 8206 200e
Klaus Zett – Gear Vendor 8212 2014
Basic Dagger 8217 2019
Basic Pickaxe 8218 201a
Basic Javelin 8219 201b
Stromling Mech 8222 201e
Epsilon Starcracker – Nexus Force Scout 8223 201f
Bob 8224 2020
Panel 3x2x6 Curved 822 336
Thrust Bucket Engine Panel 2 8232 2028
Thrust Bucket Rear Panel 8234 202a
Chase Cutter Side Panels 1 8235 202b
Paragon Warp Front Bumper 1 8236 202c
Paragon Warp Rear Bumper 2 8237 202d
Hammerhurl Stromling 8238 202e
Plate 2×2 with Pin Underneath 826 33a
Double Lamppost Model 8270 204e
Propeller 5×5 with 4 Blades 827 33b
Gate 1x8x2 828 33c
Deep Freeze Rocket Nose Cone 8295 2067
Deep Freeze Rocket Cockpit 8296 2068
Deep Freeze Rocket Engine 8298 206a
Moonbase Rocket Nose Cone 8299 206b
Barrel 2×2 829 33d
Bow 1x1x1 1/3 82 52
Moonbase Rocket Cockpit 8300 206c
Moonbase Rocket Engine 8301 206d
Panda Spirit 8307 2073
Mantis Spirit 8308 2074
Dragon Spirit 8309 2075
Palm Leaf 830 33e
Assembly Token 8318 207e
Sentinel Faction Token 8319 207f
Flag 6×4 with Horizontal Clips 831 33f
Paradox Token 8320 2080
Venture League Token 8321 2081
Gun Carriage 2x4x1 1/3 832 340
Exceptional Katana 8331 208b
Shield of Blocking 8333 208d
Nexus Force Rocket Nose Cone 8337 2091
Nexus Force Rocket Cockpit 8338 2092
Nexus Force Rocket Engine 8339 2093
Window 2×3 with Lattice 833 341
Superior Crossbow of Blasting 8343 2097
Blue Kimono 8345 2099
Twin Dragons Kimono 8347 209b
Dragon Style Gi 8348 209c
Kung Fu Master Shirt 8350 209e
Green Dragon Shirt 8351 209f
Hanbock 8353 20a1
Mantis Style Gi 8354 20a2
Narwhal Shirt 8355 20a3
Panda Style Gi 8356 20a4
Gothic Paradox Shirt 8357 20a5
Pink Kimono 8358 20a6
Referee Shirt 8359 20a7
Sensei Shirt 8360 20a8
Belted Ninja Shirt 8361 20a9
Bag of Glitter 8363 20ab
Potion of Shielding 8365 20ad
Cloud Burst 8366 20ae
Enchanted Dragon’s Tooth 8367 20af
Boat Mast Platform Octagonal with Horizontal Clips 836 344
Shuriken 8371 20b3
Sushi 8375 20b7
Tough Buff Sauce 8376 20b8
Plate 1×2 with Handle Type 1 837 345
Shroud 838 346
Rowing Boat 5x14x2 1/3 839 347
Plate 2×2 for Hinge Brick 1×2 83 53
Large Arch Model 8401 20d1
Tile 2×2 with Palm Base 841 349
Black Cowboy Hat 8424 20e8
White Cowboy Hat 8425 20e9
Tan Cowboy Hat 8426 20ea
Anchor 842 34a
Corrupted Sentry 8433 20f1
Antenna 8 843 34b
Superior Push Broom 8444 20fc
Elite Oar 8447 20ff
Super Hatchet 8448 2100
Super Shovel 8449 2101
Panel 3x4x6 with Curve 844 34c
Elite Pickaxe 8450 2102
Great Shortsword 8451 2103
Super Shortsword 8452 2104
Elite Shortsword 8453 2105
Super Hairbrush 8454 2106
Great Crescent Wrench 8455 2107
Knight Shoulderpads 2 8456 2108
Space Ranger Pack 2 8457 2109
Samurai Shoulderpads 2 8458 210a
Sorcerer Shoulderpads 2 8459 210b
Panel 5x6x10 with Curve 845 34d
Space Marauder Shoulderpads 2 8460 210c
Shinobi Shoulderpads 2 8461 210d
Engineer Vest 2 8462 210e
Inventor Shoulderpads 2 8463 210f
Summoner Shoulderpads 2 8464 2110
Adventurer Backpack 2 8465 2111
Daredevil Shoulderpads 2 8466 2112
Buccaneer Bandolier 2 8467 2113
Super Spear 8468 2114
Elite Ice Saw 8469 2115
Brick 4×4 ¼-Circle 846 34e
Elite Halberd 8470 2116
Great Katana of Freezing 8471 2117
Elite Katana 8472 2118
Elite Scimitar 8473 2119
Great Corseque 8474 211a
Super Corseque 8475 211b
Elite Force Blade of Lightning 8476 211c
Super Dirk 8477 211d
Elite Fang 8478 211e
Superior Shortsword 8479 211f
Exceptional Axe 8480 2120
Worthy Wrench 8481 2121
Exceptional Pipe Wrench 8482 2122
Exceptional Ladle 8483 2123
Worthy Butterfly Net 8484 2124
Superior Huge Axe 8485 2125
Quality Spear 8486 2126
Exceptional Spear 8487 2127
Superior Hammer 8488 2128
Worthy Ice Saw 8489 2129
Superior Halberd 8490 212a
Wand of Knockback 8491 212b
Wand of Sleep 8492 212c
Superior Katana 8493 212d
Exceptional Dagger 8494 212e
Exceptional Force Blade 8495 212f
Worthy Morning Star 8496 2130
Quality Cutlass 8497 2131
Improved Hatchet 8498 2132
Quality Shortsword 8499 2133
Dome 10x10x4 with Hinge 849 351
Plate 1×1 Round 84 54
Quality Woodsman’s Axe 8500 2134
Improved Ice Saw 8501 2135
Improved Scimitar 8502 2136
Quality Corseque 8503 2137
Improved Longsword 8504 2138
Basic Force Blade 8505 2139
Quality Dirk 8506 213a
Superior Trident 8507 213b
Pneumatic Drill of Blasting 8508 213c
Improved Trident 8509 213d
Hemisphere 10x10x4 Inverted 850 352
Window for Ship’s Bridge 851 353
Troll Shield 8528 2150
Scorpion Shield 8529 2151
Corner Plate 2x4x4 852 354
Imagination Tanks 8530 2152
Heater Shield 8531 2153
Briefcase 8532 2154
Quiver 8533 2155
Utility Harness 8534 2156
Explorer Air Tank 8535 2157
Dox Shoulderpads 8536 2158
Tech Armor 8537 2159
Scutum Shield 8538 215a
Messenger Bag 8539 215b
Brick 1×4 with Groove 853 355
Fedora 8540 215c
Lockjaw Helm 8541 215d
Key of Imagination 8543 215f
King’s Crown 8544 2160
Space Headgear 8546 2162
Scoundrel Cap 8547 2163
Dragon Helm MK I 8548 2164
Slide Shoe Round 2×2 854 356
Plate 2×2 Round with Clips for Wheel 855 357
Headless Mannequin 8566 2176
Technic Brick 1×10 857 359
Pet Crab Shirt 8584 2188
Pet Crocodile Shirt 8585 2189
Pet Red Dragon Shirt 8586 218a
Pet Elephant Shirt 8587 218b
Pet Goat Shirt 8588 218c
Pet Green Dragon Shirt 8589 218d
Technic Brick 1×4 with Wing 858 35a
Pet Lion Shirt 8590 218e
Pet Mantis Shirt 8591 218f
Pet Panda Shirt 8592 2190
Pet Robot Dog Shirt 8593 2191
Pet Skunk Shirt 8594 2192
Pet Tortoise Shirt 8595 2193
Pet Warthog Shirt 8596 2194
Card Shark Shirt 8597 2195
Zippered Leather Jacket 8598 2196
New Western Shirt 8599 2197
Technic Brick 1×6 Sloped 859 35b
Brick 2×2 with Pin 85 55
Old Skool Shirt 8600 2198
Lounge Lizard Shirt 8601 2199
Blue Uniform 8602 219a
Red Uniform 8603 219b
Black Soccer Shirt 8604 219c
Red Soccer Shirt 8605 219d
Shabby Ninja Shirt 8606 219e
Ruffled and Striped Shirt 8607 219f
Crown on Checks Shirt 8608 21a0
Cavalry Shirt 8609 21a1
Technic Bearing Plate 2×2 with 2 Pin Holes 860 35c
Ruffled Bodice 8611 21a3
Aviator Shirt 8612 21a4
Cattle Rustler Shirt 8613 21a5
Race Ace Shirt 8614 21a6
EMT Shirt 8615 21a7
Inmate Shirt 8616 21a8
Retro Daredevil Shirt 8617 21a9
Female Pirate Shirt 8618 21aa
Train Roof 45° 2×6 with Cut-Out 861 35d
Viking Barbarian Shirt 8620 21ac
Mail Shirt with Gorget 8621 21ad
Light Blue Princess Shirt 8622 21ae
Dark Blue Princess Shirt 8623 21af
Jester Shirt 8624 21b0
Mail Shirt with Belt 8625 21b1
Pirate Princess Dress 8626 21b2
Fancy Captain Shirt 8627 21b3
Checkered Flag Shirt 8628 21b4
Cool Car Shirt 8629 21b5
Train Roof Front 45°/33° 6×6 with Cut-Out 862 35e
Union Shirt 8630 21b6
Confederate Shirt 8631 21b7
Squire’s Helm 8636 21bc
Breastplate of Armored Inspiration 8637 21bd
Powered Armor 8638 21be
Obsidian Armor 8639 21bf
Profile Brick 1×2 863 35f
Bell Bottoms 8640 21c0
Steel Legs 8641 21c1
Dungarees 8642 21c2
Capris 8643 21c3
Gauchos 8644 21c4
Iron Legs 8645 21c5
Khakis 8646 21c6
Cargo Pants 8647 21c7
Jeans 8648 21c8
Chaps 8649 21c9
Brick 1×1 with Handle 864 360
Tights 8650 21ca
Hammer Pants 8651 21cb
Map Piece 1 8652 21cc
Map Piece 2 8653 21cd
Map Piece 3 8654 21ce
Pirate-Sized Ninja Clothes 8655 21cf
Georgie Timbershivers – Pirate Spy 8657 21d1
Gary Grogowitz – Pirate Spy 8658 21d2
Robbie Jibhanger – Pirate Spy 8659 21d3
Plate 2×2 865 361
Numb Chuck’s Treasure 8662 21d6
Natso Fast – Foot Race Host 8663 21d7
Jodhpurs 8664 21d8
Brick Fury – Paradox Super Soldier 8665 21d9
Sweat Pants 8666 21da
Clam Diggers 8667 21db
Plate 6×16 866 362
Kettle Helmet 8673 21e1
Wrench 8674 21e2
Reinforced Pith Helmet 8675 21e3
Cadet Helm 8676 21e4
Dwarf Helmet 8678 21e6
Rounded Helm 8679 21e7
Plate 6×12 867 363
Grease Can 8680 21e8
Gem Scepter 8681 21e9
Knapsack 8682 21ea
Epaulets of Authority 8683 21eb
Epaulets of Extravagance 8684 21ec
Sailor Hat 8685 21ed
Dragon’s Tooth 8686 21ee
Plate 4×12 868 364
Plate 2×8 869 365
Technic Brick 1×1 86 56
Slope Brick 45° 4×2 870 366
Slope Brick 45° 3×2 871 367
Slope Brick 45° Ridged 2×4 872 368
Slope Brick 45° Ridged 2×2 873 369
Slope Brick 45° Ridged 1×2 874 36a
Slope Brick 45° Triple Ridged 1×2 875 36b
Slope Brick 45° 1×2 Top, with Inverted Connection 876 36c
Flat Tile 2×2 877 36d
Baroque Sign 8787 2253
Scooter Chassis 2×6 with Lateral Studs 8788 2254
Tile 1×2 with Console 8789 2255
Plate 2×3 Semi-Round with Eye 878 36e
Panel 6x10x11 with Studs 8790 2256
1/4-Dome 10x10x12 8791 2257
Panel 3×6 Angled with Vertical Clips 8792 2258
Car Chassis 4×7 8793 2259
Frame with Hinge for Windscreen 6×6 Octagonal 8794 225a
1/4-Dome Brick 3x3x2 Top 8795 225b
1/4-Dome Brick 3x3x2 Inverted 8796 225c
Panel 4x4x6 Corner Concave 8797 225d
Panel 3x3x6 Corner Convex 8798 225e
Holder for Circular Brush 8799 225f
Fence 1x4x2 879 36f
Rim Ø8 Wide 87 57
Glass Pane 4×5 8800 2260
Axle with Hafts 8801 2261
Wheel Hard-Plastic Ø56 Large 8802 2262
Epaulets 8803 2263
Boat Mast Extension 8804 2264
Boat Bowsprit 8805 2265
Wooden Door 3×6 with 1/4 Circle Top 8806 2266
Flintlock Pistol 8807 2267
Wheel Hard-Plastic Ø75 Giant 8808 2268
Device Shield with Vertical Clips 8809 2269
Gate 1x8x3 8810 226a
Wheel Hard-Plastic Medium 8811 226b
Bow Plate 9×10 8812 226c
Brick Bow 8×10 8813 226d
Boat Bow 6×6 Bottom 8814 226e
Crane Gantry 2x16x16 8815 226f
Crane Base 2x16x16 8816 2270
Stanchion 5 8817 2271
Belt for Technic Wedge-Belt Wheel 8819 2273
Technic Fork 8820 2274
Technic Crank 8821 2275
Technic Triangle Half Beam 5×3 8823 2277
Coupling Lever 8824 2278
Technic Excavator Bucket 8825 2279
Plate 6×24 8826 227a
Brick 1×4 Hollow 8827 227b
Plate 1×4 with Coupling Cup 8828 227c
Plate 1×4 with Coupling Ball 8829 227d
Door 1x3x2 Right 882 372
Fence Gate 1×4 8830 227e
Tile 1×4 with Hinge for Fence Gate 8831 227f
Door 1x5x4 Right 8832 2280
Left Door 1x5x4 8833 2281
Tail Fin 4x2x2 8835 2283
Shutter for Window 8837 2285
Plate 1×1 Round with Ball 8838 2286
Wig with Small Pigtails 8839 2287
Left Door 1x3x2 883 373
Cowboy Hat 8840 2288
Door 4×6 with Grill 8841 2289
Technic Gear Wheel 40 8842 228a
Technic Brick 1×16 8843 228b
Plate 2×2 with Ball Socket 8844 228c
Cypress 8845 228d
Mini Crash Helmet 8846 228e
Mini Shield 8847 228f
Great Helm with Chin Guard 8848 2290
Wheelbarrow 8849 2291
Door 1x3x3 Right 884 374
Train Buffer 8850 2292
Sunshade 8851 2293
Garrison Cap 8852 2294
Technic Wedge-Belt Wheel Ø24 8853 2295
Thread Drum 8854 2296
Casing 2x4x2 8855 2297
Thruster with Grills Below 2×2-Plate 8856 2298
Pitchfork 8858 229a
Door 1x3x3 Left 885 375
Forestman Cap 8860 229c
Plastic Cape 8861 229d
Technic Worm Screw 8862 229e
Lattice Corner 1x4x6 8863 229f
Frame Right 1x4x6 Inverted 8864 22a0
Tail Fin with Rocket Engine 8865 22a1
Plate 4×4 with Boat Mast Base 8866 22a2
Panel 6x6x9 1/4-Circle with Dome 8867 22a3
Canoe 8868 22a4
Shoulder Jet Pack 8869 22a5
Door 1x3x4 Right 886 376
Bobbed Hair 8870 22a6
Islander Demon Mask 8871 22a7
Brick 2x3x2x1/3 Octagonal Diagonal 8872 22a8
Brick 2x2x3 1/3 Octagonal 8873 22a9
Cone 2x2x1 1/3 Octagonal 8874 22aa
Propeller Ring-Casing with Fins 8875 22ab
Ship’s Propeller with 3 Blades and Cross Axle Hole 8876 22ac
Brick 2x2x3x1/3 Octagonal with Studs on Side 8877 22ad
Brick 2x2x3x1/3 Octagonal with 90° Angle 8878 22ae
Slope Brick 53° 1x3x3 1/3 with Studs 8879 22af
Door 1x3x4 Left 887 377
Panel Wall Corner with Window 6x6x6 8880 22b0
Cockpit 4x11x2 2/3 Bottom 8881 22b1
Panel 3x3x6 1/4-Circle with Dome 8882 22b2
Bush Bottom 8883 22b3
Plate 4×4 with Boat Mast Base 8884 22b4
Castle Balcony 7x7x2 8885 22b5
Stable Door 8886 22b6
Space Suit with Helmet and Propeller 8887 22b7
Space Suit with Helmet and Breathing Device 8888 22b8
Corner Brick 5×5 with Cut-Out 8889 22b9
Visor with Antenna 8890 22ba
Windscreen 4x6x1 1/3 8891 22bb
Frame 1x4x4 8892 22bc
Door 4×4 with Grills and Handle 8893 22bd
Oval Suitcase 8894 22be
Tile 6×16 with 26 Studs 8895 22bf
Spiral Tube with Flanges 8896 22c0
Brick 2x6x3 8897 22c1
Panel 2x4x4 1/2-Circle 8898 22c2
Plate Wing 16×14 8899 22c3
Brick 1×2 Palisade 88 58
Dolphin 8900 22c4
Parasol 8903 22c7
Tile 2×2 with Parasol Stand 8904 22c8
Technic Driving Ring 8905 22c9
Technic Gear Wheel 16 with Pin Hole 8906 22ca
Technic Axle 1.5 with Cross Axle Connection Bush 8907 22cb
Technic Cam Disc 8908 22cc
Technic Wheel Block 4×4 8909 22cd
Brick 1x2x2 890 37a
Technic Wheel Z12 8910 22ce
Technic Angular Beam 45° 4×6 8911 22cf
Technic Change-Over Catch 8912 22d0
Tile 6×6 8913 22d1
Ball Ø52mm 8914 22d2
Bath Tub 6x12x2 1/3 8915 22d3
End Piece for Lorry 8916 22d4
Car Chassis Plate 4x10x2/3 8917 22d5
Foal 8918 22d6
Helmet with Hose and Stud 8919 22d7
Slope Brick 25° 4×3 891 37b
Plate Frame 6×8 for Trap Door 8920 22d8
Plate Trap Door 4×5 8921 22d9
Bowsprit 11 2/3 M 8922 22da
Fence 1x6x2 with Arches 8923 22db
Manta Ray 8924 22dc
Sawfish Head 8925 22dd
Underwater scooter 8926 22de
Panel Wall 6x3x6 Corner with Window 8927 22df
Lattice Fence 2x12x6 8928 22e0
Medicine Man Wig 8929 22e1
Slope Brick 25° Ridged 2×4 892 37c
Indian Wig 8930 22e2
Alien Helmet 8931 22e3
Crash Helmet 8932 22e4
Hollow Stump 8933 22e5
Chief Brilliant Plumage 8934 22e6
Barrel 4×4 8935 22e7
Palisade Wall 1x6x6 8936 22e8
Brick 2x4x3 8937 22e9
Samurai Helmet 8938 22ea
1/4-Dish 10×10 Inverted 8939 22eb
Slope Brick 25° Ridged 2×2 893 37d
Aqua Suit Helmet 8940 22ec
Dome 4×4 Faceted 8941 22ed
Sensor Dish with Bent Stem 8942 22ee
Standard with Foot 2x2x5 8943 22ef
Sign Octagonal with Vertical Clip 8944 22f0
Flat-Bed Platform 6×12 with Vertical Fork 8945 22f1
Panel 3x6x6 with Window and Roof Slope 8946 22f2
Rock 4x4x1 2/3 Bottom Part 8947 22f3
1/4-Dish 10×10 Top 8948 22f4
Antenna 8 with Streamer 8949 22f5
Brick with Bow 1x6x2 894 37e
Brick 4×18 8950 22f6
Pterodactyl 8951 22f7
Plate 2×4 / 2x2x1 with Pin on Top 8952 22f8
Connecting Rod 6P 8953 22f9
Flipper with Stud 8954 22fa
Technic Angular Beam 3×7 45°/90° 8955 22fb
Technic Angle Connector 0° 8956 22fc
Tire Ø62.4 8957 22fd
Rim Ø43.2 8958 22fe
Technic Angle Connector 180° 8959 22ff
Brick with Bow 1x8x2 895 37f
Technic Bush with Cross Axle Connection Bush 8960 2300
Technic Angular Half-beam 90° 3×3 8961 2301
Wedge 6×8 with Cut-Out 8962 2302
Technic Angular Beam 4×2 90° 8963 2303
Technic Beam 7, Special 8964 2304
Technic Transmission Ring 8965 2305
Technic Bevel Gear Z20 8966 2306
Technic Flex Rod 11 8967 2307
Technic Flex Rod 12 8968 2308
Technic Casing for Worm Screw 8969 2309
Technic Half Beam 3×3 with Curve 8970 230a
Technic Half Beam 5×7 with Curve 8971 230b
Technic Cross-Joiner Double 2×1 8972 230c
Technic Steering Link 8973 230d
Technic Suspension Arm 8974 230e
BIONICLE Head 8975 230f
Technic Beam 5 8976 2310
BIONICLE Foot 8977 2311
BIONICLE Arm 8978 2312
Technic Double Conical Wheel Z36 8979 2313
Technic Beam 3 8980 2314
Technic Angular Beam 3×5 90° 8981 2315
Technic Panel 5M-5 Right 8982 2316
Technic Panel 5M-6 Left 8983 2317
Technic Panel 10M-7 Right 8984 2318
Technic Panel 10M-8 8985 2319
BIONICLE Flame 8986 231a
Hairdryer 8987 231b
Turkey 8988 231c
Decoration Ball 8989 231d
Tipper Bucket Front with Chute 898 382
Rabbit 8990 231e
Bow Brick 1x3x2 8991 231f
Ski Pole 8992 2320
Technic Steering Knuckle Arm 8993 2321
Technic Axle with Thorny Drill 8994 2322
Tail Middle Part 8995 2323
Mosasaur Top Jaw 8996 2324
Ceratops Head 5x10x4 8997 2325
Carnosaur Head 3x6x3 8998 2326
Tail Base Long 8999 2327
Brick with Bow 1×6 899 383
Rank 1 Samurai Book 89 59
Tail Base Short 9000 2328
Technic Beam 9 9001 2329
Flipper 9002 232a
Technic Cross-Joiner Double 2×1 with 2 Half-Beams 9003 232b
Slope Brick 2x8x2 Curved 9004 232c
Windscreen 6x12x6 9005 232d
Technic Beam 3 with Lateral Cross Axle Hole 9006 232e
Skates with 2 Studs 9007 232f
BIONICLE Tooth 9008 2330
Casing 6x8x4 9009 2331
Plate 6×14 900 384
Hub Ø11.2 x 7.84mm 9010 2332
Snake Tail Piece 9012 2334
Crawler Track Rubber 151mm 9014 2336
Slope Brick 2×6 Curved 9015 2337
Technic Panel 7M No.22 Right 9016 2338
Technic Panel 7M No.23 Left 9017 2339
Pivot Joint Housing on 2×2-Base 9018 233a
1/2 Ball 3M 9019 233b
Hub Ø8mm for Fork Bearing 901 385
Technic Beam 2×2 90° Angle 9020 233c
Cockpit 6x4x3 with Vertical Fork 9022 233e
Tank Bottom 8x6x2 9023 233f
Tank Top Part 8x6x2 9024 2340
Technic Double Plug 9025 2341
Technic Flexible Double Bush 9026 2342
Train Buffer with Plough 9027 2343
Snowboard 9028 2344
Boat Bow 12×10 9029 2345
Boat Bow Plate 12×8 9030 2346
Sailing Ship Stern Cabin 9031 2347
Grid 95×57 9034 234a
Cloth Cape 9036 234c
Technic Cross Axle 32 9037 234d
Sitting Rat 9038 234e
Technic Beam 2 with Ball 9039 234f
Plate 4×8 Tail Fin 903 387
Bonnet 3x4x2/3 Curved with Cut-Out 9040 2350
Cockpit 10x4x3 9041 2351
Basket 2x3x2 with Vertical Fork 9042 2352
Car Chassis Plate 6x16x2/3 9043 2353
Technic Brick Casing 4x12x3 9044 2354
Viking Ship Front 16x20x8 9045 2355
Technic Shell 3x5x2 9046 2356
BIONICLE Ball magazine 9047 2357
Technic Lift Arm, Cylinder 9048 2358
BIONICLE Turbine Wheel 9049 2359
Plate 1×2 with Jet Engine 904 388
Caterpillar Belt, Rubber 9050 235a
Airplane Bottom 8x16x2 9051 235b
Jet Hull Bottom 8x8x2 9052 235c
Plate Wing 54x20x2/3 9053 235d
Tail Fin 2x12x8 9054 235e
Airplane Hull 8x8x5 Top with Door 9055 235f
Balloon Tire Ø94.8 9056 2360
Compy Dinosaur 9057 2361
BIONICLE Shooter 9058 2362
Airplane End 8x16x7 9059 2363
Turbo Propeller 9060 2364
Ball Ø16 9061 2365
Jet Front 8x16x5 with Cockpit 9062 2366
Technic Dragon Wing 8×10 9063 2367
Balloon Tire Ø56 9064 2368
Shackles 9065 2369
Tire Ø30.4 Narrow 9066 236a
Tire Ø43 Narrow 9067 236b
Rim Ø30 9068 236c
Technic Arrow with Rubber Tip Type 2 9069 236d
Tire Ø17 Narrow 906 38a
Crawler Track Element 5×1 9070 236e
Cam Wheel Ø26 9071 236f
Flex Hose 19M with Sticks 9072 2370
Technic Shell 4x5x3 9073 2371
BIONICLE Blade 9075 2373
Flexible Tentacle 9076 2374
BIONICLE Blades 9077 2375
Technic Dome 7x7x5 Ø4.85 9078 2376
Telescopic Arm 2×1 1/3×16 9079 2377
Cylinder Shell 3x6x10 Conical 9080 2378
Train Wheel for Metal Axle Ø16.6×23 9081 2379
Technic Horseshoe with Cross Axle 9082 237a
Foam Dart 014.5 – 66mm 9083 237b
Tile 1×2 Engraved 9084 237c
BIONICLE Toothed Wheel 9085 237d
Technic Crane Arm 16 9086 237e
Tire Ø14 Smooth 9087 237f
Brick 4×12 9088 2380
Chain 16M 9089 2381
Technic Ball Cup 9090 2382
Brick 1×1 with Vertical Clip 9091 2383
Technic T-Beam 3×3 9092 2384
Technic Cross Axle 9 9093 2385
Brick 1x1x3 with 2 Horizontal Clips 9094 2386
Lattice 1/2 for Frame 1x4x3 9095 2387
Troll 9096 2388
Troll Club 9097 2389
Plate 1×1 with Horizontal Clip 9098 238a
Technic Ball Cup Double 7M 9099 238b
Plate 7×12 Right Wing 909 38d
Technic Panel 4x7x4 Right 9100 238c
Technic Panel 4x7x4 Left 9101 238d
Technic Spoiler 3x11x2 9102 238e
Plate 1×1 with Vertical Clip 9103 238f
Saw Blade, Round Ø71.32 9105 2391
Spike 2×8 (Flexible) with 2 Studs 9106 2392
Balloon Tire Ø43 9107 2393
Handcuffs 9108 2394
Bonnet 6x5x2 Curved 9109 2395
Plate 7×12 Left Wing 910 38e
Fedora Hat 9110 2396
BIONICLE Blade 9112 2398
Technic Wing 9113 2399
Technic Connection Element for Hydraulic Cylinder 9115 239b
Technic Connection Block 3x2x3 9116 239c
Whip, Furled 9117 239d
Shoulder Bag 9118 239e
Tail Fin on Plate 2×3 911 38f
Hind Leg with Claws, Right 9121 23a1
Hind Leg with Claws, Left 9122 23a2
Joker Hat 9124 23a4
Ant 9125 23a5
Foreleg, Right 9126 23a6
Foreleg, Left 9127 23a7
Evil Wig 9128 23a8
Rubber Boat 22x10x3 9129 23a9
Fence 1x4x1 912 390
Tile 1×3 9130 23aa
Plate 1×2 with Horizontal Clip 9131 23ab
Wedge 4×3 Curved 9132 23ac
Spiral Tube with Flanges 9133 23ad
Technic Beam 2 with Robot Arm 9134 23ae
Technic Aqua-Fin 5x9x4 9135 23af
Technic Panel 3×7 Right 9136 23b0
Technic Panel 5×11 Left 9137 23b1
Technic Panel 3×11 Right 9138 23b2
Lattice Brick 1x6x5 with Cross-Beams 9139 23b3
Tire for Tractor Ø17/Ø43 913 391
Lattice A-mast 1x6x10 9140 23b4
Roll Bar 4x6x3 9141 23b5
Technic Angle Beam 4×6 9142 23b6
Windscreen 1x6x3 Vertical 9143 23b7
Technic Rotor 6 Blades with Connecting Beams and Vertical Clips 9144 23b8
Telescope Bar 1x1x2 9145 23b9
Stockfish 9146 23ba
Technic Panel 3×11 Left 9147 23bb
Technic Panel 5×11 Right 9148 23bc
Technic Panel 3×7 Left 9149 23bd
Tire Ø15 Narrow 914 392
Technic Wheel Ø62 with Spikes 9150 23be
Sprocket Wheel with Spikes Ø62 9151 23bf
Conical Drill with Spikes 9152 23c0
Blade with Haft 9153 23c1
Dynamite 9154 23c2
Technic Wall Element 5×11 9155 23c3
Wig, Older Guy 9156 23c4
Frame Plate 4×4 9157 23c5
Cow Horn 9158 23c6
Wedge 4×4 Triple, Rocky 9159 23c7
9V Train Engine 9160 23c8
Breastplate Chrome Silver 9161 23c9
Bugle 9162 23ca
Caterpillar Belt Element, Rubber 9163 23cb
Samurai Helmet Ornament 9164 23cc
Hand Tool with Suction Cup 9165 23cd
Corrugated Pipe 112mm 9166 23ce
Corrugated Pipe 88mm 9167 23cf
Lattice Brick 2x2x5 9168 23d0
Straight Rail Metalized 9169 23d1
Slope Brick 45° 2×2 Inverted 916 394
Curved Rail 22.5 Metalized 9170 23d2
Railroad Switch Right 9171 23d3
Railroad Switch Left 9172 23d4
Slope Brick 45° 4x10x2 Double with Windows 9173 23d5
Glass Door for Frame 1x4x6 9174 23d6
Birdcage 9175 23d7
V-Belt Ø33 Yellow 9176 23d8
Technic Beam 1×2 with Haft 9177 23d9
Panel 2x4x5 1/2-Circle 9178 23da
Alien Helmet “Snake” 9179 23db
Slope Brick 65° 2x2x2 917 395
Technic Brick 1×2 with Bars 9180 23dc
Slizer Helmet 9181 23dd
Skull Helmet 9182 23de
Frenzy Head 9183 23df
Squid Head 9184 23e0
Kranxx Head 9185 23e1
Flame 7M with Shaft 9186 23e2
Protective Vest 9187 23e3
Cockpit Egg-shaped with Vertical Fork Ø64×48 9188 23e4
Slope Brick 1×10 Curved 9189 23e5
Wig, Girl with Long Hair 9190 23e6
Fez 9191 23e7
Slope Brick 1x2x2/3 9192 23e8
Space Blaster, Smooth 9193 23e9
Dome 4×4 Smooth Ø32 9194 23ea
Tile 2×4 9195 23eb
Technic Panel 3×5 Left 9196 23ec
Brick 4×4 Round with Pin Hole 9197 23ed
Technic Pin 1.5 with Hole 9198 23ee
Technic Cross Axle 4 with End Stop 9199 23ef
Slope Brick 75° 2x2x3 Corner 919 397
Hub Ø17.6 x 14mm 91 5b
Technic Panel 3×5 Right 9200 23f0
Brick 1×1 with 1 Stud on Side 9201 23f1
Panel 1x2x3 9202 23f2
Plate 2×2 with 1 Stud 9203 23f3
Plate 2x6x2/3 with 4 Horizontal Studs 9204 23f4
Bow 6x10x1 Bottom 9205 23f5
Tail Fin 2x12x5 9206 23f6
Airplane Hull 6×10 Front Top with Studs 9207 23f7
Bow 6x10x4 Base 9208 23f8
Liftarm Cylinder with Heft 9209 23f9
Slope Brick 73° 2x2x2 Pyramid 920 398
Liftarm Rod with Heft 9210 23fa
Right Wing for Dragon Knight’s Helmet 9211 23fb
Left Wing for Dragon Knight’s Helmet 9212 23fc
Dragon Ornament for Dragon Knight’s Helmet 9213 23fd
Ladybird 9214 23fe
Butterfly 9215 23ff
Rosette 9216 2400
Imitation jewelry Wheel 9217 2401
Feather for Helmet 9218 2402
Small Feather for Helmet 9219 2403
Big Feather for Helmet 9220 2404
Animal Horns 9221 2405
Splendorous Feather 9222 2406
Technic Tube Curved with Fin 9223 2407
Fang with Shaft 9224 2408
Squid Bottom Body 9225 2409
Key Stone 4×4 Round 9226 240a
Ship’s Propeller Ø6 with 7 Blades and Pin Hole 9227 240b
Cockpit 6x4x2 Oval with Handle 9228 240c
Trident 9229 240d
Technic Plate 2×4 922 39a
Atlantis Suit 9230 240e
Shark Head for Minifigure 9231 240f
Squidman Head 9232 2410
Stingray Helmet 9233 2411
Visor with Slit 9234 2412
Tile 2×6 with Holder 9237 2415
Panel 3x6x6 1/2-Circle 9238 2416
Flame 1×4 with Shaft 9239 2417
Technic Plate 2×8 923 39b
Brick 1x2x5 with Groove 9241 2419
Visor for Atlantis Suit 9243 241b
Motorcycle Fairing 9244 241c
Cockpit 19° Bowed Type 2 9245 241d
Rim Ø56 9247 241f
Flower Stems 924 39c
Rescued Ninja 9256 2428
Super Composite Axe 9258 242a
Garden Shovel 9259 242b
Improved Crescent Wrench 9263 242f
Technic Gear Plate 1×4 926 39e
Captain Jack Knife’s Treasure Map 9274 243a
Picture of Jack Knife’s Mom 9275 243b
Slope Brick 25° 2×3 Inverted 927 39f
Brick 1x6x5 928 3a0
Pirate Rocket Nose Cone 9295 244f
Pirate Rocket Cockpit 9296 2450
Pirate Rocket Engine 9297 2451
Rescued Ninja 9298 2452
Rescued Ninja 9299 2453
Brick 1x3x5 929 3a1
Brick 1×2 with Vertical Stub 92 5c
Rescued Ninja 9300 2454
Hyperstarter Front Bumper 9318 2466
Hyperstarter Front Bumper 9319 2467
Plate 2×2 with Fenders 931 3a3
Hyperstarter Front Bumper 9320 2468
Chase Cutter Front Bumper 1 9321 2469
Chase Cutter Front Bumper 1 9322 246a
Chase Cutter Front Bumper 2 9323 246b
Chase Cutter Front Bumper 2 9324 246c
Chase Cutter Front Bumper 2 9325 246d
Chase Cutter Front Bumper 3 9326 246e
Chase Cutter Front Bumper 3 9327 246f
Chase Cutter Front Bumper 3 9328 2470
Hyperstarter Engine Panel 9329 2471
Plate 2×4 Mudguard 932 3a4
Hyperstarter Engine Panel 9330 2472
Hyperstarter Engine Panel 9331 2473
Hyperstarter Engine Panel 9332 2474
Chase Cutter Engine Panel 1 9333 2475
Chase Cutter Engine Panel 1 9334 2476
Chase Cutter Engine Panel 1 9335 2477
Chase Cutter Engine Panel 2 9336 2478
Chase Cutter Engine Panel 2 9337 2479
Chase Cutter Engine Panel 2 9338 247a
Chase Cutter Engine Panel 2 9339 247b
Door 1x3x1 Right 933 3a5
Chase Cutter Engine Panel 2 9340 247c
Chase Cutter Engine Panel 3 9341 247d
Chase Cutter Engine Panel 3 9342 247e
Hyperstarter Side Panels 9343 247f
Hyperstarter Side Panels 9344 2480
Hyperstarter Side Panels 9345 2481
Hyperstarter Side Panels 9346 2482
Hyperstarter Side Panels 9347 2483
Chase Cutter Side Panels 1 9348 2484
Chase Cutter Side Panels 1 9349 2485
Door 1x3x1 Left 934 3a6
Chase Cutter Side Panels 2 9350 2486
Chase Cutter Side Panels 2 9351 2487
Chase Cutter Side Panels 2 9352 2488
Hyperstarter Rear Panel 9353 2489
Hyperstarter Rear Panel 9354 248a
Hyperstarter Rear Panel 9355 248b
Chase Cutter Rear Panel 1 9356 248c
Chase Cutter Rear Panel 1 9357 248d
Chase Cutter Rear Panel 1 9358 248e
Chase Cutter Rear Panel 2 9359 248f
Chase Cutter Rear Panel 2 9360 2490
Chase Cutter Rear Panel 3 9361 2491
Chase Cutter Rear Panel 3 9362 2492
Hyperstarter Rear Bumper 9363 2493
Hyperstarter Rear Bumper 9364 2494
Hyperstarter Rear Bumper 9365 2495
Hyperstarter Rear Bumper 9366 2496
Hyperstarter Rear Bumper 9367 2497
Chase Cutter Rear Bumper 1 9368 2498
Chase Cutter Rear Bumper 1 9369 2499
Chase Cutter Rear Bumper 1 9370 249a
Chase Cutter Rear Bumper 2 9371 249b
Chase Cutter Rear Bumper 2 9372 249c
Thrust Bucket Front Bumper 1 9373 249d
Thrust Bucket Front Bumper 2 9374 249e
Bolt Ox Front Bumper 1 9375 249f
Bolt Ox Front Bumper 2 9376 24a0
Thrust Bucket Engine Panel 1 9377 24a1
Thrust Bucket Engine Panel 1 9378 24a2
Thrust Bucket Engine Panel 1 9379 24a3
Bolt Ox Engine Panel 1 9380 24a4
Bolt Ox Engine Panel 1 9381 24a5
Bolt Ox Engine Panel 1 9382 24a6
Bolt Ox Engine Panel 2 9383 24a7
Bolt Ox Engine Panel 2 9384 24a8
Bolt Ox Engine Panel 2 9385 24a9
Thrust Bucket Side Panels 9386 24aa
Thrust Bucket Side Panels 9387 24ab
Thrust Bucket Side Panels 9388 24ac
Thrust Bucket Side Panels 9389 24ad
Thrust Bucket Side Panels 9390 24ae
Bolt Ox Side Panels 1 9391 24af
Bolt Ox Side Panels 1 9392 24b0
Bolt Ox Side Panels 1 9393 24b1
Bolt Ox Side Panels 2 9394 24b2
Bolt Ox Side Panels 2 9395 24b3
Thrust Bucket Rear Panel 9396 24b4
Thrust Bucket Rear Panel 9397 24b5
Bolt Ox Rear Panel 9398 24b6
Bolt Ox Rear Panel 9399 24b7
Brick 1×2 with Vertical Fork 93 5d
Bolt Ox Rear Panel 9400 24b8
Thrust Bucket Rear Bumper 9401 24b9
Bolt Ox Rear Bumper 1 9402 24ba
Bolt Ox Rear Bumper 2 9403 24bb
Paragon Warp Front Bumper 1 9404 24bc
Paragon Warp Front Bumper 2 9405 24bd
Paragon Warp Front Bumper 2 9406 24be
Paragon Warp Front Bumper 2 9407 24bf
Paragon Warp Front Bumper 3 9408 24c0
Paragon Warp Front Bumper 4 9409 24c1
Paragon Warp Engine Panel 1 9410 24c2
Paragon Warp Engine Panel 1 9411 24c3
Paragon Warp Engine Panel 1 9412 24c4
Paragon Warp Engine Panel 2 9413 24c5
Paragon Warp Engine Panel 2 9414 24c6
Paragon Warp Engine Panel 3 9415 24c7
Paragon Warp Side Panels 1 9416 24c8
Paragon Warp Side Panels 1 9417 24c9
Paragon Warp Side Panels 2 9418 24ca
Paragon Warp Side Panels 2 9419 24cb
Paragon Warp Side Panels 2 9420 24cc
Paragon Warp Side Panels 3 9421 24cd
Paragon Warp Rear Panel 1 9422 24ce
Paragon Warp Rear Panel 1 9423 24cf
Paragon Warp Rear Panel 1 9424 24d0
Paragon Warp Rear Panel 2 9425 24d1
Paragon Warp Rear Panel 2 9426 24d2
Paragon Warp Rear Panel 2 9427 24d3
Paragon Warp Rear Panel 2 9428 24d4
Paragon Warp Rear Panel 3 9429 24d5
Paragon Warp Rear Bumper 1 9430 24d6
Paragon Warp Rear Bumper 1 9431 24d7
Paragon Warp Rear Bumper 1 9432 24d8
Paragon Warp Rear Bumper 2 9433 24d9
Paragon Warp Rear Bumper 3 9434 24da
Burst Tamale Front Bumper 9435 24db
Just Dashing Front Bumper 9436 24dc
Vertigo Blur Front Bumper 9437 24dd
Burst Tamale Engine Panel 9438 24de
Just Dashing Engine Panel 9439 24df
Vertigo Blur Engine Panel 9440 24e0
Burst Tamale Side Panels 9441 24e1
Just Dashing Side Panels 9442 24e2
Vertigo Blur Side Panels 9443 24e3
Burst Tamale Rear Panel 9444 24e4
Just Dashing Rear Panel 9445 24e5
Vertigo Blur Rear Panel 9446 24e6
Burst Tamale Rear Bumper 9447 24e7
Just Dashing Rear Bumper 9448 24e8
Vertigo Blur Rear Bumper 9449 24e9
Red Rim Wheels 9450 24ea
Yellow Rim Wheels 9451 24eb
White Rim Wheels 9452 24ec
Black Rim Wheels 9453 24ed
Bill Shido – Ninja Messenger 9457 24f1
Red Hyperstarter Package 9466 24fa
Yellow Hyperstarter Package 9467 24fb
Blue Hyperstarter Package 9468 24fc
Burst Tamale Package 9469 24fd
Thrust Bucket Package 9470 24fe
Paragon Warp Package 9471 24ff
Vertigo Blur Package 9472 2500
Brown Bench Model 9484 250c
Headstone Model 1 9485 250d
Headstone Model 2 9486 250e
Television Model 9488 2510
Pavilion Model 9489 2511
Troll Cart Model 9490 2512
Hotdog Cart Model 9491 2513
Hotdog Stand Model 9492 2514
Castle Weapon Rack Model 9493 2515
Dustbin Model 9495 2517
Sleek Sofa Model 9496 2518
Traffic Light Model 9497 2519
Tire Ø30.4 94 5e
Rudder Bumpsteer – Racing Vendor 9502 251e
Guardian Troll 9503 251f
Nimbus Rocket Nose Cone 9516 252c
Nimbus Rocket Cockpit 9517 252d
Nimbus Rocket Engine 9518 252e
Pagoda Model 9535 253f
Mushroom Model 5 9537 2541
Small Arch Model 9538 2542
Hotdog Cart Model 9540 2544
Fish Statue Model 9545 2549
Red Ninja Fence Model 9546 254a
Yellow Ninja Fence Model 9547 254b
Blue Ninja Fence Model 9548 254c
Ninja Platform Model 9549 254d
Temple Model 1 9550 254e
Temple Model 2 9551 254f
Zen Bamboo Large Model 9552 2550
Zen Bamboo Medium Model 9553 2551
Zen Bamboo Small Model 9554 2552
Big Door Model 9555 2553
Ninja Vendor Hut Model 9557 2555
Mantis Butterfly Model 9559 2557
Ninja Gate Model 9561 2559
Garden Tool Rack Model 9564 255c
Submarine Model 9565 255d
Pipestack Model 9567 255f
Wagon Model 9568 2560
BBQ Grill Model 9570 2562
Mailbox Model 9574 2566
Danger Cone Model 9575 2567
Beehive Model 9576 2568
Pod 1 Model 9577 2569
Pod 2 Model 9578 256a
Pod 3 Model 9579 256b
Pod 4 Model 9580 256c
Pod 5 Model 9581 256d
Pod 6 Model 9582 256e
Pod 7 Model 9583 256f
Axe Cart Model 9584 2570
Space Command Center Model 9585 2571
Train Station Model 9586 2572
Mini Train Model 9587 2573
Anvil Model 9590 2576
Medieval Wagon Model 9591 2577
Johnny Thunder’s Autograph 9595 257b
Medieval Vendor Model 9596 257c
Swamp Tree Model 9597 257d
Pine Tree Model 1 9598 257e
Pine Tree Model 2 9599 257f
Tire Ø24 Wide 95 5f
Green Tree Model 3 9600 2580
Tree Model 4 9601 2581
Tree Model 5 9602 2582
Shipwreck Hideout Pack 9603 2583
Radar Truck Model 9604 2584
Mini Car Model 9605 2585
Tractor Model 9606 2586
Jet Ski Model 9607 2587
Life Guard Tower Model 9608 2588
Black Aussie Hat 9615 258f
Sentinel Super Soda 9623 2597
Assembly Awesome-Ade 9624 2598
Paradox Power Potion 9625 2599
Venture Vitality Vial 9626 259a
King Leo’s Castle Model 9629 259d
Vance Bulwark – Property Guard 9632 25a0
Broken Pirate Rocket Nose Cone 9640 25a8
Broken Pirate Rocket Cockpit 9641 25a9
Broken Pirate Rocket Engine 9642 25aa
Rover Model 1 9646 25ae
Rover Model 2 9647 25af
Medieval Village Stable Model 9648 25b0
Medieval Village Forge Model 9649 25b1
Medieval Village Inn Model 9650 25b2
Medieval Village House Model 9651 25b3
Castle Arbalest Model 9652 25b4
Castle Barrel Gun Model 9653 25b5
Castle Catapult Model 9654 25b6
Castle Chessboard Model 9655 25b7
Castle Inner Corner Model 9656 25b8
Castle Outside Corner Model 9657 25b9
Castle Small Corner Model 9658 25ba
Castle Crossing Model 9659 25bb
Castle Gate Model 9660 25bc
Castle Outhouse Model 9661 25bd
Castle Ramp Model 9662 25be
Castle Staircase Model 9663 25bf
Castle Tower Model 9664 25c0
Castle Wall Bridge Model 9665 25c1
Castle Wall End Model 9666 25c2
Castle Small Wall Model 1 9667 25c3
Castle Small Wall Model 2 9668 25c4
Castle Small Wall Model 3 9669 25c5
Castle Small Wall Model 4 9670 25c6
Castle Straight Wall Model 9671 25c7
Castle Medium Straight Wall Model 9672 25c8
Castle Medium Spikes Wall Model 9673 25c9
Castle T-Wall Model 9674 25ca
Castle Tower Wall With No Top Model 9675 25cb
Castle Tower Wall With Top Model 9676 25cc
Castle Widening Wall Model 9677 25cd
Castle Wall With Stairs Model 9678 25ce
Echs Ray – Paradox Scientist 9680 25d0
DeeDee Light 9692 25dc
Green Brockley 9693 25dd
Krista Clear 9694 25de
Nexus Astronaut Shirt 9696 25e0
Fish Skeleton Shirt 9697 25e1
Anvil of Armor 9700 25e4
Concert flyers from Johnny Thunder 9701 25e5
Ro Tundra – Brick Vendor 9705 25e9
Darby Snapwish – Brick Vendor 9706 25ea
Rolly Jodger – Brick Vendor 9707 25eb
Burky Urchin – Gear Vendor 9708 25ec
Boris Toobsox – Foot Race Host 9714 25f2
Maelstrom Goo 9715 25f3
Castle Model Pack 1 9721 25f9
Castle Model Pack 2 9722 25fa
Castle Model Pack 3 9723 25fb
Castle Model Pack 4 9724 25fc
Castle Model Pack 5 9725 25fd
Castle Model Pack 6 9726 25fe
Great Flintlock Rifle of Blasting 9731 2603
Stromling 9744 2610
Ninja Dragon Rocket Nose Cone 9746 2612
Ninja Dragon Rocket Cockpit 9747 2613
Ninja Dragon Rocket Engine 9748 2614
Bucky Gorfunblot – LEGO Club Vendor 9749 2615
Sales Agent Nate 9758 261e
Medieval Model Pack 1 9773 262d
Medieval Village Pack 2 9774 262e
Basic Tree Model Pack 9775 262f
Space Model Pack 9776 2630
Nexus Astronaut Helmet 9806 264e
Big Red Magnet Model 9811 2653
Modular Dock Model 1 9812 2654
Modular Dock Model 2 9813 2655
Modular Dock Model 3 9814 2656
Velocity Lane – Racing Trainer 9821 265d
Max – LEGO Club Host 9822 265e
Pirate Bob 9831 2667
Battle NPC MG 9836 266c
Nexus Force Cape 9856 2680
AG Property Mission Giver 01 9859 2683
Test Blue Cape 9864 2688
Test Cape 9869 268d
Test Cape 9870 268e
Test Cape 9871 268f
Test Cape 9872 2690
Test Cape 9873 2691
LEGO Club Jumpsuit 9875 2693
Kitty Cat Backpack 9883 269b
AG Property Mission Giver 03 9884 269c
Betty the Bag Lady 9893 26a5
Dark Ronin 9896 26a8
Sentinel Faction Grunt 9897 26a9
Brick 2×6 98 62
Red Tree Model 3 9908 26b4
Yellow Tree Model 3 9909 26b5
Small Red Tree Model 1 9910 26b6
Small Yellow Tree Model 1 9911 26b7
Small Red Tree Model 2 9912 26b8
Small Yellow Tree Model 2 9913 26b9
Fort Gate Model 9914 26ba
Fort Jail Model 9915 26bb
Fort Stairs Model 9916 26bc
Fort Tower Model 9917 26bd
Fort Walkway Model 9918 26be
Fort Corner Model 9919 26bf
Fort Guardshack Model 9920 26c0
Fort Wall Rock Model 9921 26c1
Fort Small Wall Model 1 9922 26c2
Fort Small Wall Model 2 9923 26c3
Fort Stable Model 9924 26c4
Sentinel Faction Battle Grunt 9929 26c9
Maelstrom Infected Anchor 9931 26cb
Battle Ninja 01 9932 26cc
Rank 2 Buccaneer Book 9935 26cf
Rank 3 Buccaneer Book 9936 26d0
Hyperstarter Red Pack for Beta 9953 26e1
Hyperstarter Yellow Pack for Beta 9954 26e2
Hyperstarter Blue Pack for Beta 9955 26e3
Nexus Astronaut Pants 9961 26e9
Rank 3 Daredevil Book 9963 26eb
Rank 2 Sorcerer Book 9964 26ec
Rank 3 Sorcerer Book 9965 26ed
Rank 2 Space Marauder Book 9966 26ee
Rank 3 Space Marauder Book 9967 26ef
Rank 2 Engineer Book 9968 26f0
Rank 3 Engineer Book 9969 26f1
Rank 2 Summoner Book 9970 26f2
Rank 3 Summoner Book 9971 26f3
Rank 2 Knight Book 9972 26f4
Rank 3 Knight Book 9973 26f5
Rank 2 Samurai Book 9974 26f6
Rank 3 Samurai Book 9975 26f7
Rank 2 Daredevil Book 9976 26f8
Leland Hammertoe – Foot Race Host 9983 26ff
Tile 1×3 with Stub on Top 99 63
# /etc/systemd/system/your_service.service
[Unit]
Description=Lego Universe Server
After=network.target
[Service]
ExecStart=/opt/lu/LegoUniverseServer/build/runserver
Restart=no
User=ubuntu
WorkingDirectory=/opt/lu/LegoUniverseServer/build/
[Install]
WantedBy=multi-user.target
#!/usr/bin/env python3
"""
This script can be used to send gifts to all users on the server, similar to the last days
on Lego Universe back in 2012.
Just execute the script and enter the item ID you would like to send, along with how many items
should be send (if the item is stackable).
Authored by: Leonard Haddad
Licensed under the MIT License
Requires mysql-connector-python: https://pypi.org/project/mysql-connector-python/
>> pip3 install mysql-connector-python
"""
import mysql.connector
print('\n')
print('========= DLU mailing Tool by Leonard Haddad =========')
print('Github: https://github.com/leolion3')
print('Website: https://leolion.tk/')
print('Provided in accords with the MIT licence')
print('======================================================')
print('\n')
connection = mysql.connector.connect(
host='localhost',
database='darkflame',
user='dflame',
password='dflame'
)
if not connection.is_connected():
print('Error connecting to database! Terminating...')
exit(-1)
cursor = connection.cursor()
attachment_lot = int(input('Enter Item ID: '))
attachment_count = int(input('Enter amount to send: '))
subject = input('Enter email subject: ')
body = input('Enter email body: ')
SELECT_USER_QUERY = "SELECT * FROM charinfo;"
cursor.execute(SELECT_USER_QUERY)
for user in cursor.fetchall():
user_id, account_id, name, pending_name, needs_rename, prop_clone_id, last_login, permission_map = user
SEND_EMAIL_QUERY = f'INSERT INTO mail VALUES (NULL, 0, \'Mythran\', \'{user_id}\', \'{name}\', 1325376000, \'{subject}\', \'{body}\', 0, \'{attachment_lot}\', 0, \'{attachment_count}\', 0);'
cursor.execute(SEND_EMAIL_QUERY)
connection.commit()
connection.close()
print('Mails sent!')
#!/bin/bash
# Tool by Leonard Haddad, https://github.com/leolion3
# Provided in accords with the MIT license
echo ''
echo '\033[0;33m========= DLU run Tool by Leonard Haddad ========='
echo '\033[0;36mGithub: https://github.com/leolion3'
echo '\033[0;36mWebsite: https://leolion.tk/'
echo '\033[0;36mProvided in accords with the MIT licence'
echo '\033[0;33m=================================================='
echo ''
echo '\033[1;32mStarting server...'
# Allow access to port 1001 without superuser access (for security reasons)
# Also kill previous instances if they are still running (happens occasionally)
su -m root -c "\
setcap CAP_NET_BIND_SERVICE=+eip ./AuthServer && \
pkill AuthServer && \
pkill WorldServer && \
pkill ChatServer && \
pkill MasterServer"
sudo -k
echo '\033[1;32mSending discord notification...'
./discord_status_notify start > /dev/null 2>&1
./MasterServer
./discord_status_notify stop > /dev/null 2>&1
echo '\033[1;32mServer shut down! Exiting...'
#!/usr/bin/env python3
"""
This script can be used to update user passwords in the database.
To get a new password hash, use the tool https://bcrypt-generator.com/
Authored by: Leonard Haddad
Licensed under the MIT License
Requires mysql-connector-python: https://pypi.org/project/mysql-connector-python/
>> pip3 install mysql-connector-python
"""
import mysql.connector
print('\n')
print('========= DLU password change Tool by Leonard Haddad =========')
print('Github: https://github.com/leolion3')
print('Website: https://leolion.tk/')
print('Provided in accords with the MIT licence')
print('==============================================================')
print('\n')
connection = mysql.connector.connect(
host='localhost',
database='darkflame',
user='dflame',
password='dflame'
)
if not connection.is_connected():
print('Error connecting to database! Terminating...')
exit(-1)
cursor = connection.cursor()
FETCH_PLAYER_QUERY = "SELECT * FROM accounts;"
cursor.execute(FETCH_PLAYER_QUERY)
print('Available players:')
for player in cursor.fetchall():
player_id, name, password, gm_level, locked, banned, play_key_id, created_at, mute_expire = player
print(f'- Player: {name} with ID: {player_id}')
player_id = int(input('Player id whose password you want to change: '))
password_hash = input('Enter new password hash: ')
QUERY = f"UPDATE accounts SET password='{password_hash}' WHERE id={player_id};"
cursor.execute(QUERY)
connection.commit()
connection.close()
print('Successfully changed player password!')
#!/bin/bash
# Tool by Leonard Haddad, https://github.com/leolion3
# Provided in accords with the MIT license
echo ''
echo '\033[0;33m========= DLU update Tool by Leonard Haddad ========='
echo '\033[0;36mGithub: https://github.com/leolion3'
echo '\033[0;36mWebsite: https://leolion.tk/'
echo '\033[0;36mProvided in accords with the MIT licence'
echo '\033[0;33m====================================================='
echo ''
echo '\033[1;32mUpdating server...'
pkill MasterServer
git pull
git submodule update --recursive
cd build
sed -i -e 's/add_subdirectory(tests)/#add_subdirectory(tests)/g' ../CMakeLists.txt
cmake .. && cmake --build . --config Release -j4
cd ..
git checkout CMakeLists.txt
echo '\033[1;32mSending discord notification...'
./discord_status_notify updated > /dev/null 2>&1
echo '\033[1;32mServer updated!'
@mbramblet
Copy link

mbramblet commented Jan 19, 2022

You should consider adding Python 3 as a prerequisite, as without it the process will fail.
Very helpful guide nonetheless!

@leolion3
Copy link
Author

@mbramblet Python 3 comes preinstalled on Ubuntu

@simoneacker
Copy link

Thank you for figuring this out @leolion3! Super helpful!

@averwhy
Copy link

averwhy commented Jun 14, 2022

I'm getting ERROR 1305 (42000) at line 1: FUNCTION or PROCEDURE UNIX_TIMESTAMP does not exist

@ProficientDolphin
Copy link

@leolion3 the same issue with me - everything else works just fine so far and the login is easily possible however there is the problem of not being able to venture further than avantgarden due to the world server crash when leaving for the first building land mission.

While outside of the darkflame database the Error 1144 "Illegal Grant/revoke command; please consult hte manual to see which privileges can be used" pops up - while inside the darkflame database it is the Error 1305 "Function or Procedure Unix_timestamp does not exist".
It would be awesome if you had any information regarding this issue!
Kind regards!

@leolion3
Copy link
Author

leolion3 commented Jun 29, 2022

@ProficientDolphin can you try executing both or either of these and see if it fixes things? It will complain that the procedure doesn't exist, but ignore that error as it is obviously not true based on your logs.

sudo mysql --user="root" --password="root" --execute="GRANT EXECUTE ON PROCEDURE dbo.UNIX_TIMESTAMP TO 'dflame'@'localhost';"
sudo mysql --user="root" --password="root" --execute="GRANT EXECUTE ON PROCEDURE UNIX_TIMESTAMP TO 'dflame'@'localhost';"

@LunarstarPony
Copy link

LunarstarPony commented Nov 4, 2022

Any idea about [MasterServer] Got an error while setting up assets: Failed to identify client type, cannot read client data. ?
Tried it a few time on ubuntu 20.04 all failed with this
Tried with both Semi-Auto Installer and Manual

@leolion3
Copy link
Author

leolion3 commented Nov 4, 2022

Any idea about [MasterServer] Got an error while setting up assets: Failed to identify client type, cannot read client data. ? Tried it a few time on ubuntu 20.04 all failed with this Tried with both Semi-Auto Installer and Manual

Yes, this is an issue with DLU's latest release and the README will be updated accordingly. For now you will have to checkout the commit 971e0fb3b63a36854d6cd395c0dfe0eb21b1a21d

@LunarstarPony
Copy link

I'm probably just ganna wait a bit as I'm not that familiar with this? Not pretty sure what to do when I see the commit xD

@leolion3
Copy link
Author

leolion3 commented Nov 7, 2022

I'm probably just ganna wait a bit as I'm not that familiar with this? Not pretty sure what to do when I see the commit xD

I updated the tool, should work now.

Do note that you need to keep the cdclient.fdb file as otherwise the server wont boot. If it was already deleted, then re-execute the tool.

@LunarstarPony
Copy link

Alright! I'll give it a go rn!

@LunarstarPony
Copy link

LunarstarPony commented Nov 8, 2022

It seems like I'm still having the same issue tbh Got an error while setting up assets: Failed to identify client type, cannot read client data.
Ubuntu 22 Server

@leolion3
Copy link
Author

leolion3 commented Nov 8, 2022

It seems like I'm still having the same issue tbh Got an error while setting up assets: Failed to identify client type, cannot read client data. Ubuntu 22 Server

That's what I meant with the cdclient file. Make sure that within res the file cdclient.fdb is present and that within build/sharedconfig.ini there's a line that says client_location=./res

@LunarstarPony
Copy link

Ah I just rebuild the entire server and apparently the tool doesn't copy the file automatically, manual copy the file over works! Thanks!

@leolion3
Copy link
Author

Ah I just rebuild the entire server and apparently the tool doesn't copy the file automatically, manual copy the file over works! Thanks!

Thanks for pointing that out, I updated the script to include moving the file to the correct location

@LunarstarPony
Copy link

Yee BTW I have 2 issue rn Any idea about that when I start the server using Sudo the whole terminal looks all broken? Not even Ctrl-C can stop it from running.
And also the issue [WorldServer] Got new session alert for user WickerTalesYT, but they're not logged in.

@LunarstarPony
Copy link

Still haven't figure out yet xD

@leolion3
Copy link
Author

Yee BTW I have 2 issue rn Any idea about that when I start the server using Sudo the whole terminal looks all broken? Not even Ctrl-C can stop it from running. And also the issue [WorldServer] Got new session alert for user WickerTalesYT, but they're not logged in.

Could you include a full trace of what you see in your terminal? You can add it in a comment as code using the <> icon. I cant raally help you without further information

@LunarstarPony
Copy link

Gimme mins, Am not pretty sure how the it will react tho as the console seems very broken for some reason

@LunarstarPony
Copy link

LunarstarPony commented Jan 11, 2023

A lil busy lately but here's the error rn
On console the layout is completely broken as well
Here's the photo: https://app.screencast.com/UUKfTqOZ2S5MS
[11-01-23 11:16:41] [WorldServer] Got new session alert for user lunarstarpony, but they're not logged in. [11-01-23 11:16:52] [AuthPackets] Received client version: 171022 [11-01-23 11:16:53] [MasterServer] Received zone transfer req [11-01-23 11:16:53] [InstanceManager] Searching for an instance for mapID 0/0 [11-01-23 11:16:53] [MasterServer] Instance: 0/0/0 -> 1 [11-01-23 11:16:53] [MasterServer] Instance: 1000/0/1 -> 0 [11-01-23 11:16:53] [MasterServer] Responding to transfer request 2 for zone 0 0 [11-01-23 11:16:53] [MasterServer] Sent affirmation request 2 to 0/0 [11-01-23 11:16:53] [MasterServer] Got affirmation request of transfer 2 [11-01-23 11:16:53] [MasterServer] Got affirmation of transfer 2 [11-01-23 11:16:53] [MasterServer] Affirmation complete 2 [11-01-23 11:16:53] [AuthPackets] Set sessionKey: 1714636915 for user lunarstarpony [11-01-23 11:16:53] [MasterServer] Got sessionKey 1714636915 for user lunarstarpony [11-01-23 11:16:53] [WorldServer] Got new session alert for user lunarstarpony, but they're not logged in. [11-01-23 11:16:53] [WorldServer] Got new session alert for user lunarstarpony, but they're not logged in.

@leolion3
Copy link
Author

leolion3 commented Jan 11, 2023

A lil busy lately but here's the error rn On console the layout is completely broken as well Here's the photo: https://app.screencast.com/UUKfTqOZ2S5MS [11-01-23 11:16:41] [WorldServer] Got new session alert for user lunarstarpony, but they're not logged in. [11-01-23 11:16:52] [AuthPackets] Received client version: 171022 [11-01-23 11:16:53] [MasterServer] Received zone transfer req [11-01-23 11:16:53] [InstanceManager] Searching for an instance for mapID 0/0 [11-01-23 11:16:53] [MasterServer] Instance: 0/0/0 -> 1 [11-01-23 11:16:53] [MasterServer] Instance: 1000/0/1 -> 0 [11-01-23 11:16:53] [MasterServer] Responding to transfer request 2 for zone 0 0 [11-01-23 11:16:53] [MasterServer] Sent affirmation request 2 to 0/0 [11-01-23 11:16:53] [MasterServer] Got affirmation request of transfer 2 [11-01-23 11:16:53] [MasterServer] Got affirmation of transfer 2 [11-01-23 11:16:53] [MasterServer] Affirmation complete 2 [11-01-23 11:16:53] [AuthPackets] Set sessionKey: 1714636915 for user lunarstarpony [11-01-23 11:16:53] [MasterServer] Got sessionKey 1714636915 for user lunarstarpony [11-01-23 11:16:53] [WorldServer] Got new session alert for user lunarstarpony, but they're not logged in. [11-01-23 11:16:53] [WorldServer] Got new session alert for user lunarstarpony, but they're not logged in.

Well the server is working and also receiving your sign in request, thus the setup process for the server was done correctly and its not a problem on my end.

My guess is that you need to restart the AuthServer and then you can probably play without a problem. If you still cant sign in, make sure you are not using a modded client since they use a different communication protocol (standard TCP instead of Racknet) and make sure the correct ports are forwarded if applicable. Other than that, you can get help from the DLU community on their Github Repo or in Discord.

@LunarstarPony
Copy link

Well, Alr BTW What's the proper way of stooping a server? Tried to use Ctrl+C but doesn't do anything

@leolion3
Copy link
Author

Well, Alr BTW What's the proper way of stooping a server? Tried to use Ctrl+C but doesn't do anything

That is the correct way, just give it a couple minutes to finish the shutdown process.

@LunarstarPony
Copy link

So I figure the issue it's just completely broken on Ubuntu 22 for some reason

@LunarstarPony
Copy link

https://youtu.be/wooUfhBQIqI
BTW Any clue what might cause it reset after showing connecting to world?

@KMason015
Copy link

Hey! sorry to bother, just wondering how to install the tool listed up there? Unless it's just copy-pasting the code.

@leolion3
Copy link
Author

leolion3 commented Feb 7, 2023

https://youtu.be/wooUfhBQIqI BTW Any clue what might cause it reset after showing connecting to world?

because your MasterServer and AuthServer are listening on all interfaces (0.0.0.0) while your WorldServer is listening on localhost.

@leolion3
Copy link
Author

leolion3 commented Feb 7, 2023

Hey! sorry to bother, just wondering how to install the tool listed up there? Unless it's just copy-pasting the code.

Just take a look at my video, I go through the install step-by-step. All it takes is using curl to download the tool, making it executable using chmod +x buildserver and then running it ./buildserver

@LunarstarPony
Copy link

LunarstarPony commented Jul 3, 2023

https://youtu.be/wooUfhBQIqI BTW Any clue what might cause it reset after showing connecting to world?

because your MasterServer and AuthServer are listening on all interfaces (0.0.0.0) while your WorldServer is listening on localhost.

Recently come back to fix it again and it appears you can't set the server to use 0.0.0.0 xD BTW Is it not possible to have UPnP on this? Having like 300 port open while most of them probably wouldn't even be used seems kinda suk

Feels like this can really benefits from having uPnP

@LunarstarPony
Copy link

Oh and I'm having some issue with serve now able to be connected but it's giving out all these errors and according to player in it, it feels extremely laggy?
[04-07-23 02:48:41] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:48:41] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:48:45] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:48:45] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:48:45] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:48:48] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:49:20] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:49:20] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:49:20] [BasicAttackBehavior] Target entity 0 is null!
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050276 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050289 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050293 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050288 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050284 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050285 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050277 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050292 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050276 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050289 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050285 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050292 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050277 not found.
[04-07-23 02:49:28] [BasicAttackBehavior] Target targetEntity 288300748454050289 not found.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment