Add biomes and detail levels 1 & 2
188
init.lua
@ -1,4 +1,192 @@
|
||||
-- Biomes
|
||||
-- Icesheet
|
||||
cartographer.register_biome("icesheet", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
});
|
||||
cartographer.register_biome("icesheet_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
});
|
||||
cartographer.register_biome("icesheet_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
}, 1);
|
||||
|
||||
-- Tundra
|
||||
cartographer.register_biome("tundra", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
});
|
||||
cartographer.register_biome("tundra_highland", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
});
|
||||
cartographer.register_biome("tundra_beach", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
});
|
||||
cartographer.register_biome("tundra_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
});
|
||||
|
||||
-- Taiga
|
||||
cartographer.register_biome("taiga", {
|
||||
"ctg_mtg_simple_forest",
|
||||
"ctg_mtg_snowy_forest",
|
||||
});
|
||||
cartographer.register_biome("taiga_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("taiga_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
}, 1);
|
||||
|
||||
-- Snowy Grassland
|
||||
cartographer.register_biome("snowy_grassland", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
});
|
||||
cartographer.register_biome("snowy_grassland_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("snowy_grassland_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_snow",
|
||||
}, 1);
|
||||
|
||||
|
||||
-- Grassland
|
||||
cartographer.register_biome("grassland", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_land",
|
||||
});
|
||||
cartographer.register_biome("grassland_dunes", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
});
|
||||
cartographer.register_biome("grassland_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("grassland_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Coniferous Forest
|
||||
cartographer.register_biome("coniferous_forest", {
|
||||
"ctg_mtg_simple_forest",
|
||||
"ctg_mtg_colored_forest",
|
||||
});
|
||||
cartographer.register_biome("coniferous_forest_dunes", {
|
||||
"ctg_mtg_simple_forest",
|
||||
"ctg_mtg_colored_forest",
|
||||
});
|
||||
cartographer.register_biome("coniferous_forest_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("coniferous_forest_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Deciduous Forest
|
||||
cartographer.register_biome("deciduous_forest", {
|
||||
"ctg_mtg_simple_forest",
|
||||
"ctg_mtg_colored_forest",
|
||||
});
|
||||
cartographer.register_biome("deciduous_forest_shore", {
|
||||
"ctg_mtg_simple_forest",
|
||||
"ctg_mtg_colored_forest",
|
||||
});
|
||||
cartographer.register_biome("deciduous_forest_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("deciduous_forest_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Desert
|
||||
cartographer.register_biome("desert", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
});
|
||||
cartographer.register_biome("desert_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("desert_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Sandstone Desert
|
||||
cartographer.register_biome("sandstone_desert", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
});
|
||||
cartographer.register_biome("sandstone_desert_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("sandstone_desert_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Cold Desert
|
||||
cartographer.register_biome("cold_desert", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
});
|
||||
cartographer.register_biome("cold_desert_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("cold_desert_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Savanna
|
||||
cartographer.register_biome("savanna", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_land",
|
||||
});
|
||||
cartographer.register_biome("savanna_shore", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
});
|
||||
cartographer.register_biome("savanna_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
}, nil, 0);
|
||||
cartographer.register_biome("savanna_ocean", {
|
||||
"ctg_mtg_simple_land",
|
||||
"ctg_mtg_colored_sand",
|
||||
}, 1);
|
||||
|
||||
-- Rainforest
|
||||
cartographer.register_biome("rainforest", {
|
||||
"ctg_mtg_simple_forest",
|
||||
"ctg_mtg_colored_forest",
|
||||
});
|
||||
cartographer.register_biome("rainforest_swamp", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
});
|
||||
cartographer.register_biome("rainforest_ocean", {
|
||||
"ctg_mtg_simple_water",
|
||||
"ctg_mtg_colored_water",
|
||||
});
|
||||
|
||||
-- Markers
|
||||
-- Line drawing markers
|
||||
|
BIN
textures/ctg_mtg_colored_forest.1.png
Normal file
After Width: | Height: | Size: 1005 B |
BIN
textures/ctg_mtg_colored_forest.2.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
textures/ctg_mtg_colored_forest.3.png
Normal file
After Width: | Height: | Size: 986 B |
BIN
textures/ctg_mtg_colored_forest.4.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
textures/ctg_mtg_colored_land.1.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
textures/ctg_mtg_colored_land.2.png
Normal file
After Width: | Height: | Size: 974 B |
BIN
textures/ctg_mtg_colored_land.3.png
Normal file
After Width: | Height: | Size: 983 B |
BIN
textures/ctg_mtg_colored_land.4.png
Normal file
After Width: | Height: | Size: 984 B |
BIN
textures/ctg_mtg_colored_sand.1.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
textures/ctg_mtg_colored_sand.2.png
Normal file
After Width: | Height: | Size: 994 B |
BIN
textures/ctg_mtg_colored_sand.3.png
Normal file
After Width: | Height: | Size: 990 B |
BIN
textures/ctg_mtg_colored_sand.4.png
Normal file
After Width: | Height: | Size: 976 B |
BIN
textures/ctg_mtg_colored_snow.1.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
textures/ctg_mtg_colored_snow.2.png
Normal file
After Width: | Height: | Size: 974 B |
BIN
textures/ctg_mtg_colored_snow.3.png
Normal file
After Width: | Height: | Size: 983 B |
BIN
textures/ctg_mtg_colored_snow.4.png
Normal file
After Width: | Height: | Size: 984 B |
BIN
textures/ctg_mtg_colored_water.1.png
Normal file
After Width: | Height: | Size: 963 B |
BIN
textures/ctg_mtg_colored_water.2.png
Normal file
After Width: | Height: | Size: 963 B |
BIN
textures/ctg_mtg_colored_water.3.png
Normal file
After Width: | Height: | Size: 989 B |
BIN
textures/ctg_mtg_colored_water.4.png
Normal file
After Width: | Height: | Size: 986 B |
BIN
textures/ctg_mtg_simple_forest.1.png
Normal file
After Width: | Height: | Size: 1002 B |
BIN
textures/ctg_mtg_simple_forest.2.png
Normal file
After Width: | Height: | Size: 1021 B |
BIN
textures/ctg_mtg_simple_forest.3.png
Normal file
After Width: | Height: | Size: 987 B |
BIN
textures/ctg_mtg_simple_forest.4.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
textures/ctg_mtg_simple_land.1.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
textures/ctg_mtg_simple_land.2.png
Normal file
After Width: | Height: | Size: 973 B |
BIN
textures/ctg_mtg_simple_land.3.png
Normal file
After Width: | Height: | Size: 981 B |
BIN
textures/ctg_mtg_simple_land.4.png
Normal file
After Width: | Height: | Size: 977 B |
BIN
textures/ctg_mtg_simple_water.1.png
Normal file
After Width: | Height: | Size: 963 B |
BIN
textures/ctg_mtg_simple_water.2.png
Normal file
After Width: | Height: | Size: 963 B |
BIN
textures/ctg_mtg_simple_water.3.png
Normal file
After Width: | Height: | Size: 980 B |
BIN
textures/ctg_mtg_simple_water.4.png
Normal file
After Width: | Height: | Size: 979 B |
BIN
textures/ctg_mtg_snowy_forest.1.png
Normal file
After Width: | Height: | Size: 1018 B |
BIN
textures/ctg_mtg_snowy_forest.2.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
textures/ctg_mtg_snowy_forest.3.png
Normal file
After Width: | Height: | Size: 1001 B |
BIN
textures/ctg_mtg_snowy_forest.4.png
Normal file
After Width: | Height: | Size: 1.0 KiB |