Add metadata files

master
v-rob 2018-04-04 18:34:28 -07:00 committed by GitHub
parent 94b2584316
commit e4eaba892a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 148 additions and 1 deletions

View File

@ -1 +1,89 @@
# Voxelgarden
Voxelgarden
===========
A Subgame for Minetest
Forked by v-rob.
Download and Install:
---------------------
Download here: https://github.com/v-rob/voxelgarden/archive/master.zip
Unzip the archive and place the folder in your Minetest installation: minetest/games/voxelgarden.
Getting Started:
----------------
All mapgens are supported except for v6, which is only partly supported. Ironically, that's a full turnaround from the old Voxelgarden. :)
To get started, make a world and do whatever you want. You get a free stone pickaxe at the beginning along with a crafting guide.
After that, do what you want. But mainly, have fun!
Notable Differences:
--------------------
Obviously, this is a lot different than both MT Game and Voxelgarden. The main differences are:
- Magic and experience system. This has very little using it, and I plan to add more in the future.
- Primitive tools. Only stone and wood tools exist.
- No bones. When you die, you keep all your stuff and don't mar your beautiful world with dead bodies.
- Items drop after you dig a node. Walk over them or punch them to pick them up.
- No fire or TNT. They're just annoying and the ramifications outweigh the benefits.
- Hudbars. These look better than normal hearts, in my opinion. Plus, you can tell how much health, experience, and mana you have easily, because mana and experience change every time you level up.
- A crafting guide. It's a book that you get for free at the beginning of the game. It looks somewhat like your creative inventory.
- Furniture. There are quite a few pieces of wooden furniture, as well as a bartering table (From the currency mod)
- Weather. Light, medium, and heavy rain, as well as snow and a new type of weather called motes. Note: Lightning doesn't set things on fire because there is no fire.
Beside these, I've made quite a few updates to Voxelgarden. It had many outdated things, such as the old inventory, bad crafting guide, and the old screwdriver. Farming didn't even work. I also replaced stairsplus with the normal default stairs. Boats didn't exist, and beds needed updating.
There are more smaller changes, but I'm not going to name them all. It would take too long.
Contribute:
-----------
Issues use the system of:
bugs >> cleanups >> features >> nice to haves
Which means bugs are done first, then cleanups, than features, than the things nice to have. Every issue should be labeled with one of those.
Bigger additions should work as a mod on their own. This allows easier testing, benefits a modular design and ensure that they can still be used as a mod if the feature does not get merged.
Special Thanks:
---------------
I would like to thank:
- Casimir, for making the original Voxelgarden;
- Wuzzy, for the Mana, Mirror of Returning, Teletool, Schemedit, and Hudbars mods and for his prompting other people to have crafting guides in their subgames, or else I wouldn't have one;
- JP, for making the crafting guide I edited for this game;
- Nathan.S, for the autostore mod;
- VanessaE for the furniture nodeboxes from HomeDecor;
- jordan4ibanez for the drops mod;
- The author of the currency mod, whoever it may be (The forum link is down), for the bartering table;
- Sokomine, for the furniture shelf nodebox and formspec;
- The collection of people working on Minetest Game because this subgame wouldn't exist without them;
- xeranas, for the weather_pack mod;
- sofar, for the lightning mod;
- D00MED, for the idea of motes from Legend of Minetest and the textures;
- Duane, for the cherry leaves textures from squaresville_c;
- celeron55, the core developers, and contributors to Minetest because this wouldn't exist without them either;
- And anyone else I forgot to mention that did of made something that indirectly helped this subgame to exist.
License of source code:
-----------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
http://www.gnu.org/licenses/lgpl-2.1.html

1
game.conf Normal file
View File

@ -0,0 +1 @@
name = Voxelgarden

BIN
menu/header.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

BIN
menu/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

42
minetest.conf Normal file
View File

@ -0,0 +1,42 @@
#
# Client
#
# Selection box border color (R,G,B)
selectionbox_color = (20,20,20)
#
# Game
#
world_start_time = 6000
#
# Physics
#
movement_acceleration_default = 2.5
movement_acceleration_air = 1.5
movement_acceleration_fast = 20
movement_speed_climb = 2.5
movement_speed_descend = 8
movement_speed_jump = 5.5
movement_speed_fast = 40
movement_speed_walk = 5
movement_liquid_fluidity = 2
time_speed = 60
#
# Mapgen
#
# mapgen v6
# Perlin noise attributes for different map generation parameters
# Offset, scale, spread factor, seed offset, number of octaves, persistence
# mgv6_np_terrain_base = -4, 40, (750, 750, 750), 82341, 8, 0.65, 2.0
# mgv6_np_terrain_higher = 8, 75, (750, 750, 750), 85039, 9, 0.65, 2.0
# mgv6_freq_desert = 0.30
# mgv6_freq_beach = 0.25
# mgv6_np_steepness = 0.70, 0.2, (60, 60, 60), -932, 5, 0.8, 2.0
# mgv6_np_biome = 0.1, 1, (600, 600, 600), 9130, 3, 0.50, 2.0
# mgv6_np_trees = 0.3, 2, (125, 125, 125), 2, 4, 0.70, 2.0

16
minetest.conf.example Normal file
View File

@ -0,0 +1,16 @@
# This file contains settings of minetest_game that can be changed in your minetest.conf
#
# By default, all the settings are commented and not functional.
# Uncomment settings by removing the preceding #.
# Whether creative mode (fast digging of all blocks, unlimited resources) should be enabled
#creative_mode = false
# The time in seconds after which the bones of a dead player can be looted by everyone
# 0 to disable
#share_bones_time = 1200
# Do not lose your inventory in the case of death.
#disable_bones = false
# Whether fire should be disabled (all fire nodes will instantly disappear)
#disable_fire = false