-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #297 from MrTroble/feat/1.19.4-multilinkingtool
Feat/1.19.4 multilinkingtool
- Loading branch information
Showing
15 changed files
with
87 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
{ | ||
"item.gircredstone.linker": "WLR Vinculador", | ||
"item.gircredstone.activator": "WLR Ativador Remoto", | ||
"block.gircredstone.emitter": "WLR Emissor", | ||
"block.gircredstone.multiemitter": "WLR Multi-Emissor", | ||
"block.gircredstone.acceptor": "WLR Receptor", | ||
"lt.linkedpos": "§2Ligado a: {%d, %d, %d§2}§r", | ||
"lt.setpos": "§2Definido como: {%d, %d, %d§2}§r", | ||
"lt.setpos.msg": "§l§9Por favor, clique em um emissor para definir o link.§r", | ||
"lt.notlinked": "§cNão ligado!§r", | ||
"lt.notlinked.msg": "§l§9Por favor, clique em um aceitador para vincular.§r", | ||
"lt.reset": "§cA ferramenta foi redefinida.§r", | ||
"lt.notset": "§cA ferramenta não está vinculado.§r", | ||
"em.notlinked": "§cEmissor não está vinculado!§r", | ||
"em.unlink": "§cDesvinculado.§r", | ||
"ra.state": "Ativado: %s" | ||
{ | ||
"item.gircredstone.linker": "WLR Vinculador", | ||
"item.gircredstone.multilinker": "WLR Múltiplo Vinculador", | ||
"item.gircredstone.activator": "WLR Ativador Remoto", | ||
"block.gircredstone.emitter": "WLR Emissor", | ||
"block.gircredstone.multiemitter": "WLR Multi-Emissor", | ||
"block.gircredstone.acceptor": "WLR Receptor", | ||
"lt.linkedpos": "§2Ligado a: {%d, %d, %d§2}§r", | ||
"lt.setpos": "§2Definido como: {%d, %d, %d§2}§r", | ||
"lt.setpos.msg": "§l§9Por favor, clique em um emissor para definir o link.§r", | ||
"lt.notlinked": "§cNão ligado!§r", | ||
"lt.notlinked.msg": "§l§9Por favor, clique em um aceitador para vincular.§r", | ||
"lt.reset": "§cA ferramenta foi redefinida.§r", | ||
"lt.notset": "§cA ferramenta não está vinculado.§r", | ||
"lt.unlink": "§cEmissor não está mais vinculado!§r", | ||
"em.notlinked": "§cEmissor não está vinculado!§r", | ||
"em.unlink": "§cDesvinculado.§r", | ||
"ra.state": "Ativado: %s" | ||
} |
1 change: 1 addition & 0 deletions
1
src/main/resources/assets/gircredstone/models/item/multilinker.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"parent": "minecraft:item/generated", "textures": {"layer0": "gircredstone:item/multilinker"}, "credit": "Made with Blockbench by Mc_Jeronimo"} |
Binary file added
BIN
+571 Bytes
src/main/resources/assets/gircredstone/textures/item/multilinker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions
22
src/main/resources/data/gircredstone/recipes/multilinker.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
" I ", | ||
" i ", | ||
" x " | ||
], | ||
"key": { | ||
"I": { | ||
"item": "minecraft:quartz" | ||
}, | ||
"i": { | ||
"item": "minecraft:redstone_torch" | ||
}, | ||
"x": { | ||
"item": "minecraft:diamond" | ||
} | ||
}, | ||
"result": { | ||
"item": "gircredstone:multilinker" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"pack": { | ||
"description": "GIRC Redstone", | ||
"pack_format": 12, | ||
"forge:resource_pack_format": 12, | ||
"forge:data_pack_format": 10 | ||
"pack_format": 13, | ||
"forge:resource_pack_format": 13, | ||
"forge:data_pack_format": 12 | ||
} | ||
} |