-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
30 lines (30 loc) · 874 Bytes
/
init.lua
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
-- Happy block
minetest.register_node("minetest_emotions:happy_block", {
description = "I'm happy!!!",
tiles = {"happyface3.png"},
groups = {cracky = 3, stone = 1},
})
-- Sad block
minetest.register_node("minetest_emotions:sad_block", {
description = "I'm sad!!!",
tiles = {"sadface.png"},
groups = {cracky = 3, stone = 1},
})
-- Angry block
minetest.register_node("minetest_emotions:angry_block", {
description = "I'm angry!!!",
tiles = {"angryface.png"},
groups = {cracky = 3, stone = 1},
})
-- augh block
minetest.register_node("minetest_emotions:augh_block", {
description = "aughhhhh!!!",
tiles = {"augh.png"},
groups = {cracky = 3, stone = 1},
})
-- ooh block
minetest.register_node("minetest_emotions:ooh_block", {
description = "Ooooooh shinyy!!!",
tiles = {"ooh.png"},
groups = {cracky = 3, stone = 1},
})