From 1a6b3dabfb1bed5a7e6425615be591f54042ba26 Mon Sep 17 00:00:00 2001 From: Och Noe Date: Sun, 4 Apr 2021 23:06:18 +0200 Subject: added silver, (dark) grey baked clay ; some simple cleanup --- depends.txt | 1 + init.lua | 44 +++++++++++++++++++++++---- textures/advtrains_platform_version_node.png | Bin 678 -> 678 bytes 3 files changed, 39 insertions(+), 6 deletions(-) diff --git a/depends.txt b/depends.txt index e4772a3..e981c53 100644 --- a/depends.txt +++ b/depends.txt @@ -7,3 +7,4 @@ maple? moreores? minetest_errata? technic? +bakedclay? diff --git a/init.lua b/init.lua index d6fd257..5787768 100644 --- a/init.lua +++ b/init.lua @@ -91,6 +91,9 @@ list_default = { "default:desert_sandstone_brick", -- added 2018-10-26 "default:cobble", +-- added 2021-04-04 + "default:steelblock", + } list_moreblocks = { @@ -102,11 +105,14 @@ list_moreblocks = { -- added 2019-01-19 "moreblocks:split_stone_tile", "moreblocks:split_stone_tile_alt", + } list_ethereal = { "ethereal:icebrick", - "ethereal:bamboo_dirt" } + "ethereal:bamboo_dirt" + +} -- added 2018-10-16 @@ -115,7 +121,9 @@ list_errata= { "minetest_errata:mossy_stone_tile", "minetest_errata:mossystone", "minetest_errata:sandstone_cobble", - "minetest_errata:silver_sandstone_cobble", } + "minetest_errata:silver_sandstone_cobble", + +} -- wood @@ -125,7 +133,9 @@ list_wood= { "default:aspen_wood", "default:junglewood", "default:pine_wood", - "default:wood" } + "default:wood" + +} list_wood_ethereal = { @@ -140,6 +150,7 @@ list_wood_ethereal = { -- added 2020-01-12 "ethereal:olive_wood", "ethereal:sakura_wood", + } @@ -147,11 +158,14 @@ list_wood_maple = { "maple:maple_wood" } - -- metal blocks list_moreores = { - "moreores:mithril_block" } + "moreores:mithril_block", + -- added 2021-04-04 + "moreores:silver_block", + + } -- wool @@ -162,9 +176,21 @@ list_moreores = { -- technic - added 2019-03-11 list_technic = { - "technic:marble" } + "technic:marble" + +} +-- baked clay - added 2021-04-04 +-- only darker colours, or the yellow line will not be good visible +-- currently only gray, because it does not create a colour contrast +list_baked_clay = { + "bakedclay:grey", + "bakedclay:dark_grey", + +} + + for _,name in pairs(list_default) do register_platform(own_name,name) @@ -220,6 +246,12 @@ if minetest.get_modpath("technic") then end end +if minetest.get_modpath("bakedclay") then + for _,name in pairs(list_baked_clay) do + register_platform(own_name,name) + end +end + local woodpath_lengths = { diff --git a/textures/advtrains_platform_version_node.png b/textures/advtrains_platform_version_node.png index d8d9f7e..8659a57 100644 Binary files a/textures/advtrains_platform_version_node.png and b/textures/advtrains_platform_version_node.png differ -- cgit v1.2.3