Go to file
Jordan Irwin d4b8352cb6 Update README 2021-06-30 00:40:25 -07:00
locale Add option to show technical names 2021-06-30 00:29:41 -07:00
textures New CC0 textures by rubberduck... 2021-04-24 19:05:59 -07:00
LICENSE.txt Initial commit 2021-04-23 16:57:12 -07:00
README.md Update README 2021-06-30 00:40:25 -07:00
TODO.txt Add option to show technical names 2021-06-30 00:29:41 -07:00
changelog.txt Add option to show technical names 2021-06-30 00:29:41 -07:00
crafting.lua Add craft recipe 2021-04-24 23:28:29 -07:00
formspec.lua Minor string fix 2021-06-30 00:30:08 -07:00
init.lua Add craft recipe 2021-04-24 23:28:29 -07:00
mod.conf Update description 2021-06-30 00:34:49 -07:00
node.lua Add option to show technical names 2021-06-30 00:29:41 -07:00
screenshot.png Update screenshot 2021-04-24 01:08:15 -07:00

README.md

Equipment Examiner

Description:

A Minetest mod that adds a node that can be used to examine equipment & item specs.

screenshot

Licensing:

Requirements:

  • Depends: none
  • Optional depends:
    • default (required for craft recipe)
    • basic_materials

Crafting:

Spoiler:

Key:

  • d:s = default:steel_ingot (wrought iron ingot)
  • d:b = default:bronze_ingot (bronze ingot)
  • d:o = default:obsidianbrick (obsidian brick)
  • b:i = basic_materials:ic (simple integrated circuit)

Without basic_materials:

┌─────┬─────┬─────┐
│ d:s │ d:b │ d:s │
├─────┼─────┼─────┤
│ d:b │ d:o │ d:b │
├─────┼─────┼─────┤
│ d:s │ d:b │ d:s │
└─────┴─────┴─────┘

With basic_materials:

┌─────┬─────┬─────┐
│ d:s │ d:b │ d:s │
├─────┼─────┼─────┤
│ d:b │ b:i │ d:b │
├─────┼─────┼─────┤
│ d:s │ d:b │ d:s │
└─────┴─────┴─────┘