Organize mods into modpacks for better overview
15
mods/ITEMS/mcl_wool/README.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
Minetest 0.4 mod: wool
|
||||
======================
|
||||
|
||||
Mostly backward-compatible with jordach's 16-color wool mod.
|
||||
|
||||
License of source code:
|
||||
-----------------------
|
||||
Copyright (C) 2012 Perttu Ahola (celeron55) <celeron55@gmail.com>
|
||||
|
||||
This program is free software. It comes without any warranty, to
|
||||
the extent permitted by applicable law. You can redistribute it
|
||||
and/or modify it under the terms of the Do What The Fuck You Want
|
||||
To Public License, Version 2, as published by Sam Hocevar. See
|
||||
http://sam.zoy.org/wtfpl/COPYING for more details.
|
||||
|
1
mods/ITEMS/mcl_wool/credit.txt
Normal file
|
@ -0,0 +1 @@
|
|||
jojoa1997:carpet
|
1
mods/ITEMS/mcl_wool/depends.txt
Normal file
|
@ -0,0 +1 @@
|
|||
mcl_sounds
|
94
mods/ITEMS/mcl_wool/init.lua
Normal file
|
@ -0,0 +1,94 @@
|
|||
-- minetest/wool/init.lua
|
||||
|
||||
-- Backwards compatibility with jordach's 16-color wool mod
|
||||
minetest.register_alias("mcl_wool:dark_blue", "wool:blue")
|
||||
minetest.register_alias("mcl_wool:gold", "wool:yellow")
|
||||
|
||||
local wool = {}
|
||||
-- This uses a trick: you can first define the recipes using all of the base
|
||||
-- colors, and then some recipes using more specific colors for a few non-base
|
||||
-- colors available. When crafting, the last recipes will be checked first.
|
||||
wool.dyes = {
|
||||
{"white", "white", "White", nil},
|
||||
{"grey", "dark_grey", "Grey", "unicolor_darkgrey"},
|
||||
{"silver", "grey", "Light Grey", "basecolor_grey"},
|
||||
{"black", "black", "Black", "basecolor_black"},
|
||||
{"red", "red", "Red", "basecolor_red"},
|
||||
{"yellow", "yellow", "Yellow", "basecolor_yellow"},
|
||||
{"green", "green", "Green", "unicolor_dark_green"},
|
||||
{"cyan", "cyan", "Cyan", "basecolor_cyan"},
|
||||
{"blue", "blue", "Blue", "basecolor_blue"},
|
||||
{"magenta", "magenta", "Magenta", "basecolor_magenta"},
|
||||
{"orange", "orange", "Orange", "excolor_orange"},
|
||||
{"purple", "violet", "Purple", "excolor_violet"},
|
||||
{"brown", "brown", "Brown", "unicolor_dark_orange"},
|
||||
{"pink", "pink", "Pink", "unicolor_light_red"},
|
||||
{"lime", "lime", "Lime", "basecolor_green"},
|
||||
{"light_blue", "light_blue", "Light Blue", "unicolor_light_blue"},
|
||||
}
|
||||
|
||||
for _, row in ipairs(wool.dyes) do
|
||||
local name = row[1]
|
||||
local texture = row[2]
|
||||
local desc = row[3]
|
||||
local craft_color_group = row[4]
|
||||
-- Node Definition
|
||||
minetest.register_node("mcl_wool:"..name, {
|
||||
description = desc.." Wool",
|
||||
stack_max = 64,
|
||||
is_ground_content = false,
|
||||
tiles = {"wool_"..texture..".png"},
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=1,wool=1,building_block=1},
|
||||
sounds = mcl_sounds.node_sound_defaults(),
|
||||
})
|
||||
minetest.register_node("mcl_wool:"..name.."_carpet", {
|
||||
description = desc.." Carpet",
|
||||
walkable = false,
|
||||
is_ground_content = false,
|
||||
tiles = {"wool_"..texture..".png"},
|
||||
wield_image = "wool_"..name..".png",
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=1,carpet=1,deco_block=1},
|
||||
sounds = mcl_sounds.node_sound_defaults(),
|
||||
paramtype = "light",
|
||||
stack_max = 64,
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16},
|
||||
},
|
||||
},
|
||||
})
|
||||
if craft_color_group then
|
||||
-- Crafting from dye and white wool
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = 'mcl_wool:'..name,
|
||||
recipe = {'group:dye,'..craft_color_group, 'mcl_wool:white'},
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = 'mcl_wool:'..name..'_carpet 3',
|
||||
recipe = {{'mcl_wool:'..name, 'mcl_wool:'..name}},
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_wool:white",
|
||||
recipe = {
|
||||
{ "mcl_mobitems:string", "mcl_mobitems:string" },
|
||||
{ "mcl_mobitems:string", "mcl_mobitems:string" },
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "group:wool",
|
||||
burntime = 5,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "group:carpet",
|
||||
-- Original value: 3.35
|
||||
burntime = 3,
|
||||
})
|
1
mods/ITEMS/mcl_wool/mod.conf
Normal file
|
@ -0,0 +1 @@
|
|||
name = mcl_wool
|
BIN
mods/ITEMS/mcl_wool/textures/wool_black.png
Normal file
After Width: | Height: | Size: 565 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_blue.png
Normal file
After Width: | Height: | Size: 652 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_brown.png
Normal file
After Width: | Height: | Size: 566 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_cyan.png
Normal file
After Width: | Height: | Size: 639 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_dark_grey.png
Normal file
After Width: | Height: | Size: 518 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_green.png
Normal file
After Width: | Height: | Size: 672 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_grey.png
Normal file
After Width: | Height: | Size: 639 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_light_blue.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
mods/ITEMS/mcl_wool/textures/wool_lime.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
mods/ITEMS/mcl_wool/textures/wool_magenta.png
Normal file
After Width: | Height: | Size: 669 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_orange.png
Normal file
After Width: | Height: | Size: 577 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_pink.png
Normal file
After Width: | Height: | Size: 690 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_red.png
Normal file
After Width: | Height: | Size: 653 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_violet.png
Normal file
After Width: | Height: | Size: 676 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_white.png
Normal file
After Width: | Height: | Size: 626 B |
BIN
mods/ITEMS/mcl_wool/textures/wool_yellow.png
Normal file
After Width: | Height: | Size: 663 B |