Changed Licence

This commit is contained in:
DonBatman 2016-03-23 14:17:02 -07:00
parent 3f5eb08156
commit b8b422165f
5 changed files with 306 additions and 172 deletions

View File

@ -3,7 +3,7 @@ mymillwork
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.

View 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
View 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.

View File

@ -365,22 +365,17 @@ then
material = "default_sandstone"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:desert_sand" then
material = "default_desert_sand"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:clay" then
material = "default_clay"
make_ok = "1"
end
if ingotstack:get_name()=="wool:white" then
material = "millwork_white"
make_ok = "1"
end
if ingotstack:get_name()=="default:desert_stone" then
material = "default_desert_stone"
make_ok = "1"
@ -395,22 +390,18 @@ then
material = "default_stone"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:cactus" then
material = "default_cactus"
make_ok = "1"
end
if ingotstack:get_name()=="wool:white" then
material = "millwork_white"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:sand" then
material = "default_sand"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:wood" then
material = "default_wood"
make_ok = "1"
@ -420,62 +411,66 @@ then
material = "default_pinewood"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:dirt" then
material = "default_dirt"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:brick" then
material = "default_brick"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:bronzeblock" then
material = "default_bronze_block"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:coalblock" then
material = "default_coal_block"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:copperblock" then
material = "default_copper_block"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:desert_cobble" then
material = "default_desert_cobble"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:diamondblock" then
material = "default_diamond_block"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:glass" then
material = "default_glass"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:goldblock" then
material = "default_gold_block"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:gravel" then
material = "default_gravel"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:ice" then
material = "default_ice"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:jungletree" then
material = "default_jungletree"
make_ok = "1"
@ -485,17 +480,18 @@ then
material = "default_junglewood"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:lava_source" then
material = "default_lava"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:mese" then
material = "default_mese"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:mossycobble" then
material = "default_mossycobble"
make_ok = "1"
@ -505,12 +501,12 @@ then
material = "default_obsidian"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:obsidian_glass" then
material = "default_obsidian_glass"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:obsidianbrick" then
material = "default_obsidian_brick"
make_ok = "1"
@ -521,21 +517,22 @@ then
make_ok = "1"
end
if ingotstack:get_name()=="default:sanddstonebrick" then
if ingotstack:get_name()=="default:sandstonebrick" then
material = "default_sandstone_brick"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:snowblock" then
material = "default_snow"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="default:steelblock" then
material = "default_steel_block"
make_ok = "1"
end
--]]
if ingotstack:get_name()=="default:stonebrick" then
material = "default_stone_brick"
make_ok = "1"
@ -545,20 +542,21 @@ then
material = "default_tree"
make_ok = "1"
end
--[[
if ingotstack:get_name()=="default:water_source" then
material = "default_water"
make_ok = "1"
end
--]]
--[[
if ingotstack:get_name()=="farming:straw" then
material = "farming_straw"
make_ok = "1"
end
--]]
----------------------------------------------------------------------------
--wool
--[[
if ingotstack:get_name()=="wool:white" then
material = "wool_white"
make_ok = "1"
@ -619,6 +617,7 @@ then
material = "wool_yellow"
make_ok = "1"
end
--]]
----------------------------------------------------------------------
if make_ok == "1" then
local give = {}

View File

@ -1,427 +1,538 @@
mymillwork.register_all(--material, description, image, groups, craft item
---[[
mymillwork.register_all(
"default_sandstone",
"Sandstone",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_desert_sand",
"Desert Sand",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_clay",
"Clay",
"default_clay.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{crumbly=3,not_in_creative_inventory=1},
"default:clay",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_cobble",
"Cobble",
"default_cobble.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{cracky = 3, not_in_creative_inventory=1},
"default:cobble",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_stone",
"Stone",
"default_stone.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{cracky = 3,not_in_creative_inventory=1},
"default:stone",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_cactus",
"Cactus",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_sand",
"Sand",
"default_sand.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{crumbly=3,not_in_creative_inventory=1},
"default:sand",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_desert_stone",
"Desert Stone",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_wood",
"Wood",
"default_wood.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{choppy = 3,not_in_creative_inventory=1},
"default:wood",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_pine_wood",
"Pine Wood",
"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",
"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",
"Dirt",
"default_dirt.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{crumbly = 3,not_in_creative_inventory=1},
"default:dirt",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_brick",
"Brick",
"default_brick.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{cracky = 2,not_in_creative_inventory=1},
"default:brick",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_bronze_block",
"Bronze Block",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_coal_block",
"Coal Block",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_copper_block",
"Copper Block",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_desert_cobble",
"Desert Cobble",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_diamond_block",
"Diamond Block",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_glass",
"Glass",
"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",
"glasslike"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_gold_block",
"Gold Block",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_gravel",
"Gravel",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_ice",
"Ice",
"default_ice.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{cracky = 3, not_in_creative_inventory=1},
"default:ice",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_jungletree",
"Jungle Tree",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_junglewood",
"Jungle Wood",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_lava",
"Lava",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_mese",
"Mese",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_mossycobble",
"Mossy Cobble",
"default_mossycobble.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{cracky = 3,not_in_creative_inventory=1},
"default:mossycobble",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_obsidian",
"Obsidian",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item, drawtype
--]]
--[[
mymillwork.register_all(
"default_obsidian_glass",
"Obsidian Glass",
"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",
"glasslike"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_obsidian_brick",
"Obsidian Brick",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
"default_pine_tree",
--]]
--[[
mymillwork.register_all(
"default_pinetree",
"Pine Tree",
"default_pine_tree.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
"default:pine_tree",
"default_pinetree.png",
{choppy=2,oddly_breakable_by_hand=2,flammable=2,not_in_creative_inventory=1},
"default:pinetree",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_sandstone_brick",
"Sandstone Brick",
"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",
"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",
"Snow",
"default_snow.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{crumbly = 3, not_in_creative_inventory=1},
"default:snowblock",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_steel_block",
"Steel Block",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
---[[
mymillwork.register_all(
"default_stone_brick",
"Stone Brick",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_tree",
"Tree",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"default_water",
"Water",
"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",
"normal"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"farming_straw",
"Straw",
"farming_straw.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
{snappy = 3,not_in_creative_inventory=1},
"farming:straw",
"normal"
)
--]]
-----------------------------------------------------------------------------------------------------
--wool
mymillwork.register_all(--material, description, image, groups, craft item
--[[
mymillwork.register_all(
"wool_white",
"White Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_black",
"Black Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_blue",
"Blue Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_brown",
"Brown Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_cyan",
"Cyan Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_dark_green",
"Dark Green Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_dark_grey",
"Dark Grey Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_green",
"Green Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_grey",
"Grey Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_magenta",
"Magenta Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_orange",
"Orange Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_pink",
"Pink Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_red",
"Red Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_violet",
"Violet Wool",
"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"
)
mymillwork.register_all(--material, description, image, groups, craft item
--]]
--[[
mymillwork.register_all(
"wool_yellow",
"Yellow Wool",
"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"
)
--]]