mirror of
https://gitlab.com/lunovox/components.git
synced 2025-03-15 08:01:22 +00:00
[bugfix] Any recipes did not is visible.
This commit is contained in:
parent
74dc1f17ef
commit
4640844b80
4 changed files with 51 additions and 44 deletions
|
@ -8,9 +8,9 @@ minetest.register_craftitem("components:wire_copper", {
|
|||
inventory_image = "obj_wire_copper_64.png",
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craftitem("components:gold_wire", {
|
||||
minetest.register_craftitem("components:wire_gold", {
|
||||
description = modComponents.translate("Gold Wire"),
|
||||
inventory_image = "obj_gold_wire_64.png",
|
||||
inventory_image = "obj_wire_gold_64.png",
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craftitem("components:steel_spiral", {
|
||||
|
@ -61,15 +61,6 @@ minetest.register_craftitem("components:bioresin", {
|
|||
inventory_image = "obj_bioresin_16.png",
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craftitem("components:ionized_bioresin", {
|
||||
--description = minetest.formspec_escape(modComponents.translate("Ionized Bioresin")),
|
||||
description = "Ionized Bioresin",
|
||||
inventory_image = "obj_ionized_bioresin_32.png",
|
||||
})
|
||||
minetest.register_alias("ionizedbioresin","components:ionized_bioresin")
|
||||
minetest.register_alias("ufofuel","components:ionized_bioresin")
|
||||
minetest.register_alias(modComponents.translate("ionizedbioresin"),"components:ionized_bioresin")
|
||||
--########################################################################################################################
|
||||
minetest.register_craftitem("components:bioplastic_mass", {
|
||||
description = modComponents.translate("Bioplastic Mass"),
|
||||
inventory_image = "obj_bioplastic_mass_16.png",
|
||||
|
@ -227,6 +218,7 @@ minetest.register_craftitem("components:transistor", {
|
|||
inventory_image = "obj_transistor_96.png",
|
||||
})
|
||||
--########################################################################################################################
|
||||
--[[
|
||||
minetest.register_craftitem("components:artif_inteligency", {
|
||||
description = core.colorize("#00FF00",
|
||||
modComponents.translate("Upgrade - Artificial Inteligency")
|
||||
|
@ -235,4 +227,15 @@ minetest.register_craftitem("components:artif_inteligency", {
|
|||
groups = {upgrades=1},
|
||||
inventory_image = "obj_artif_inteligency_96.png",
|
||||
})
|
||||
--]]
|
||||
--########################################################################################################################
|
||||
--[[
|
||||
minetest.register_craftitem("components:ionized_bioresin", {
|
||||
--description = minetest.formspec_escape(modComponents.translate("Ionized Bioresin")),
|
||||
description = "Ionized Bioresin",
|
||||
inventory_image = "obj_ionized_bioresin_32.png",
|
||||
})
|
||||
minetest.register_alias("ionizedbioresin","components:ionized_bioresin")
|
||||
minetest.register_alias(modComponents.translate("ionizedbioresin"),"components:ionized_bioresin")
|
||||
--]]
|
||||
--########################################################################################################################
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
minetest.register_craft({
|
||||
output = "components:steel_core",
|
||||
recipe = {
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "default:steelblock", ""},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:wire_steel",
|
||||
recipe = {
|
||||
|
@ -70,15 +79,6 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:steel_core",
|
||||
recipe = {
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "default:steelblock", ""},
|
||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:copper_coil",
|
||||
recipe = {
|
||||
|
@ -95,17 +95,6 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:ionized_bioresin 9",
|
||||
recipe = {
|
||||
{"components:bioresin", "components:bioresin", "components:bioresin"},
|
||||
{"components:bioresin", "default:mese_crystal_fragment", "components:bioresin"},
|
||||
{"components:bioresin", "components:bioresin", "components:bioresin"}
|
||||
}
|
||||
})
|
||||
minetest.register_alias("ionizedbioresin","components:ionized_bioresin")
|
||||
minetest.register_alias(modComponents.translate("ionizedbioresin"),"components:ionized_bioresin")
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "components:bioplastic_mass",
|
||||
|
@ -253,15 +242,6 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:cockpit",
|
||||
recipe = {
|
||||
{"default:obsidian_glass", "components:panel", "components:eletric_lamp"},
|
||||
{"default:obsidian_glass", "components:pilot_manche", "components:upholstered_chair"},
|
||||
{"default:steelblock", "default:steelblock", "default:steelblock"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:microprocessor",
|
||||
recipe = {
|
||||
|
@ -343,6 +323,16 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
minetest.register_craft({
|
||||
output = "components:cockpit",
|
||||
recipe = {
|
||||
{"components:panel", "components:eletric_lamp", "components:storage_fuel_50L"},
|
||||
{"components:pilot_manche", "components:upholstered_chair", "components:oxigen_system"},
|
||||
{"default:steel_ingot", "default:steelblock", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
--[[
|
||||
minetest.register_craft({
|
||||
output = "components:artif_inteligency",
|
||||
recipe = {
|
||||
|
@ -351,5 +341,19 @@ minetest.register_craft({
|
|||
{"components:capacitor", "components:bioplastic_ingot", "components:resistance_electrical"}
|
||||
}
|
||||
})
|
||||
--]]
|
||||
--########################################################################################################################
|
||||
--[[
|
||||
minetest.register_craft({
|
||||
output = "components:ionized_bioresin 9",
|
||||
recipe = {
|
||||
{"components:bioresin", "components:bioresin", "components:bioresin"},
|
||||
{"components:bioresin", "default:mese_crystal_fragment", "components:bioresin"},
|
||||
{"components:bioresin", "components:bioresin", "components:bioresin"}
|
||||
}
|
||||
})
|
||||
minetest.register_alias("ionizedbioresin","components:ionized_bioresin")
|
||||
minetest.register_alias(modComponents.translate("ionizedbioresin"),"components:ionized_bioresin")
|
||||
--]]
|
||||
--########################################################################################################################
|
||||
|
||||
|
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 559 B After Width: | Height: | Size: 559 B |
Loading…
Add table
Reference in a new issue