Imported from trollstream "ContentDB"

master
OldCoder 7 months ago
commit ab193b8caf
  1. 1
      depends.txt
  2. 1
      description.txt
  3. 68
      init.lua
  4. 26
      init.lua~
  5. 2
      license.txt
  6. 1
      mod.conf
  7. 23
      readme.txt
  8. BIN
      screenshot.png
  9. BIN
      textures/Blueprints.png
  10. BIN
      textures/Chicken.png
  11. BIN
      textures/ooh.png
  12. BIN
      textures/sus.png

@ -0,0 +1 @@
default

@ -0,0 +1 @@
This mod allows you to collect infinite wood!

@ -0,0 +1,68 @@
minetest.register_node("infinite_wood:Chicken", {
description = "Worlds coolest block",
tiles = {"Chicken.png"},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_craft({
output = "infinite_wood:Chicken",
recipe = {{"default:tree", "default:tree"}}
})
minetest.register_node("infinite_wood:fake_diamond", {
description = "definitely diamond",
tiles = {"default_diamond_block.png"},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_craft({
output = "infinite_wood:fake_diamond 2",
recipe = {{"infinite_wood:Chicken", "infinite_wood:Chicken"}}
})
minetest.register_craft({
output = "default:tree 8",
recipe = {{"infinite_wood:fake_diamond", "infinite_wood:fake_diamond"}}
})
minetest.register_node("infinite_wood:Sus", {
description = "Sussy",
tiles = {"sus.png"},
})
minetest.register_node("infinite_wood:ooh", {
description = "hmm... what is that i sea",
tiles = {"ooh.png"},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_craft({
output = "infinite_wood:Sus 99999",
recipe = {{"default:apple"}}
})
minetest.register_craft({
output = "infinite_wood:ooh",
recipe = {{"infinite_wood:Sus", "infinite_wood:Sus", "infinite_wood:Sus"}}
})
minetest.register_craftitem("infinite_wood:blueprints", {
description = "Blueprints for many various things",
inventory_image = "Blueprints.png",
})
minetest.register_craft({
output = "default:tree",
recipe = {{"infinite_wood:blueprints", "default:tree"}},
replacements = {
{"infinite_wood:blueprints", "infinite_wood:blueprints"},
{"default:tree", "default:tree"}
}
})
minetest.register_craft({
output = "infinite_wood:blueprints",
recipe = {{"default:aspen_wood", "wool:blue"}}
})

@ -0,0 +1,26 @@
minetest.register_node("my_mod:Chicken", {
description = "Worlds coolest block",
tiles = {"Chicken.png"},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_craft({
output = "my_mod:Chicken",
recipe = {{"default:tree", "default:tree"}}
})
minetest.register_node("my_mod:fake_diamond", {
description = "definitely diamond",
tiles = {"default_diamond_block.png"},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_craft({
output = "my_mod:fake_diamond 2",
recipe = {{"my_mod:Chicken", "my_mod:Chicken"}}
})
minetest.register_craft({
output = "default:tree 8",
recipe = {{"my_mod:fake_diamond", "my_mod:fake_diamond"}}
})

@ -0,0 +1,2 @@
Graphics: CC-BY-SA
Code: LGPL 2.1

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

@ -0,0 +1,23 @@
Steps:
1. mine 4 logs from an apple tree
2. place 2 of the logs side by side in the workbench to make a king chicken block
3. make 1 more king chicken block
4. place king chicken blocks side by side to make 2 fake diamond blocks
5. place fake diamond blocks side by side to make 8 apple tree logs
6. repeat process for infinite wood
Or you can follow this other method:
1. place aspen planks by blue wool in the workbench
2. collect blueprints
3. place blueprints by apple tree in workbench
4. get infinite wood
This mod is not a direct follow of Nathan's course.
Many materials used in this mod are not made by him or Minetest.
This mod was created with help from Nathan's course which can be found at, http://
www.nathansalapat.com/mmc/course-overveiw
If you are wanting to create your own minetest mods I would recomend his tutorials.
Enjoy!

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Loading…
Cancel
Save