Go to file
Jordan Irwin fadab73d83 Increment version to 1.7 2021-08-15 03:37:56 -07:00
locale Translate more strings 2021-08-15 03:37:09 -07:00
textures New CC0 textures by rubberduck... 2021-04-24 19:05:59 -07:00
.gitattributes Add script for updating version 2021-08-14 23:13:53 -07:00
LICENSE.txt Initial commit 2021-04-23 16:57:12 -07:00
README.md Add 3d_armor_light support 2021-07-19 13:44:28 -07:00
TODO.txt Add Spanish translation 2021-08-15 03:06:29 -07:00
changelog.txt Add Spanish translation 2021-08-15 03:06:29 -07:00
crafting.lua Add craft recipe 2021-04-24 23:28:29 -07:00
formspec.lua Fix/Update translated strings 2021-08-15 03:05:21 -07:00
init.lua Add craft recipe 2021-04-24 23:28:29 -07:00
mod.conf Increment version to 1.7 2021-08-15 03:37:56 -07:00
node.lua Fix spelling error 2021-08-15 03:03:49 -07:00
screenshot.png Update screenshot 2021-07-04 11:05:37 -07:00
set_version.py Add script for updating version 2021-08-14 23:13:53 -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
    • wielded_light
    • workbench
    • xdecor
    • 3d_armor_light

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