Go to file
Izzy c6ee124d44 gem and crystal textures, other texture fixes 2019-07-03 06:05:05 -06:00
spells working islands, broken tunnels, a couple utility fns, working grass and 2019-07-02 00:35:18 -06:00
structures gem and crystal textures, other texture fixes 2019-07-03 06:05:05 -06:00
textures gem and crystal textures, other texture fixes 2019-07-03 06:05:05 -06:00
util tower improvements 2019-07-03 00:57:36 -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 fixes and improvments 2019-06-20 20:41:02 -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 beanstalks, hotsprings, and enchanting table 2019-06-18 00:39:10 -06:00
geodes.lua added ore defs for geodes 2019-06-25 17:38:58 -06:00
glassware.lua glassware and metals 2019-06-22 23:08:59 -06:00
hotsprings.lua added ore defs for geodes 2019-06-25 17:38:58 -06:00
init.lua utility function improvements: 2019-07-02 22:45:46 -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.