Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Introduction

Farlands is a subgame featuring steampunk-style machines, villages, and dinosaurs.
56 changes: 0 additions & 56 deletions README.txt

This file was deleted.

20 changes: 20 additions & 0 deletions license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (C) 2017 D00Med <heiselong@gmx.com>, DS-minetest, and toby109tt(aka tobyplowy)

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.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

License for Textures, Models and Sounds
---------------------------------------

CC-BY-SA 3.0 UNPORTED. Created by tobyplowy(aka toby109tt) and D00Med
89 changes: 89 additions & 0 deletions mods/decoblocks/crafts.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,92 @@
minetest.register_craft({
output = "decoblocks:bamboo_chair",
recipe = {
{"", "", "default:stick"},
{"mapgen:bamboo_wood", "mapgen:bamboo_wood", "mapgen:bamboo_wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:wooden_chair",
recipe = {
{"", "", "default:stick"},
{"default:wood", "default:wood", "default:wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:junglewood_chair",
recipe = {
{"", "", "default:stick"},
{"default:junglewood", "default:junglewood", "default:junglewood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:aspen_chair",
recipe = {
{"", "", "default:stick"},
{"default:aspen_wood", "default:aspen_wood", "default:aspen_wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:pine_chair",
recipe = {
{"", "", "default:stick"},
{"default:pine_wood", "default:pine_wood", "default:pine_wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:acacia_chair",
recipe = {
{"", "", "default:stick"},
{"defualt:acacia_wood", "default:acacia_wood", "default:acacia_wood"},
{"defaultt:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:palm_chair",
recipe = {
{"", "", "default:stick"},
{"mapgen:palm_wood", "mapgen:palm_wood", "mapgen:palm_wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:baobab_chair",
recipe = {
{"", "", "default:stick"},
{"mapgen:baobab_wood", "mapgen:baobab_wood", "mapgen:baobab_wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:yellow_ipe_chair",
recipe = {
{"", "", "default:stick"},
{"mapgen:yellow_ipe_wood", "mapgen:yellow_ipe_wood", "mapgen:yellow_ipe_wood"},
{"default:stick", "", "default:stick"}
}
})

minetest.register_craft({
output = "decoblocks:bamboo_table",
recipe = {
{"mapgen:bamboo_wood", "mapgen:bamboo_wood", "mapgen:bamboo_wood"},
{"group:stick", "", "group:stick"},
{"group:stick", "", "group:stick"}
}
})

minetest.register_craft({
output = 'decoblocks:vase',
Expand Down
Loading