Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.34 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.34 KB

mc2mt

Convert maps from Minecraft to Minetest

Dependencies

Anvil-Parser library is used to decode nbt format

pip install anvil-parser

https://github.com/matcool/anvil-parser

Usage

usage: mc2mt.py [OPTIONS] input output

Convert maps from Minecraft to Minetest.

positional arguments:
  input                 Minecraft input world folder
  output                Output folder for the generated world.

optional arguments:
  -h, --help            show this help message and exit
  -m MOD                Load mod from json file
  -d                    Disable all mods
  -e                    Enable all mods
  -u                    Unknown blocks will be converted to air
  -q                    Do not report unknown blocks
  --disable_MOD         Disable mod MOD
  --enable_MOD          Enable mod MOD

This script uses "anvil-parser" library from "matcool" to parse world folders. More details at https://github.com/matcool/anvil-parser

Custom Blocks Definition

You can provide a JSON to implement your custom definition.

You can also call function defined in mc2mtlib/block_functions.py.

Example are provided in mc2mtlib/mods.

{
    "table" : {
        "full_block_id" : ["minetest:itemstring",0,0],
        "beginning_of_id?": ["minetest:itemstring",0,0],
        "?end_of_id" : ["minetest:itemstring",0,0],
    }
}