diff --git a/README.md b/README.md index 3984711..860bb98 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ Ethereal Mapgen mod for Minetest (works on all except v6) - Added Sakura biome, pink sakura trees and saplings - 1 in 10 chance of sakura sapling growing into white sakura - Bamboo grows in higher elevation while sakura grows in lower - - Added sakura wood stairs, fence and gates - + - Added sakura wood, stairs, fence, gate and door + ### 1.25 - Converted .mts files into schematic tables for easier editing diff --git a/gates.lua b/gates.lua index 9a805b3..bc06e29 100644 --- a/gates.lua +++ b/gates.lua @@ -85,3 +85,21 @@ minetest.register_alias("ethereal:fencegate_junglewood_closed", "doors:gate_jung minetest.register_alias("ethereal:fencegate_pine_open", "doors:gate_pine_wood_open") minetest.register_alias("ethereal:fencegate_pine_closed", "doors:gate_pine_wood_closed") + +-- sakura door +doors.register_door("sakuragi:tobira", { + tiles = { + {name = "ethereal_sakura_door.png", backface_culling = true} + }, + description = S("Sakura Wood Door"), + inventory_image = "ethereal_sakura_door_inv.png", + groups = { + snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, + flammable = 2 + }, + recipe = { + {"group:stick", "default:paper"}, + {"default:paper", "group:stick"}, + {"ethereal:sakura_wood", "ethereal:sakura_wood"} + } +}) diff --git a/textures/ethereal_sakura_door.png b/textures/ethereal_sakura_door.png new file mode 100644 index 0000000..7f5d790 Binary files /dev/null and b/textures/ethereal_sakura_door.png differ diff --git a/textures/ethereal_sakura_door_inv.png b/textures/ethereal_sakura_door_inv.png new file mode 100644 index 0000000..c6920ce Binary files /dev/null and b/textures/ethereal_sakura_door_inv.png differ