null

Izzy 6277538791 terrible firefly stick %!s(int64=5) %!d(string=hai) anos
models 7c06b79f1b glass still %!s(int64=5) %!d(string=hai) anos
spells 9791ae335f working islands, broken tunnels, a couple utility fns, working grass and %!s(int64=5) %!d(string=hai) anos
structures 4652ee2660 instant hole %!s(int64=5) %!d(string=hai) anos
textures a8603787d1 bunch o stuff %!s(int64=5) %!d(string=hai) anos
util c2495f2e15 fill rectagular area of nodes %!s(int64=5) %!d(string=hai) anos
.gitignore fc8effc3c6 Initial commit %!s(int64=8) %!d(string=hai) anos
LICENSE.md e098c521a6 desert rocks test %!s(int64=5) %!d(string=hai) anos
README.md 9b736ed8b1 flight %!s(int64=8) %!d(string=hai) anos
alchemy.lua a8603787d1 bunch o stuff %!s(int64=5) %!d(string=hai) anos
beanstalk.lua a4f7e6bc13 beanstalks, hotsprings, and enchanting table %!s(int64=5) %!d(string=hai) anos
depends.txt 92fcb16c30 fixed dependencies %!s(int64=8) %!d(string=hai) anos
enchanting.lua 6277538791 terrible firefly stick %!s(int64=5) %!d(string=hai) anos
gates.lua da1618ff83 poking around with gates %!s(int64=5) %!d(string=hai) anos
geodes.lua 3c40083955 geode divining, fixed geode drops %!s(int64=5) %!d(string=hai) anos
glassware.lua 7c06b79f1b glass still %!s(int64=5) %!d(string=hai) anos
hotsprings.lua a8603787d1 bunch o stuff %!s(int64=5) %!d(string=hai) anos
init.lua 5903038c62 more balancing. longer potion duration %!s(int64=5) %!d(string=hai) anos
metals.lua c6ee124d44 gem and crystal textures, other texture fixes %!s(int64=5) %!d(string=hai) anos
minetunnels.lua e098c521a6 desert rocks test %!s(int64=5) %!d(string=hai) anos
rocks.lua e4f2bbb6ef prickly pear test %!s(int64=5) %!d(string=hai) anos
scanner.lua e4f2bbb6ef prickly pear test %!s(int64=5) %!d(string=hai) anos

README.md

Potions

Broths are crafted, then cooked into the actual potion.

Healing Potion

Restores all hearts instantly.

    {"flowers:mushroom_red", "dye:red", "default:apple"}, 
    {"", "bucket:bucket_water", ""},
    {"vessels:glass_bottle", "vessels:glass_bottle", "vessels:glass_bottle"},

Speed Potion

Triples player movement speed for ten seconds.

    {"default:mese_crystal_fragment", "dye:yellow", "default:mese_crystal_fragment"}, 
    {"", "bucket:bucket_water", ""},
    {"vessels:glass_bottle", "vessels:glass_bottle", "vessels:glass_bottle"},

Low Gravity Potion

Sets player's gravity to one tenth for ten seconds, with gentle cooldown so you don't just fall to your death.

    {"flowers:dandelion_white", "dye:white", "flowers:dandelion_white"}, 
    {"", "bucket:bucket_water", ""},
    {"vessels:glass_bottle", "vessels:glass_bottle", "vessels:glass_bottle"},

Teleportation Potion

Take it once to set the position, take it again to teleport to that position.

    {"default:obsidian_shard", "dye:violet", "default:obsidian_shard"}, 
    {"", "bucket:bucket_water", ""},
    {"vessels:glass_bottle", "vessels:glass_bottle", "vessels:glass_bottle"},

Flight Potion

Allows flight for ten seconds, with gentle cooldown so you don't just fall to your death.

    {"farming:cotton", "dye:cyan", "farming:cotton"}, 
    {"", "bucket:bucket_water", ""},
    {"vessels:glass_bottle", "vessels:glass_bottle", "vessels:glass_bottle"},

Copyright 2016 Izzy

WTFPL. Do what the fuck you want.