diff --git a/description.txt b/description.txt index 80bb743..d6bb1fa 100644 --- a/description.txt +++ b/description.txt @@ -1 +1,3 @@ Mybricks lets you turn many blocks into different style bricks. + +Licence - WTFPL diff --git a/machine.lua b/machine.lua index e63e25f..664b7b3 100644 --- a/machine.lua +++ b/machine.lua @@ -263,42 +263,44 @@ local mat_tab = { {"default:leaves", "default_leaves"}, {"default:jungleleaves", "default_jungleleaves"}, {"default:pine_needles", "default_pine_needles"}, - {"default:brick", "default_brick"}, - {"default:bronzeblock", "default_bronze_block"}, - {"default:cactus", "default_cactus"}, + --{"default:brick", "default_brick"}, + --{"default:bronzeblock", "default_bronze_block"}, + --{"default:cactus", "default_cactus"}, {"default:clay", "default_clay"}, {"default:coalblock", "default_coal_block"}, {"default:cobble", "default_cobble"}, - {"default:copperblock", "default_copper_block"}, + --{"default:copperblock", "default_copper_block"}, {"default:desert_cobble", "default_desert_cobble"}, - {"default:desert_sand", "default_desert_sand"}, + --{"default:desert_sand", "default_desert_sand"}, {"default:desert_stone", "default_desert_stone"}, - {"default:diamondblock", "default_diamond_block"}, + --{"default:diamondblock", "default_diamond_block"}, {"default:dirt", "default_dirt"}, {"default:glass", "default_glass"}, - {"default:goldblock", "default_gold_block"}, + --{"default:goldblock", "default_gold_block"}, {"default:gravel", "default_gravel"}, - {"default:ice", "default_ice"}, - {"default:jungletree", "default_jungletree"}, + --{"default:ice", "default_ice"}, + --{"default:jungletree", "default_jungletree"}, {"default:junglewood", "default_junglewood"}, - {"default:lava_source", "default_lava"}, - {"default:mese", "default_mese"}, + --{"default:lava_source", "default_lava"}, + --{"default:mese", "default_mese"}, {"default:mossycobble", "default_mossycobble"}, {"default:obsidian", "default_obsidian"}, - {"default:obsidian_glass", "default_obsidian_glass"}, - {"default:obsidianbrick", "default_obsidian_brick"}, - {"default:pinetree", "default_pinetree"}, - {"default:pinewood", "default_pinewood"}, - {"default:sand", "default_sand"}, + --{"default:obsidian_glass", "default_obsidian_glass"}, + --{"default:obsidianbrick", "default_obsidian_brick"}, + --{"default:pine_tree", "default_pine_tree"}, + {"default:pine_wood", "default_pine_wood"}, + {"default:aspen_wood", "default_aspen_wood"}, + {"default:acacia_wood", "default_acacia_wood"}, + --{"default:sand", "default_sand"}, {"default:sandstone", "default_sandstone"}, - {"default:sandstonebrick", "default_sandstone_brick"}, - {"default:snowblock", "default_snow"}, - {"default:steelblock", "default_steel_block"}, - {"default:stone", "default_stone"}, - {"default:stonebrick", "default_stone_brick"}, - {"default:tree", "default_tree"}, - {"default:water_source", "default_water"}, - {"default:wood", "default_wood"}, + --{"default:sandstonebrick", "default_sandstone_brick"}, + --{"default:snowblock", "default_snow"}, + --{"default:steelblock", "default_steel_block"}, + {"default:stone", "default_stone"}, + --{"default:stonebrick", "default_stone_brick"}, + --{"default:tree", "default_tree"}, + --{"default:water_source", "default_water"}, + {"default:wood", "default_wood"}, {"farming:straw", "farming_straw"}, {"wool:black", "wool_black"}, {"wool:blue", "wool_blue"}, diff --git a/mod.conf b/mod.conf index 4176a0e..bcd4e8e 100644 --- a/mod.conf +++ b/mod.conf @@ -1 +1 @@ -name = bybricks +name = mybricks diff --git a/register.lua b/register.lua index 79d64e1..0e0f256 100644 --- a/register.lua +++ b/register.lua @@ -78,7 +78,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_wood", "Wood", @@ -88,17 +88,37 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item - "default_pinewood", + "default_pine_wood", "Pine Wood", - "default_pinewood.png", + "default_pine_wood.png", {cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}, - "default:pinewood", + "default:pine_wood", "normal" ) --]] ---[[ +---[[ +mybricks.register_block(--material, description, image, groups, craft item + "default_aspen_wood", + "Aspen Wood", + "default_aspen_wood.png", + {cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}, + "default:aspen_wood", + "normal" + ) +--]] +---[[ +mybricks.register_block(--material, description, image, groups, craft item + "default_acacia_wood", + "Acacia Wood", + "default_acacia_wood.png", + {cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}, + "default:acacia_wood", + "normal" + ) +--]] +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_dirt", "Dirt", @@ -128,7 +148,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_coal_block", "Coal Block", @@ -168,7 +188,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_glass", "Glass", @@ -188,7 +208,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_gravel", "Gravel", @@ -218,7 +238,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_junglewood", "Jungle Wood", @@ -258,7 +278,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ---[[ +---[[ mybricks.register_block(--material, description, image, groups, craft item "default_obsidian", "Obsidian", @@ -290,11 +310,31 @@ mybricks.register_block(--material, description, image, groups, craft item --]] --[[ mybricks.register_block(--material, description, image, groups, craft item - "default_pinetree", + "default_pine_tree", "Pine Tree", - "default_pinetree.png", + "default_pine_tree.png", {cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}, - "default:pinetree", + "default:pine_tree", + "normal" + ) +--]] +--[[ +mybricks.register_block(--material, description, image, groups, craft item + "default_aspen_tree", + "Aspen Tree", + "default_aspen_tree.png", + {cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}, + "default:aspen_tree", + "normal" + ) +--]] +--[[ +mybricks.register_block(--material, description, image, groups, craft item + "default_acacia_tree", + "Acacia Tree", + "default_acacia_tree.png", + {cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}, + "default:acacia_tree", "normal" ) --]] @@ -308,7 +348,7 @@ mybricks.register_block(--material, description, image, groups, craft item "normal" ) --]] ----[[ +--[[ mybricks.register_block(--material, description, image, groups, craft item "default_snow", "Snow",