Initial commit
This commit is contained in:
commit
daa07f938f
2
depends.txt
Normal file
2
depends.txt
Normal file
@ -0,0 +1,2 @@
|
||||
doc
|
||||
intllib?
|
1
description.txt
Normal file
1
description.txt
Normal file
@ -0,0 +1 @@
|
||||
Adds an encyclopedia item which allows you to access the documentation system.
|
29
init.lua
Normal file
29
init.lua
Normal file
@ -0,0 +1,29 @@
|
||||
local S
|
||||
if minetest.get_modpath("intllib") then
|
||||
S = intllib.Getter(minetest.get_current_modname())
|
||||
else
|
||||
S = function(s) return s end
|
||||
end
|
||||
|
||||
minetest.register_craftitem("doc_encyclopedia:encyclopedia", {
|
||||
description = S("Encyclopedia"),
|
||||
_doc_items_longdesc = S("Allows you to access the documentation system."),
|
||||
_doc_items_usagehelp = S("Wield it, then leftclick to access the documentation system."),
|
||||
stack_max = 1,
|
||||
inventory_image = "doc_encyclopedia_encyclopedia.png",
|
||||
wield_image = "doc_encyclopedia_encyclopedia.png",
|
||||
wield_scale = { x=1, y=1, z=2.25 },
|
||||
on_use = function(itemstack, user)
|
||||
doc.show_doc(user:get_player_name())
|
||||
end,
|
||||
groups = { book=1 },
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "doc_encyclopedia:encyclopedia",
|
||||
recipe = {
|
||||
{"group:stick", "group:stick", ""},
|
||||
{"group:stick", "", "group:stick"},
|
||||
{"group:stick", "group:stick", ""},
|
||||
}
|
||||
})
|
3
locale/de.txt
Normal file
3
locale/de.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Encyclopedia = Enzyklopädie
|
||||
Allows you to access the documentation system. = Damit kann man auf das Dokumentationssystem zuzugreifen.
|
||||
Wield it, then leftclick to access the documentation system. = Halten Sie sie in der Hand und linksklicken Sie, um auf das Dokumentationssystem zuzugreifen.
|
3
locale/template.txt
Normal file
3
locale/template.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Encyclopedia =
|
||||
Allows you to access the documentation system. =
|
||||
Wield it, then leftclick to access the documentation system. =
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
textures/doc_encyclopedia_encyclopedia.png
Normal file
BIN
textures/doc_encyclopedia_encyclopedia.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 452 B |
Loading…
x
Reference in New Issue
Block a user