null

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

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.