Add biomes and detail levels 1 & 2

This commit is contained in:
Hugues Ross 2020-05-13 07:51:32 -04:00
parent f4762b3e6e
commit 202966c18d
37 changed files with 188 additions and 0 deletions

188
init.lua
View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1005 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 974 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 983 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 994 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 974 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 983 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 963 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 963 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 989 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1021 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 987 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 981 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 977 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 963 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 963 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1001 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB