Compare commits
2 Commits
909f20992e
...
0329750877
| Author | SHA1 | Date | |
|---|---|---|---|
| 0329750877 | |||
| 27479f302c |
28
README.md
28
README.md
@@ -1,25 +1,35 @@
|
||||
# IndustrialTest
|
||||
IndustrialTest is a mod for [Minetest](https://www.minetest.net/) that adds various tech and machinery related stuff.
|
||||
IndustrialTest is a mod for [Minetest](https://luanti.org) that adds various tech and machinery related stuff.
|
||||
|
||||
## Guide
|
||||
Guide can be accessed in-game using `/industrialtest_guide` command.
|
||||
|
||||
## Compatibility
|
||||
Currently IndustrialTest supports following games:
|
||||
- [Minetest Game](https://content.minetest.net/packages/Minetest/minetest_game) and derivatives
|
||||
- [MineClone2](https://content.minetest.net/packages/Wuzzy/mineclone2/) and derivatives
|
||||
- [Minetest Game](https://content.luanti.org/packages/Minetest/minetest_game) and derivatives
|
||||
- [VoxeLibre](https://content.luanti.org/packages/Wuzzy/mineclone2) and derivatives
|
||||
|
||||
## Additional dependencies
|
||||
- Minetest Game
|
||||
- [3D Armor](https://content.minetest.net/packages/stu/3d_armor)
|
||||
- [3D Armor](https://content.luanti.org/packages/stu/3d_armor)
|
||||
- VoxeLibre
|
||||
- none
|
||||
|
||||
## Optional dependencies
|
||||
- [Rubber Addon for MineClone](https://content.minetest.net/packages/biochemist/mcl_rubber)
|
||||
- [Pipeworks](https://content.minetest.net/packages/VanessaE/pipeworks)
|
||||
- [Logistica](https://content.minetest.net/packages/ZenonSeth/logistica)
|
||||
- [Mesecons](https://content.minetest.net/packages/Jeija/mesecons)
|
||||
- [Rubber Addon for MineClone](https://content.luanti.org/packages/biochemist/mcl_rubber)
|
||||
- [Pipeworks](https://content.luanti.org/packages/VanessaE/pipeworks)
|
||||
- [Logistica](https://content.luanti.org/packages/ZenonSeth/logistica)
|
||||
- [Mesecons](https://content.luanti.org/packages/Jeija/mesecons)
|
||||
|
||||
## Locale
|
||||
Mod is available in following languages:
|
||||
- English / en_US (base)
|
||||
- Polish / pl_PL (by mrkubax10)
|
||||
|
||||
New translations highly appreciated!
|
||||
|
||||
## Contributors
|
||||
- mrkubax10 <mrkubax10@onet.pl or mrkubax10 at irc.libera.chat> [programming, some graphics]
|
||||
- HandfulOfFrogs <<handfuloffrogs@gmail.com>> [some programming, graphics]
|
||||
- LuanHawk <Discord: LuanHawk#8733> [lead graphics]
|
||||
- LuanHawk <Discord: luanhawk> [lead graphics]
|
||||
- Migdyn <<temp1@cubesoftware.xyz>> [graphics]
|
||||
|
||||
@@ -121,7 +121,87 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
if industrialtest.mclAvailable then
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.coal,
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","",""},
|
||||
{"","","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.stoneWithIron,
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.diamond,
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.stickyResin.." 32",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"","",""},
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="industrialtest:tin_dust 4",
|
||||
recipe={
|
||||
{"","",""},
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"","","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="industrialtest:copper_dust 4",
|
||||
recipe={
|
||||
{"","","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","","industrialtest:uu_matter"},
|
||||
{"","",""}
|
||||
}
|
||||
})
|
||||
|
||||
if industrialtest.mtgAvailable then
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="industrialtest:iridium_lump",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
elseif industrialtest.mclAvailable then
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="industrialtest:raw_iridium",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="mcl_core:vine 24",
|
||||
@@ -141,4 +221,34 @@ if industrialtest.mclAvailable then
|
||||
{"industrialtest:uu_matter",""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.powerCarrier.." 10",
|
||||
recipe={
|
||||
{"","",""},
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output=industrialtest.elementKeys.blueDye,
|
||||
recipe={
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"","industrialtest:uu_matter",""},
|
||||
{"","industrialtest:uu_matter","industrialtest:uu_matter"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type="shaped",
|
||||
output="mcl_core:emerald 8",
|
||||
recipe={
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||
{"industrialtest:uu_matter","industrialtest:uu_matter","industrialtest:uu_matter"},
|
||||
{"","industrialtest:uu_matter",""}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user