forked from VoxeLibre/VoxeLibre
Move glass bottle to mcl_potions+remove vesselsmod
This commit is contained in:
parent
e3fbd87540
commit
5aba29d076
|
@ -12,6 +12,21 @@ minetest.register_craft({
|
|||
recipe = { "farming:mushroom_brown", "default:sugar", "mcl_mobitems:spider_eye" },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_potions:glass_bottle", {
|
||||
description = "Glass Bottle",
|
||||
inventory_image = "vessels_glass_bottle_inv.png",
|
||||
wield_image = "vessels_glass_bottle_inv.png",
|
||||
groups = {brewitem=1},
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
output = "mcl_potions:glass_bottle 3",
|
||||
recipe = {
|
||||
{ "default:glass", "", "default:glass" },
|
||||
{ "", "default:glass", "" }
|
||||
}
|
||||
})
|
||||
|
||||
-- TODO: Get texture
|
||||
--[[
|
||||
minetest.register_craftitem("mcl_potions:dragon_breath", {
|
||||
|
|
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 230 B |
|
@ -1,22 +0,0 @@
|
|||
Minetest 0.4 mod: vessels
|
||||
==========================
|
||||
|
||||
Crafts
|
||||
-------
|
||||
Glass bottle (yields 4)
|
||||
|
||||
G - G
|
||||
- G -
|
||||
|
||||
License of source code:
|
||||
-----------------------
|
||||
Copyright (C) 2012 Vanessa Ezekowitz
|
||||
Version 2012-09-02
|
||||
Modifications by Perttu Ahola <celeron55@gmail.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation; either version 2.1 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
http://www.gnu.org/licenses/lgpl-2.1.html
|
|
@ -1 +0,0 @@
|
|||
default
|
|
@ -1,27 +0,0 @@
|
|||
-- Minetest 0.4 mod: vessels
|
||||
-- See README.txt for licensing and other information.
|
||||
|
||||
minetest.register_node("vessels:glass_bottle", {
|
||||
description = "Glass Bottle",
|
||||
drawtype = "plantlike",
|
||||
tiles = {"vessels_glass_bottle.png"},
|
||||
is_ground_content = false,
|
||||
inventory_image = "vessels_glass_bottle_inv.png",
|
||||
wield_image = "vessels_glass_bottle.png",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25}
|
||||
},
|
||||
groups = {vessel=1,dig_immediate=3,attached_node=1,brewitem=1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
output = "vessels:glass_bottle 3",
|
||||
recipe = {
|
||||
{ "default:glass", "", "default:glass" },
|
||||
{ "", "default:glass", "" }
|
||||
}
|
||||
})
|
Binary file not shown.
Before Width: | Height: | Size: 230 B |
Loading…
Reference in New Issue