Go to file
Izzy 6277538791 terrible firefly stick 2019-08-30 17:22:06 -06:00
models glass still 2019-07-03 08:07:38 -06:00
spells working islands, broken tunnels, a couple utility fns, working grass and 2019-07-02 00:35:18 -06:00
structures instant hole 2019-08-17 19:29:16 -06:00
textures bunch o stuff 2019-07-22 23:25:48 -06:00
util fill rectagular area of nodes 2019-07-04 10:14:41 -06:00
.gitignore Initial commit 2016-03-12 12:09:18 -08:00
LICENSE.md desert rocks test 2019-06-23 00:10:22 -06:00
README.md flight 2016-03-12 13:13:49 -08:00
alchemy.lua bunch o stuff 2019-07-22 23:25:48 -06:00
beanstalk.lua beanstalks, hotsprings, and enchanting table 2019-06-18 00:39:10 -06:00
depends.txt fixed dependencies 2016-03-12 13:15:13 -08:00
enchanting.lua terrible firefly stick 2019-08-30 17:22:06 -06:00
gates.lua poking around with gates 2019-07-23 15:24:05 -06:00
geodes.lua geode divining, fixed geode drops 2019-08-18 21:44:01 -06:00
glassware.lua glass still 2019-07-03 08:07:38 -06:00
hotsprings.lua bunch o stuff 2019-07-22 23:25:48 -06:00
init.lua more balancing. longer potion duration 2019-08-28 21:07:05 -06:00
metals.lua gem and crystal textures, other texture fixes 2019-07-03 06:05:05 -06:00
minetunnels.lua desert rocks test 2019-06-23 00:10:22 -06:00
rocks.lua prickly pear test 2019-06-24 19:20:54 -06:00
scanner.lua prickly pear test 2019-06-24 19:20:54 -06:00

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.