mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Cartography Table
This commit is contained in:
parent
046698c64f
commit
c71b036e6a
7 changed files with 42 additions and 0 deletions
13
mods/ITEMS/mcl_cartography_table/README.md
Normal file
13
mods/ITEMS/mcl_cartography_table/README.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
mcl_cartography_table
|
||||||
|
-------------------
|
||||||
|
Cartography Tables, by PrairieWind
|
||||||
|
|
||||||
|
Adds Cartography Tables to MineClone 2/5.
|
||||||
|
|
||||||
|
License of source code
|
||||||
|
----------------------
|
||||||
|
LGPLv2.1
|
||||||
|
|
||||||
|
License of media
|
||||||
|
----------------
|
||||||
|
See the main MineClone 2 README.md file.
|
25
mods/ITEMS/mcl_cartography_table/init.lua
Normal file
25
mods/ITEMS/mcl_cartography_table/init.lua
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
-- Cartography Table Code. Used to create and copy maps. Needs a GUI still.
|
||||||
|
|
||||||
|
minetest.register_node("mcl_cartography_table:cartography_table", {
|
||||||
|
description = S("Cartography Table"),
|
||||||
|
_tt_help = S("Used to create or copy maps"),
|
||||||
|
_doc_items_longdesc = S("Is used to create or copy maps for use.."),
|
||||||
|
tiles = {
|
||||||
|
"cartography_table_top.png", "cartography_table_side3.png",
|
||||||
|
"cartography_table_side3.png", "cartography_table_side2.png",
|
||||||
|
"cartography_table_side3.png", "cartography_table_side1.png"
|
||||||
|
},
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
groups = {choppy=1, container=4, deco_block=1, material_wood=1,flammable=1}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_cartography_table:cartography_table",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_core:paper", "mcl_core:paper", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
}
|
||||||
|
})
|
4
mods/ITEMS/mcl_cartography_table/mod.conf
Normal file
4
mods/ITEMS/mcl_cartography_table/mod.conf
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
name = mcl_cartography_table
|
||||||
|
author = PrairieWind
|
||||||
|
description = Adds the cartography table villager workstation to MineClone 2/5. Used to copy and create maps.
|
||||||
|
depends = mcl_core
|
Binary file not shown.
After Width: | Height: | Size: 610 B |
Binary file not shown.
After Width: | Height: | Size: 680 B |
Binary file not shown.
After Width: | Height: | Size: 466 B |
Binary file not shown.
After Width: | Height: | Size: 499 B |
Loading…
Reference in a new issue