Changed Licence
This commit is contained in:
parent
3f5eb08156
commit
b8b422165f
@ -3,7 +3,7 @@ mymillwork
|
|||||||
|
|
||||||
Crown Mold, Baseboards, Columns and more To minetest
|
Crown Mold, Baseboards, Columns and more To minetest
|
||||||
|
|
||||||
Licence - WTFPL
|
Licence - DWYWPL
|
||||||
|
|
||||||
If you want to add or remove a texture simply edit the table at the top of millwork.lua file.
|
If you want to add or remove a texture simply edit the table at the top of millwork.lua file.
|
||||||
|
|
||||||
|
@ -1 +1,12 @@
|
|||||||
Crown molding and baseboards of different styles.
|
Crown molding, columns and baseboards of different styles.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
If you want to add or remove a texture simply edit the table at the top of millwork.lua file.
|
||||||
|
|
||||||
|
Right now I have these textures: White, Sandstone, Desert Sand and Clay. The others are commented out.
|
||||||
|
|
||||||
|
Each texture has 28 nodes so careful that you don't add too many textures.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
13
licence.txt
Normal file
13
licence.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
DO WHAT YOU WANT TO PUBLIC LICENSE
|
||||||
|
or abbreviated DWYWPL
|
||||||
|
|
||||||
|
December 2nd 2015
|
||||||
|
License Copyright (C) 2015 Michael Tomaino (PlatinumArts@gmail.com)
|
||||||
|
www.sandboxgamemaker.com/DWYWPL/
|
||||||
|
|
||||||
|
DO WHAT YOU WANT TO PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
1. You are allowed to do whatever you want to with what content is using this license.
|
||||||
|
2. This content is provided 'as-is', without any express or implied warranty. In no event
|
||||||
|
will the authors be held liable for any damages arising from the use of this content.
|
79
machines.lua
79
machines.lua
@ -365,22 +365,17 @@ then
|
|||||||
material = "default_sandstone"
|
material = "default_sandstone"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:desert_sand" then
|
if ingotstack:get_name()=="default:desert_sand" then
|
||||||
material = "default_desert_sand"
|
material = "default_desert_sand"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:clay" then
|
if ingotstack:get_name()=="default:clay" then
|
||||||
material = "default_clay"
|
material = "default_clay"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
|
||||||
if ingotstack:get_name()=="wool:white" then
|
|
||||||
material = "millwork_white"
|
|
||||||
make_ok = "1"
|
|
||||||
end
|
|
||||||
|
|
||||||
if ingotstack:get_name()=="default:desert_stone" then
|
if ingotstack:get_name()=="default:desert_stone" then
|
||||||
material = "default_desert_stone"
|
material = "default_desert_stone"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -395,22 +390,18 @@ then
|
|||||||
material = "default_stone"
|
material = "default_stone"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:cactus" then
|
if ingotstack:get_name()=="default:cactus" then
|
||||||
material = "default_cactus"
|
material = "default_cactus"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="wool:white" then
|
--[[
|
||||||
material = "millwork_white"
|
|
||||||
make_ok = "1"
|
|
||||||
end
|
|
||||||
|
|
||||||
if ingotstack:get_name()=="default:sand" then
|
if ingotstack:get_name()=="default:sand" then
|
||||||
material = "default_sand"
|
material = "default_sand"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:wood" then
|
if ingotstack:get_name()=="default:wood" then
|
||||||
material = "default_wood"
|
material = "default_wood"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -420,62 +411,66 @@ then
|
|||||||
material = "default_pinewood"
|
material = "default_pinewood"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:dirt" then
|
if ingotstack:get_name()=="default:dirt" then
|
||||||
material = "default_dirt"
|
material = "default_dirt"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:brick" then
|
if ingotstack:get_name()=="default:brick" then
|
||||||
material = "default_brick"
|
material = "default_brick"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:bronzeblock" then
|
if ingotstack:get_name()=="default:bronzeblock" then
|
||||||
material = "default_bronze_block"
|
material = "default_bronze_block"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:coalblock" then
|
if ingotstack:get_name()=="default:coalblock" then
|
||||||
material = "default_coal_block"
|
material = "default_coal_block"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:copperblock" then
|
if ingotstack:get_name()=="default:copperblock" then
|
||||||
material = "default_copper_block"
|
material = "default_copper_block"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:desert_cobble" then
|
if ingotstack:get_name()=="default:desert_cobble" then
|
||||||
material = "default_desert_cobble"
|
material = "default_desert_cobble"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:diamondblock" then
|
if ingotstack:get_name()=="default:diamondblock" then
|
||||||
material = "default_diamond_block"
|
material = "default_diamond_block"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:glass" then
|
if ingotstack:get_name()=="default:glass" then
|
||||||
material = "default_glass"
|
material = "default_glass"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:goldblock" then
|
if ingotstack:get_name()=="default:goldblock" then
|
||||||
material = "default_gold_block"
|
material = "default_gold_block"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:gravel" then
|
if ingotstack:get_name()=="default:gravel" then
|
||||||
material = "default_gravel"
|
material = "default_gravel"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:ice" then
|
if ingotstack:get_name()=="default:ice" then
|
||||||
material = "default_ice"
|
material = "default_ice"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:jungletree" then
|
if ingotstack:get_name()=="default:jungletree" then
|
||||||
material = "default_jungletree"
|
material = "default_jungletree"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -485,17 +480,18 @@ then
|
|||||||
material = "default_junglewood"
|
material = "default_junglewood"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:lava_source" then
|
if ingotstack:get_name()=="default:lava_source" then
|
||||||
material = "default_lava"
|
material = "default_lava"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:mese" then
|
if ingotstack:get_name()=="default:mese" then
|
||||||
material = "default_mese"
|
material = "default_mese"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:mossycobble" then
|
if ingotstack:get_name()=="default:mossycobble" then
|
||||||
material = "default_mossycobble"
|
material = "default_mossycobble"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -505,12 +501,12 @@ then
|
|||||||
material = "default_obsidian"
|
material = "default_obsidian"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:obsidian_glass" then
|
if ingotstack:get_name()=="default:obsidian_glass" then
|
||||||
material = "default_obsidian_glass"
|
material = "default_obsidian_glass"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:obsidianbrick" then
|
if ingotstack:get_name()=="default:obsidianbrick" then
|
||||||
material = "default_obsidian_brick"
|
material = "default_obsidian_brick"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -521,21 +517,22 @@ then
|
|||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
|
||||||
if ingotstack:get_name()=="default:sanddstonebrick" then
|
if ingotstack:get_name()=="default:sandstonebrick" then
|
||||||
material = "default_sandstone_brick"
|
material = "default_sandstone_brick"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:snowblock" then
|
if ingotstack:get_name()=="default:snowblock" then
|
||||||
material = "default_snow"
|
material = "default_snow"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:steelblock" then
|
if ingotstack:get_name()=="default:steelblock" then
|
||||||
material = "default_steel_block"
|
material = "default_steel_block"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
if ingotstack:get_name()=="default:stonebrick" then
|
if ingotstack:get_name()=="default:stonebrick" then
|
||||||
material = "default_stone_brick"
|
material = "default_stone_brick"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -545,20 +542,21 @@ then
|
|||||||
material = "default_tree"
|
material = "default_tree"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="default:water_source" then
|
if ingotstack:get_name()=="default:water_source" then
|
||||||
material = "default_water"
|
material = "default_water"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="farming:straw" then
|
if ingotstack:get_name()=="farming:straw" then
|
||||||
material = "farming_straw"
|
material = "farming_straw"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
--wool
|
--wool
|
||||||
|
--[[
|
||||||
if ingotstack:get_name()=="wool:white" then
|
if ingotstack:get_name()=="wool:white" then
|
||||||
material = "wool_white"
|
material = "wool_white"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
@ -619,6 +617,7 @@ then
|
|||||||
material = "wool_yellow"
|
material = "wool_yellow"
|
||||||
make_ok = "1"
|
make_ok = "1"
|
||||||
end
|
end
|
||||||
|
--]]
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
if make_ok == "1" then
|
if make_ok == "1" then
|
||||||
local give = {}
|
local give = {}
|
||||||
|
371
register.lua
371
register.lua
@ -1,427 +1,538 @@
|
|||||||
|
---[[
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
mymillwork.register_all(
|
||||||
"default_sandstone",
|
"default_sandstone",
|
||||||
"Sandstone",
|
"Sandstone",
|
||||||
"default_sandstone.png",
|
"default_sandstone.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1, not_in_creative_inventory=1}",
|
{crumbly=2, cracky = 3, not_in_creative_inventory=1},
|
||||||
"default:sandstone",
|
"default:sandstone",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
|
--]]
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_desert_sand",
|
"default_desert_sand",
|
||||||
"Desert Sand",
|
"Desert Sand",
|
||||||
"default_desert_sand.png",
|
"default_desert_sand.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{crumbly=3,not_in_creative_inventory=1},
|
||||||
"default:desert_sand",
|
"default:desert_sand",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_clay",
|
"default_clay",
|
||||||
"Clay",
|
"Clay",
|
||||||
"default_clay.png",
|
"default_clay.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{crumbly=3,not_in_creative_inventory=1},
|
||||||
"default:clay",
|
"default:clay",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_cobble",
|
"default_cobble",
|
||||||
"Cobble",
|
"Cobble",
|
||||||
"default_cobble.png",
|
"default_cobble.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3, not_in_creative_inventory=1},
|
||||||
"default:cobble",
|
"default:cobble",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_stone",
|
"default_stone",
|
||||||
"Stone",
|
"Stone",
|
||||||
"default_stone.png",
|
"default_stone.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3,not_in_creative_inventory=1},
|
||||||
"default:stone",
|
"default:stone",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_cactus",
|
"default_cactus",
|
||||||
"Cactus",
|
"Cactus",
|
||||||
"default_cactus_side.png",
|
"default_cactus_side.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy = 3,not_in_creative_inventory=1},
|
||||||
"default:cactus",
|
"default:cactus",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_sand",
|
"default_sand",
|
||||||
"Sand",
|
"Sand",
|
||||||
"default_sand.png",
|
"default_sand.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{crumbly=3,not_in_creative_inventory=1},
|
||||||
"default:sand",
|
"default:sand",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_desert_stone",
|
"default_desert_stone",
|
||||||
"Desert Stone",
|
"Desert Stone",
|
||||||
"default_desert_stone.png",
|
"default_desert_stone.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3,not_in_creative_inventory=1},
|
||||||
"default:desert_stone",
|
"default:desert_stone",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_wood",
|
"default_wood",
|
||||||
"Wood",
|
"Wood",
|
||||||
"default_wood.png",
|
"default_wood.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy = 3,not_in_creative_inventory=1},
|
||||||
"default:wood",
|
"default:wood",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_pine_wood",
|
"default_pine_wood",
|
||||||
"Pine Wood",
|
"Pine Wood",
|
||||||
"default_pine_wood.png",
|
"default_pine_wood.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy = 3,not_in_creative_inventory=1},
|
||||||
"default:pine_wood",
|
"default:pine_wood",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
|
"default_acacia_wood",
|
||||||
|
"Acacia Wood",
|
||||||
|
"default_acacia_wood.png",
|
||||||
|
{choppy = 3,not_in_creative_inventory=1},
|
||||||
|
"default:pine_acacia",
|
||||||
|
"normal"
|
||||||
|
)
|
||||||
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
|
"default_aspen_wood",
|
||||||
|
"Aspen Wood",
|
||||||
|
"default_aspen_wood.png",
|
||||||
|
{choppy = 3,not_in_creative_inventory=1},
|
||||||
|
"default:pine_aspen",
|
||||||
|
"normal"
|
||||||
|
)
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_dirt",
|
"default_dirt",
|
||||||
"Dirt",
|
"Dirt",
|
||||||
"default_dirt.png",
|
"default_dirt.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{crumbly = 3,not_in_creative_inventory=1},
|
||||||
"default:dirt",
|
"default:dirt",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_brick",
|
"default_brick",
|
||||||
"Brick",
|
"Brick",
|
||||||
"default_brick.png",
|
"default_brick.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 2,not_in_creative_inventory=1},
|
||||||
"default:brick",
|
"default:brick",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_bronze_block",
|
"default_bronze_block",
|
||||||
"Bronze Block",
|
"Bronze Block",
|
||||||
"default_bronze_block.png",
|
"default_bronze_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1,not_in_creative_inventory=1},
|
||||||
"default:bronzeblock",
|
"default:bronzeblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_coal_block",
|
"default_coal_block",
|
||||||
"Coal Block",
|
"Coal Block",
|
||||||
"default_coal_block.png",
|
"default_coal_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3,not_in_creative_inventory=1},
|
||||||
"default:coalblock",
|
"default:coalblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_copper_block",
|
"default_copper_block",
|
||||||
"Copper Block",
|
"Copper Block",
|
||||||
"default_copper_block.png",
|
"default_copper_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1,not_in_creative_inventory=1},
|
||||||
"default:copperblock",
|
"default:copperblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_desert_cobble",
|
"default_desert_cobble",
|
||||||
"Desert Cobble",
|
"Desert Cobble",
|
||||||
"default_desert_cobble.png",
|
"default_desert_cobble.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3,not_in_creative_inventory=1},
|
||||||
"default:desert_cobble",
|
"default:desert_cobble",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_diamond_block",
|
"default_diamond_block",
|
||||||
"Diamond Block",
|
"Diamond Block",
|
||||||
"default_diamond_block.png",
|
"default_diamond_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1, level=3,not_in_creative_inventory=1},
|
||||||
"default:diamondblock",
|
"default:diamondblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_glass",
|
"default_glass",
|
||||||
"Glass",
|
"Glass",
|
||||||
"default_glass.png",
|
"default_glass.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3, oddly_breakable_by_hand = 3,not_in_creative_inventory=1},
|
||||||
"default:glass",
|
"default:glass",
|
||||||
"glasslike"
|
"glasslike"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_gold_block",
|
"default_gold_block",
|
||||||
"Gold Block",
|
"Gold Block",
|
||||||
"default_gold_block.png",
|
"default_gold_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1,not_in_creative_inventory=1},
|
||||||
"default:goldblock",
|
"default:goldblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_gravel",
|
"default_gravel",
|
||||||
"Gravel",
|
"Gravel",
|
||||||
"default_gravel.png",
|
"default_gravel.png",
|
||||||
"{cracky = 1, falling_node=1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{crumbly = 2, falling_node=1, not_in_creative_inventory=1},
|
||||||
"default:gravel",
|
"default:gravel",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_ice",
|
"default_ice",
|
||||||
"Ice",
|
"Ice",
|
||||||
"default_ice.png",
|
"default_ice.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3, not_in_creative_inventory=1},
|
||||||
"default:ice",
|
"default:ice",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_jungletree",
|
"default_jungletree",
|
||||||
"Jungle Tree",
|
"Jungle Tree",
|
||||||
"default_jungletree.png",
|
"default_jungletree.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1},
|
||||||
"default:jungletree",
|
"default:jungletree",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_junglewood",
|
"default_junglewood",
|
||||||
"Jungle Wood",
|
"Jungle Wood",
|
||||||
"default_junglewood.png",
|
"default_junglewood.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy=2,oddly_breakable_by_hand=2,flammable=2,not_in_creative_inventory=1},
|
||||||
"default:junglewood",
|
"default:junglewood",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_lava",
|
"default_lava",
|
||||||
"Lava",
|
"Lava",
|
||||||
"default_lava.png",
|
"default_lava.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1},
|
||||||
"default:lava_source",
|
"default:lava_source",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_mese",
|
"default_mese",
|
||||||
"Mese",
|
"Mese",
|
||||||
"default_mese_block.png",
|
"default_mese_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1,not_in_creative_inventory=1},
|
||||||
"default:mese",
|
"default:mese",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_mossycobble",
|
"default_mossycobble",
|
||||||
"Mossy Cobble",
|
"Mossy Cobble",
|
||||||
"default_mossycobble.png",
|
"default_mossycobble.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3,not_in_creative_inventory=1},
|
||||||
"default:mossycobble",
|
"default:mossycobble",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_obsidian",
|
"default_obsidian",
|
||||||
"Obsidian",
|
"Obsidian",
|
||||||
"default_obsidian.png",
|
"default_obsidian.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1, level = 2,not_in_creative_inventory=1},
|
||||||
"default:obsidian",
|
"default:obsidian",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item, drawtype
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_obsidian_glass",
|
"default_obsidian_glass",
|
||||||
"Obsidian Glass",
|
"Obsidian Glass",
|
||||||
"default_obsidian_glass.png",
|
"default_obsidian_glass.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3, oddly_breakable_by_hand = 3,not_in_creative_inventory=1},
|
||||||
"default:obsidian_glass",
|
"default:obsidian_glass",
|
||||||
"glasslike"
|
"glasslike"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_obsidian_brick",
|
"default_obsidian_brick",
|
||||||
"Obsidian Brick",
|
"Obsidian Brick",
|
||||||
"default_obsidian_brick.png",
|
"default_obsidian_brick.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1, level = 2,not_in_creative_inventory=1},
|
||||||
"default:obsidianbrick",
|
"default:obsidianbrick",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
"default_pine_tree",
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
|
"default_pinetree",
|
||||||
"Pine Tree",
|
"Pine Tree",
|
||||||
"default_pine_tree.png",
|
"default_pinetree.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy=2,oddly_breakable_by_hand=2,flammable=2,not_in_creative_inventory=1},
|
||||||
"default:pine_tree",
|
"default:pinetree",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_sandstone_brick",
|
"default_sandstone_brick",
|
||||||
"Sandstone Brick",
|
"Sandstone Brick",
|
||||||
"default_sandstone_brick.png",
|
"default_sandstone_brick.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 2,not_in_creative_inventory=1},
|
||||||
"default:sandstonebrick",
|
"default:sandstonebrick",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
|
"default_desert_stone_brick",
|
||||||
|
"Desert Stone Brick",
|
||||||
|
"default_desert_stone_brick.png",
|
||||||
|
{cracky = 2,not_in_creative_inventory=1},
|
||||||
|
"default:desert_stonebrick",
|
||||||
|
"normal"
|
||||||
|
)
|
||||||
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_snow",
|
"default_snow",
|
||||||
"Snow",
|
"Snow",
|
||||||
"default_snow.png",
|
"default_snow.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{crumbly = 3, not_in_creative_inventory=1},
|
||||||
"default:snowblock",
|
"default:snowblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_steel_block",
|
"default_steel_block",
|
||||||
"Steel Block",
|
"Steel Block",
|
||||||
"default_steel_block.png",
|
"default_steel_block.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 1, level = 2,not_in_creative_inventory=1},
|
||||||
"default:steelblock",
|
"default:steelblock",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
---[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_stone_brick",
|
"default_stone_brick",
|
||||||
"Stone Brick",
|
"Stone Brick",
|
||||||
"default_stone_brick.png",
|
"default_stone_brick.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 2,not_in_creative_inventory=1},
|
||||||
"default:stonebrick",
|
"default:stonebrick",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_tree",
|
"default_tree",
|
||||||
"Tree",
|
"Tree",
|
||||||
"default_tree.png",
|
"default_tree.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1},
|
||||||
"default:tree",
|
"default:tree",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"default_water",
|
"default_water",
|
||||||
"Water",
|
"Water",
|
||||||
"default_water.png",
|
"default_water.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{cracky = 3,not_in_creative_inventory=1},
|
||||||
"default:water_source",
|
"default:water_source",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"farming_straw",
|
"farming_straw",
|
||||||
"Straw",
|
"Straw",
|
||||||
"farming_straw.png",
|
"farming_straw.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy = 3,not_in_creative_inventory=1},
|
||||||
"farming:straw",
|
"farming:straw",
|
||||||
"normal"
|
"normal"
|
||||||
)
|
)
|
||||||
|
--]]
|
||||||
-----------------------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------------------
|
||||||
--wool
|
--wool
|
||||||
|
|
||||||
|
--[[
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
mymillwork.register_all(
|
||||||
"wool_white",
|
"wool_white",
|
||||||
"White Wool",
|
"White Wool",
|
||||||
"wool_white.png",
|
"wool_white.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_white"
|
"wool_white"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_black",
|
"wool_black",
|
||||||
"Black Wool",
|
"Black Wool",
|
||||||
"wool_black.png",
|
"wool_black.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_black"
|
"wool_black"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_blue",
|
"wool_blue",
|
||||||
"Blue Wool",
|
"Blue Wool",
|
||||||
"wool_blue.png",
|
"wool_blue.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_blue"
|
"wool_blue"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_brown",
|
"wool_brown",
|
||||||
"Brown Wool",
|
"Brown Wool",
|
||||||
"wool_brown.png",
|
"wool_brown.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_brown"
|
"wool_brown"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_cyan",
|
"wool_cyan",
|
||||||
"Cyan Wool",
|
"Cyan Wool",
|
||||||
"wool_cyan.png",
|
"wool_cyan.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_cyan"
|
"wool_cyan"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_dark_green",
|
"wool_dark_green",
|
||||||
"Dark Green Wool",
|
"Dark Green Wool",
|
||||||
"wool_dark_green.png",
|
"wool_dark_green.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_dark_green"
|
"wool_dark_green"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_dark_grey",
|
"wool_dark_grey",
|
||||||
"Dark Grey Wool",
|
"Dark Grey Wool",
|
||||||
"wool_dark_grey.png",
|
"wool_dark_grey.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_dark_grey"
|
"wool_dark_grey"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_green",
|
"wool_green",
|
||||||
"Green Wool",
|
"Green Wool",
|
||||||
"wool_green.png",
|
"wool_green.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_green"
|
"wool_green"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_grey",
|
"wool_grey",
|
||||||
"Grey Wool",
|
"Grey Wool",
|
||||||
"wool_grey.png",
|
"wool_grey.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_grey"
|
"wool_grey"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_magenta",
|
"wool_magenta",
|
||||||
"Magenta Wool",
|
"Magenta Wool",
|
||||||
"wool_magenta.png",
|
"wool_magenta.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_magenta"
|
"wool_magenta"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_orange",
|
"wool_orange",
|
||||||
"Orange Wool",
|
"Orange Wool",
|
||||||
"wool_orange.png",
|
"wool_orange.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_orange"
|
"wool_orange"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_pink",
|
"wool_pink",
|
||||||
"Pink Wool",
|
"Pink Wool",
|
||||||
"wool_pink.png",
|
"wool_pink.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_pink"
|
"wool_pink"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_red",
|
"wool_red",
|
||||||
"Red Wool",
|
"Red Wool",
|
||||||
"wool_red.png",
|
"wool_red.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_red"
|
"wool_red"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_violet",
|
"wool_violet",
|
||||||
"Violet Wool",
|
"Violet Wool",
|
||||||
"wool_violet.png",
|
"wool_violet.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_violet"
|
"wool_violet"
|
||||||
)
|
)
|
||||||
mymillwork.register_all(--material, description, image, groups, craft item
|
--]]
|
||||||
|
--[[
|
||||||
|
mymillwork.register_all(
|
||||||
"wool_yellow",
|
"wool_yellow",
|
||||||
"Yellow Wool",
|
"Yellow Wool",
|
||||||
"wool_yellow.png",
|
"wool_yellow.png",
|
||||||
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
|
{snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3,not_in_creative_inventory=1},
|
||||||
"wool_yellow"
|
"wool_yellow"
|
||||||
)
|
)
|
||||||
|
--]]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user