summaryrefslogtreecommitdiff
path: root/shared_door.lua
blob: 120d94f2e6c66f2905aae83071b6617813c313c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
doors.register("landrush:shared_door", {
	description = "Shared Door",
	inventory_image = "shared_door_inv.png",
	groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1},
	tiles = {{name="landrush_shared_door.png", backface_culling = false}},
	protected = true,
	recipe = {
		{'default:steel_ingot','default:steel_ingot',''},
		{'default:steel_ingot','landrush:landclaim',''},
		{'default:steel_ingot','default:steel_ingot',''}
	}

})