mod-equip_exam/README.md

79 lines
3.0 KiB
Markdown
Raw Permalink Normal View History

2021-04-23 16:57:12 -07:00
## Equipment Examiner
### Description:
2021-06-30 00:34:49 -07:00
A [Minetest](https://www.minetest.net/) mod that adds a node that can be used to examine equipment & item specs.
2021-04-23 22:40:11 -07:00
![screenshot](screenshot.png)
2021-04-23 16:57:12 -07:00
### Licensing:
2021-04-24 01:02:49 -07:00
- Code: [MIT](LICENSE.txt)
- Textures: [CC0](textures//sources.txt)
2021-04-24 19:17:05 -07:00
2021-07-07 16:21:35 -07:00
### Usage:
Right-click the equipment examiner node & place an item into its inventory slot to populate the specs list.
2021-06-30 00:40:25 -07:00
### Requirements:
2021-04-24 22:58:45 -07:00
2021-07-07 16:21:35 -07:00
- Minetest minimum version: 5.0
2021-06-30 00:40:25 -07:00
- Depends: none
- Optional depends:
- [![default](https://img.shields.io/static/v1?label=GitHub&message=default&color=%23375a7f&logo=github)](https://github.com/minetest/minetest_game/tree/master/mods/default) *(required for craft recipe)*
- [![basic_materials](https://img.shields.io/static/v1?label=ContentDB&message=basic_materials&color=%23375a7f&logo=minetest)](https://content.minetest.net/packages/VanessaE/basic_materials/)
2021-07-07 16:29:08 -07:00
- [![wielded_light](https://img.shields.io/static/v1?label=ContentDB&message=wielded_light&color=%23375a7f&logo=minetest)](https://content.minetest.net/packages/bell07/wielded_light/)
2021-07-07 16:21:35 -07:00
- [![workbench](https://img.shields.io/static/v1?label=GitHub&message=workbench&color=%23375a7f&logo=minetest)](https://github.com/AntumMT/mod-workbench)
- [![xdecor](https://img.shields.io/static/v1?label=ContentDB&message=xdecor&color=%23375a7f&logo=minetest)](https://content.minetest.net/packages/jp/xdecor/)
2021-07-19 13:44:28 -07:00
- [![3d_armor_light](https://img.shields.io/static/v1?label=ContentDB&message=3d_armor_light&color=%23375a7f&logo=minetest)](https://content.minetest.net/packages/AntumDeluge/3d_armor_light/)
2021-04-24 22:58:45 -07:00
2021-07-07 16:27:36 -07:00
#### Other Mod Support:
- [![3d_armor](https://img.shields.io/static/v1?label=ContentDB&message=3d_armor&color=%23375a7f&logo=minetest)](https://content.minetest.net/packages/stu/3d_armor/)
2021-04-24 22:58:45 -07:00
### Crafting:
<details>
<summary>Spoiler:</summary>
2021-04-24 23:48:15 -07:00
2021-04-24 22:58:45 -07:00
Key:
- d:s = default:steel_ingot (wrought iron ingot)
- d:b = default:bronze_ingot (bronze ingot)
2021-04-24 23:36:37 -07:00
- d:o = default:obsidianbrick (obsidian brick)
2021-04-24 22:58:45 -07:00
- b:i = basic_materials:ic (simple integrated circuit)
<blockquote>
Without `basic_materials`:
```
┌─────┬─────┬─────┐
│ d:s │ d:b │ d:s │
├─────┼─────┼─────┤
2021-04-24 23:36:37 -07:00
│ d:b │ d:o │ d:b │
2021-04-24 22:58:45 -07:00
├─────┼─────┼─────┤
│ 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 │
└─────┴─────┴─────┘
```
</blockquote>
</details>
2021-04-24 19:17:05 -07:00
### Links:
2021-04-24 19:37:18 -07:00
2021-06-30 00:42:04 -07:00
- [![ContentDB](https://img.shields.io/static/v1?label=ContentDB&message=equip_exam&color=%23375a7f&logo=minetest)](https://content.minetest.net/packages/AntumDeluge/equip_exam/)
2021-06-30 00:40:25 -07:00
- [Forum](https://forum.minetest.net/viewtopic.php?t=26618)
- [Git repo](https://github.com/AntumMT/mod-equip_exam)
2021-06-29 22:37:31 -07:00
- [Changelog](changelog.txt)
2021-04-24 19:37:18 -07:00
- [TODO](TODO.txt)