Decrease lava usage of recipes, rebalance a few recipes to make them easier
This commit is contained in:
parent
f84d43215b
commit
f86c3956e4
@ -46,7 +46,7 @@ minetest.register_craft({
|
||||
minetest.register_craft({
|
||||
output = L("photonizer"),
|
||||
recipe = {
|
||||
{"default:mese_crystal"},
|
||||
{"default:mese_crystal_fragment"},
|
||||
{L("silverin_circuit")},
|
||||
{L("silverin_plate")},
|
||||
}
|
||||
@ -85,9 +85,9 @@ minetest.register_craft({
|
||||
minetest.register_craft({
|
||||
output = L("storage_upgrade_2"),
|
||||
recipe = {
|
||||
{L("standing_wave_box"), "default:diamond", L("standing_wave_box")},
|
||||
{L("silverin_slice"), L("standing_wave_box"), L("silverin_slice")},
|
||||
{L("silverin_slice"), L("silverin_circuit"), L("silverin_slice")},
|
||||
{"", "default:diamond", ""},
|
||||
{"", L("storage_upgrade_1"), ""},
|
||||
{"", L("standing_wave_box"), ""},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -2,7 +2,7 @@ local L = function(str) return "logistica:"..str end
|
||||
|
||||
logistica.register_lava_furnace_recipe("default:silver_sand", {
|
||||
output = L("silverin"),
|
||||
lava = 50,
|
||||
lava = 25,
|
||||
additive = "default:ice",
|
||||
additive_use_chance = 50,
|
||||
time = 2.5
|
||||
@ -10,7 +10,7 @@ logistica.register_lava_furnace_recipe("default:silver_sand", {
|
||||
|
||||
logistica.register_lava_furnace_recipe(L("silverin"), {
|
||||
output = L("silverin_plate 4"),
|
||||
lava = 100,
|
||||
lava = 50,
|
||||
additive = "default:steel_ingot",
|
||||
additive_use_chance = 100,
|
||||
time = 5
|
||||
@ -18,7 +18,7 @@ logistica.register_lava_furnace_recipe(L("silverin"), {
|
||||
|
||||
logistica.register_lava_furnace_recipe(L("silverin_slice"), {
|
||||
output = L("silverin_circuit"),
|
||||
lava = 150,
|
||||
lava = 60,
|
||||
additive = "default:mese_crystal_fragment",
|
||||
additive_use_chance = 100,
|
||||
time = 10
|
||||
@ -26,7 +26,7 @@ logistica.register_lava_furnace_recipe(L("silverin_slice"), {
|
||||
|
||||
logistica.register_lava_furnace_recipe("default:glass", {
|
||||
output = L("silverin_mirror_box"),
|
||||
lava = 100,
|
||||
lava = 50,
|
||||
additive = L("silverin_slice 6"),
|
||||
additive_use_chance = 100,
|
||||
time = 4
|
||||
@ -34,7 +34,7 @@ logistica.register_lava_furnace_recipe("default:glass", {
|
||||
|
||||
logistica.register_lava_furnace_recipe(L("silverin"), {
|
||||
output = L("wireless_crystal"),
|
||||
lava = 120,
|
||||
lava = 60,
|
||||
additive = "default:mese_crystal",
|
||||
additive_use_chance = 100,
|
||||
time = 12
|
||||
|
Loading…
x
Reference in New Issue
Block a user