forked from BlockySurvival/holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchristmas.lua
46 lines (45 loc) · 1.45 KB
/
christmas.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-- Is it Christmas?
if holidays.is_holiday_active("christmas") then
holidays.log("action", "christmas enabled")
-- Special chest textures
minetest.override_item("default:chest", {
tiles = {
"christmas_chest_top.png",
"christmas_chest_inside.png",
"christmas_chest_side.png",
"christmas_chest_side.png",
"christmas_chest_side.png",
"christmas_chest_front.png",
}
})
minetest.override_item("default:chest_open", {
tiles = {
"christmas_chest_top.png",
"christmas_chest_inside.png",
"christmas_chest_side.png",
"christmas_chest_side.png",
"christmas_chest_front.png",
"christmas_chest_inside.png",
}
})
minetest.override_item("default:chest_locked", {
tiles = {
"christmas_chest_top.png",
"christmas_chest_inside.png",
"christmas_chest_side.png",
"christmas_chest_side.png",
"christmas_chest_side.png",
"christmas_chest_locked_front.png",
}
})
minetest.override_item("default:chest_locked_open", {
tiles = {
"christmas_chest_top.png",
"christmas_chest_inside.png",
"christmas_chest_side.png",
"christmas_chest_side.png",
"christmas_chest_locked_front.png",
"christmas_chest_inside.png",
}
})
end