mirror of
https://github.com/D00Med/witchcraft.git
synced 2025-06-28 22:26:36 +02:00
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
06a3ca6265 | |||
0cbc98900a | |||
0a06acc1d8 | |||
b500873215 | |||
0e277c51fb | |||
36d76ca7fb | |||
32e3f8928b | |||
c515b58ca1 | |||
8bf04f444e | |||
dd3a7d13c7 | |||
fef074b9ed |
7
init.lua
7
init.lua
@ -565,7 +565,7 @@ witchcraft.pot = {
|
||||
{"blue", "brown", "default:dirt", "blue2", "moreplants:bullrush", "red", "purple"},
|
||||
{"blue2", "yellow", "default:steelblock", "yellow", "default:copperblock", "green2", "aqua"},
|
||||
{"darkpurple", "cyan", "flowers:mushroom_red", "green", "moreplants:weed", "yellow", "redbrown"},
|
||||
{"purple", "blue2", "flowers:waterlily", "gpurple", "default:mese_crystal", "magenta", "darkpurple"},
|
||||
{"purple", "blue2", "nalc_flowers:lily_pad", "gpurple", "default:mese_crystal", "magenta", "darkpurple"},
|
||||
{"magenta", "purple", "witchcraft:bottle_eyes", "darkpurple", "moreplants:mushroom", "purple", "darkpurple"},
|
||||
{"red", "grey", "default:gravel", "yllwgrn", "default:flint", "blue", "purple"},
|
||||
{"redbrown", "magenta", "flowers:mushroom_brown", "magenta", "default:stone", "grey", "brown"},
|
||||
@ -587,7 +587,7 @@ witchcraft.pot = {
|
||||
--new recipes
|
||||
|
||||
witchcraft.pot_new = {
|
||||
{"blue", "blue2", "flowers:waterlily", "brown", "default:dirt", "red", "purple"},
|
||||
{"blue", "blue2", "nalc_flowers:lily_pad", "brown", "default:dirt", "red", "purple"},
|
||||
{"blue2", "green", "default:papyrus", "", "", "gred", "magenta"},
|
||||
{"green", "green2", "default:sapling", "", "", "yellow", "yllwgrn"},
|
||||
{"green2", "yellow", "default:mese_crystal_fragment", "", "", "blue", "cyan"},
|
||||
@ -655,6 +655,7 @@ for _, row in ipairs(witchcraft.pot_new) do --change 'pot_new' to 'pot' for the
|
||||
},
|
||||
on_rightclick = function(pos, node, clicker, itemstack, _)
|
||||
local wield_item = itemstack:get_name()
|
||||
if wield_item == "" then return nil end
|
||||
|
||||
if wield_item == "vessels:glass_bottle" then
|
||||
local wield_items_count = itemstack:get_count()
|
||||
@ -3627,3 +3628,5 @@ minetest.register_node("witchcraft:candle", {
|
||||
|
||||
dofile(minetest.get_modpath("witchcraft").."/scrolls.lua")
|
||||
dofile(minetest.get_modpath("witchcraft").."/brewing_stand.lua")
|
||||
|
||||
minetest.log("action", "[witchcraft] loaded.")
|
||||
|
Reference in New Issue
Block a user