Added sponge piece + recipes, texture by Spearkiller (#2751)

This commit is contained in:
Ayutac 2022-01-17 23:41:50 +01:00 committed by GitHub
parent 2278b76d8d
commit 6db3df3037
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 0 deletions

View file

@ -833,6 +833,7 @@ public class TRContent {
UU_MATTER,
PLANTBALL,
COMPRESSED_PLANTBALL,
SPONGE_PIECE,
SYNTHETIC_REDSTONE_CRYSTAL;

View file

@ -639,6 +639,7 @@
"item.techreborn.uu_matter": "UU-Matter",
"item.techreborn.plantball": "Plantball",
"item.techreborn.compressed_plantball": "Compressed Plantball",
"item.techreborn.sponge_piece": "Piece of Sponge",
"item.techreborn.synthetic_redstone_crystal": "Synthetic Redstone Crystal",
"_comment14": "Items-Armor",

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "techreborn:item/part/sponge_piece"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"###",
"###"
],
"key": {
"#": {
"item": "techreborn:sponge_piece"
}
},
"result": {
"item": "minecraft:sponge"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "techreborn:extractor",
"power": 10,
"time": 1000,
"ingredients" : [
{
"item": "minecraft:cod",
"count": 64
}
],
"results" : [
{
"item": "techreborn:sponge_piece"
}
]
}