Page 1 of 1

[Mod] Potions [0.1]

PostPosted: Tue Jan 03, 2012 22:34
by Tsumiman
Hello!

This is a quite simple mod, which adds potion-brewing into minetest.

Mechanics:
To craft a potion, you need to brew it in combiner:
Image
In upper slots you should put ingridients (albedo, rubedo or nigredo), in lower - base for potion (any of potions)
After some time, potions will turn into something other and ingridients will be gone:
Image

Firstly, we should craft a vial - something, like a bucket, only not a bucket.
For 6 vials, you'll need 5 blocks of glass:
Image

Now, you can craft a combiner.
Six blocks of wood and three vials:
Image

Now you need an ingridients. They are from flowers mod.
To get them, we need an extractor. Six sticks:
Image

To get an ingredient, just place extractor and flower above it.
Image

You could use flowers and apples to get ingridients:
Rubedo: Rose, Tultip, Apple
Albedo: Dendelions
Nigredo: Viola, Waterlily

Currently, mod includes only a few healing potions and simple suicide-potion:
- Water - do nothing
Vial + Rightclick on water (like a bucket)
- Clear water - adds 2 hp (1 "heart")
Water + Albedo
- Potion of healing - adds 6 hp (3 "hearts")
Water + Albedo + Albedo + Albedo
- Potion of great healing - adds 16 hp (8 "hearts")
Clear water + Albedo + Albedo + Rubedo
or
Potion of healing + Rubedo
- Potion of long healing - heals user for 1 hp every second - maximum heals 20 hp. Works only for 60 seconds.
Water + Albedo + Albedo + Nigredo
- Potion of looooong healing - heals user for 2 hp every second, 30 hp, 90 seconds.
Clear water + Albedo + Albedo + Nigredo
- Lava potion - damages user for 10 hp
Vial + rightclick on lava
- Hot lava potion - damages user for 20 hp (instant death)
Lava potion + Rubedo
- Mess potion - potion, with unpredictable effects. Currently do nothing, due to lack of effects.
Anything, except other potion's reciept.
- Bomb potion (Griefer best friend) - user become a proud follower of Osama bin Laden, making a huge BOOOM after 5 seconds. Currently not working, due to choosing TNT mod.

Version history:
0.1 - initial

Requies: Flowers
Download:
Github
potions.tar.gz
potions.zip

P.S. Sorry for my english, even banana speaks better.

PostPosted: Tue Jan 03, 2012 22:38
by sdzen
very nice.... your mod is good to I guess :|

PostPosted: Tue Jan 03, 2012 22:43
by jordan4ibanez
that is really cool :) +10 i didn't like the way minecrafts brewing worked..but you should make that into a real brewing thing..like have a plant like brewing node..and have a special brewing table for it..and it the brewing stand is on the brewing table it makes normal/clean potions..other wise if its on any other block (or in the air) it makes dirty potions

PostPosted: Tue Jan 03, 2012 22:47
by Tsumiman
that is really cool :) +10 i didn't like the way minecrafts brewing worked..but you should make that into a real brewing thing..like have a plant like brewing node..and have a special brewing table for it..and it the brewing stand is on the brewing table it makes normal/clean potions..other wise if its on any other block (or in the air) it makes dirty potions

Yes, i thought about something like it. Although, main problem for me is a serious lack of effects for potions or/and mod API restrictions.

Also, which of TNT mods are, meh, best?

PostPosted: Wed Jan 04, 2012 01:26
by Hackeridze
You should use Dynamite Mod.

PostPosted: Thu Apr 19, 2012 02:14
by lkjoel
How did you make the combiner screen?

PostPosted: Thu Apr 19, 2012 02:58
by Death Dealer
lkjoel wrote:How did you make the combiner screen?

Thats a good question, the init.lua for this looks crazy complicated..

PostPosted: Thu Apr 19, 2012 03:57
by mauvebic
I think it's this: (could be handy to implement trade)

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_on_placenode(function(pos, newnode, placer)
    if newnode.name == "potions:combiner" then
        local meta = minetest.env:get_meta(pos)
        meta:inventory_set_list("ing", {"", "", ""})
        meta:inventory_set_list("pot", {"", "", ""})
        meta:set_inventory_draw_spec(
            "invsize[8,9;]"
            .."list[current_name;pot;2,3;3,1;]"
            .."list[current_name;ing;2,1;3,1;]"
            .."list[current_player;main;0,5;8,4;]"
        )

        meta:set_infotext("Combiner")
        meta:set_string("timer", "-999")
        meta:set_string("ings", "")
        meta:set_string("pots", "")
    end
end)

PostPosted: Thu Apr 19, 2012 04:44
by lkjoel
Thanks! Now I can make a large chest!

PostPosted: Tue Sep 04, 2012 09:23
by durtective6
uh this caused a error...a big one

PostPosted: Tue Sep 04, 2012 12:11
by sfan5
This Mod is outdated...

PostPosted: Sat Apr 13, 2013 04:20
by Josh
It would be really good if somone could update this, with new potions, but keep the same brewing technique.

PostPosted: Sat Jun 08, 2013 18:13
by lonely
I can't download anything.

PostPosted: Sat Jun 08, 2013 18:15
by PilzAdam
lonely wrote:I can't download anything.

Yes, omploader is dead :-(

Also, dont expect updates, its in "Old Mods".