Upload files to "mcl_more_blocks"

This commit is contained in:
SmokeyDope 2023-08-31 12:53:13 +00:00
parent a129785606
commit a9015a04a0
3 changed files with 21 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

15
mcl_more_blocks/init.lua Normal file
View File

@ -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,
})

6
mcl_more_blocks/mod.conf Normal file
View File

@ -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