[Mod] Voxelgarden doors [doors_modular]

Post Reply
User avatar
Casimir
Member
Posts: 1206
Joined: Fri Aug 03, 2012 16:59
GitHub: CasimirKaPazi

[Mod] Voxelgarden doors [doors_modular]

by Casimir » Post

This is the modular doors mod of the Voxelgarden subgame. Names and recipes are changed so they don't conflict with minetest_game doors.

Crafting a door gives you two door nodes. You can place them on the wall to have them vertically, place on ground to have them horizontally. Several door nodes above each other will act as one door, regardless of the type. This way you can make up all sorts and sizes of doors.
Spoiler

Code: Select all

ww
ww/
ww

w = wood
/ = stick
output: wooden door

Code: Select all

ww
//
ww

w = wood
/ = stick
output: wooden window

Code: Select all

ss
ss/
ss

s = steel
/ = stick
output: steel door

Code: Select all

ss
//
ss

s = steel
/ = stick
output: steel bars
depends: default
license: LGPL 2.1
Spoiler
The same doors are used as hatches and doors.
Image
Those iron bars are also doors.
Image
Attachments
doors_modular-v1.1.zip
(5.11 KiB) Downloaded 228 times

User avatar
Casimir
Member
Posts: 1206
Joined: Fri Aug 03, 2012 16:59
GitHub: CasimirKaPazi

Re: [Mod] Voxelgarden doors [doors_modular]

by Casimir » Post

Sorry, I just realized it was broken. Uploaded a fixed, working version.

User avatar
Sane
Member
Posts: 103
Joined: Tue Jun 17, 2014 09:31
GitHub: mt-sane
In-game: Sane

Re: [Mod] Voxelgarden doors [doors_modular]

by Sane » Post

+1
Trying to stay me.

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

Re: [Mod] Voxelgarden doors [doors_modular]

by Sokomine » Post

Very nice. The doors in Voxelgarden are very decorative. I hope they'll show up on servers. Diffrent types of doors add considerably to otherwise not-so-good houses. The textures of Voxelgarden work well together.
A list of my mods can be found here.

User avatar
texmex
Member
Posts: 1753
Joined: Mon Jul 11, 2016 21:08
GitHub: tacotexmex
In-game: tacotexmex

Re: [Mod] Voxelgarden doors [doors_modular]

by texmex » Post

Can you put this on Github, Casimir?

Azazel
Member
Posts: 20
Joined: Sun Dec 13, 2015 18:44
In-game: Omallem

Re: [Mod] Voxelgarden doors [doors_modular]

by Azazel » Post

The recipe for steel bars creates steel doors.

Code: Select all

doors_modular:register_door("doors_modular:steel_bars", {
	description = "Steel Bars",
	inventory_image = "doors_modular_steel_bars.png",
	groups = {snappy=1, cracky=1, door=1},
	tiles = {"doors_modular_steel_bars.png"},
	only_placer_can_open = true,
})

minetest.register_craft({
	output = "doors_modular:door_steel",
	recipe = {
		{"default:steel_ingot", "default:steel_ingot"},
		{"default:stick", "default:stick"},
		{"default:steel_ingot", "default:steel_ingot"}
	}
It would be great if the doors made a sound when opening or closing.

Post Reply

Who is online

Users browsing this forum: No registered users and 19 guests