├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .vitepress ├── LICENSE ├── config.mts ├── plugins │ └── nbt-icon-plugin.ts └── theme │ ├── Layout.vue │ ├── components │ └── NBTIcon.vue │ └── index.ts ├── 3DS ├── Audio │ └── FSB_COMBINEDAUDIO.md ├── BJSON │ └── BJSON_DOC.md ├── OptionsBinaryFile │ └── OPTIONS_DOC.md ├── Textures │ └── 3DST_DOC.md ├── Tools │ └── TOOL_DOC.md └── readme.md ├── Bedrock ├── 0.1.0_alpha │ ├── Chunks_Format.md │ ├── Level_Format.md │ └── Player_Format.md ├── 0.2.0_alpha │ ├── Entities_Format.md │ └── Level_Format.md ├── 0.3.2_alpha │ └── Entities_Format.md ├── 0.6.0_alpha │ └── Level_Format.md ├── LevelDB_Output_Array_Formats │ ├── Actor_Format.md │ ├── Block_Entity_Format.md │ ├── Data2D_Format.md │ ├── Data2D_Legacy_Format.md │ ├── Data3D_Format.md │ ├── LegacyBlockExtraData_Format.md │ ├── LegacyTerrain_Format.md │ ├── Legacy_Entity_Format.md │ ├── Pending_Ticks_Format.md │ ├── Random_Ticks_Format.md │ └── Subchunk_Format.md └── readme.md ├── ColoringNotes.md ├── Java ├── Alpha_Docs │ ├── Entity_Format.md │ ├── README.md │ ├── Tile_Entity_Format.md │ ├── alpha_1.0.4 │ │ └── Level_Format.md │ ├── alpha_1.2.0 │ │ └── Level_Format.md │ ├── infdev_20100327 │ │ ├── Chunk_Format.md │ │ └── Level_Format.md │ ├── infdev_20100330-1203 │ │ └── Chunk_Format.md │ ├── infdev_20100413-1949 │ │ └── Level_Format.md │ └── infdev_20100625-1917 │ │ └── Level_Format.md ├── Anvil_Docs │ ├── 1.13+ │ │ └── Chunk_Format.md │ ├── 1.14+ │ │ └── POI_Format.md │ ├── 1.16+ │ │ └── Chunk_Format.md │ ├── 1.17+ │ │ └── Entity_Chunk_Format.md │ ├── 1.18+ │ │ └── Chunk_Format.md │ └── README.md ├── Classic_Docs │ ├── 0.0.13a │ │ └── Level_Format.md │ ├── 0.30 │ │ └── Level_Format.md │ ├── 3rd_party_formats │ │ └── ClassiCube │ │ │ └── Lvl.md │ ├── README.md │ └── rd-132211 │ │ └── Level_Format.md ├── Indev_Docs │ ├── README.md │ └── indev_0.31_20100122 │ │ └── Level_Format.md └── readme.md ├── LCE ├── Basic Info.md ├── File Types │ ├── ARC.md │ ├── COL.md │ ├── GRF.md │ ├── LOC.md │ ├── MSSCMP.md │ ├── NBT.md │ ├── Options.md │ ├── THUMB.md │ └── readme.md ├── Game │ ├── BattleMapImages │ │ ├── Atlantis.png │ │ ├── Atomics.png │ │ ├── Capital.png │ │ ├── Castle.png │ │ ├── Cavern.png │ │ ├── Cove.png │ │ ├── Crucible.png │ │ ├── Dig.png │ │ ├── Festive.png │ │ ├── Frontier.png │ │ ├── Halloween.png │ │ ├── Invasion.png │ │ ├── Lair.png │ │ ├── Libertalia.png │ │ ├── Medusa.png │ │ ├── Ruin.png │ │ ├── Shipyard.png │ │ ├── Shrunk.png │ │ ├── Siege.png │ │ ├── Temple.png │ │ └── Valley.png │ ├── BattleMaps.md │ ├── BiomeIDs.md │ ├── Blocks.md │ ├── Colors.md │ ├── Items.md │ ├── LimitStrings.md │ └── readme.md ├── Level │ ├── ChunkData.md │ ├── MCR.md │ └── RegionFile.md ├── PS3 │ ├── GameRegions.md │ └── Minecraft-PS3-Versions.md ├── Packets │ ├── Bidirectional │ │ ├── Debug Options.md │ │ └── readme.md │ ├── Clientbound │ │ └── readme.md │ ├── Packet.md │ ├── Serverbound │ │ ├── Pre-Login.md │ │ └── readme.md │ ├── Types │ │ ├── Flexible Packet.md │ │ ├── readme.md │ │ └── utf.md │ └── readme.md ├── Saving │ ├── LCE Save File Versions.md │ ├── Pre-Release Save Format.md │ ├── Save Format.md │ ├── Split Saves.md │ └── readme.md ├── Xbox One │ └── SaveStructure.md └── readme.md ├── LICENSE ├── NOTICE.md ├── Pi ├── Chunks_Format.md ├── Entities_Format.md ├── Level_Format.md ├── Pi-Edition-Docs.md └── readme.md ├── Team.md ├── index.md ├── package.json ├── public └── assets │ ├── Dexrn_Lodestone_Logo.png │ ├── LodestoneBg.jpg │ ├── Lodestone_Favicon.png │ ├── Project_Lodestone_Logo_Made_By_NikStudios.svg │ ├── lodestone.css │ ├── nbt │ ├── LICENSE │ ├── blank.png │ ├── boolean.png │ ├── byte.png │ ├── byteArray.png │ ├── compound.png │ ├── double.png │ ├── float.png │ ├── int.png │ ├── intArray.png │ ├── list.png │ ├── long.png │ ├── longArray.png │ ├── short.png │ └── string.png │ └── treeview.css └── readme.md /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.vitepress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.vitepress/LICENSE -------------------------------------------------------------------------------- /.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.vitepress/config.mts -------------------------------------------------------------------------------- /.vitepress/plugins/nbt-icon-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.vitepress/plugins/nbt-icon-plugin.ts -------------------------------------------------------------------------------- /.vitepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.vitepress/theme/Layout.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/NBTIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.vitepress/theme/components/NBTIcon.vue -------------------------------------------------------------------------------- /.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /3DS/Audio/FSB_COMBINEDAUDIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/3DS/Audio/FSB_COMBINEDAUDIO.md -------------------------------------------------------------------------------- /3DS/BJSON/BJSON_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/3DS/BJSON/BJSON_DOC.md -------------------------------------------------------------------------------- /3DS/OptionsBinaryFile/OPTIONS_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/3DS/OptionsBinaryFile/OPTIONS_DOC.md -------------------------------------------------------------------------------- /3DS/Textures/3DST_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/3DS/Textures/3DST_DOC.md -------------------------------------------------------------------------------- /3DS/Tools/TOOL_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/3DS/Tools/TOOL_DOC.md -------------------------------------------------------------------------------- /3DS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/3DS/readme.md -------------------------------------------------------------------------------- /Bedrock/0.1.0_alpha/Chunks_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.1.0_alpha/Chunks_Format.md -------------------------------------------------------------------------------- /Bedrock/0.1.0_alpha/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.1.0_alpha/Level_Format.md -------------------------------------------------------------------------------- /Bedrock/0.1.0_alpha/Player_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.1.0_alpha/Player_Format.md -------------------------------------------------------------------------------- /Bedrock/0.2.0_alpha/Entities_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.2.0_alpha/Entities_Format.md -------------------------------------------------------------------------------- /Bedrock/0.2.0_alpha/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.2.0_alpha/Level_Format.md -------------------------------------------------------------------------------- /Bedrock/0.3.2_alpha/Entities_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.3.2_alpha/Entities_Format.md -------------------------------------------------------------------------------- /Bedrock/0.6.0_alpha/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/0.6.0_alpha/Level_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Actor_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Actor_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Block_Entity_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Block_Entity_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Data2D_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Data2D_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Data2D_Legacy_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Data2D_Legacy_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Data3D_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Data3D_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/LegacyBlockExtraData_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/LegacyBlockExtraData_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/LegacyTerrain_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/LegacyTerrain_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Legacy_Entity_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Legacy_Entity_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Pending_Ticks_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Pending_Ticks_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Random_Ticks_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Random_Ticks_Format.md -------------------------------------------------------------------------------- /Bedrock/LevelDB_Output_Array_Formats/Subchunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/LevelDB_Output_Array_Formats/Subchunk_Format.md -------------------------------------------------------------------------------- /Bedrock/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Bedrock/readme.md -------------------------------------------------------------------------------- /ColoringNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/ColoringNotes.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/Entity_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/Entity_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/README.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/Tile_Entity_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/Tile_Entity_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/alpha_1.0.4/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/alpha_1.0.4/Level_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/alpha_1.2.0/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/alpha_1.2.0/Level_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/infdev_20100327/Chunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/infdev_20100327/Chunk_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/infdev_20100327/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/infdev_20100327/Level_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/infdev_20100330-1203/Chunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/infdev_20100330-1203/Chunk_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/infdev_20100413-1949/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/infdev_20100413-1949/Level_Format.md -------------------------------------------------------------------------------- /Java/Alpha_Docs/infdev_20100625-1917/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Alpha_Docs/infdev_20100625-1917/Level_Format.md -------------------------------------------------------------------------------- /Java/Anvil_Docs/1.13+/Chunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Anvil_Docs/1.13+/Chunk_Format.md -------------------------------------------------------------------------------- /Java/Anvil_Docs/1.14+/POI_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Anvil_Docs/1.14+/POI_Format.md -------------------------------------------------------------------------------- /Java/Anvil_Docs/1.16+/Chunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Anvil_Docs/1.16+/Chunk_Format.md -------------------------------------------------------------------------------- /Java/Anvil_Docs/1.17+/Entity_Chunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Anvil_Docs/1.17+/Entity_Chunk_Format.md -------------------------------------------------------------------------------- /Java/Anvil_Docs/1.18+/Chunk_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Anvil_Docs/1.18+/Chunk_Format.md -------------------------------------------------------------------------------- /Java/Anvil_Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Anvil_Docs/README.md -------------------------------------------------------------------------------- /Java/Classic_Docs/0.0.13a/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Classic_Docs/0.0.13a/Level_Format.md -------------------------------------------------------------------------------- /Java/Classic_Docs/0.30/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Classic_Docs/0.30/Level_Format.md -------------------------------------------------------------------------------- /Java/Classic_Docs/3rd_party_formats/ClassiCube/Lvl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Classic_Docs/3rd_party_formats/ClassiCube/Lvl.md -------------------------------------------------------------------------------- /Java/Classic_Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Classic_Docs/README.md -------------------------------------------------------------------------------- /Java/Classic_Docs/rd-132211/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Classic_Docs/rd-132211/Level_Format.md -------------------------------------------------------------------------------- /Java/Indev_Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Indev_Docs/README.md -------------------------------------------------------------------------------- /Java/Indev_Docs/indev_0.31_20100122/Level_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/Indev_Docs/indev_0.31_20100122/Level_Format.md -------------------------------------------------------------------------------- /Java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Java/readme.md -------------------------------------------------------------------------------- /LCE/Basic Info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Basic Info.md -------------------------------------------------------------------------------- /LCE/File Types/ARC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/ARC.md -------------------------------------------------------------------------------- /LCE/File Types/COL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/COL.md -------------------------------------------------------------------------------- /LCE/File Types/GRF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/GRF.md -------------------------------------------------------------------------------- /LCE/File Types/LOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/LOC.md -------------------------------------------------------------------------------- /LCE/File Types/MSSCMP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/MSSCMP.md -------------------------------------------------------------------------------- /LCE/File Types/NBT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/NBT.md -------------------------------------------------------------------------------- /LCE/File Types/Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/Options.md -------------------------------------------------------------------------------- /LCE/File Types/THUMB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/THUMB.md -------------------------------------------------------------------------------- /LCE/File Types/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/File Types/readme.md -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Atlantis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Atlantis.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Atomics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Atomics.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Capital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Capital.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Castle.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Cavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Cavern.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Cove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Cove.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Crucible.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Dig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Dig.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Festive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Festive.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Frontier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Frontier.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Halloween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Halloween.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Invasion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Invasion.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Lair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Lair.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Libertalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Libertalia.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Medusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Medusa.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Ruin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Ruin.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Shipyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Shipyard.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Shrunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Shrunk.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Siege.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Siege.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Temple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Temple.png -------------------------------------------------------------------------------- /LCE/Game/BattleMapImages/Valley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMapImages/Valley.png -------------------------------------------------------------------------------- /LCE/Game/BattleMaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BattleMaps.md -------------------------------------------------------------------------------- /LCE/Game/BiomeIDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/BiomeIDs.md -------------------------------------------------------------------------------- /LCE/Game/Blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/Blocks.md -------------------------------------------------------------------------------- /LCE/Game/Colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/Colors.md -------------------------------------------------------------------------------- /LCE/Game/Items.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCE/Game/LimitStrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/LimitStrings.md -------------------------------------------------------------------------------- /LCE/Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Game/readme.md -------------------------------------------------------------------------------- /LCE/Level/ChunkData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Level/ChunkData.md -------------------------------------------------------------------------------- /LCE/Level/MCR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Level/MCR.md -------------------------------------------------------------------------------- /LCE/Level/RegionFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Level/RegionFile.md -------------------------------------------------------------------------------- /LCE/PS3/GameRegions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/PS3/GameRegions.md -------------------------------------------------------------------------------- /LCE/PS3/Minecraft-PS3-Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/PS3/Minecraft-PS3-Versions.md -------------------------------------------------------------------------------- /LCE/Packets/Bidirectional/Debug Options.md: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /LCE/Packets/Bidirectional/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Bidirectional/readme.md -------------------------------------------------------------------------------- /LCE/Packets/Clientbound/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Clientbound/readme.md -------------------------------------------------------------------------------- /LCE/Packets/Packet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Packet.md -------------------------------------------------------------------------------- /LCE/Packets/Serverbound/Pre-Login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Serverbound/Pre-Login.md -------------------------------------------------------------------------------- /LCE/Packets/Serverbound/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Serverbound/readme.md -------------------------------------------------------------------------------- /LCE/Packets/Types/Flexible Packet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Types/Flexible Packet.md -------------------------------------------------------------------------------- /LCE/Packets/Types/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Types/readme.md -------------------------------------------------------------------------------- /LCE/Packets/Types/utf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/Types/utf.md -------------------------------------------------------------------------------- /LCE/Packets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Packets/readme.md -------------------------------------------------------------------------------- /LCE/Saving/LCE Save File Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Saving/LCE Save File Versions.md -------------------------------------------------------------------------------- /LCE/Saving/Pre-Release Save Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Saving/Pre-Release Save Format.md -------------------------------------------------------------------------------- /LCE/Saving/Save Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Saving/Save Format.md -------------------------------------------------------------------------------- /LCE/Saving/Split Saves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Saving/Split Saves.md -------------------------------------------------------------------------------- /LCE/Saving/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Saving/readme.md -------------------------------------------------------------------------------- /LCE/Xbox One/SaveStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/Xbox One/SaveStructure.md -------------------------------------------------------------------------------- /LCE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LCE/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/NOTICE.md -------------------------------------------------------------------------------- /Pi/Chunks_Format.md: -------------------------------------------------------------------------------- 1 | ../Bedrock/0.1.0_alpha/Chunks_Format.md -------------------------------------------------------------------------------- /Pi/Entities_Format.md: -------------------------------------------------------------------------------- 1 | ../Bedrock/0.3.2_alpha/Entities_Format.md -------------------------------------------------------------------------------- /Pi/Level_Format.md: -------------------------------------------------------------------------------- 1 | ../Bedrock/0.6.0_alpha/Level_Format.md -------------------------------------------------------------------------------- /Pi/Pi-Edition-Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Pi/Pi-Edition-Docs.md -------------------------------------------------------------------------------- /Pi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Pi/readme.md -------------------------------------------------------------------------------- /Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/Team.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/Dexrn_Lodestone_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/Dexrn_Lodestone_Logo.png -------------------------------------------------------------------------------- /public/assets/LodestoneBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/LodestoneBg.jpg -------------------------------------------------------------------------------- /public/assets/Lodestone_Favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/Lodestone_Favicon.png -------------------------------------------------------------------------------- /public/assets/Project_Lodestone_Logo_Made_By_NikStudios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/Project_Lodestone_Logo_Made_By_NikStudios.svg -------------------------------------------------------------------------------- /public/assets/lodestone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/lodestone.css -------------------------------------------------------------------------------- /public/assets/nbt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/LICENSE -------------------------------------------------------------------------------- /public/assets/nbt/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/blank.png -------------------------------------------------------------------------------- /public/assets/nbt/boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/boolean.png -------------------------------------------------------------------------------- /public/assets/nbt/byte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/byte.png -------------------------------------------------------------------------------- /public/assets/nbt/byteArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/byteArray.png -------------------------------------------------------------------------------- /public/assets/nbt/compound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/compound.png -------------------------------------------------------------------------------- /public/assets/nbt/double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/double.png -------------------------------------------------------------------------------- /public/assets/nbt/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/float.png -------------------------------------------------------------------------------- /public/assets/nbt/int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/int.png -------------------------------------------------------------------------------- /public/assets/nbt/intArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/intArray.png -------------------------------------------------------------------------------- /public/assets/nbt/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/list.png -------------------------------------------------------------------------------- /public/assets/nbt/long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/long.png -------------------------------------------------------------------------------- /public/assets/nbt/longArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/longArray.png -------------------------------------------------------------------------------- /public/assets/nbt/short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/short.png -------------------------------------------------------------------------------- /public/assets/nbt/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/nbt/string.png -------------------------------------------------------------------------------- /public/assets/treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/public/assets/treeview.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Lodestone/Documentation/HEAD/readme.md --------------------------------------------------------------------------------