Upload files to "mcl_more_blocks"
This commit is contained in:
parent
a129785606
commit
a9015a04a0
Binary file not shown.
After Width: | Height: | Size: 258 B |
|
@ -0,0 +1,15 @@
|
|||
local modname = minetest.get_current_modname()
|
||||
local modpath = minetest.get_modpath(modname)
|
||||
local S = minetest.get_translator(modname)
|
||||
|
||||
minetest.register_node("mcl_more_blocks:brick_prism_block", {
|
||||
description = S("Brick Prism Block"),
|
||||
_doc_items_longdesc = S("Alternative brick variant for building."),
|
||||
tiles = {"brick_prism.png"},
|
||||
is_ground_content = false,
|
||||
stack_max = 64,
|
||||
groups = {pickaxey=1, building_block=1, material_stone=1},
|
||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
_mcl_blast_resistance = 6,
|
||||
_mcl_hardness = 2,
|
||||
})
|
|
@ -0,0 +1,6 @@
|
|||
name = mcl_more_blocks
|
||||
depends = mcl_core, mcl_sounds, mcl_tools,
|
||||
description = Adds some decorative blocks to Mineclone 2
|
||||
release = 0.1
|
||||
author = SmokeyDope
|
||||
title = MineClone2 More Blocks
|
Loading…
Reference in New Issue