113 lines
2.9 KiB
Lua
113 lines
2.9 KiB
Lua
|
-- Biomes
|
||
|
cartographer.register_biome("Marsh", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
});
|
||
|
cartographer.register_biome("Swamp", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
"ctg_pix_swamp",
|
||
|
});
|
||
|
cartographer.register_biome("Deep Forest", {
|
||
|
"ctg_pix_simple_forest",
|
||
|
"ctg_pix_colored_forest",
|
||
|
"ctg_pix_deep_forest",
|
||
|
});
|
||
|
cartographer.register_biome("Forest", {
|
||
|
"ctg_pix_simple_forest",
|
||
|
"ctg_pix_colored_forest",
|
||
|
"ctg_pix_dense_forest",
|
||
|
});
|
||
|
cartographer.register_biome("Grove", {
|
||
|
"ctg_pix_simple_forest",
|
||
|
"ctg_pix_colored_forest",
|
||
|
"ctg_pix_grove",
|
||
|
});
|
||
|
cartographer.register_biome("Wilderness", {
|
||
|
"ctg_pix_simple_forest",
|
||
|
"ctg_pix_colored_forest",
|
||
|
});
|
||
|
cartographer.register_biome("Grassland", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
});
|
||
|
cartographer.register_biome("Orchard", {
|
||
|
"ctg_pix_simple_forest",
|
||
|
"ctg_pix_colored_forest",
|
||
|
});
|
||
|
cartographer.register_biome("Chaparral", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
"ctg_pix_chaparral",
|
||
|
});
|
||
|
cartographer.register_biome("Savanna", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
"ctg_pix_colored_land",
|
||
|
"ctg_pix_savanna",
|
||
|
});
|
||
|
cartographer.register_biome("Desert", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_sand",
|
||
|
"ctg_pix_colored_sand",
|
||
|
});
|
||
|
cartographer.register_biome("Wasteland", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_sand",
|
||
|
"ctg_pix_colored_sand",
|
||
|
"ctg_pix_wasteland",
|
||
|
}, 1);
|
||
|
cartographer.register_biome("Wasteland", {
|
||
|
"ctg_pix_simple_water",
|
||
|
"ctg_pix_colored_water",
|
||
|
}, nil, 0);
|
||
|
cartographer.register_biome("Grassland Ocean", {
|
||
|
"ctg_pix_simple_water",
|
||
|
"ctg_pix_colored_water",
|
||
|
}, nil, 0);
|
||
|
cartographer.register_biome("Grassland Ocean", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_sand",
|
||
|
}, 1);
|
||
|
cartographer.register_biome("Gravel Beach", {
|
||
|
"ctg_pix_simple_water",
|
||
|
"ctg_pix_colored_water",
|
||
|
}, nil, 0);
|
||
|
cartographer.register_biome("Gravel Beach", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_sand",
|
||
|
"ctg_pix_gravel",
|
||
|
}, 1);
|
||
|
cartographer.register_biome("Savanna Ocean", {
|
||
|
"ctg_pix_simple_water",
|
||
|
"ctg_pix_colored_water",
|
||
|
}, nil, 0);
|
||
|
cartographer.register_biome("Savanna Ocean", {
|
||
|
"ctg_pix_simple_land",
|
||
|
"ctg_pix_colored_sand",
|
||
|
}, 1);
|
||
|
|
||
|
-- Materials
|
||
|
cartographer.register_map_material_name("default:paper", "paper", 1);
|
||
|
cartographer.register_map_material_name("default:lump_coal", "pigment");
|
||
|
cartographer.register_map_material_name("default:block_coal", "pigment", 9);
|
||
|
|
||
|
-- Crafting Recipes
|
||
|
crafting.register_craft({
|
||
|
output = "cartographer:simple_table",
|
||
|
items = {
|
||
|
"default:fiber 2",
|
||
|
"default:stick 8",
|
||
|
"group:wood 6",
|
||
|
},
|
||
|
});
|
||
|
crafting.register_craft({
|
||
|
output = "cartographer:standard_table",
|
||
|
items = {
|
||
|
"cartographer:simple_table",
|
||
|
"default:ingot_steel 6",
|
||
|
},
|
||
|
});
|