Go to file
Jordan Irwin 4382d168b8 Fix wielded_light badge in README 2021-07-07 16:29:08 -07:00
locale Add workbench support to check if items are repairable 2021-07-04 10:28:27 -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 Fix wielded_light badge in README 2021-07-07 16:29:08 -07:00
TODO.txt Added support for checking if items are repairable with xdecor:workbench... 2021-07-04 10:50:20 -07:00
changelog.txt Update changelog 2021-07-04 11:05:26 -07:00
crafting.lua Add craft recipe 2021-04-24 23:28:29 -07:00
formspec.lua Update xdecor API... 2021-07-07 16:09:18 -07:00
init.lua Add craft recipe 2021-04-24 23:28:29 -07:00
mod.conf Increment version to 1.5 2021-07-04 10:57:23 -07:00
node.lua Pass ItemStack to formspec so meta can be used 2021-06-30 23:06:25 -07:00
screenshot.png Update screenshot 2021-07-04 11:05:37 -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:

Usage:

Right-click the equipment examiner node & place an item into its inventory slot to populate the specs list.

Requirements:

  • Minetest minimum version: 5.0
  • Depends: none
  • Optional depends:
    • default (required for craft recipe)
    • basic_materials
    • wlight
    • wielded_light
    • workbench
    • xdecor

Other Mod Support:

  • 3d_armor

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 │
└─────┴─────┴─────┘