Version MFF.
0
depends.txt
Normal file → Executable file
33
init.lua
Normal file → Executable file
@ -18,8 +18,8 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Bracket
|
-- Bracket
|
||||||
minetest.register_node("columnia:bracket", {
|
minetest.register_node("columnia:bracket", {
|
||||||
description = 'Bracket (Column)',
|
description = 'Bracket (Column)',
|
||||||
tiles = {"columnia_rusty.png",},
|
tiles = {"columnia_rusty.png",},
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
@ -40,7 +40,7 @@ minetest.register_node("columnia:bracket", {
|
|||||||
groups = {choppy=2, oddly_breakable_by_hand=2,},
|
groups = {choppy=2, oddly_breakable_by_hand=2,},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'columnia:bracket 4',
|
output = 'columnia:bracket 4',
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -70,7 +70,7 @@ minetest.register_node("columnia:lamp_ceiling", {
|
|||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
{-0.1875, 0.4375, -0.1875, 0.1875, 0.5, 0.1875},
|
{-0.1875, 0.4375, -0.1875, 0.1875, 0.5, 0.1875},
|
||||||
{-0.125, 0.375, -0.125, 0.125, 0.4375, 0.125},
|
{-0.125, 0.375, -0.125, 0.125, 0.4375, 0.125},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
@ -189,7 +189,7 @@ function columnia.register_column_top(subname, recipeitem, groups, images, descr
|
|||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
{-0.25, -0.5, -0.25, 0.25, 0.5, 0.25},
|
{-0.25, -0.5, -0.25, 0.25, 0.5, 0.25},
|
||||||
{-0.5, 0.25, -0.5, 0.5, 0.5, 0.5},
|
{-0.5, 0.25, -0.5, 0.5, 0.5, 0.5},
|
||||||
{-0.375, 0, -0.375, 0.375, 0.5, 0.375},
|
{-0.375, 0, -0.375, 0.375, 0.5, 0.375},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -643,6 +643,17 @@ columnia.register_column_ia("wood", "default:wood",
|
|||||||
"Wooden Column Linkdown",
|
"Wooden Column Linkdown",
|
||||||
default.node_sound_wood_defaults())
|
default.node_sound_wood_defaults())
|
||||||
|
|
||||||
|
columnia.register_column_ia("tree", "default:tree",
|
||||||
|
{choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
||||||
|
{"default_tree.png"},
|
||||||
|
"Tree Column",
|
||||||
|
"Tree Column Top",
|
||||||
|
"Tree Column Bottom",
|
||||||
|
"Tree Column Crosslink",
|
||||||
|
"Tree Column Link",
|
||||||
|
"Tree Column Linkdown",
|
||||||
|
default.node_sound_wood_defaults())
|
||||||
|
|
||||||
columnia.register_column_ia("junglewood", "default:junglewood",
|
columnia.register_column_ia("junglewood", "default:junglewood",
|
||||||
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
|
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
|
||||||
{"default_junglewood.png"},
|
{"default_junglewood.png"},
|
||||||
@ -665,6 +676,17 @@ columnia.register_column_ia("pinewood", "default:pine_wood",
|
|||||||
"Pineewood Column Linkdown",
|
"Pineewood Column Linkdown",
|
||||||
default.node_sound_wood_defaults())
|
default.node_sound_wood_defaults())
|
||||||
|
|
||||||
|
columnia.register_column_ia("acacia", "default:acacia_wood",
|
||||||
|
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
|
||||||
|
{"default_acacia_wood.png"},
|
||||||
|
"Acacia Column",
|
||||||
|
"Acacia Column Top",
|
||||||
|
"Acacia Column Bottom",
|
||||||
|
"Acacia Column Crosslink",
|
||||||
|
"Acacia Column Link",
|
||||||
|
"Acacia Column Linkdown",
|
||||||
|
default.node_sound_wood_defaults())
|
||||||
|
|
||||||
if core.get_modpath( 'moretrees' ) then
|
if core.get_modpath( 'moretrees' ) then
|
||||||
local morewood = {
|
local morewood = {
|
||||||
{ name='beech', description='Beech Tree' },
|
{ name='beech', description='Beech Tree' },
|
||||||
@ -675,7 +697,6 @@ if core.get_modpath( 'moretrees' ) then
|
|||||||
{ name='palm', description='Palm Tree', },
|
{ name='palm', description='Palm Tree', },
|
||||||
{ name='spruce', description='Spruce Tree' },
|
{ name='spruce', description='Spruce Tree' },
|
||||||
{ name='willow', description='Willow Tree' },
|
{ name='willow', description='Willow Tree' },
|
||||||
{ name='acacia', description='Acacia Tree' },
|
|
||||||
{ name='rubber_tree', description='Rubber Tree' },
|
{ name='rubber_tree', description='Rubber Tree' },
|
||||||
{ name='fir', description='Douglas Fir' }
|
{ name='fir', description='Douglas Fir' }
|
||||||
}
|
}
|
||||||
|
BIN
textures/columnia_blueprint.png
Normal file → Executable file
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 213 B |
BIN
textures/columnia_lamp.png
Normal file → Executable file
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 352 B |
BIN
textures/columnia_lamp_inv.png
Normal file → Executable file
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 189 B |
BIN
textures/columnia_rusty.png
Normal file → Executable file
Before Width: | Height: | Size: 534 B After Width: | Height: | Size: 664 B |
BIN
textures/columnia_rusty_block.png
Normal file → Executable file
Before Width: | Height: | Size: 609 B After Width: | Height: | Size: 801 B |