summaryrefslogtreecommitdiff
path: root/peaceful_npc/recipes.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
commit249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3 (patch)
tree915217a9657158d2a02eb8d93507944f618d5142 /peaceful_npc/recipes.lua
parentaf2fedcf9998bb4a854c2cfd63e4cdad91a6dd5d (diff)
downloaddreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.gz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.bz2
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.xz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.zip
Add readme.md mostly taken from the forum thread (and markdown-ified)
Updated several mods: castles, homedecor, digilines, farming redo, jumping, maptools, mesecons, moreblocks, moretrees, pipeworks, signs_lib, technic, unified_dyes Deleted the peaceful_npc mod, as it is broken and unmaintained.
Diffstat (limited to 'peaceful_npc/recipes.lua')
-rw-r--r--peaceful_npc/recipes.lua37
1 files changed, 0 insertions, 37 deletions
diff --git a/peaceful_npc/recipes.lua b/peaceful_npc/recipes.lua
deleted file mode 100644
index 72707d3..0000000
--- a/peaceful_npc/recipes.lua
+++ /dev/null
@@ -1,37 +0,0 @@
---
---Crafts
---
-function npc_recipes(spawn_type, summon_core)
- minetest.register_craft({
- output = 'peaceful_npc:spawner_npc_'..spawn_type,
- recipe = {
- {'default:mese_block', 'default:glass', 'default:mese_block'},
- {'default:glass', 'peaceful_npc:summoner_npc_'..spawn_type, 'default:glass'},
- {'default:mese_block', 'default:glass', 'default:mese_block'},
- }
- })
-
- minetest.register_craft({
- output = 'peaceful_npc:summoner_npc_'..spawn_type,
- recipe = {
- {'default:mese_crystal', 'default:glass', 'default:mese_crystal'},
- {'default:glass', summon_core, 'default:glass'},
- {'default:mese_crystal', 'default:glass', 'default:mese_crystal'},
- }
- })
-
- minetest.register_craft({
- output = 'peaceful_npc:summoner_npc_'..spawn_type,
- recipe = {
- {'default:mese', 'default:glass', 'default:mese'},
- {'default:glass', summon_core, 'default:glass'},
- {'default:mese', 'default:glass', 'default:mese'},
- }
- })
-end
-
-npc_recipes('def', 'default:steel_ingot')
-npc_recipes('fast', 'default:cactus')
-npc_recipes('dwarf', 'bucket:bucket_lava')
-
-print("Peaceful NPC recipes.lua loaded! By jojoa1997!") \ No newline at end of file