diff --git a/init.lua b/init.lua index dd9b7d0..caae950 100644 --- a/init.lua +++ b/init.lua @@ -3,7 +3,6 @@ cartographer.biomes.add("icesheet", { "ctg_mtg_simple_land", "ctg_mtg_colored_snow", - "ctg_mtg_colored_snow", }); cartographer.biomes.add("icesheet_ocean", { "ctg_mtg_simple_water", @@ -12,7 +11,6 @@ cartographer.biomes.add("icesheet_ocean", { cartographer.biomes.add("icesheet_ocean", { "ctg_mtg_simple_land", "ctg_mtg_colored_snow", - "ctg_mtg_colored_snow", }, 1); -- Tundra @@ -20,15 +18,18 @@ cartographer.biomes.add("tundra", { "ctg_mtg_simple_land", "ctg_mtg_colored_snow", "ctg_mtg_colored_snow", + "ctg_mtg_tundra", }); cartographer.biomes.add("tundra_highland", { "ctg_mtg_simple_land", "ctg_mtg_colored_snow", "ctg_mtg_colored_snow", + "ctg_mtg_tundra", }); cartographer.biomes.add("tundra_beach", { "ctg_mtg_simple_land", "ctg_mtg_colored_sand", + "ctg_mtg_tundra", }); cartographer.biomes.add("tundra_ocean", { "ctg_mtg_simple_water", @@ -125,6 +126,7 @@ cartographer.biomes.add("desert", { "ctg_mtg_simple_land", "ctg_mtg_colored_sand", "ctg_mtg_colored_sand", + "ctg_mtg_desert_sand", }); cartographer.biomes.add("desert_ocean", { "ctg_mtg_simple_water", @@ -139,7 +141,6 @@ cartographer.biomes.add("desert_ocean", { cartographer.biomes.add("sandstone_desert", { "ctg_mtg_simple_land", "ctg_mtg_colored_sand", - "ctg_mtg_colored_sand", }); cartographer.biomes.add("sandstone_desert_ocean", { "ctg_mtg_simple_water", @@ -155,6 +156,7 @@ cartographer.biomes.add("cold_desert", { "ctg_mtg_simple_land", "ctg_mtg_colored_sand", "ctg_mtg_colored_sand", + "ctg_mtg_silver_sand", }); cartographer.biomes.add("cold_desert_ocean", { "ctg_mtg_simple_water", @@ -170,6 +172,7 @@ cartographer.biomes.add("savanna", { "ctg_mtg_simple_land", "ctg_mtg_colored_land", "ctg_mtg_colored_land", + "ctg_mtg_savanna", }); cartographer.biomes.add("savanna_shore", { "ctg_mtg_simple_land", @@ -201,6 +204,31 @@ cartographer.biomes.add("rainforest_ocean", { }); -- Markers +-- General markers +cartographer.markers.add("ctg_mtg:house", "House", { + "ctg_mtg_marker_house", + "ctg_mtg_marker_house_2", +}); +cartographer.markers.add("ctg_mtg:skull", "Skull", { + "ctg_mtg_marker_skull", +}); +cartographer.markers.add("ctg_mtg:diamond", "diamond", { + "ctg_mtg_marker_diamond", + "ctg_mtg_marker_diamond_2", +}); +cartographer.markers.add("ctg_mtg:mese", "mese", { + "ctg_mtg_marker_mese", + "ctg_mtg_marker_mese_2", +}); +cartographer.markers.add("ctg_mtg:x", "X", { + "ctg_mtg_marker_x", + "ctg_mtg_marker_x_2", +}); +cartographer.markers.add("ctg_mtg:flag", "Flag", { + "ctg_mtg_marker_flag", + "ctg_mtg_marker_flag_2", +}); + -- Line drawing markers cartographer.markers.add("ctg_mtg:line_h", "Line (Horizontal)", { "ctg_mtg_marker_line_h", diff --git a/textures/ctg_mtg_colored_sand.1.png b/textures/ctg_mtg_colored_sand.1.png index 4488c91..1b7c72e 100644 Binary files a/textures/ctg_mtg_colored_sand.1.png and b/textures/ctg_mtg_colored_sand.1.png differ diff --git a/textures/ctg_mtg_colored_sand.2.png b/textures/ctg_mtg_colored_sand.2.png index 551bb07..f85ac70 100644 Binary files a/textures/ctg_mtg_colored_sand.2.png and b/textures/ctg_mtg_colored_sand.2.png differ diff --git a/textures/ctg_mtg_colored_sand.3.png b/textures/ctg_mtg_colored_sand.3.png index 230e597..27232b2 100644 Binary files a/textures/ctg_mtg_colored_sand.3.png and b/textures/ctg_mtg_colored_sand.3.png differ diff --git a/textures/ctg_mtg_colored_sand.4.png b/textures/ctg_mtg_colored_sand.4.png index 0b8a56e..c91d156 100644 Binary files a/textures/ctg_mtg_colored_sand.4.png and b/textures/ctg_mtg_colored_sand.4.png differ diff --git a/textures/ctg_mtg_desert_sand.1.png b/textures/ctg_mtg_desert_sand.1.png new file mode 100644 index 0000000..711e9a8 Binary files /dev/null and b/textures/ctg_mtg_desert_sand.1.png differ diff --git a/textures/ctg_mtg_desert_sand.2.png b/textures/ctg_mtg_desert_sand.2.png new file mode 100644 index 0000000..9947956 Binary files /dev/null and b/textures/ctg_mtg_desert_sand.2.png differ diff --git a/textures/ctg_mtg_desert_sand.3.png b/textures/ctg_mtg_desert_sand.3.png new file mode 100644 index 0000000..3d3c298 Binary files /dev/null and b/textures/ctg_mtg_desert_sand.3.png differ diff --git a/textures/ctg_mtg_desert_sand.4.png b/textures/ctg_mtg_desert_sand.4.png new file mode 100644 index 0000000..3c3cf29 Binary files /dev/null and b/textures/ctg_mtg_desert_sand.4.png differ diff --git a/textures/ctg_mtg_marker_diamond.png b/textures/ctg_mtg_marker_diamond.png new file mode 100644 index 0000000..5c4116d Binary files /dev/null and b/textures/ctg_mtg_marker_diamond.png differ diff --git a/textures/ctg_mtg_marker_diamond_2.png b/textures/ctg_mtg_marker_diamond_2.png new file mode 100644 index 0000000..276ec31 Binary files /dev/null and b/textures/ctg_mtg_marker_diamond_2.png differ diff --git a/textures/ctg_mtg_marker_flag.png b/textures/ctg_mtg_marker_flag.png new file mode 100644 index 0000000..83fa13c Binary files /dev/null and b/textures/ctg_mtg_marker_flag.png differ diff --git a/textures/ctg_mtg_marker_flag_2.png b/textures/ctg_mtg_marker_flag_2.png new file mode 100644 index 0000000..3fcffe1 Binary files /dev/null and b/textures/ctg_mtg_marker_flag_2.png differ diff --git a/textures/ctg_mtg_marker_house.png b/textures/ctg_mtg_marker_house.png new file mode 100644 index 0000000..93d7969 Binary files /dev/null and b/textures/ctg_mtg_marker_house.png differ diff --git a/textures/ctg_mtg_marker_house_2.png b/textures/ctg_mtg_marker_house_2.png new file mode 100644 index 0000000..9e7c532 Binary files /dev/null and b/textures/ctg_mtg_marker_house_2.png differ diff --git a/textures/ctg_mtg_marker_mese.png b/textures/ctg_mtg_marker_mese.png new file mode 100644 index 0000000..70744dc Binary files /dev/null and b/textures/ctg_mtg_marker_mese.png differ diff --git a/textures/ctg_mtg_marker_mese_2.png b/textures/ctg_mtg_marker_mese_2.png new file mode 100644 index 0000000..4501db3 Binary files /dev/null and b/textures/ctg_mtg_marker_mese_2.png differ diff --git a/textures/ctg_mtg_marker_skull.png b/textures/ctg_mtg_marker_skull.png new file mode 100644 index 0000000..2cee047 Binary files /dev/null and b/textures/ctg_mtg_marker_skull.png differ diff --git a/textures/ctg_mtg_marker_x.png b/textures/ctg_mtg_marker_x.png new file mode 100644 index 0000000..510b462 Binary files /dev/null and b/textures/ctg_mtg_marker_x.png differ diff --git a/textures/ctg_mtg_marker_x_2.png b/textures/ctg_mtg_marker_x_2.png new file mode 100644 index 0000000..b0d0231 Binary files /dev/null and b/textures/ctg_mtg_marker_x_2.png differ diff --git a/textures/ctg_mtg_savanna.1.png b/textures/ctg_mtg_savanna.1.png new file mode 100644 index 0000000..5944af4 Binary files /dev/null and b/textures/ctg_mtg_savanna.1.png differ diff --git a/textures/ctg_mtg_savanna.2.png b/textures/ctg_mtg_savanna.2.png new file mode 100644 index 0000000..28ababb Binary files /dev/null and b/textures/ctg_mtg_savanna.2.png differ diff --git a/textures/ctg_mtg_savanna.3.png b/textures/ctg_mtg_savanna.3.png new file mode 100644 index 0000000..057843e Binary files /dev/null and b/textures/ctg_mtg_savanna.3.png differ diff --git a/textures/ctg_mtg_savanna.4.png b/textures/ctg_mtg_savanna.4.png new file mode 100644 index 0000000..709ba60 Binary files /dev/null and b/textures/ctg_mtg_savanna.4.png differ diff --git a/textures/ctg_mtg_silver_sand.1.png b/textures/ctg_mtg_silver_sand.1.png new file mode 100644 index 0000000..5ab2aba Binary files /dev/null and b/textures/ctg_mtg_silver_sand.1.png differ diff --git a/textures/ctg_mtg_silver_sand.2.png b/textures/ctg_mtg_silver_sand.2.png new file mode 100644 index 0000000..84cfab8 Binary files /dev/null and b/textures/ctg_mtg_silver_sand.2.png differ diff --git a/textures/ctg_mtg_silver_sand.3.png b/textures/ctg_mtg_silver_sand.3.png new file mode 100644 index 0000000..ee4fc70 Binary files /dev/null and b/textures/ctg_mtg_silver_sand.3.png differ diff --git a/textures/ctg_mtg_silver_sand.4.png b/textures/ctg_mtg_silver_sand.4.png new file mode 100644 index 0000000..ee8f71e Binary files /dev/null and b/textures/ctg_mtg_silver_sand.4.png differ diff --git a/textures/ctg_mtg_tundra.1.png b/textures/ctg_mtg_tundra.1.png new file mode 100644 index 0000000..0164d05 Binary files /dev/null and b/textures/ctg_mtg_tundra.1.png differ diff --git a/textures/ctg_mtg_tundra.2.png b/textures/ctg_mtg_tundra.2.png new file mode 100644 index 0000000..c123903 Binary files /dev/null and b/textures/ctg_mtg_tundra.2.png differ diff --git a/textures/ctg_mtg_tundra.3.png b/textures/ctg_mtg_tundra.3.png new file mode 100644 index 0000000..a60e298 Binary files /dev/null and b/textures/ctg_mtg_tundra.3.png differ diff --git a/textures/ctg_mtg_tundra.4.png b/textures/ctg_mtg_tundra.4.png new file mode 100644 index 0000000..d8ce9ba Binary files /dev/null and b/textures/ctg_mtg_tundra.4.png differ