Minetest mod that adds potions and brewing https://forum.minetest.net/viewtopic.php?t=14800
Go to file
D00Med c129dea077
Merge pull request #10 from sys4-fr/master
Multiple fixes and optipng textures
2021-03-15 07:19:30 +10:00
models pot changes and gold potion 2016-10-26 06:34:50 +10:00
sounds Initial commit 2016-06-15 08:56:08 +10:00
textures Multiple fixes and optipng textures 2021-03-14 20:48:55 +01:00
.gitattributes 🍭 Added .gitattributes & .gitignore files 2016-06-15 08:54:22 +10:00
.gitignore 🍭 Added .gitattributes & .gitignore files 2016-06-15 08:54:22 +10:00
brewing_stand.lua Multiple fixes and optipng textures 2021-03-14 20:48:55 +01:00
depends.txt Add hunger_ng support. 2020-05-03 07:37:36 -07:00
init.lua Fix crash when right clicking with bucket on a filled pot 2021-03-14 22:15:44 +01:00
init_old.lua Initial commit 2016-06-15 08:56:08 +10:00
license.txt fix my name in the license 2017-02-01 07:20:21 +10:00
mod.conf Multiple fixes and optipng textures 2021-03-14 20:48:55 +01:00
readme.txt readme changes 2016-10-13 09:04:34 +10:00
screenshot.png 27.6.17 update 2017-06-27 08:23:58 +10:00
scrolls.lua Multiple fixes and optipng textures 2021-03-14 20:48:55 +01:00

readme.txt

Witchcraft by D00Med
Some notes:
>farming_redo is required for the mod even though this is not shown in depends.txt
>mobs_redo is optionally required for the mod, but since pmobs requires it, it is assumed that if you have pmobs then you have mobs.
>Some potions are dangerous!

Some crafting recipes:

herbs(shapeless):
weed or groundfungus or bush

jar of eyes:
eye, X, X
eye, X. X
drinking glass, X, X

eyes(shapeless):
jar of eyes

magic cooking pot:
copper lump, X, copper lump
copper lump, X, copper lump
X, copper lump, X

the magic cooking pot cooks its contents without fire, so there is no need to light a fire underneath.

potion shelf:
wood, wood, wood
potion, potion, potion
wood, wood, wood

empty scroll:
paper, diamond, paper
paper, paper, paper

Need some slime? try scraping it out of an empty cauldron with a drinking glass.

Potion ingredients(may be slightly inaccurate):
>herbs
>jar of eyes
>diamond
>apple
>gold lumps
>mese crystal fragment
>obsidian shard
>jar of slime
>curlyfruit
>mushroom(moreplants)
>red mushroom(flowers)
>grass
>umbrella plant
>glass
>glass fragments
>flint
>tnt
>copper block
>steel block
>steel ingot
>lilypad
>dirt
>sand
>gravel
>bucket of water
>bullrush
>bones

About the recipes:

init.lua contains the pot recipes. For each pot there is a line similar to the one below, in the 'witchraft.pot' table.

{"blue", "brown", "default:dirt", "blue2", "moreplants:bullrush", "red", "purple"},
{"potion name", "result1", "ingredient1", "result2", "ingredient2", "combine potion", "combine result"}

The first column of the table("blue"), is the color of the current potion pot. In the example, it is the blue pot, so the ingredients and results in the other columns
will apply to the blue pot, ie: the blue pot must be rightclicked. It is important that the name of the pot is in the name of it's texture, eg: a blue pot has the texture "witchraft_pot_blue.png"

The second and fourth columns are the two possible results after adding new ingredients. The last column is the result after combining the current potion with another.

The third and fifth columns are the ingredients required. The ingredient req. to make the potion in column 2 must be in column 3, and the ingredient req. to make the potion in columns 4 must be in columns 5.
The 6th column is the potion that can be combined with the current potion to make a new potion.