simple-tech

Minecraft: Better than Adventure! mod that adds simple blocks to automate tasks
git clone git://memoryshards.xyz/simple-tech.git
Log | Files | Refs | README | LICENSE

commit fae8751a371846585ebc92f2d859887ba7edae74
parent f915068c81ec7cc5065583258fec3d82eb6e6894
Author: Amb0s <ambos@disroot.org>
Date:   Sun,  4 Feb 2024 22:12:13 +0100

Added recipe and translations

Diffstat:
Msrc/main/resources/assets/simpletech/recipes/workbench.json | 44++++++++++++++++++++++++++++++++++++++++++--
Msrc/main/resources/lang/simpletech/en_US.lang | 5+++--
Msrc/main/resources/lang/simpletech/fr_FR.lang | 5+++--
3 files changed, 48 insertions(+), 6 deletions(-)

diff --git a/src/main/resources/assets/simpletech/recipes/workbench.json b/src/main/resources/assets/simpletech/recipes/workbench.json @@ -171,5 +171,46 @@ "amount": 1, "meta": 0 } + }, + { + "name": "simpletech:workbench/not_gate", + "type": "minecraft:crafting/shaped", + "pattern": [ + " ", + "RRT", + "SSS" + ], + "symbols": [ + { + "symbol": "T", + "stack": { + "key": "tile.torch.redstone.active", + "amount": 1, + "meta": 0 + } + }, + { + "symbol": "S", + "stack": { + "key": "tile.stone", + "amount": 1, + "meta": 0 + } + }, + { + "symbol": "R", + "stack": { + "key": "item.dust.redstone", + "amount": 1, + "meta": 0 + } + } + ], + "result": { + "key": "item.simpletech.not.gate", + "amount": 1, + "meta": 0 + }, + "consumeContainers": true } -] -\ No newline at end of file +] diff --git a/src/main/resources/lang/simpletech/en_US.lang b/src/main/resources/lang/simpletech/en_US.lang @@ -9,4 +9,6 @@ tile.simpletech.chest.trapped.desc=It's a trap! tile.simpletech.lightsensor.name=Light Sensor tile.simpletech.lightsensor.desc=...and there was light tile.simpletech.allocator.name=Allocator -tile.simpletech.allocator.desc=WIP -\ No newline at end of file +tile.simpletech.allocator.desc=WIP +item.simpletech.not.gate.name=Not Gate +item.simpletech.not.gate.desc=WIP diff --git a/src/main/resources/lang/simpletech/fr_FR.lang b/src/main/resources/lang/simpletech/fr_FR.lang @@ -9,4 +9,6 @@ tile.simpletech.chest.trapped.desc=J'active ma carte piège ! tile.simpletech.lightsensor.name=Détecteur de lumière tile.simpletech.lightsensor.desc=... et la lumière fut tile.simpletech.allocator.name=Allocateur -tile.simpletech.allocator.desc=WIP -\ No newline at end of file +tile.simpletech.allocator.desc=WIP +item.simpletech.not.gate.name=Porte Non +item.simpletech.not.gate.desc=WIP