summaryrefslogtreecommitdiff
path: root/mario/portal.lua
blob: eb04b9329825bc222ca2f7fd8fa690a8511af3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
minetest.register_node("mario:portal", {
	description = "Portal",
	drawtype = "glasslike",
	tiles = {"mario_glass.png"},
	paramtype = "light",
	sunlight_propagates = true,
	alpha = 150,
	paramtype2 = "facedir",
	walkable = false,
	is_ground_content = false,
	groups = {cracky = 2,not_in_creative_inventory=1},
})
minetest.register_node("mario:portal_left", {
	description = "Portal Left",
	drawtype = "glasslike",
	tiles = {"mario_border.png"},
	paramtype = "light",
	sunlight_propagates = true,
	paramtype2 = "facedir",
	--walkable = false,
	is_ground_content = false,
	groups = {cracky = 2,not_in_creative_inventory=0},
})
minetest.register_node("mario:portal_right", {
	description = "Portal Right",
	drawtype = "glasslike",
	tiles = {"mario_border.png"},
	paramtype = "light",
	sunlight_propagates = true,
	paramtype2 = "facedir",
	--walkable = false,
	is_ground_content = false,
	groups = {cracky = 2,not_in_creative_inventory=0},
})
minetest.register_abm({
	nodenames = {"mario:portal"},
	interval = 0.5,
	chance = 1,
	action = function(pos, node, active_object_count, active_object_count_wider)
		local objs = minetest.env:get_objects_inside_radius(pos, 1)
		for k, player in pairs(objs) do
			if player:get_player_name() then

				player:setpos({x=pos.x,y=pos.y+12,z=pos.z})
			end
		end
	end
})