forked from MineClone5/MineClone5
Cartography Table
This commit is contained in:
parent
f57cbcb0a0
commit
80416fef71
|
@ -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.
|
|
@ -0,0 +1,27 @@
|
||||||
|
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 = { axey = 2, handy = 1, deco_block = 1, material_wood = 1, flammable = 1 },
|
||||||
|
_mcl_blast_resistance = 2.5,
|
||||||
|
_mcl_hardness = 2.5
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_cartography_table:cartography_table",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_core:paper", "mcl_core:paper", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
{ "group:wood", "group:wood", "" },
|
||||||
|
}
|
||||||
|
})
|
|
@ -0,0 +1,3 @@
|
||||||
|
name = mcl_cartography_table
|
||||||
|
author = PrairieWind
|
||||||
|
description = Adds the cartography table villager workstation to MineClone 2/5. Used to copy and create maps.
|
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 New Issue