This file is indexed.

/usr/share/games/minetest/mods/maidroid/maidroid_tool/crafting.lua is in minetest-mod-maidroid 0.1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
------------------------------------------------------------
-- Copyright (c) 2016 tacigar. All rights reserved.
-- https://github.com/tacigar/maidroid
------------------------------------------------------------

minetest.register_craft{
	output = "maidroid_tool:core_writer",
	recipe = {
		{"default:steel_ingot",     "default:diamond", "default:steel_ingot"},
		{     "default:cobble", "default:steel_ingot",      "default:cobble"},
		{     "default:cobble",      "default:cobble",      "default:cobble"},
	},
}

minetest.register_craft{
	output = "maidroid_tool:egg_writer",
	recipe = {
		{    "default:diamond", "bucket:bucket_water",     "default:diamond"},
		{     "default:cobble", "default:steel_ingot",      "default:cobble"},
		{"default:steel_ingot",      "default:cobble", "default:steel_ingot"},
	},
}

minetest.register_craft{
	output = "maidroid_tool:nametag",
	recipe = {
		{                   "", "farming:cotton",                    ""},
		{      "default:paper",  "default:paper",       "default:paper"},
		{"default:steel_ingot",      "dye:black", "default:steel_ingot"},
	},
}