Use ores from default instead of moreores

This commit is contained in:
ShadowNinja 2013-07-05 01:09:33 -04:00
parent 465890950b
commit 2d168e5afc
17 changed files with 86 additions and 86 deletions

View File

@ -12,7 +12,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:brick', 'default:brick', 'default:brick'}, {'default:brick', 'default:brick', 'default:brick'},
{'default:brick', '', 'default:brick'}, {'default:brick', '', 'default:brick'},
{'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
} }
}) })

View File

@ -30,10 +30,10 @@ if unified_inventory then
end end
register_alloy_recipe ("technic:copper_dust",3, "technic:tin_dust",1, "technic:bronze_dust",4) register_alloy_recipe ("technic:copper_dust",3, "technic:tin_dust",1, "technic:bronze_dust",4)
register_alloy_recipe ("moreores:copper_ingot",3, "moreores:tin_ingot",1, "moreores:bronze_ingot",4) register_alloy_recipe ("default:copper_ingot",3, "moreores:tin_ingot",1, "default:bronze_ingot",4)
register_alloy_recipe ("technic:iron_dust",3, "technic:chromium_dust",1, "technic:stainless_steel_dust",4) register_alloy_recipe ("technic:iron_dust",3, "technic:chromium_dust",1, "technic:stainless_steel_dust",4)
register_alloy_recipe ("default:steel_ingot",3, "technic:chromium_ingot",1, "technic:stainless_steel_ingot",4) register_alloy_recipe ("default:steel_ingot",3, "technic:chromium_ingot",1, "technic:stainless_steel_ingot",4)
register_alloy_recipe ("technic:copper_dust",2, "technic:zinc_dust",1, "technic:brass_dust",3) register_alloy_recipe ("technic:copper_dust",2, "technic:zinc_dust",1, "technic:brass_dust",3)
register_alloy_recipe ("moreores:copper_ingot",2, "technic:zinc_ingot",1, "technic:brass_ingot",3) register_alloy_recipe ("default:copper_ingot",2, "technic:zinc_ingot",1, "technic:brass_ingot",3)
register_alloy_recipe ("default:sand",2, "technic:coal_dust",2, "technic:silicon_wafer",1) register_alloy_recipe ("default:sand",2, "technic:coal_dust",2, "technic:silicon_wafer",1)
register_alloy_recipe ("technic:silicon_wafer",1, "technic:gold_dust",1, "technic:doped_silicon_wafer",1) register_alloy_recipe ("technic:silicon_wafer",1, "technic:gold_dust",1, "technic:doped_silicon_wafer",1)

View File

@ -22,9 +22,9 @@ register_power_tool ("technic:blue_energy_crystal",500000)
minetest.register_craft({ minetest.register_craft({
output = 'technic:battery 1', output = 'technic:battery 1',
recipe = { recipe = {
{'default:wood', 'moreores:copper_ingot', 'default:wood'}, {'default:wood', 'default:copper_ingot', 'default:wood'},
{'default:wood', 'moreores:tin_ingot', 'default:wood'}, {'default:wood', 'moreores:tin_ingot', 'default:wood'},
{'default:wood', 'moreores:copper_ingot', 'default:wood'}, {'default:wood', 'default:copper_ingot', 'default:wood'},
} }
}) })

View File

@ -34,7 +34,7 @@ minetest.register_craft({
recipe = { recipe = {
{'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:battery'}, {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:battery'},
{'technic:stainless_steel_ingot', 'technic:motor', 'technic:battery'}, {'technic:stainless_steel_ingot', 'technic:motor', 'technic:battery'},
{'','','moreores:copper_ingot'}, {'', '', 'default:copper_ingot'},
} }
}) })

View File

@ -21,9 +21,9 @@ minetest.register_alias("electric_furnace", "technic:electric_furnace")
minetest.register_craft({ minetest.register_craft({
output = 'technic:battery 1', output = 'technic:battery 1',
recipe = { recipe = {
{'default:wood', 'moreores:copper_ingot', 'default:wood'}, {'default:wood', 'default:copper_ingot', 'default:wood'},
{'default:wood', 'moreores:tin_ingot', 'default:wood'}, {'default:wood', 'moreores:tin_ingot', 'default:wood'},
{'default:wood', 'moreores:copper_ingot', 'default:wood'}, {'default:wood', 'default:copper_ingot', 'default:wood'},
} }
}) })
@ -31,7 +31,7 @@ minetest.register_craft({
output = 'technic:battery_box 1', output = 'technic:battery_box 1',
recipe = { recipe = {
{'technic:battery', 'default:wood', 'technic:battery'}, {'technic:battery', 'default:wood', 'technic:battery'},
{'technic:battery', 'moreores:copper_ingot', 'technic:battery'}, {'technic:battery', 'default:copper_ingot', 'technic:battery'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
} }
}) })
@ -41,7 +41,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:brick', 'default:brick', 'default:brick'}, {'default:brick', 'default:brick', 'default:brick'},
{'default:brick', '', 'default:brick'}, {'default:brick', '', 'default:brick'},
{'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
} }
}) })

View File

@ -6,7 +6,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:stone', 'default:stone', 'default:stone'}, {'default:stone', 'default:stone', 'default:stone'},
{'default:stone', '', 'default:stone'}, {'default:stone', '', 'default:stone'},
{'default:stone', 'moreores:copper_ingot', 'default:stone'}, {'default:stone', 'default:copper_ingot', 'default:stone'},
} }
}) })

View File

@ -78,7 +78,7 @@ minetest.register_craftitem( "technic:copper_dust", {
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "moreores:copper_ingot", output = "default:copper_ingot",
recipe = "technic:copper_dust", recipe = "technic:copper_dust",
}) })
@ -111,7 +111,7 @@ minetest.register_craftitem( "technic:gold_dust", {
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "moreores:gold_ingot", output = "default:gold_ingot",
recipe = "technic:gold_dust", recipe = "technic:gold_dust",
}) })
@ -144,7 +144,7 @@ minetest.register_craftitem( "technic:bronze_dust", {
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "moreores:bronze_ingot", output = "default:bronze_ingot",
recipe = "technic:bronze_dust", recipe = "technic:bronze_dust",
}) })
@ -187,7 +187,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:desert_stone', 'default:desert_stone', 'default:desert_stone'}, {'default:desert_stone', 'default:desert_stone', 'default:desert_stone'},
{'default:desert_stone', 'default:diamond', 'default:desert_stone'}, {'default:desert_stone', 'default:diamond', 'default:desert_stone'},
{'default:stone', 'moreores:copper_ingot', 'default:stone'}, {'default:stone', 'default:copper_ingot', 'default:stone'},
} }
}) })

View File

@ -75,27 +75,27 @@ minetest.register_craft({
minetest.register_craft({ minetest.register_craft({
output = 'technic:green_energy_crystal', output = 'technic:green_energy_crystal',
recipe = { recipe = {
{'moreores:gold_ingot', 'technic:battery', 'dye:green'}, {'default:gold_ingot', 'technic:battery', 'dye:green'},
{'technic:battery', 'technic:red_energy_crystal', 'technic:battery'}, {'technic:battery', 'technic:red_energy_crystal', 'technic:battery'},
{'dye:green', 'technic:battery', 'moreores:gold_ingot'}, {'dye:green', 'technic:battery', 'default:gold_ingot'},
} }
}) })
minetest.register_craft({ minetest.register_craft({
output = 'technic:blue_energy_crystal', output = 'technic:blue_energy_crystal',
recipe = { recipe = {
{'moreores:gold_ingot', 'technic:battery', 'dye:blue'}, {'default:gold_ingot', 'technic:battery', 'dye:blue'},
{'technic:battery', 'technic:green_energy_crystal', 'technic:battery'}, {'technic:battery', 'technic:green_energy_crystal', 'technic:battery'},
{'dye:blue', 'technic:battery', 'moreores:gold_ingot'}, {'dye:blue', 'technic:battery', 'default:gold_ingot'},
} }
}) })
minetest.register_craft({ minetest.register_craft({
output = 'technic:red_energy_crystal', output = 'technic:red_energy_crystal',
recipe = { recipe = {
{'moreores:gold_ingot', 'technic:battery', 'dye:red'}, {'default:gold_ingot', 'technic:battery', 'dye:red'},
{'technic:battery', 'default:diamondblock', 'technic:battery'}, {'technic:battery', 'default:diamondblock', 'technic:battery'},
{'dye:red', 'technic:battery', 'moreores:gold_ingot'}, {'dye:red', 'technic:battery', 'default:gold_ingot'},
} }
}) })
@ -124,9 +124,9 @@ minetest.register_craftitem( "technic:fine_copper_wire", {
minetest.register_craft({ minetest.register_craft({
output = 'technic:fine_copper_wire 2', output = 'technic:fine_copper_wire 2',
recipe = { recipe = {
{'', 'moreores:copper_ingot', ''}, {'', 'default:copper_ingot', ''},
{'', 'moreores:copper_ingot', ''}, {'', 'default:copper_ingot', ''},
{'', 'moreores:copper_ingot', ''}, {'', 'default:copper_ingot', ''},
} }
}) })
@ -156,7 +156,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'}, {'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'},
{'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'}, {'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'},
{'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
} }
}) })
@ -214,8 +214,8 @@ minetest.register_craftitem( "technic:control_logic_unit", {
minetest.register_craft({ minetest.register_craft({
output = 'technic:control_logic_unit', output = 'technic:control_logic_unit',
recipe = { recipe = {
{'', 'moreores:gold_ingot', ''}, {'', 'default:gold_ingot', ''},
{'moreores:copper_ingot', 'technic:silicon_wafer', 'moreores:copper_ingot'}, {'default:copper_ingot', 'technic:silicon_wafer', 'default:copper_ingot'},
{'', 'moreores:copper_ingot', ''}, {'', 'default:copper_ingot', ''},
} }
}) })

View File

@ -10,7 +10,7 @@ minetest.register_craft({
recipe = { recipe = {
{'technic:stainless_steel_ingot', 'technic:diamond_drill_head', 'technic:stainless_steel_ingot'}, {'technic:stainless_steel_ingot', 'technic:diamond_drill_head', 'technic:stainless_steel_ingot'},
{'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_ingot'}, {'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_ingot'},
{'', 'technic:red_energy_crystal', 'moreores:copper_ingot'}, {'', 'technic:red_energy_crystal', 'default:copper_ingot'},
} }
}) })
minetest.register_craft({ minetest.register_craft({

View File

@ -77,7 +77,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:diamond', 'default:steel_ingot', 'technic:battery'}, {'default:diamond', 'default:steel_ingot', 'technic:battery'},
{'', 'default:steel_ingot', 'technic:battery'}, {'', 'default:steel_ingot', 'technic:battery'},
{'', '', 'moreores:copper_ingot'}, {'', '', 'default:copper_ingot'},
} }
}) })

View File

@ -4,7 +4,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:wood', 'default:wood', 'default:wood'}, {'default:wood', 'default:wood', 'default:wood'},
{'default:diamond', 'default:diamond', 'default:diamond'}, {'default:diamond', 'default:diamond', 'default:diamond'},
{'default:stone', 'moreores:copper_ingot', 'default:stone'}, {'default:stone', 'default:copper_ingot', 'default:stone'},
} }
}) })

View File

@ -4,7 +4,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:wood', 'default:wood', 'default:wood'}, {'default:wood', 'default:wood', 'default:wood'},
{'default:wood', 'default:diamond', 'default:wood'}, {'default:wood', 'default:diamond', 'default:wood'},
{'default:stone', 'moreores:copper_ingot', 'default:stone'}, {'default:stone', 'default:copper_ingot', 'default:stone'},
} }
}) })

View File

@ -6,9 +6,9 @@ minetest.register_alias("electric_furnace", "technic:electric_furnace")
minetest.register_craft({ minetest.register_craft({
output = 'technic:battery 1', output = 'technic:battery 1',
recipe = { recipe = {
{'default:wood', 'moreores:copper_ingot', 'default:wood'}, {'default:wood', 'default:copper_ingot', 'default:wood'},
{'default:wood', 'moreores:tin_ingot', 'default:wood'}, {'default:wood', 'moreores:tin_ingot', 'default:wood'},
{'default:wood', 'moreores:copper_ingot', 'default:wood'}, {'default:wood', 'default:copper_ingot', 'default:wood'},
} }
}) })
@ -16,7 +16,7 @@ minetest.register_craft({
output = 'technic:battery_box 1', output = 'technic:battery_box 1',
recipe = { recipe = {
{'technic:battery', 'default:wood', 'technic:battery'}, {'technic:battery', 'default:wood', 'technic:battery'},
{'technic:battery', 'moreores:copper_ingot', 'technic:battery'}, {'technic:battery', 'default:copper_ingot', 'technic:battery'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
} }
}) })
@ -26,7 +26,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:brick', 'default:brick', 'default:brick'}, {'default:brick', 'default:brick', 'default:brick'},
{'default:brick', '', 'default:brick'}, {'default:brick', '', 'default:brick'},
{'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
} }
}) })
@ -557,7 +557,7 @@ minetest.register_craft({
output = 'technic:solar_panel 1', output = 'technic:solar_panel 1',
recipe = { recipe = {
{'default:sand', 'default:sand', 'default:sand'}, {'default:sand', 'default:sand', 'default:sand'},
{'default:sand', 'moreores:copper_ingot','default:sand'}, {'default:sand', 'default:copper_ingot', 'default:sand'},
{'default:sand', 'default:sand', 'default:sand'}, {'default:sand', 'default:sand', 'default:sand'},
} }

View File

@ -5,7 +5,7 @@ minetest.register_craft({
recipe = { recipe = {
{'default:stone', 'default:stone', 'default:stone'}, {'default:stone', 'default:stone', 'default:stone'},
{'default:wood', 'default:diamond', 'default:wood'}, {'default:wood', 'default:diamond', 'default:wood'},
{'default:stone', 'moreores:copper_ingot', 'default:stone'}, {'default:stone', 'default:copper_ingot', 'default:stone'},
} }
}) })

View File

@ -6,7 +6,7 @@ minetest.register_alias("lv_cable", "technic:lv_cable")
minetest.register_craft({ minetest.register_craft({
output = 'technic:lv_cable 6', output = 'technic:lv_cable 6',
recipe = { recipe = {
{'moreores:copper_ingot', 'moreores:copper_ingot', 'moreores:copper_ingot'}, {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
} }
}) })

View File

@ -1,18 +1,18 @@
minetest.register_craft({ minetest.register_craft({
output = 'technic:copper_chest 1', output = 'technic:copper_chest 1',
recipe = { recipe = {
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'}, {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
{'moreores:copper_ingot','technic:iron_chest','moreores:copper_ingot'}, {'default:copper_ingot', 'technic:iron_chest', 'default:copper_ingot'},
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'}, {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
} }
}) })
minetest.register_craft({ minetest.register_craft({
output = 'technic:copper_locked_chest 1', output = 'technic:copper_locked_chest 1',
recipe = { recipe = {
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'}, {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
{'moreores:copper_ingot','technic:iron_locked_chest','moreores:copper_ingot'}, {'default:copper_ingot', 'technic:iron_locked_chest', 'default:copper_ingot'},
{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'}, {'default:copper_ingot', 'default:copper_ingot', 'default:copper_ingot'},
} }
}) })

View File

@ -19,18 +19,18 @@ local chest_mark_colors = {
minetest.register_craft({ minetest.register_craft({
output = 'technic:gold_chest 1', output = 'technic:gold_chest 1',
recipe = { recipe = {
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'}, {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
{'moreores:gold_ingot','technic:silver_chest','moreores:gold_ingot'}, {'default:gold_ingot', 'technic:silver_chest', 'default:gold_ingot'},
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'}, {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
} }
}) })
minetest.register_craft({ minetest.register_craft({
output = 'technic:gold_locked_chest 1', output = 'technic:gold_locked_chest 1',
recipe = { recipe = {
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'}, {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
{'moreores:gold_ingot','technic:silver_locked_chest','moreores:gold_ingot'}, {'default:gold_ingot', 'technic:silver_locked_chest', 'default:gold_ingot'},
{'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'}, {'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
} }
}) })