mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-15 00:03:42 +01:00
Merge remote-tracking branch 'origin/mc1.15/dev' into mc1.16/dev
Update to 1.16.3 Conflicts: src/main/java/com/simibubi/create/AllBlockPartials.java src/main/java/com/simibubi/create/AllBlocks.java src/main/java/com/simibubi/create/AllTags.java src/main/java/com/simibubi/create/ClientEvents.java src/main/java/com/simibubi/create/CommonEvents.java src/main/java/com/simibubi/create/content/contraptions/components/actors/StorageInterfaceMovement.java src/main/java/com/simibubi/create/content/contraptions/components/crafter/MechanicalCrafterTileEntity.java src/main/java/com/simibubi/create/content/contraptions/components/deployer/DeployerTileEntity.java src/main/java/com/simibubi/create/content/contraptions/components/fan/AirCurrent.java src/main/java/com/simibubi/create/content/contraptions/components/fan/NozzleTileEntity.java src/main/java/com/simibubi/create/content/contraptions/components/mixer/MechanicalMixerTileEntity.java src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/Contraption.java src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/ContraptionCollider.java src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/ContraptionEntity.java src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/glue/SuperGlueItem.java src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/glue/SuperGlueRenderer.java src/main/java/com/simibubi/create/content/contraptions/components/structureMovement/mounted/CartAssemblerBlock.java src/main/java/com/simibubi/create/content/contraptions/fluids/FluidPipeBlock.java src/main/java/com/simibubi/create/content/contraptions/fluids/FluidPipeModel.java src/main/java/com/simibubi/create/content/contraptions/fluids/FluidTankBlock.java src/main/java/com/simibubi/create/content/contraptions/fluids/FluidTankCTBehaviour.java src/main/java/com/simibubi/create/content/contraptions/fluids/FluidTankModel.java src/main/java/com/simibubi/create/content/contraptions/fluids/PumpBlock.java src/main/java/com/simibubi/create/content/contraptions/particle/AirFlowParticle.java src/main/java/com/simibubi/create/content/contraptions/processing/HeaterBlock.java src/main/java/com/simibubi/create/content/contraptions/processing/HeaterRenderer.java src/main/java/com/simibubi/create/content/contraptions/processing/HeaterTileEntity.java src/main/java/com/simibubi/create/content/contraptions/relays/belt/BeltHelper.java src/main/java/com/simibubi/create/content/curiosities/ChromaticCompoundItem.java src/main/java/com/simibubi/create/content/curiosities/symmetry/SymmetryWandScreen.java src/main/java/com/simibubi/create/content/curiosities/tools/SandPaperPolishingRecipe.java src/main/java/com/simibubi/create/content/logistics/block/extractor/ExtractorBlock.java src/main/java/com/simibubi/create/content/logistics/block/extractor/ExtractorMovementBehaviour.java src/main/java/com/simibubi/create/content/logistics/block/extractor/ExtractorSlots.java src/main/java/com/simibubi/create/content/logistics/block/extractor/ExtractorTileEntity.java src/main/java/com/simibubi/create/content/logistics/block/extractor/LinkedExtractorBlock.java src/main/java/com/simibubi/create/content/logistics/block/funnel/FunnelFilterSlotPositioning.java src/main/java/com/simibubi/create/foundation/fluid/FluidRenderer.java src/main/java/com/simibubi/create/foundation/tileEntity/behaviour/belt/TransportedItemStackHandlerBehaviour.java src/main/java/com/simibubi/create/foundation/tileEntity/behaviour/inventory/SynchronizedExtraction.java src/main/java/com/simibubi/create/foundation/utility/AngleHelper.java src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java src/main/java/com/simibubi/create/foundation/utility/VecHelper.java src/main/java/com/simibubi/create/foundation/utility/outliner/BlockClusterOutline.java src/main/java/com/simibubi/create/foundation/utility/outliner/Outline.java
This commit is contained in:
commit
4beaab9b97
1372 changed files with 32410 additions and 16919 deletions
|
@ -29,7 +29,7 @@ archivesBaseName = 'create'
|
|||
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
|
||||
|
||||
minecraft {
|
||||
mappings channel: 'snapshot', version: '20200722-mixed-1.16.1'
|
||||
mappings channel: 'snapshot', version: '20200920-mixed-1.16.3'
|
||||
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
||||
|
||||
runs {
|
||||
|
@ -107,14 +107,14 @@ configurations {
|
|||
dependencies {
|
||||
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
||||
|
||||
def registrate = "com.tterrag.registrate:Registrate:MC${minecraft_version}-${registrate_version}"
|
||||
def registrate = "com.tterrag.registrate:Registrate:MC1.16.2-${registrate_version}"
|
||||
implementation fg.deobf(registrate)
|
||||
shade registrate
|
||||
|
||||
// compile against the JEI API but do not include it at runtime
|
||||
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}:api")
|
||||
compileOnly fg.deobf("mezz.jei:jei-1.16.2:${jei_version}:api")
|
||||
// at runtime, use the full JEI jar
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}")
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-1.16.2:${jei_version}")
|
||||
|
||||
// i'll leave this here commented for easier testing
|
||||
//runtimeOnly fg.deobf("vazkii.arl:AutoRegLib:1.4-35.69")
|
||||
|
|
|
@ -5,12 +5,12 @@ org.gradle.daemon=false
|
|||
|
||||
# mod version info
|
||||
mod_version=0.3
|
||||
minecraft_version=1.16.1
|
||||
forge_version=32.0.70
|
||||
minecraft_version=1.16.3
|
||||
forge_version=34.0.9
|
||||
|
||||
# dependency versions
|
||||
registrate_version=1.0.0-beta.1
|
||||
jei_version=7.0.0.6
|
||||
registrate_version=1.0.0-beta.6
|
||||
jei_version=7.3.2.27
|
||||
|
||||
# curseforge information
|
||||
projectId=328085
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,64 +1,124 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,pushing=false,shape=retracted": {
|
||||
"facing=north,powered=false,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_retracted"
|
||||
},
|
||||
"facing=south,pushing=false,shape=retracted": {
|
||||
"facing=south,powered=false,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_retracted",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,pushing=false,shape=retracted": {
|
||||
"facing=west,powered=false,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_retracted",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,pushing=false,shape=retracted": {
|
||||
"facing=east,powered=false,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_retracted",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,pushing=true,shape=retracted": {
|
||||
"facing=north,powered=true,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_retracted"
|
||||
},
|
||||
"facing=south,powered=true,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_retracted",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_retracted",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,pushing=false,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_retracted",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_retracted"
|
||||
},
|
||||
"facing=south,pushing=true,shape=retracted": {
|
||||
"facing=south,powered=false,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_retracted",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,pushing=true,shape=retracted": {
|
||||
"facing=west,powered=false,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_retracted",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,pushing=true,shape=retracted": {
|
||||
"facing=east,powered=false,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_retracted",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,pushing=false,shape=extended": {
|
||||
"facing=north,powered=true,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_retracted"
|
||||
},
|
||||
"facing=south,powered=true,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_retracted",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_retracted",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,pushing=true,shape=retracted": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_retracted",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_extended"
|
||||
},
|
||||
"facing=south,pushing=false,shape=extended": {
|
||||
"facing=south,powered=false,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_extended",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,pushing=false,shape=extended": {
|
||||
"facing=west,powered=false,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_extended",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,pushing=false,shape=extended": {
|
||||
"facing=east,powered=false,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_extended",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,pushing=true,shape=extended": {
|
||||
"facing=north,powered=true,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_extended"
|
||||
},
|
||||
"facing=south,powered=true,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_extended",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_extended",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,pushing=false,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_pull_powered_extended",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_extended"
|
||||
},
|
||||
"facing=south,pushing=true,shape=extended": {
|
||||
"facing=south,powered=false,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_extended",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,pushing=true,shape=extended": {
|
||||
"facing=west,powered=false,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_extended",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,pushing=true,shape=extended": {
|
||||
"facing=east,powered=false,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_extended",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_extended"
|
||||
},
|
||||
"facing=south,powered=true,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_extended",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_extended",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,pushing=true,shape=extended": {
|
||||
"model": "create:block/andesite_belt_funnel_push_powered_extended",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,pushing=false": {
|
||||
"model": "create:block/andesite_chute_funnel_pull"
|
||||
},
|
||||
"facing=south,pushing=false": {
|
||||
"model": "create:block/andesite_chute_funnel_pull",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,pushing=false": {
|
||||
"model": "create:block/andesite_chute_funnel_pull",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,pushing=false": {
|
||||
"model": "create:block/andesite_chute_funnel_pull",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,pushing=true": {
|
||||
"model": "create:block/andesite_chute_funnel_push"
|
||||
},
|
||||
"facing=south,pushing=true": {
|
||||
"model": "create:block/andesite_chute_funnel_push",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,pushing=true": {
|
||||
"model": "create:block/andesite_chute_funnel_push",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,pushing=true": {
|
||||
"model": "create:block/andesite_chute_funnel_push",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,30 +1,56 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"facing=down,powered=false": {
|
||||
"model": "create:block/andesite_funnel",
|
||||
"x": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"facing=up,powered=false": {
|
||||
"model": "create:block/andesite_funnel"
|
||||
},
|
||||
"facing=north": {
|
||||
"facing=north,powered=false": {
|
||||
"model": "create:block/andesite_funnel",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"facing=south,powered=false": {
|
||||
"model": "create:block/andesite_funnel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"facing=west,powered=false": {
|
||||
"model": "create:block/andesite_funnel",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east": {
|
||||
"facing=east,powered=false": {
|
||||
"model": "create:block/andesite_funnel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=down,powered=true": {
|
||||
"model": "create:block/andesite_funnel_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=up,powered=true": {
|
||||
"model": "create:block/andesite_funnel_powered"
|
||||
},
|
||||
"facing=north,powered=true": {
|
||||
"model": "create:block/andesite_funnel_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south,powered=true": {
|
||||
"model": "create:block/andesite_funnel_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true": {
|
||||
"model": "create:block/andesite_funnel_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true": {
|
||||
"model": "create:block/andesite_funnel_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "create:block/blaze_burner/block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "create:block/blaze_heater/block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,64 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull"
|
||||
},
|
||||
"facing=south,powered=false,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull_powered"
|
||||
},
|
||||
"facing=south,powered=true,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,pushing=false": {
|
||||
"model": "create:block/brass_chute_funnel_pull_powered",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push"
|
||||
},
|
||||
"facing=south,powered=false,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push_powered"
|
||||
},
|
||||
"facing=south,powered=true,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,pushing=true": {
|
||||
"model": "create:block/brass_chute_funnel_push_powered",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,39 +1,39 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down,shape=start": {
|
||||
"model": "create:block/chute/block_windowed"
|
||||
"facing=down,shape=intersection": {
|
||||
"model": "create:block/chute/block_intersection"
|
||||
},
|
||||
"facing=north,shape=start": {
|
||||
"model": "create:block/chute/block_diagonal_start",
|
||||
"facing=north,shape=intersection": {
|
||||
"model": "create:block/chute/block_diagonal_intersection",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,shape=start": {
|
||||
"model": "create:block/chute/block_diagonal_start"
|
||||
"facing=south,shape=intersection": {
|
||||
"model": "create:block/chute/block_diagonal_intersection"
|
||||
},
|
||||
"facing=west,shape=start": {
|
||||
"model": "create:block/chute/block_diagonal_start",
|
||||
"facing=west,shape=intersection": {
|
||||
"model": "create:block/chute/block_diagonal_intersection",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,shape=start": {
|
||||
"model": "create:block/chute/block_diagonal_start",
|
||||
"facing=east,shape=intersection": {
|
||||
"model": "create:block/chute/block_diagonal_intersection",
|
||||
"y": 270
|
||||
},
|
||||
"facing=down,shape=window_straight": {
|
||||
"facing=down,shape=window": {
|
||||
"model": "create:block/chute/block_windowed"
|
||||
},
|
||||
"facing=north,shape=window_straight": {
|
||||
"model": "create:block/chute/block_diagonal_straight",
|
||||
"facing=north,shape=window": {
|
||||
"model": "create:block/chute/block_diagonal",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,shape=window_straight": {
|
||||
"model": "create:block/chute/block_diagonal_straight"
|
||||
"facing=south,shape=window": {
|
||||
"model": "create:block/chute/block_diagonal"
|
||||
},
|
||||
"facing=west,shape=window_straight": {
|
||||
"model": "create:block/chute/block_diagonal_straight",
|
||||
"facing=west,shape=window": {
|
||||
"model": "create:block/chute/block_diagonal",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,shape=window_straight": {
|
||||
"model": "create:block/chute/block_diagonal_straight",
|
||||
"facing=east,shape=window": {
|
||||
"model": "create:block/chute/block_diagonal",
|
||||
"y": 270
|
||||
},
|
||||
"facing=down,shape=normal": {
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"oxidization=0": {
|
||||
"model": "create:block/oxidized/copper_tiles_0"
|
||||
},
|
||||
"oxidization=1": {
|
||||
"model": "create:block/oxidized/copper_tiles_1"
|
||||
},
|
||||
"oxidization=2": {
|
||||
"model": "create:block/oxidized/copper_tiles_2"
|
||||
},
|
||||
"oxidization=3": {
|
||||
"model": "create:block/oxidized/copper_tiles_3"
|
||||
},
|
||||
"oxidization=4": {
|
||||
"model": "create:block/oxidized/copper_tiles_4"
|
||||
},
|
||||
"oxidization=5": {
|
||||
"model": "create:block/oxidized/copper_tiles_5"
|
||||
},
|
||||
"oxidization=6": {
|
||||
"model": "create:block/oxidized/copper_tiles_6"
|
||||
},
|
||||
"oxidization=7": {
|
||||
"model": "create:block/oxidized/copper_tiles_7"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "create:block/encased_fluid_pipe",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "create:block/encased_fluid_pipe"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "create:block/encased_fluid_pipe",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,15 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "create:block/encased_shaft/block",
|
||||
"axis=x,casing=andesite": {
|
||||
"model": "create:block/encased_shaft/andesite",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "create:block/encased_shaft/block"
|
||||
"axis=y,casing=andesite": {
|
||||
"model": "create:block/encased_shaft/andesite"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "create:block/encased_shaft/block",
|
||||
"axis=z,casing=andesite": {
|
||||
"model": "create:block/encased_shaft/andesite",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x,casing=brass": {
|
||||
"model": "create:block/encased_shaft/brass",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,casing=brass": {
|
||||
"model": "create:block/encased_shaft/brass"
|
||||
},
|
||||
"axis=z,casing=brass": {
|
||||
"model": "create:block/encased_shaft/brass",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false": {
|
||||
"model": "create:block/extractor/horizontal"
|
||||
},
|
||||
"facing=south,powered=false": {
|
||||
"model": "create:block/extractor/horizontal",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false": {
|
||||
"model": "create:block/extractor/horizontal",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false": {
|
||||
"model": "create:block/extractor/horizontal",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_powered"
|
||||
},
|
||||
"facing=south,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_powered",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -60,10 +60,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "true",
|
||||
"down": "false",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"down": "false"
|
||||
"up": "true",
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lu_x"
|
||||
|
@ -71,10 +71,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "true",
|
||||
"down": "false",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"down": "false"
|
||||
"up": "true",
|
||||
"south": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ru_x"
|
||||
|
@ -82,10 +82,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "true",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"down": "true"
|
||||
"up": "false",
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ld_x"
|
||||
|
@ -93,10 +93,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "true",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"down": "true"
|
||||
"up": "false",
|
||||
"south": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/rd_x"
|
||||
|
@ -104,10 +104,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"down": "true",
|
||||
"north": "false",
|
||||
"up": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"down": "true"
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ud_x"
|
||||
|
@ -115,10 +115,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"down": "false",
|
||||
"north": "false",
|
||||
"up": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"down": "false"
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ud_x"
|
||||
|
@ -126,10 +126,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"down": "true"
|
||||
"up": "false",
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ud_x"
|
||||
|
@ -137,10 +137,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "false",
|
||||
"north": "true",
|
||||
"south": "true",
|
||||
"down": "false"
|
||||
"up": "false",
|
||||
"south": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lr_x"
|
||||
|
@ -148,10 +148,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "false",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"down": "false"
|
||||
"up": "false",
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lr_x"
|
||||
|
@ -159,10 +159,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "false",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"down": "false"
|
||||
"up": "false",
|
||||
"south": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lr_x"
|
||||
|
@ -170,10 +170,10 @@
|
|||
},
|
||||
{
|
||||
"when": {
|
||||
"up": "false",
|
||||
"down": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"down": "false"
|
||||
"up": "false",
|
||||
"south": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/none_x"
|
||||
|
@ -304,8 +304,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "true",
|
||||
"up": "true",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lu_z"
|
||||
|
@ -315,8 +315,8 @@
|
|||
"when": {
|
||||
"west": "true",
|
||||
"east": "false",
|
||||
"up": "true",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ru_z"
|
||||
|
@ -326,8 +326,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "true",
|
||||
"up": "false",
|
||||
"down": "true"
|
||||
"down": "true",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ld_z"
|
||||
|
@ -337,8 +337,8 @@
|
|||
"when": {
|
||||
"west": "true",
|
||||
"east": "false",
|
||||
"up": "false",
|
||||
"down": "true"
|
||||
"down": "true",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/rd_z"
|
||||
|
@ -348,8 +348,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "false",
|
||||
"up": "true",
|
||||
"down": "true"
|
||||
"down": "true",
|
||||
"up": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ud_z"
|
||||
|
@ -359,8 +359,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "false",
|
||||
"up": "true",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "true"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ud_z"
|
||||
|
@ -370,8 +370,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "false",
|
||||
"up": "false",
|
||||
"down": "true"
|
||||
"down": "true",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/ud_z"
|
||||
|
@ -381,8 +381,8 @@
|
|||
"when": {
|
||||
"west": "true",
|
||||
"east": "true",
|
||||
"up": "false",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lr_z"
|
||||
|
@ -392,8 +392,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "true",
|
||||
"up": "false",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lr_z"
|
||||
|
@ -403,8 +403,8 @@
|
|||
"when": {
|
||||
"west": "true",
|
||||
"east": "false",
|
||||
"up": "false",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/lr_z"
|
||||
|
@ -414,8 +414,8 @@
|
|||
"when": {
|
||||
"west": "false",
|
||||
"east": "false",
|
||||
"up": "false",
|
||||
"down": "false"
|
||||
"down": "false",
|
||||
"up": "false"
|
||||
},
|
||||
"apply": {
|
||||
"model": "create:block/fluid_pipe/none_z"
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"variants": {
|
||||
"alt=false,axis=x": {
|
||||
"model": "create:block/fluid_pipe/window",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"alt=true,axis=x": {
|
||||
"model": "create:block/fluid_pipe/window_alt",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"alt=false,axis=y": {
|
||||
"model": "create:block/fluid_pipe/window"
|
||||
},
|
||||
"alt=true,axis=y": {
|
||||
"model": "create:block/fluid_pipe/window_alt"
|
||||
},
|
||||
"alt=false,axis=z": {
|
||||
"model": "create:block/fluid_pipe/window",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"alt=true,axis=z": {
|
||||
"model": "create:block/fluid_pipe/window_alt",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false": {
|
||||
"model": "create:block/extractor/horizontal_linked"
|
||||
},
|
||||
"facing=south,powered=false": {
|
||||
"model": "create:block/extractor/horizontal_linked",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false": {
|
||||
"model": "create:block/extractor/horizontal_linked",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false": {
|
||||
"model": "create:block/extractor/horizontal_linked",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_linked_powered"
|
||||
},
|
||||
"facing=south,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_linked_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_linked_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true": {
|
||||
"model": "create:block/extractor/horizontal_linked_powered",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false": {
|
||||
"model": "create:block/transposer/horizontal_linked"
|
||||
},
|
||||
"facing=south,powered=false": {
|
||||
"model": "create:block/transposer/horizontal_linked",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false": {
|
||||
"model": "create:block/transposer/horizontal_linked",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false": {
|
||||
"model": "create:block/transposer/horizontal_linked",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true": {
|
||||
"model": "create:block/transposer/horizontal_linked_powered"
|
||||
},
|
||||
"facing=south,powered=true": {
|
||||
"model": "create:block/transposer/horizontal_linked_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true": {
|
||||
"model": "create:block/transposer/horizontal_linked_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true": {
|
||||
"model": "create:block/transposer/horizontal_linked_powered",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "create:block/packager/block",
|
||||
"y": 90
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "create:block/packager/block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "create:block/refined_radiance_casing"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "create:block/shadow_steel_casing"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "create:block/spout/block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false": {
|
||||
"model": "create:block/transposer/block"
|
||||
},
|
||||
"facing=south,powered=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true": {
|
||||
"model": "create:block/transposer/block_powered"
|
||||
},
|
||||
"facing=south,powered=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,72 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical"
|
||||
},
|
||||
"facing=south,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_powered"
|
||||
},
|
||||
"facing=south,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"x": 180
|
||||
},
|
||||
"facing=west,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=west,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_powered",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,72 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked"
|
||||
},
|
||||
"facing=south,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked_powered"
|
||||
},
|
||||
"facing=south,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,upward=false": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"x": 180
|
||||
},
|
||||
"facing=west,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=false,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"x": 180
|
||||
},
|
||||
"facing=west,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,upward=true": {
|
||||
"model": "create:block/extractor/vertical_linked_powered",
|
||||
"x": 180,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,80 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 270
|
||||
},
|
||||
"facing=south,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 270,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked",
|
||||
"x": 270,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 270
|
||||
},
|
||||
"facing=south,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 270,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/vertical_linked_powered",
|
||||
"x": 270,
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,80 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=false,upward=false": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,upward=false": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 270
|
||||
},
|
||||
"facing=south,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 270,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=false,upward=true": {
|
||||
"model": "create:block/transposer/block",
|
||||
"x": 270,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 270
|
||||
},
|
||||
"facing=south,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 270,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,powered=true,upward=true": {
|
||||
"model": "create:block/transposer/block_powered",
|
||||
"x": 270,
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
|
@ -12,7 +12,6 @@
|
|||
"block.create.andesite_bricks_stairs": "s\u0279\u0131\u0250\u0287S s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
"block.create.andesite_bricks_wall": "\u05DF\u05DF\u0250M s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
"block.create.andesite_casing": "bu\u0131s\u0250\u0186 \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
"block.create.andesite_chute_funnel": "\u05DF\u01DDuun\u2132 \u01DD\u0287n\u0265\u0186 \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
"block.create.andesite_cobblestone": "\u01DDuo\u0287s\u01DD\u05DFqqo\u0186 \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
"block.create.andesite_cobblestone_slab": "q\u0250\u05DFS \u01DDuo\u0287s\u01DD\u05DFqqo\u0186 \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
"block.create.andesite_cobblestone_stairs": "s\u0279\u0131\u0250\u0287S \u01DDuo\u0287s\u01DD\u05DFqqo\u0186 \u01DD\u0287\u0131s\u01DDpu\u2C6F",
|
||||
|
@ -26,12 +25,11 @@
|
|||
"block.create.birch_window": "\u028Dopu\u0131M \u0265\u0254\u0279\u0131\u15FA",
|
||||
"block.create.birch_window_pane": "\u01DDu\u0250\u0500 \u028Dopu\u0131M \u0265\u0254\u0279\u0131\u15FA",
|
||||
"block.create.black_seat": "\u0287\u0250\u01DDS \u029E\u0254\u0250\u05DF\u15FA",
|
||||
"block.create.blaze_heater": "\u0279\u01DD\u0287\u0250\u01DDH \u01DDz\u0250\u05DF\u15FA",
|
||||
"block.create.blaze_burner": "\u0279\u01DDu\u0279n\u15FA \u01DDz\u0250\u05DF\u15FA",
|
||||
"block.create.blue_seat": "\u0287\u0250\u01DDS \u01DDn\u05DF\u15FA",
|
||||
"block.create.brass_belt_funnel": "\u05DF\u01DDuun\u2132 \u0287\u05DF\u01DD\u15FA ss\u0250\u0279\u15FA",
|
||||
"block.create.brass_block": "\u029E\u0254o\u05DF\u15FA ss\u0250\u0279\u15FA",
|
||||
"block.create.brass_casing": "bu\u0131s\u0250\u0186 ss\u0250\u0279\u15FA",
|
||||
"block.create.brass_chute_funnel": "\u05DF\u01DDuun\u2132 \u01DD\u0287n\u0265\u0186 ss\u0250\u0279\u15FA",
|
||||
"block.create.brass_funnel": "\u05DF\u01DDuun\u2132 ss\u0250\u0279\u15FA",
|
||||
"block.create.brass_tunnel": "\u05DF\u01DDuun\u27D8 ss\u0250\u0279\u15FA",
|
||||
"block.create.brown_seat": "\u0287\u0250\u01DDS u\u028Do\u0279\u15FA",
|
||||
|
@ -50,6 +48,7 @@
|
|||
"block.create.copper_casing": "bu\u0131s\u0250\u0186 \u0279\u01DDddo\u0186",
|
||||
"block.create.copper_ore": "\u01DD\u0279O \u0279\u01DDddo\u0186",
|
||||
"block.create.copper_shingles": "s\u01DD\u05DFbu\u0131\u0265S \u0279\u01DDddo\u0186",
|
||||
"block.create.copper_tiles": "s\u01DD\u05DF\u0131\u27D8 \u0279\u01DDddo\u0186",
|
||||
"block.create.creative_crate": "\u01DD\u0287\u0250\u0279\u0186 \u01DD\u028C\u0131\u0287\u0250\u01DD\u0279\u0186",
|
||||
"block.create.creative_motor": "\u0279o\u0287oW \u01DD\u028C\u0131\u0287\u0250\u01DD\u0279\u0186",
|
||||
"block.create.crushing_wheel": "\u05DF\u01DD\u01DD\u0265M bu\u0131\u0265sn\u0279\u0186",
|
||||
|
@ -91,8 +90,8 @@
|
|||
"block.create.dolomite_pillar": "\u0279\u0250\u05DF\u05DF\u0131\u0500 \u01DD\u0287\u0131\u026Fo\u05DFo\u15E1",
|
||||
"block.create.encased_belt": "\u0287\u05DF\u01DD\u15FA p\u01DDs\u0250\u0254u\u018E",
|
||||
"block.create.encased_fan": "u\u0250\u2132 p\u01DDs\u0250\u0254u\u018E",
|
||||
"block.create.encased_fluid_pipe": "\u01DDd\u0131\u0500 p\u0131n\u05DF\u2132 p\u01DDs\u0250\u0254u\u018E",
|
||||
"block.create.encased_shaft": "\u0287\u025F\u0250\u0265S p\u01DDs\u0250\u0254u\u018E",
|
||||
"block.create.extractor": "\u0279o\u0287\u0254\u0250\u0279\u0287x\u018E",
|
||||
"block.create.fancy_andesite_bricks": "s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131s\u01DDpu\u2C6F \u028E\u0254u\u0250\u2132",
|
||||
"block.create.fancy_andesite_bricks_slab": "q\u0250\u05DFS s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131s\u01DDpu\u2C6F \u028E\u0254u\u0250\u2132",
|
||||
"block.create.fancy_andesite_bricks_stairs": "s\u0279\u0131\u0250\u0287S s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131s\u01DDpu\u2C6F \u028E\u0254u\u0250\u2132",
|
||||
|
@ -147,6 +146,7 @@
|
|||
"block.create.gabbro_pillar": "\u0279\u0250\u05DF\u05DF\u0131\u0500 o\u0279qq\u0250\u2141",
|
||||
"block.create.gearbox": "xoq\u0279\u0250\u01DD\u2141",
|
||||
"block.create.gearshift": "\u0287\u025F\u0131\u0265s\u0279\u0250\u01DD\u2141",
|
||||
"block.create.glass_fluid_pipe": "\u01DDd\u0131\u0500 p\u0131n\u05DF\u2132 ss\u0250\u05DF\u2141",
|
||||
"block.create.granite_bricks": "s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131u\u0250\u0279\u2141",
|
||||
"block.create.granite_bricks_slab": "q\u0250\u05DFS s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131u\u0250\u0279\u2141",
|
||||
"block.create.granite_bricks_stairs": "s\u0279\u0131\u0250\u0287S s\u029E\u0254\u0131\u0279\u15FA \u01DD\u0287\u0131u\u0250\u0279\u2141",
|
||||
|
@ -188,8 +188,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "\u05DF\u05DF\u0250M \u01DDuo\u0287s\u01DD\u05DFqqo\u0186 \u01DDuo\u0287s\u01DD\u026F\u0131\uA780",
|
||||
"block.create.limestone_pillar": "\u0279\u0250\u05DF\u05DF\u0131\u0500 \u01DDuo\u0287s\u01DD\u026F\u0131\uA780",
|
||||
"block.create.linear_chassis": "s\u0131ss\u0250\u0265\u0186 \u0279\u0250\u01DDu\u0131\uA780",
|
||||
"block.create.linked_extractor": "\u0279o\u0287\u0254\u0250\u0279\u0287x\u018E p\u01DD\u029Eu\u0131\uA780",
|
||||
"block.create.linked_transposer": "\u0279\u01DDsodsu\u0250\u0279\u27D8 p\u01DD\u029Eu\u0131\uA780",
|
||||
"block.create.magenta_seat": "\u0287\u0250\u01DDS \u0250\u0287u\u01DDb\u0250W",
|
||||
"block.create.mechanical_arm": "\u026F\u0279\u2C6F \u05DF\u0250\u0254\u0131u\u0250\u0265\u0254\u01DDW",
|
||||
"block.create.mechanical_bearing": "bu\u0131\u0279\u0250\u01DD\u15FA \u05DF\u0250\u0254\u0131u\u0250\u0265\u0254\u01DDW",
|
||||
|
@ -232,7 +230,6 @@
|
|||
"block.create.overgrown_limestone": "\u01DDuo\u0287s\u01DD\u026F\u0131\uA780 u\u028Do\u0279b\u0279\u01DD\u028CO",
|
||||
"block.create.overgrown_scoria": "\u0250\u0131\u0279o\u0254S u\u028Do\u0279b\u0279\u01DD\u028CO",
|
||||
"block.create.overgrown_weathered_limestone": "\u01DDuo\u0287s\u01DD\u026F\u0131\uA780 p\u01DD\u0279\u01DD\u0265\u0287\u0250\u01DDM u\u028Do\u0279b\u0279\u01DD\u028CO",
|
||||
"block.create.packager": "\u0279\u01DDb\u0250\u029E\u0254\u0250\u0500",
|
||||
"block.create.paved_andesite": "\u01DD\u0287\u0131s\u01DDpu\u2C6F p\u01DD\u028C\u0250\u0500",
|
||||
"block.create.paved_andesite_slab": "q\u0250\u05DFS \u01DD\u0287\u0131s\u01DDpu\u2C6F p\u01DD\u028C\u0250\u0500",
|
||||
"block.create.paved_andesite_stairs": "s\u0279\u0131\u0250\u0287S \u01DD\u0287\u0131s\u01DDpu\u2C6F p\u01DD\u028C\u0250\u0500",
|
||||
|
@ -305,6 +302,7 @@
|
|||
"block.create.red_seat": "\u0287\u0250\u01DDS p\u01DD\u1D1A",
|
||||
"block.create.redstone_contact": "\u0287\u0254\u0250\u0287uo\u0186 \u01DDuo\u0287sp\u01DD\u1D1A",
|
||||
"block.create.redstone_link": "\u029Eu\u0131\uA780 \u01DDuo\u0287sp\u01DD\u1D1A",
|
||||
"block.create.refined_radiance_casing": "bu\u0131s\u0250\u0186 \u0287u\u0250\u0131p\u0250\u1D1A",
|
||||
"block.create.reinforced_rail": "\u05DF\u0131\u0250\u1D1A p\u01DD\u0254\u0279o\u025Fu\u0131\u01DD\u1D1A",
|
||||
"block.create.rope": "\u01DDdo\u1D1A",
|
||||
"block.create.rope_pulley": "\u028E\u01DD\u05DF\u05DFn\u0500 \u01DDdo\u1D1A",
|
||||
|
@ -323,8 +321,10 @@
|
|||
"block.create.scoria_pillar": "\u0279\u0250\u05DF\u05DF\u0131\u0500 \u0250\u0131\u0279o\u0254S",
|
||||
"block.create.secondary_linear_chassis": "s\u0131ss\u0250\u0265\u0186 \u0279\u0250\u01DDu\u0131\uA780 \u028E\u0279\u0250puo\u0254\u01DDS",
|
||||
"block.create.sequenced_gearshift": "\u0287\u025F\u0131\u0265s\u0279\u0250\u01DD\u2141 p\u01DD\u0254u\u01DDnb\u01DDS",
|
||||
"block.create.shadow_steel_casing": "bu\u0131s\u0250\u0186 \u028Dop\u0250\u0265S",
|
||||
"block.create.shaft": "\u0287\u025F\u0250\u0265S",
|
||||
"block.create.speedometer": "\u0279\u01DD\u0287\u01DD\u026Fop\u01DD\u01DDdS",
|
||||
"block.create.spout": "\u0287nodS",
|
||||
"block.create.spruce_window": "\u028Dopu\u0131M \u01DD\u0254n\u0279dS",
|
||||
"block.create.spruce_window_pane": "\u01DDu\u0250\u0500 \u028Dopu\u0131M \u01DD\u0254n\u0279dS",
|
||||
"block.create.sticky_mechanical_piston": "uo\u0287s\u0131\u0500 \u05DF\u0250\u0254\u0131u\u0250\u0265\u0254\u01DDW \u028E\u029E\u0254\u0131\u0287S",
|
||||
|
@ -332,14 +332,9 @@
|
|||
"block.create.stressometer": "\u0279\u01DD\u0287\u01DD\u026Foss\u01DD\u0279\u0287S",
|
||||
"block.create.tiled_glass": "ss\u0250\u05DF\u2141 p\u01DD\u05DF\u0131\u27D8",
|
||||
"block.create.tiled_glass_pane": "\u01DDu\u0250\u0500 ss\u0250\u05DF\u2141 p\u01DD\u05DF\u0131\u27D8",
|
||||
"block.create.transposer": "\u0279\u01DDsodsu\u0250\u0279\u27D8",
|
||||
"block.create.turntable": "\u01DD\u05DFq\u0250\u0287u\u0279n\u27D8",
|
||||
"block.create.vertical_extractor": "\u0279o\u0287\u0254\u0250\u0279\u0287x\u018E \u05DF\u0250\u0254\u0131\u0287\u0279\u01DD\u039B",
|
||||
"block.create.vertical_framed_glass": "ss\u0250\u05DF\u2141 p\u01DD\u026F\u0250\u0279\u2132 \u05DF\u0250\u0254\u0131\u0287\u0279\u01DD\u039B",
|
||||
"block.create.vertical_framed_glass_pane": "\u01DDu\u0250\u0500 ss\u0250\u05DF\u2141 p\u01DD\u026F\u0250\u0279\u2132 \u05DF\u0250\u0254\u0131\u0287\u0279\u01DD\u039B",
|
||||
"block.create.vertical_linked_extractor": "\u0279o\u0287\u0254\u0250\u0279\u0287x\u018E p\u01DD\u029Eu\u0131\uA780 \u05DF\u0250\u0254\u0131\u0287\u0279\u01DD\u039B",
|
||||
"block.create.vertical_linked_transposer": "\u0279\u01DDsodsu\u0250\u0279\u27D8 p\u01DD\u029Eu\u0131\uA780 \u05DF\u0250\u0254\u0131\u0287\u0279\u01DD\u039B",
|
||||
"block.create.vertical_transposer": "\u0279\u01DDsodsu\u0250\u0279\u27D8 \u05DF\u0250\u0254\u0131\u0287\u0279\u01DD\u039B",
|
||||
"block.create.water_wheel": "\u05DF\u01DD\u01DD\u0265M \u0279\u01DD\u0287\u0250M",
|
||||
"block.create.weathered_limestone": "\u01DDuo\u0287s\u01DD\u026F\u0131\uA780 p\u01DD\u0279\u01DD\u0265\u0287\u0250\u01DDM",
|
||||
"block.create.weathered_limestone_bricks": "s\u029E\u0254\u0131\u0279\u15FA \u01DDuo\u0287s\u01DD\u026F\u0131\uA780 p\u01DD\u0279\u01DD\u0265\u0287\u0250\u01DDM",
|
||||
|
@ -379,6 +374,7 @@
|
|||
"item.create.deforester": "\u0279\u01DD\u0287s\u01DD\u0279o\u025F\u01DD\u15E1",
|
||||
"item.create.dough": "\u0265bno\u15E1",
|
||||
"item.create.electron_tube": "\u01DDqn\u27D8 uo\u0279\u0287\u0254\u01DD\u05DF\u018E",
|
||||
"item.create.empty_blaze_burner": "\u0279\u01DDu\u0279n\u15FA \u01DDz\u0250\u05DF\u15FA \u028E\u0287d\u026F\u018E",
|
||||
"item.create.empty_schematic": "\u0254\u0131\u0287\u0250\u026F\u01DD\u0265\u0254S \u028E\u0287d\u026F\u018E",
|
||||
"item.create.extendo_grip": "d\u0131\u0279\u2141 opu\u01DD\u0287x\u018E",
|
||||
"item.create.filter": "\u0279\u01DD\u0287\u05DF\u0131\u2132",
|
||||
|
@ -392,6 +388,7 @@
|
|||
"item.create.iron_sheet": "\u0287\u01DD\u01DD\u0265S uo\u0279I",
|
||||
"item.create.lapis_sheet": "\u0287\u01DD\u01DD\u0265S s\u0131d\u0250\uA780",
|
||||
"item.create.minecart_contraption": "uo\u0131\u0287d\u0250\u0279\u0287uo\u0186 \u0287\u0279\u0250\u0254\u01DDu\u0131W",
|
||||
"item.create.minecart_coupling": "bu\u0131\u05DFdno\u0186 \u0287\u0279\u0250\u0254\u01DDu\u0131W",
|
||||
"item.create.polished_rose_quartz": "z\u0287\u0279\u0250n\u1F49 \u01DDso\u1D1A p\u01DD\u0265s\u0131\u05DFo\u0500",
|
||||
"item.create.powdered_obsidian": "u\u0250\u0131p\u0131sqO p\u01DD\u0279\u01DDp\u028Do\u0500",
|
||||
"item.create.propeller": "\u0279\u01DD\u05DF\u05DF\u01DDdo\u0279\u0500",
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
"block.create.andesite_bricks_stairs": "Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "Andesite Casing",
|
||||
"block.create.andesite_chute_funnel": "Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "Andesite Cobblestone Stairs",
|
||||
|
@ -29,12 +28,11 @@
|
|||
"block.create.birch_window": "Birch Window",
|
||||
"block.create.birch_window_pane": "Birch Window Pane",
|
||||
"block.create.black_seat": "Black Seat",
|
||||
"block.create.blaze_heater": "Blaze Heater",
|
||||
"block.create.blaze_burner": "Blaze Burner",
|
||||
"block.create.blue_seat": "Blue Seat",
|
||||
"block.create.brass_belt_funnel": "Brass Belt Funnel",
|
||||
"block.create.brass_block": "Brass Block",
|
||||
"block.create.brass_casing": "Brass Casing",
|
||||
"block.create.brass_chute_funnel": "Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "Brass Funnel",
|
||||
"block.create.brass_tunnel": "Brass Tunnel",
|
||||
"block.create.brown_seat": "Brown Seat",
|
||||
|
@ -53,6 +51,7 @@
|
|||
"block.create.copper_casing": "Copper Casing",
|
||||
"block.create.copper_ore": "Copper Ore",
|
||||
"block.create.copper_shingles": "Copper Shingles",
|
||||
"block.create.copper_tiles": "Copper Tiles",
|
||||
"block.create.creative_crate": "Creative Crate",
|
||||
"block.create.creative_motor": "Creative Motor",
|
||||
"block.create.crushing_wheel": "Crushing Wheel",
|
||||
|
@ -94,8 +93,8 @@
|
|||
"block.create.dolomite_pillar": "Dolomite Pillar",
|
||||
"block.create.encased_belt": "Encased Belt",
|
||||
"block.create.encased_fan": "Encased Fan",
|
||||
"block.create.encased_fluid_pipe": "Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Encased Shaft",
|
||||
"block.create.extractor": "Extractor",
|
||||
"block.create.fancy_andesite_bricks": "Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "Fancy Andesite Bricks Stairs",
|
||||
|
@ -150,6 +149,7 @@
|
|||
"block.create.gabbro_pillar": "Gabbro Pillar",
|
||||
"block.create.gearbox": "Gearbox",
|
||||
"block.create.gearshift": "Gearshift",
|
||||
"block.create.glass_fluid_pipe": "Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Granite Bricks",
|
||||
"block.create.granite_bricks_slab": "Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "Granite Bricks Stairs",
|
||||
|
@ -191,8 +191,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Limestone Pillar",
|
||||
"block.create.linear_chassis": "Linear Chassis",
|
||||
"block.create.linked_extractor": "Linked Extractor",
|
||||
"block.create.linked_transposer": "Linked Transposer",
|
||||
"block.create.magenta_seat": "Magenta Seat",
|
||||
"block.create.mechanical_arm": "Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Mechanical Bearing",
|
||||
|
@ -235,7 +233,6 @@
|
|||
"block.create.overgrown_limestone": "Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "Overgrown Weathered Limestone",
|
||||
"block.create.packager": "Packager",
|
||||
"block.create.paved_andesite": "Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "Paved Andesite Stairs",
|
||||
|
@ -308,6 +305,7 @@
|
|||
"block.create.red_seat": "Red Seat",
|
||||
"block.create.redstone_contact": "Redstone Contact",
|
||||
"block.create.redstone_link": "Redstone Link",
|
||||
"block.create.refined_radiance_casing": "Radiant Casing",
|
||||
"block.create.reinforced_rail": "Reinforced Rail",
|
||||
"block.create.rope": "Rope",
|
||||
"block.create.rope_pulley": "Rope Pulley",
|
||||
|
@ -326,8 +324,10 @@
|
|||
"block.create.scoria_pillar": "Scoria Pillar",
|
||||
"block.create.secondary_linear_chassis": "Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "Sequenced Gearshift",
|
||||
"block.create.shadow_steel_casing": "Shadow Casing",
|
||||
"block.create.shaft": "Shaft",
|
||||
"block.create.speedometer": "Speedometer",
|
||||
"block.create.spout": "Spout",
|
||||
"block.create.spruce_window": "Spruce Window",
|
||||
"block.create.spruce_window_pane": "Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Sticky Mechanical Piston",
|
||||
|
@ -335,14 +335,9 @@
|
|||
"block.create.stressometer": "Stressometer",
|
||||
"block.create.tiled_glass": "Tiled Glass",
|
||||
"block.create.tiled_glass_pane": "Tiled Glass Pane",
|
||||
"block.create.transposer": "Transposer",
|
||||
"block.create.turntable": "Turntable",
|
||||
"block.create.vertical_extractor": "Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "Vertical Framed Glass",
|
||||
"block.create.vertical_framed_glass_pane": "Vertical Framed Glass Pane",
|
||||
"block.create.vertical_linked_extractor": "Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "Vertical Transposer",
|
||||
"block.create.water_wheel": "Water Wheel",
|
||||
"block.create.weathered_limestone": "Weathered Limestone",
|
||||
"block.create.weathered_limestone_bricks": "Weathered Limestone Bricks",
|
||||
|
@ -384,6 +379,7 @@
|
|||
"item.create.deforester": "Deforester",
|
||||
"item.create.dough": "Dough",
|
||||
"item.create.electron_tube": "Electron Tube",
|
||||
"item.create.empty_blaze_burner": "Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Empty Schematic",
|
||||
"item.create.extendo_grip": "Extendo Grip",
|
||||
"item.create.filter": "Filter",
|
||||
|
@ -397,6 +393,7 @@
|
|||
"item.create.iron_sheet": "Iron Sheet",
|
||||
"item.create.lapis_sheet": "Lapis Sheet",
|
||||
"item.create.minecart_contraption": "Minecart Contraption",
|
||||
"item.create.minecart_coupling": "Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "Polished Rose Quartz",
|
||||
"item.create.powdered_obsidian": "Powdered Obsidian",
|
||||
"item.create.propeller": "Propeller",
|
||||
|
@ -457,7 +454,7 @@
|
|||
"advancement.create.electron_tube": "Beep boop",
|
||||
"advancement.create.electron_tube.desc": "Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "Basin Operation",
|
||||
"advancement.create.basin.desc": "Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "Mixin' it Up",
|
||||
|
@ -514,8 +511,8 @@
|
|||
"death.attack.create.crush": "%1$s was processed by Crushing Wheels",
|
||||
"death.attack.create.fan_fire": "%1$s was burned to death by hot air",
|
||||
"death.attack.create.fan_lava": "%1$s was burned to death by lava fan",
|
||||
"death.attack.create.mechanical_drill": "%1$s was impaled by Mechanical mechanical_drill",
|
||||
"death.attack.create.mechanical_saw": "%1$s got cut in half by Mechanical mechanical_saw",
|
||||
"death.attack.create.mechanical_drill": "%1$s was impaled by a Mechanical Drill",
|
||||
"death.attack.create.mechanical_saw": "%1$s got cut in half by a Mechanical Saw",
|
||||
"death.attack.create.cuckoo_clock_explosion": "%1$s was blown up by tampered cuckoo clock",
|
||||
|
||||
"create.block.deployer.damage_source_name": "a rogue Deployer",
|
||||
|
@ -532,7 +529,7 @@
|
|||
"create.recipe.pressing": "Pressing",
|
||||
"create.recipe.mixing": "Mixing",
|
||||
"create.recipe.packing": "Compacting",
|
||||
"create.recipe.mechanical_sawing": "mechanical_sawing",
|
||||
"create.recipe.mechanical_sawing": "Sawing",
|
||||
"create.recipe.mechanical_crafting": "Mechanical Crafting",
|
||||
"create.recipe.block_cutting": "Block Cutting",
|
||||
"create.recipe.blockzapper_upgrade": "Handheld Blockzapper",
|
||||
|
@ -644,6 +641,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Filter",
|
||||
"create.logistics.recipe_filter": "Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Freq. #1",
|
||||
"create.logistics.secondFrequency": "Freq. #2",
|
||||
|
||||
|
@ -838,7 +836,23 @@
|
|||
"create.tooltip.generationSpeed": "Generates at %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "Analog Strength: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "Min. Ingredients",
|
||||
"create.mechanical_arm.extract_from": "Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "%1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "Split",
|
||||
"create.tunnel.selection_mode.forced_split": "Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "Hi :)",
|
||||
"create.gui.config.overlay2": "This is a sample overlay",
|
||||
|
@ -1267,24 +1281,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRACTOR",
|
||||
"block.create.extractor.tooltip.summary": "_Takes_ _Items_ from an attached _Inventory_ and drops them onto the ground. Will not drop Items unless the space is clear. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.extractor.tooltip.condition1": "When Powered by Redstone",
|
||||
"block.create.extractor.tooltip.behaviour1": "_Pauses_ the Extractor.",
|
||||
"block.create.extractor.tooltip.condition2": "Active Belt pulling",
|
||||
"block.create.extractor.tooltip.behaviour2": "Extractors can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the extractor is blocked, the _belt_ _will_ _stall_.",
|
||||
"block.create.extractor.tooltip.control1": "R-Click on Filter Space",
|
||||
"block.create.extractor.tooltip.action1": "Assigns currently _held_ _stack_ as the _Filter_. The Extractor will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
|
||||
"block.create.transposer.tooltip": "TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "_Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.transposer.tooltip.condition1": "When Powered by Redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "_Pauses_ the Transposer.",
|
||||
"block.create.transposer.tooltip.condition2": "Active Belt pulling",
|
||||
"block.create.transposer.tooltip.behaviour2": "Transposers can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the transposer is backed up, the _belt_ _will_ _stall_.",
|
||||
"block.create.transposer.tooltip.control1": "R-Click on Filter Space",
|
||||
"block.create.transposer.tooltip.action1": "Assigns currently _held_ _stack_ as the _Filter_. The Transposer will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
|
||||
"block.create.deployer.tooltip": "DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": "_Punches_, _Uses_, and _Activates_. This machine will try to _imitate_ a _player_ as a much as possible. Can _Take_ and _Deposit_ _items_ in adjacent _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.deployer.tooltip.condition1": "When Rotated",
|
||||
|
@ -1292,24 +1288,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "R-Clicked with Wrench",
|
||||
"block.create.deployer.tooltip.behaviour2": "Toggles punch mode. In _punch_ _mode_, the Deployer will attempt to use its item to _break_ _blocks_ or _hurt_ _entities_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "LINKED EXTRACTOR",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Takes_ _items_ from an attached _Inventory_ and drops them onto the ground. Will not drop Items unless the space is clear. Can be assigned an item-stack as a _filter_. Can be controlled remotely via a _Redstone_ _Link_.",
|
||||
"block.create.linked_extractor.tooltip.condition1": "When Redstone Link Active",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "_Pauses_ the Extractor.",
|
||||
"block.create.linked_extractor.tooltip.control1": "R-Click on Filter Space",
|
||||
"block.create.linked_extractor.tooltip.action1": "Assigns currently _held_ _stack_ as the _Filter_. The Extractor will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
"block.create.linked_extractor.tooltip.control2": "R-Click on Frequency Space",
|
||||
"block.create.linked_extractor.tooltip.action2": "Assigns currently _held_ _item_ as part of the Frequency listened on. Whenever a transmitting _Redstone_ _Link_ of the same frequency is powered, this Extractor will pause.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "_Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_. Can be controlled remotely via a _Redstone_ _Link_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "When Redstone Link Active",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "_Pauses_ the Transposer.",
|
||||
"block.create.linked_transposer.tooltip.control1": "R-Click on Filter Space",
|
||||
"block.create.linked_transposer.tooltip.action1": "Assigns currently _held_ _stack_ as the _Filter_. The Transposer will only pull items that match the item _type_ and _count_ of the filter stack.",
|
||||
"block.create.linked_transposer.tooltip.control2": "R-Click on Frequency Space",
|
||||
"block.create.linked_transposer.tooltip.action2": "Assigns the currently _held_ _item_ as part of the Frequency listened on. Whenever a transmitting _Redstone_ _Link_ of the same frequency is powered, this Transposer will pause.",
|
||||
|
||||
"block.create.funnel.tooltip": "FUNNEL",
|
||||
"block.create.funnel.tooltip.summary": "_Collects_ _incoming_ _items_ and inserts them into the attached _Inventory_ if possible. Can collect items in the _world_ and items on a _belt_.",
|
||||
"block.create.funnel.tooltip.condition1": "Passive Belt pulling",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 809",
|
||||
"_": "Missing Localizations: 804",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "UNLOCALIZED: Andesite Casing",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "UNLOCALIZED: Brass Block",
|
||||
"block.create.brass_casing": "UNLOCALIZED: Brass Casing",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "UNLOCALIZED: Copper Casing",
|
||||
"block.create.copper_ore": "UNLOCALIZED: Copper Ore",
|
||||
"block.create.copper_shingles": "UNLOCALIZED: Copper Shingles",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "Bauplankanonenmacher",
|
||||
"block.create.creative_motor": "UNLOCALIZED: Creative Motor",
|
||||
"block.create.crushing_wheel": "Mahlwerkrad",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "Dolomitsäule",
|
||||
"block.create.encased_belt": "Eingeschlossener Riemen",
|
||||
"block.create.encased_fan": "Eingeschlossener Propeller",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Eingeschlossene Welle",
|
||||
"block.create.extractor": "Auswerfer",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "Getriebe",
|
||||
"block.create.gearshift": "Gangschaltung",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Granitziegel",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Kalksteinsäule",
|
||||
"block.create.linear_chassis": "Schubgerüst",
|
||||
"block.create.linked_extractor": "Verknüpfter Auswerfer",
|
||||
"block.create.linked_transposer": "UNLOCALIZED: Linked Transposer",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Mechanisches Lager",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "Redstone-Kontakt",
|
||||
"block.create.redstone_link": "Redstone-Verbindung",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "UNLOCALIZED: Rope",
|
||||
"block.create.rope_pulley": "UNLOCALIZED: Rope Pulley",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "UNLOCALIZED: Scoria Pillar",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "UNLOCALIZED: Sequenced Gearshift",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "Welle",
|
||||
"block.create.speedometer": "UNLOCALIZED: Speedometer",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Klebriger Mechanischer Kolben",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "UNLOCALIZED: Stressometer",
|
||||
"block.create.tiled_glass": "Glasfliesen",
|
||||
"block.create.tiled_glass_pane": "Glasfliesenscheibe",
|
||||
"block.create.transposer": "UNLOCALIZED: Transposer",
|
||||
"block.create.turntable": "Drehtisch",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "UNLOCALIZED: Vertical Framed Glass",
|
||||
"block.create.vertical_framed_glass_pane": "UNLOCALIZED: Vertical Framed Glass Pane",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "Wasserrad",
|
||||
"block.create.weathered_limestone": "Verwitterter Kalkstein",
|
||||
"block.create.weathered_limestone_bricks": "Verwitterte Kalksteinziegel",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "UNLOCALIZED: Deforester",
|
||||
"item.create.dough": "Teig",
|
||||
"item.create.electron_tube": "UNLOCALIZED: Electron Tube",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Leerer Bauplan",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "Filter",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "Eisenblech",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "UNLOCALIZED: Polished Rose Quartz",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "Propeller",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -516,7 +513,7 @@
|
|||
"death.attack.create.fan_fire": "%1$s hat heiße Luft eingeatmet",
|
||||
"death.attack.create.fan_lava": "%1$s wurde von Lava verweht",
|
||||
"death.attack.create.mechanical_drill": "%1$s wurde von einem Bohrer durchlöchert",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by Mechanical mechanical_saw",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by a Mechanical Saw",
|
||||
"death.attack.create.cuckoo_clock_explosion": "UNLOCALIZED: %1$s was blown up by tampered cuckoo clock",
|
||||
|
||||
"create.block.deployer.damage_source_name": "UNLOCALIZED: a rogue Deployer",
|
||||
|
@ -533,7 +530,7 @@
|
|||
"create.recipe.pressing": "Mechanische Presse",
|
||||
"create.recipe.mixing": "UNLOCALIZED: Mixing",
|
||||
"create.recipe.packing": "UNLOCALIZED: Compacting",
|
||||
"create.recipe.mechanical_sawing": "UNLOCALIZED: mechanical_sawing",
|
||||
"create.recipe.mechanical_sawing": "UNLOCALIZED: Sawing",
|
||||
"create.recipe.mechanical_crafting": "UNLOCALIZED: Mechanical Crafting",
|
||||
"create.recipe.block_cutting": "UNLOCALIZED: Block Cutting",
|
||||
"create.recipe.blockzapper_upgrade": "Blockpistole",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Filter",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Freq. #1",
|
||||
"create.logistics.secondFrequency": "Freq. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "UNLOCALIZED: Generates at %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "UNLOCALIZED: Analog Strength: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "UNLOCALIZED: Min. Ingredients",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "AUSWERFER",
|
||||
"block.create.extractor.tooltip.summary": "_Nimmt_ _Gegenstände_ von einem verbundenen _Behälter_ und wirft diese auf den Boden. Wird keine Gegenstände auswerfen, bis der Platz dafür frei ist. Kann einen Stack von Gegenständen als _Filter_ zugewiesen bekommen.",
|
||||
"block.create.extractor.tooltip.condition1": "Wenn durch Redstone aktiviert",
|
||||
"block.create.extractor.tooltip.behaviour1": "_Pausiert_ den Auswerfer",
|
||||
"block.create.extractor.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.extractor.tooltip.behaviour2": "UNLOCALIZED: Extractors can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the extractor is blocked, the _belt_ _will_ _stall_.",
|
||||
"block.create.extractor.tooltip.control1": "R-Klick auf Filterplatz",
|
||||
"block.create.extractor.tooltip.action1": "Weist den momentan _gehaltenen_ _Stack_ als _Filter_ zu. Der Auswerfer zieht nur diesen _Gegenstandstyp_ und die _Anzahl_ des Stacks aus dem Behälter. ",
|
||||
|
||||
"block.create.transposer.tooltip": "UNLOCALIZED: TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.transposer.tooltip.condition1": "UNLOCALIZED: When Powered by Redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.transposer.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.transposer.tooltip.behaviour2": "UNLOCALIZED: Transposers can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the transposer is backed up, the _belt_ _will_ _stall_.",
|
||||
"block.create.transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
|
||||
"block.create.deployer.tooltip": "UNLOCALIZED: DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": "UNLOCALIZED: _Punches_, _Uses_, and _Activates_. This machine will try to _imitate_ a _player_ as a much as possible. Can _Take_ and _Deposit_ _items_ in adjacent _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.deployer.tooltip.condition1": "UNLOCALIZED: When Rotated",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "UNLOCALIZED: R-Clicked with Wrench",
|
||||
"block.create.deployer.tooltip.behaviour2": "UNLOCALIZED: Toggles punch mode. In _punch_ _mode_, the Deployer will attempt to use its item to _break_ _blocks_ or _hurt_ _entities_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "VERKÜPFTER AUSWERFER",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Nimmt_ _Gegenstände_ von einem verbundenen _Behälter_ und wirft diese auf den Boden. Wird Gegenstände nicht auswerfen, bis der Platz frei ist. Kann einen Stack von Gegenständen zugewiesen bekommen. Kann aus Distanz mit einer _Redstone-Verbindung_ kontrolliert werden.",
|
||||
"block.create.linked_extractor.tooltip.condition1": "Wenn die Restone-Verbindung aktiv ist",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "Wird der Auswerfer _pausiert._",
|
||||
"block.create.linked_extractor.tooltip.control1": "R-Klick auf den Filterplatz",
|
||||
"block.create.linked_extractor.tooltip.action1": "Weist den momentan _gehaltenen_ _Stack_ als _Filter_ zu. Der Auswerfer zieht nur diesen _Gegenstandstyp_ und die _Anzahl_ des Stacks aus dem Behälter.",
|
||||
"block.create.linked_extractor.tooltip.control2": "R-Klick auf den Frequenzplatz",
|
||||
"block.create.linked_extractor.tooltip.action2": "Weist den momentan _gehaltenen_ _Gegenstand_ als Teil der gelisteten Frequenz zu. Wann auch immer eine übertragende _Redstone-Verbindung_ derselben Frequenz aktiv ist, pausiert dieser Auswerfer.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "UNLOCALIZED: LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_. Can be controlled remotely via a _Redstone_ _Link_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "UNLOCALIZED: When Redstone Link Active",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.linked_transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.linked_transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will only pull items that match the item _type_ and _count_ of the filter stack.",
|
||||
"block.create.linked_transposer.tooltip.control2": "UNLOCALIZED: R-Click on Frequency Space",
|
||||
"block.create.linked_transposer.tooltip.action2": "UNLOCALIZED: Assigns the currently _held_ _item_ as part of the Frequency listened on. Whenever a transmitting _Redstone_ _Link_ of the same frequency is powered, this Transposer will pause.",
|
||||
|
||||
"block.create.funnel.tooltip": "FLIEẞBANDTRICHTER",
|
||||
"block.create.funnel.tooltip.summary": "Sammelt eingehende Gegenstände auf einem _Mechanischen_ _Riemen_ und fügt diese in einen verbundenen _Behälter_ ein, wenn möglich. Muss direkt _auf_ dem Riemen sein, mit der Öffnung entgegen der Bewegungsrichtung des Riemens zeigend. Der Behälter muss auf der gleichen Höhe wie der Trichter sein.",
|
||||
"block.create.funnel.tooltip.condition1": "UNLOCALIZED: Passive Belt pulling",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 412",
|
||||
"_": "Missing Localizations: 428",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "Boîtier en andésite",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "UNLOCALIZED: Brass Block",
|
||||
"block.create.brass_casing": "Boîtier en laiton",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "Boîtier en cuivre",
|
||||
"block.create.copper_ore": "Minerai de cuivre",
|
||||
"block.create.copper_shingles": "Bardeaux de cuivre",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "Créateur de schémacanon",
|
||||
"block.create.creative_motor": "Moteur",
|
||||
"block.create.crushing_wheel": "Roue de concassage",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "Pillier de dolomie",
|
||||
"block.create.encased_belt": "Tapis roulant enfermé",
|
||||
"block.create.encased_fan": "Ventilateur enfermé",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Arbre mécanique enfermé",
|
||||
"block.create.extractor": "Extracteur",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "Boîte à roue dentée",
|
||||
"block.create.gearshift": "Décaleur de rotation",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Briques de granite",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Pillier de calcaire",
|
||||
"block.create.linear_chassis": "Châssis linéaire",
|
||||
"block.create.linked_extractor": "Extracteur lié",
|
||||
"block.create.linked_transposer": "Transposeur lié",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Roulement mécanique",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "redstone_contact Redstone",
|
||||
"block.create.redstone_link": "Liaison Redstone",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "Corde",
|
||||
"block.create.rope_pulley": "Poulie à corde",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "Pillier de scorie",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "Décaleur de rotation séquencé",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "Arbre mécanique",
|
||||
"block.create.speedometer": "Compteur de vitesse",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Piston mécanique collant",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "Stressomètre",
|
||||
"block.create.tiled_glass": "Verre carrelé",
|
||||
"block.create.tiled_glass_pane": "Vitre carrelé",
|
||||
"block.create.transposer": "Transposeur",
|
||||
"block.create.turntable": "Plaque tournante",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "Fenêtre en verre verticale",
|
||||
"block.create.vertical_framed_glass_pane": "Vitre encadrée verticale",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "Roue à eau",
|
||||
"block.create.weathered_limestone": "Calcaire patinées",
|
||||
"block.create.weathered_limestone_bricks": "Briques de calcaire patinées",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "Déforesteur",
|
||||
"item.create.dough": "Pâte",
|
||||
"item.create.electron_tube": "Tube électronique",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Schéma vide",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "Filtre",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "Plaque de Fer",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "Quartz rose poli",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "Hélice",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Filtre",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Freq. #1",
|
||||
"create.logistics.secondFrequency": "Freq. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "Génère à %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "Force analogique: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "Ingrédients min.",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRACTEUR",
|
||||
"block.create.extractor.tooltip.summary": "_Prend_ des _objets_ d'un _inventaire_ attaché et les laisse tomber sur le sol. Ne laissera pas tomber les objets à moins que l'espace ne soit dégagé. Peut être affecté à une pile d'objets en tant que _filtre_.",
|
||||
"block.create.extractor.tooltip.condition1": "Lorsqu'alimenté par de la redstone",
|
||||
"block.create.extractor.tooltip.behaviour1": "Met l'extracteur en _pause_.",
|
||||
"block.create.extractor.tooltip.condition2": "Tirage actif du tapis roulant",
|
||||
"block.create.extractor.tooltip.behaviour2": "Les extracteurs peuvent extraire les objets _de_ _tapis_ renforcés de _boîtiers_ _en_ _laiton_. Lorsque l'extracteur est bloqué, le _tapis_ _roulant_ _va_ _caler_.",
|
||||
"block.create.extractor.tooltip.control1": "Clic droit sur l'espace du filtre",
|
||||
"block.create.extractor.tooltip.action1": "Assigne la _pile_ actuellement _tenue_ _en_ _main_ comme _filtre_. L'extracteur extrait exclusivement les _types_ et _comptes_ des objets de la pile du filtre.",
|
||||
|
||||
"block.create.transposer.tooltip": "TRANSPOSEUR",
|
||||
"block.create.transposer.tooltip.summary": "_Prend_ les _objets_ d'un _inventaire_ attaché et les place immédiatement dans _l'inventaire_ cible. Peut être affecté à une pile d'objets en tant que _filtre_.",
|
||||
"block.create.transposer.tooltip.condition1": "Lorsqu'alimenté par de la redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "Met le transposeur en _pause_.",
|
||||
"block.create.transposer.tooltip.condition2": "Tirage actif du tapis roulant",
|
||||
"block.create.transposer.tooltip.behaviour2": "Les transposeurs peuvent extraire des éléments _de_ _tapis_ _roulants_ renforcés de _boîtiers_ _en_ _laiton_. Lorsque le transposeur est sauvegardé, le _tapis_ _roulant_ _va_ _caler_.",
|
||||
"block.create.transposer.tooltip.control1": "Clic droit sur l'espace du filtre",
|
||||
"block.create.transposer.tooltip.action1": "Assigne la _pile_ actuellement _tenue_ _en_ _main_ comme _filtre_. L'extracteur tire exclusivement les _types_ et _comptes_ des objets de la pile du filtre.",
|
||||
|
||||
"block.create.deployer.tooltip": "DÉPLOYEUR",
|
||||
"block.create.deployer.tooltip.summary": "_Frappe_, _utilise_ et _active_. Cette machine essaiera _d'imiter_ un _joueur_ autant que possible. Peut _prendre_ et _déposer_ des _objets_ dans _l'inventaire_ adjacent. Peut être affecté à une pile d'éléments en tant que _filtre_.",
|
||||
"block.create.deployer.tooltip.condition1": "Lorsque tourné",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "Clic droit avec une clé",
|
||||
"block.create.deployer.tooltip.behaviour2": "Bascule le mode frappe. Dans le _mode_ _frappe_, le déployeur tentera d'utiliser son élément pour _casser_ les _blocs_ ou infliger des _dégats_ aux _entités_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "EXTRACTEUR LIÉ",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Prend_ les _objets_ d'un _inventaire_ attaché et les laisse tomber sur le sol. Ne laissera pas tomber les objets à moins que l'espace ne soit dégagé. Peut être assigné une pile d'éléments en tant que _filtre_. Peut être contrôlé à distance via une _liaison_ _redstone_.",
|
||||
"block.create.linked_extractor.tooltip.condition1": "Lorsque la liaison redstone est active",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "Met l'extracteur en _pause_.",
|
||||
"block.create.linked_extractor.tooltip.control1": "Clic droit sur l'espace du filtre",
|
||||
"block.create.linked_extractor.tooltip.action1": "Assigne la _pile_ actuellement _tenue_ _en_ _main_ comme _filtre_. L'extracteur extrait exclusivement les _types_ et _comptes_ des objets de la pile du filtre.",
|
||||
"block.create.linked_extractor.tooltip.control2": "Clic droit sur l'espace des fréquences",
|
||||
"block.create.linked_extractor.tooltip.action2": "Assigne la _pile_ actuellement _tenue_ _en_ _main_ dans le cadre de la fréquence écoutée. Chaque fois qu'une _liaison_ _redstone_ de la même fréquence est alimenté, cet extracteur s'arrête.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "TRANSPOSEUR LIÉ",
|
||||
"block.create.linked_transposer.tooltip.summary": "_Prend_ les _objets_ d'un _inventaire_ attaché et les place immédiatement dans _l'inventaire_ cible. Peut être affecté à une pile d'objets en tant que _filtre_. Peut être contrôlé à distance via une _liaison_ _redstone_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "Lorsque la liaison redstone est active",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "Met le transposeur en _pause_.",
|
||||
"block.create.linked_transposer.tooltip.control1": "Clic droit sur l'espace du filtre",
|
||||
"block.create.linked_transposer.tooltip.action1": "Assigne la _pile_ actuellement _tenue_ _en_ _main_ comme _filtre_. L'extracteur tire exclusivement les _types_ et _comptes_ des objets de la pile du filtre.",
|
||||
"block.create.linked_transposer.tooltip.control2": "Clic droit sur l'espace des fréquences",
|
||||
"block.create.linked_transposer.tooltip.action2": "Assigne la _pile_ actuellement _tenue_ _en_ _main_ dans le cadre de la fréquence écoutée. Chaque fois qu'une _liaison_ _redstone_ de la même fréquence est alimenté, ce transposeur s'arrête.",
|
||||
|
||||
"block.create.funnel.tooltip": "ENTONNOIR AMÉLIORÉ",
|
||||
"block.create.funnel.tooltip.summary": "_Collecte_ les _objets_ en _approche_ et les insère dans _l'inventaire_ attaché si possible. Peut collecter des objets dans le _monde_ et des objets sur un _tapis_ _roulant_.",
|
||||
"block.create.funnel.tooltip.condition1": "Passage de tapis roulant passif",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 396",
|
||||
"_": "Missing Localizations: 412",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "Involucro di Andesite",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "Blocco di Ottone",
|
||||
"block.create.brass_casing": "Involucro di Ottone",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "Involucro di Rame",
|
||||
"block.create.copper_ore": "Rame Grezzo",
|
||||
"block.create.copper_shingles": "Tegole di Rame",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "Creatore Cannoneschematico",
|
||||
"block.create.creative_motor": "Motore",
|
||||
"block.create.crushing_wheel": "Ruota di Frantumazione",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "Pilastro di Dolomite",
|
||||
"block.create.encased_belt": "Nastro Incassato",
|
||||
"block.create.encased_fan": "Ventilatore incassato",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Albero Incassato",
|
||||
"block.create.extractor": "Estrattore",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "Riduttore",
|
||||
"block.create.gearshift": "Cambio",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Mattoni di Granito",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Pilastro di Calcare",
|
||||
"block.create.linear_chassis": "Telaio Lineare",
|
||||
"block.create.linked_extractor": "Estrattore Connesso",
|
||||
"block.create.linked_transposer": "Traspositore Connesso",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Supporto Meccanico",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "Contatto Redstone",
|
||||
"block.create.redstone_link": "Collegamento Redstone",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "Corda",
|
||||
"block.create.rope_pulley": "Puleggia della Corda",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "Pilastro di Scoria",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "Cambio Sequenziale",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "Albero",
|
||||
"block.create.speedometer": "Tachimetro",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Pistome Meccanico Appiccicoso",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "Stressometro",
|
||||
"block.create.tiled_glass": "Vetro Piastrellato",
|
||||
"block.create.tiled_glass_pane": "Pannello di Vetro Piastrellato",
|
||||
"block.create.transposer": "Traspositore",
|
||||
"block.create.turntable": "Piatto",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "Finestra Verticale Vetro",
|
||||
"block.create.vertical_framed_glass_pane": "Pannello di Finestra Verticale Vetro",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "Ruota d'Acqua",
|
||||
"block.create.weathered_limestone": "Calcare Consumato",
|
||||
"block.create.weathered_limestone_bricks": "Mattoni di Calcare Consumato",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "Deforestatore",
|
||||
"item.create.dough": "Impasto",
|
||||
"item.create.electron_tube": "Valvola",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Schematica Vuota",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "Filtro",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "Lamiera di Ferro",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "Quarzo Rosa Levigato",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "Elica",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Filtro",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Freq. #1",
|
||||
"create.logistics.secondFrequency": "Freq. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "Genera %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "Forza Analogica: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "Ingredienti Min.",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "ESTRATTORE",
|
||||
"block.create.extractor.tooltip.summary": "_Prende_ _Oggetti_ da un _Inventario _ allegato e li lascia cadere a terra. Non lascerà cadere gli oggetti a meno che lo spazio non sia libero. Può essere assegnata una pila di oggetti come _filtro_.",
|
||||
"block.create.extractor.tooltip.condition1": "Quando alimentato da Redstone",
|
||||
"block.create.extractor.tooltip.behaviour1": "_Ferma_ l'Estrattore.",
|
||||
"block.create.extractor.tooltip.condition2": "Attiva Tiraggio del Nastro",
|
||||
"block.create.extractor.tooltip.behaviour2": "Gli estrattori possono estrarre oggetti _da_ _nastri_ rinforzati con un _involucro_ _di_ _ottone_. Quando l'estrattore è bloccato, il _nastro_ _si_ _arresterà_.",
|
||||
"block.create.extractor.tooltip.control1": "Clic-Destro sullo Spazio del Filtro",
|
||||
"block.create.extractor.tooltip.action1": "Assegna la _pila_ attualmente _trattenuta_ come _Filtro_. L'estrattore estrarrà esclusivamente il _tipo_ di oggetto e il _conteggio_ della pila come filtro.",
|
||||
|
||||
"block.create.transposer.tooltip": "TRASPOSITORE",
|
||||
"block.create.transposer.tooltip.summary": "_Prende_ _oggetti_ da un _inventario_ allegato e li inserisce immediatamente nell'_inventario_ di destinazione. Può essere assegnata una pila di oggetti come _filtro_.",
|
||||
"block.create.transposer.tooltip.condition1": "Quando Alimentato da Redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "_Ferma_ il Traspositore.",
|
||||
"block.create.transposer.tooltip.condition2": "Attiva Tiraggio del Nastro",
|
||||
"block.create.transposer.tooltip.behaviour2": "I Traspositori possono estrarre oggetti _dai_ _nastri_ rinforzati con un _involucro_ _di_ _ottone_. Quando viene eseguito il backup del traspositore, il _nastro_ _si_ _arresterà_.",
|
||||
"block.create.transposer.tooltip.control1": "Clic-Destro sullo Spazio del Filtro",
|
||||
"block.create.transposer.tooltip.action1": "Assegna la _pila_ attualmente _trattenuta_ come _Filtro_. L'estrattore estrarrà esclusivamente il _tipo_ di oggetto e il _conteggio_ della pila come filtro.",
|
||||
|
||||
"block.create.deployer.tooltip": "INSTALLATORE",
|
||||
"block.create.deployer.tooltip.summary": "_Punzoni_, _Usi_ e _Attivazioni_. Questa macchina proverà a _imitare_ un _giocatore_ il più possibile. Può _Prendere_ e _depositare_ _oggetti_ nell'_Inventario_ adiacente. Può essere assegnata una pila di oggetti come _filtro_.",
|
||||
"block.create.deployer.tooltip.condition1": "Quando Ruotato",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "Clic-Destro con la Chiave Inglese",
|
||||
"block.create.deployer.tooltip.behaviour2": "Attiva / disattiva la modalità di perforazione. In _modalità_ _pugno_, l'Installatore tenterà di usare il suo oggetto per _rompere_ _blocchi_ o _ferire_ _entità_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "ESTRATTORE CONNESSO",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Prende_ _gli_ _oggetti_ da un _Inventario_ attaccato e li lascia cadere a terra. Non lascerà cadere gli oggetti a meno che lo spazio non sia libero. Può essere assegnata una pila di oggetti come _filtro_. Può essere controllato a distanza tramite un _Collegamento_ _Redstone_.",
|
||||
"block.create.linked_extractor.tooltip.condition1": "Quando il Collegamento Redstone è attivo",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "_Ferma_ l'Estrattore.",
|
||||
"block.create.linked_extractor.tooltip.control1": "Clic-Destro sullo Spazio del Filtro",
|
||||
"block.create.linked_extractor.tooltip.action1": "Assegna la _pila_ attualmente _trattenuta_ come _Filtro_. L'estrattore estrarrà esclusivamente il _tipo_ di oggetto e il _conteggio_ della pila come filtro.",
|
||||
"block.create.linked_extractor.tooltip.control2": "Clic-Destro sullo Spazio di Frequenza",
|
||||
"block.create.linked_extractor.tooltip.action2": "Assegna l'_oggetto_ attualmente _trattenuto_ come parte della Frequenza ascoltata. Ogni volta che viene alimentato un _Collegamento_ _Redstone_ della stessa frequenza di trasmissione, questo estrattore si mette in pausa.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "TRASPOSITORE CONNESSO",
|
||||
"block.create.linked_transposer.tooltip.summary": "_Prende_ _oggetti_ da un _Inventario_ allegato e li inserisce immediatamente nell'_Inventario_ di destinazione. Può essere assegnata una pila di oggetti come _filtro_. Può essere controllato a distanza tramite un _Collegamento_ _Redstone_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "Quando il Collegamento Redstone è Attivo",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "_Ferma_ il Traspositore.",
|
||||
"block.create.linked_transposer.tooltip.control1": "Clic-Destro sullo Spazio del Filtro",
|
||||
"block.create.linked_transposer.tooltip.action1": "Assegna la _pila_ attualmente _tenuta_ come _Filtro_. Il Traspositore estrae solo gli oggetti che corrispondono al tipo di oggetto e al conteggio della pila di filtri.",
|
||||
"block.create.linked_transposer.tooltip.control2": "Clic-Destro sullo Spazio di Frequenza",
|
||||
"block.create.linked_transposer.tooltip.action2": "Assegna l'_oggetto_ attualmente _tenuto_ come parte della Frequenza ascoltata. Ogni volta che viene alimentato un _Collegamento_ _Redstone_ della stessa frequenza di trasmissione, questo Traspositore si ferma.",
|
||||
|
||||
"block.create.funnel.tooltip": "IMBUTO",
|
||||
"block.create.funnel.tooltip.summary": "_Raccoglie_ _gli_ _oggetti_ _in_ _arrivo_ e li inserisce nell'_inventario_ allegato, se possibile. Può raccogliere oggetti nel _mondo_ e oggetti su un _nastro_.",
|
||||
"block.create.funnel.tooltip.condition1": "Tirare il Nastro passivamente",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 391",
|
||||
"_": "Missing Localizations: 407",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "安山岩ケーシング",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "真鍮ブロック",
|
||||
"block.create.brass_casing": "真鍮ケーシング",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "銅ケーシング",
|
||||
"block.create.copper_ore": "銅鉱石",
|
||||
"block.create.copper_shingles": "銅のこけら板",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "概略図砲クリエティフィアー",
|
||||
"block.create.creative_motor": "モーター",
|
||||
"block.create.crushing_wheel": "破砕ホイール",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "苦灰石の柱",
|
||||
"block.create.encased_belt": "ケース入りベルト",
|
||||
"block.create.encased_fan": "ケース入りファン",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "ケース入りシャフト",
|
||||
"block.create.extractor": "エクストラクター",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "ギアボックス",
|
||||
"block.create.gearshift": "ギアシフト",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "花崗岩レンガ",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "石灰岩の柱",
|
||||
"block.create.linear_chassis": "リニアシャーシ",
|
||||
"block.create.linked_extractor": "リンクされたエクストラクター",
|
||||
"block.create.linked_transposer": "リンクされたトランスポーザー",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "メカニカルベアリング",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "レッドストーンコンタクト",
|
||||
"block.create.redstone_link": "レッドストーンリンク",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "ロープ",
|
||||
"block.create.rope_pulley": "ローププーリー",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "スコリアの柱",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "シーケンスギアシフト",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "軸",
|
||||
"block.create.speedometer": "スピードメーター",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "粘着メカニカルピストン",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "ストレスメーター",
|
||||
"block.create.tiled_glass": "タイルガラス",
|
||||
"block.create.tiled_glass_pane": "タイルガラス板",
|
||||
"block.create.transposer": "トランスポーザー",
|
||||
"block.create.turntable": "ターンテーブル",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "垂直ガラス窓",
|
||||
"block.create.vertical_framed_glass_pane": "垂直ガラス窓板",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "水車",
|
||||
"block.create.weathered_limestone": "風化した石灰岩",
|
||||
"block.create.weathered_limestone_bricks": "風化した石灰岩レンガ",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "デフォレスター",
|
||||
"item.create.dough": "生地",
|
||||
"item.create.electron_tube": "電子管",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "空の概略図",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "フィルター",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "鉄板",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "磨かれたローズクォーツ",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "プロペラ",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "フィルタ",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Freq. #1",
|
||||
"create.logistics.secondFrequency": "Freq. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "%1$s %2$sを生成",
|
||||
"create.tooltip.analogStrength": "アナログ強度: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "最小 材料",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "抽出器",
|
||||
"block.create.extractor.tooltip.summary": "付属のインベントリから_アイテムを取り_、地面にドロップします。 スペースが空いていない限り、アイテムはドロップされません。 _フィルター_としてアイテムスタックを割り当てることができます。",
|
||||
"block.create.extractor.tooltip.condition1": "レッドストーン信号があるとき",
|
||||
"block.create.extractor.tooltip.behaviour1": "エクストラクタを_一時停止_します。",
|
||||
"block.create.extractor.tooltip.condition2": "アクティブベルト牽引されたとき",
|
||||
"block.create.extractor.tooltip.behaviour2": "エクストラクタは、_真ちゅう製のケーシング_で補強された_ベルトから_アイテムを引き出すことができます。 エクストラクタが詰まると、_ベルトが停止_します。",
|
||||
"block.create.extractor.tooltip.control1": "フィルタースペースを右クリック",
|
||||
"block.create.extractor.tooltip.action1": "現在_保持されているスタック_を_フィルター_として割り当てます。 エクストラクターは、アイテム_タイプ_とフィルタースタックの_数_を排他的に取得します。",
|
||||
|
||||
"block.create.transposer.tooltip": "トランスポーザー",
|
||||
"block.create.transposer.tooltip.summary": "取り付けされたインベントリから_アイテムを取得_し、すぐにターゲット_インベントリ_に入れます。 _フィルター_としてアイテムスタックを割り当てることができます。",
|
||||
"block.create.transposer.tooltip.condition1": "レッドストーン信号があるとき",
|
||||
"block.create.transposer.tooltip.behaviour1": "トランスポーザを_一時停止_します。",
|
||||
"block.create.transposer.tooltip.condition2": "アクティブベルト牽引されたとき",
|
||||
"block.create.transposer.tooltip.behaviour2": "トランスポーザーは、_真鍮のケーシングで補強_された_ベルトからアイテム_を引っ張ることができます。 トランスポーザがバックアップされると、_ベルトが停止_します。",
|
||||
"block.create.transposer.tooltip.control1": "フィルタースペースを右クリック",
|
||||
"block.create.transposer.tooltip.action1": "現在_保持されているスタック_を_フィルター_として割り当てます。トランスポーザーは、フィルタースタックのアイテムタイプと_カウント_を排他的にプルします。",
|
||||
|
||||
"block.create.deployer.tooltip": "デプロイヤ",
|
||||
"block.create.deployer.tooltip.summary": "_パンチ_、_使用_、_有効化_。 このマシンは、_プレイヤー_をできるだけ_真似_しようとします。 隣接するインベントリの_アイテムを受け取り_、_預ける_ことができます。 _フィルター_としてアイテムスタックを割り当てることができます。",
|
||||
"block.create.deployer.tooltip.condition1": "回転したとき",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "レンチで右クリックしたとき",
|
||||
"block.create.deployer.tooltip.behaviour2": "パンチモードを切り替えます。 _パンチモード_では、デプロイヤはそのアイテムを使用して_ブロックを壊したりエンティティを傷つけ_たりしようとします。",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "リンクエクストラクター",
|
||||
"block.create.linked_extractor.tooltip.summary": "取り付けてる_インベントリ_から_アイテムを取り_、それらを地面に落とします。 スペースが空いていない限り、アイテムはドロップされません。 _フィルター_としてアイテムスタックを割り当てることができます。 _レッドストーンリンク_を介してリモートで制御できます。",
|
||||
"block.create.linked_extractor.tooltip.condition1": "レッドストーンリンクがアクティブな場合",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "エクストラクタを_一時停止_します。",
|
||||
"block.create.linked_extractor.tooltip.control1": "フィルタースペースを右クリックしたとき",
|
||||
"block.create.linked_extractor.tooltip.action1": "現在_保持されているスタック_を_フィルター_として割り当てます。 エクストラクターは、_アイテムタイプ_とフィルタースタックの_数_を排他的に取得します。",
|
||||
"block.create.linked_extractor.tooltip.control2": "周波数スペースを右クリックしたとき",
|
||||
"block.create.linked_extractor.tooltip.action2": "リッスンされている周波数の一部として_現在保持_されているアイテムを割り当てます。 同じ周波数の送信_レッドストーンリンク_に動力が供給されると、このエクストラクターは一時停止します。",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "リンクされたトランスポーザー",
|
||||
"block.create.linked_transposer.tooltip.summary": "取り付けてる_インベントリ_から_アイテムを取得_し、すぐにターゲット_インベントリ_に入れます。 フィルターとしてアイテムスタックを割り当てることができます。 _レッドストーンリンク_を介してリモートで制御できます。",
|
||||
"block.create.linked_transposer.tooltip.condition1": "レッドストーンリンクがアクティブのとき",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "トランスポーザを_一時停止_します。",
|
||||
"block.create.linked_transposer.tooltip.control1": "フィルタースペースを右クリックしたとき",
|
||||
"block.create.linked_transposer.tooltip.action1": "現在_保持されているスタック_を_フィルター_として割り当てます。 トランスポーザーは、アイテム_タイプ_とフィルター_スタック_の数に一致するアイテムのみをプルします。",
|
||||
"block.create.linked_transposer.tooltip.control2": "周波数スペースを右クリックしたとき",
|
||||
"block.create.linked_transposer.tooltip.action2": "聴いてる周波数の一部として現在_保持されているアイテム_を割り当てます。 同じ周波数の送信レッドストーンリンクに動力が供給されると、このトランスポーザーは一時停止します。",
|
||||
|
||||
"block.create.funnel.tooltip": "漏斗",
|
||||
"block.create.funnel.tooltip.summary": "_入力アイテムを収集_し、可能な場合はそれらを取り付けた_インベントリ_に挿入します。 _世界_のアイテムや_ベルト_のアイテムを集めることができます。",
|
||||
"block.create.funnel.tooltip.condition1": "パッシブベルト引っ張り",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 396",
|
||||
"_": "Missing Localizations: 412",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "안산암 케이스",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "황동 블럭",
|
||||
"block.create.brass_casing": "황동 케이스",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "구리 케이스",
|
||||
"block.create.copper_ore": "구리 광석",
|
||||
"block.create.copper_shingles": "구리 판자",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "청사진 대포 지원기",
|
||||
"block.create.creative_motor": "모터",
|
||||
"block.create.crushing_wheel": "분쇄 휠",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "백운암 기둥",
|
||||
"block.create.encased_belt": "덮힌 벨트",
|
||||
"block.create.encased_fan": "덮힌 환풍기",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "덮힌 축",
|
||||
"block.create.extractor": "추출기",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "기어박스",
|
||||
"block.create.gearshift": "기어쉬프트",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "화강암 벽돌",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "석회암 기둥",
|
||||
"block.create.linear_chassis": "직선 섀시",
|
||||
"block.create.linked_extractor": "무선 추출기",
|
||||
"block.create.linked_transposer": "무선 트랜스포저",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "베어링",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "동형 감지기",
|
||||
"block.create.redstone_link": "레드스톤 링크",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "밧줄",
|
||||
"block.create.rope_pulley": "밧줄 도르래",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "스코리아 기둥",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "순서 기어쉬프트",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "축",
|
||||
"block.create.speedometer": "속도 계측기",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "끈끈이 기계식 피스톤",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "피로도 계측기",
|
||||
"block.create.tiled_glass": "타일 유리",
|
||||
"block.create.tiled_glass_pane": "타일 유리판",
|
||||
"block.create.transposer": "트랜스포저",
|
||||
"block.create.turntable": "돌림판",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "수직 유리",
|
||||
"block.create.vertical_framed_glass_pane": "수직 유리판",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "물레방아",
|
||||
"block.create.weathered_limestone": "풍화된 석회암",
|
||||
"block.create.weathered_limestone_bricks": "풍화된 석회암 벽돌",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "산림파괴자",
|
||||
"item.create.dough": "반죽",
|
||||
"item.create.electron_tube": "전지 튜브",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "빈 청사진",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "필터 틀",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "철 판",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "윤나는 장밋빛 석영",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "프로펠러",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "필터",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "주파수. #1",
|
||||
"create.logistics.secondFrequency": "주파수. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "%1$s %2$s만큼 발전함",
|
||||
"create.tooltip.analogStrength": "레드스톤 출력: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "최소 재료 종류",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRACTOR",
|
||||
"block.create.extractor.tooltip.summary": "_연결된_ _인벤토리_로부터 아이템을 꺼내 땅에 떨어뜨립니다. 공간이 비지 않았다면 아이템을 떨어뜨리지 않습니다. 개수/필터를 설정 가능합니다.",
|
||||
"block.create.extractor.tooltip.condition1": "레드스톤 신호를 받았을 때",
|
||||
"block.create.extractor.tooltip.behaviour1": "추출기를 _멈춥니다_.",
|
||||
"block.create.extractor.tooltip.condition2": "움직이는 벨트에 연결되었을 때",
|
||||
"block.create.extractor.tooltip.behaviour2": "추출기는 _황동_ _케이스_가 장착된 _벨트_에서 아이템을 빼낼 수 있습니다. 추출기가 막혔을 때는, 벨트가 _멈춥니다_.",
|
||||
"block.create.extractor.tooltip.control1": "필터 슬롯을 우클릭할 때",
|
||||
"block.create.extractor.tooltip.action1": "현재 들고있는 아이템의 개수 혹은 필터 틀로 필터를 정합니다. 추출기는 필터 설정에 맞춰 아이템을 빼낼 것입니다.",
|
||||
|
||||
"block.create.transposer.tooltip": "TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "연결된 인벤토리로부터 대상 인벤토리로 아이템을 _바로_ _이동_시킵니다. 개수/필터를 설정 가능합니다.",
|
||||
"block.create.transposer.tooltip.condition1": "레드스톤 신호를 받았을 때",
|
||||
"block.create.transposer.tooltip.behaviour1": "트랜스포저를 _멈춥니다_.",
|
||||
"block.create.transposer.tooltip.condition2": "움직이는 벨트에 연결되었을 때",
|
||||
"block.create.transposer.tooltip.behaviour2": "트랜스포저는 _황동_ _케이스_가 장착된 _벨트_에서 아이템을 빼낼 수 있습니다. 추출기가 막혔을 때는, 벨트가 _멈춥니다_.",
|
||||
"block.create.transposer.tooltip.control1": "필터 슬롯을 우클릭할 때",
|
||||
"block.create.transposer.tooltip.action1": "현재 들고있는 아이템의 개수 혹은 필터 틀로 필터를 정합니다. 트랜스포저는 필터 설정에 맞춰 아이템을 빼낼 것입니다.",
|
||||
|
||||
"block.create.deployer.tooltip": "DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": " _때리고_, _사용하고_ _작동시킵니다_. 이 장치는 _플레이어_를 가능한 한 _흉내내려할_ _것입니다_. 주변 인벤토리에서 아이템을 쓰거나 넣을 수 있습니다. 필터로 사용하는 아이템을 설정할 수 있습니다.",
|
||||
"block.create.deployer.tooltip.condition1": "회전될 때",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "렌치로 우클릭",
|
||||
"block.create.deployer.tooltip.behaviour2": "_펀치_ _모드_로 바꿉니다. 이 상태에서는 배포기가 아이템을 가지고 _부수거나_ _때리려고_ 할 것입니다.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "LINKED EXTRACTOR",
|
||||
"block.create.linked_extractor.tooltip.summary": "_연결된_ _인벤토리_로부터 아이템을 꺼내 땅에 떨어뜨립니다. 공간이 비지 않았다면 아이템을 떨어뜨리지 않습니다. 개수/필터를 설정 가능합니다. 레드스톤 링크를 통해 _무선으로_ 컨트롤 될 수 있습니다.",
|
||||
"block.create.linked_extractor.tooltip.condition1": "레드스톤 링크 신호를 받았을 때",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "추출기를 _멈춥니다_.",
|
||||
"block.create.linked_extractor.tooltip.control1": "필터 슬롯을 우클릭할 때",
|
||||
"block.create.linked_extractor.tooltip.action1": "현재 들고있는 아이템의 개수 혹은 필터 틀로 필터를 정합니다. 추출기는 필터 설정에 맞춰 아이템을 빼낼 것입니다.",
|
||||
"block.create.linked_extractor.tooltip.control2": "아이템을 들고 주파수 슬롯을 우클릭",
|
||||
"block.create.linked_extractor.tooltip.action2": "그 아이템으로 주파수를 설정합니다. _같은_ _주파수_의 레드스톤 링크가 신호를 보낸다면, 추출기는 멈출 것입니다.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "연결된 인벤토리로부터 대상 인벤토리로 아이템을 _바로_ _이동_시킵니다. 개수/필터를 설정 가능합니다. 레드스톤 링크를 통해 _무선으로_ 컨트롤 될 수 있습니다.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "레드스톤 링크 신호를 받았을 때",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "트랜스포저를 _멈춥니다_.",
|
||||
"block.create.linked_transposer.tooltip.control1": "필터 슬롯을 우클릭할 때",
|
||||
"block.create.linked_transposer.tooltip.action1": "현재 들고있는 아이템의 개수 혹은 필터 틀로 필터를 정합니다. 트랜스포저는 필터 설정에 맞춰 아이템을 빼낼 것입니다.",
|
||||
"block.create.linked_transposer.tooltip.control2": "아이템을 들고 주파수 슬롯을 우클릭",
|
||||
"block.create.linked_transposer.tooltip.action2": "그 아이템으로 주파수를 설정합니다. _같은_ _주파수_의 레드스톤 링크가 신호를 보낸다면, 트랜스포저는 멈출 것입니다.",
|
||||
|
||||
"block.create.funnel.tooltip": "FUNNEL",
|
||||
"block.create.funnel.tooltip.summary": "들어오는 아이템을 가능하면 _연결된_ _인벤토리_에 넣습니다. _벨트_ _위_의 아이템도 끌어올 수 있습니다.",
|
||||
"block.create.funnel.tooltip.condition1": "움직이는 벨트위에 있을 때",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 746",
|
||||
"_": "Missing Localizations: 742",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "UNLOCALIZED: Andesite Casing",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "UNLOCALIZED: Brass Block",
|
||||
"block.create.brass_casing": "UNLOCALIZED: Brass Casing",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "UNLOCALIZED: Copper Casing",
|
||||
"block.create.copper_ore": "UNLOCALIZED: Copper Ore",
|
||||
"block.create.copper_shingles": "UNLOCALIZED: Copper Shingles",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "Bouwtekeningkannon Creatiefeerder",
|
||||
"block.create.creative_motor": "UNLOCALIZED: Creative Motor",
|
||||
"block.create.crushing_wheel": "Verpulveraar",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "Dolomiet Pilaar",
|
||||
"block.create.encased_belt": "Omhulsde Transportband",
|
||||
"block.create.encased_fan": "Omhulsde Ventilator",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Omhulsde Drijfas",
|
||||
"block.create.extractor": "Extractor",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "Versnellingsbak",
|
||||
"block.create.gearshift": "Versnellingspook",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Granietstenen",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Kalksteen Pillar",
|
||||
"block.create.linear_chassis": "Lineaar Frame",
|
||||
"block.create.linked_extractor": "Gelinkte Extractor",
|
||||
"block.create.linked_transposer": "UNLOCALIZED: Linked Transposer",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Mechanische Lager",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "Redstone redstone_contact",
|
||||
"block.create.redstone_link": "Redstone Brug",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "UNLOCALIZED: Rope",
|
||||
"block.create.rope_pulley": "UNLOCALIZED: Rope Pulley",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "UNLOCALIZED: Scoria Pillar",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "UNLOCALIZED: Sequenced Gearshift",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "Drijfas",
|
||||
"block.create.speedometer": "Snelheidsmeter",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Mechanische Zuiger",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "Stressmeter",
|
||||
"block.create.tiled_glass": "Getegeld Glas",
|
||||
"block.create.tiled_glass_pane": "Getegeld Glazen Paneel",
|
||||
"block.create.transposer": "UNLOCALIZED: Transposer",
|
||||
"block.create.turntable": "Draaischijf",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "UNLOCALIZED: Vertical Framed Glass",
|
||||
"block.create.vertical_framed_glass_pane": "UNLOCALIZED: Vertical Framed Glass Pane",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "Waterrad",
|
||||
"block.create.weathered_limestone": "Verweerde Kalksteen",
|
||||
"block.create.weathered_limestone_bricks": "Verweerde Kalksteenstenen",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "Ontbosser",
|
||||
"item.create.dough": "Deeg",
|
||||
"item.create.electron_tube": "UNLOCALIZED: Electron Tube",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Lege bouwtekening",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "Filter",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "IJzeren Platen",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "UNLOCALIZED: Polished Rose Quartz",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "Propeller",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -516,7 +513,7 @@
|
|||
"death.attack.create.fan_fire": "%1$s is verbrand door hete lucht",
|
||||
"death.attack.create.fan_lava": "%1$s is verbrand door een lava ventilator",
|
||||
"death.attack.create.mechanical_drill": "%1$s is gespietst door een mechanische boor",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by Mechanical mechanical_saw",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by a Mechanical Saw",
|
||||
"death.attack.create.cuckoo_clock_explosion": "UNLOCALIZED: %1$s was blown up by tampered cuckoo clock",
|
||||
|
||||
"create.block.deployer.damage_source_name": "UNLOCALIZED: a rogue Deployer",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Filter",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Freq. #1",
|
||||
"create.logistics.secondFrequency": "Freq. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "UNLOCALIZED: Generates at %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "UNLOCALIZED: Analog Strength: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "Min. Ingredieënten",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRACTOR",
|
||||
"block.create.extractor.tooltip.summary": "_Haalt_ _objecten_ uit een aangesloten _inventaris_ en laat ze op de grond vallen. Laat items niet vallen totdat de ruimte is leeggemaakt. Kan een item-stapel worden toegewezen als een _filter._",
|
||||
"block.create.extractor.tooltip.condition1": "Wanneer aangestuurd door redstone",
|
||||
"block.create.extractor.tooltip.behaviour1": "_Pauzeerd_ de Extractor",
|
||||
"block.create.extractor.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.extractor.tooltip.behaviour2": "UNLOCALIZED: Extractors can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the extractor is blocked, the _belt_ _will_ _stall_.",
|
||||
"block.create.extractor.tooltip.control1": "R-Klik op Filter Plek",
|
||||
"block.create.extractor.tooltip.action1": "Wijst momenteel _vastgehouden_ _stapel_ toe als de _Filter._ Extractor zal uitsluitend het object _type_ en _hoevelheid_ van de stapel op de grond gooien.",
|
||||
|
||||
"block.create.transposer.tooltip": "UNLOCALIZED: TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.transposer.tooltip.condition1": "UNLOCALIZED: When Powered by Redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.transposer.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.transposer.tooltip.behaviour2": "UNLOCALIZED: Transposers can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the transposer is backed up, the _belt_ _will_ _stall_.",
|
||||
"block.create.transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
|
||||
"block.create.deployer.tooltip": "UNLOCALIZED: DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": "UNLOCALIZED: _Punches_, _Uses_, and _Activates_. This machine will try to _imitate_ a _player_ as a much as possible. Can _Take_ and _Deposit_ _items_ in adjacent _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.deployer.tooltip.condition1": "UNLOCALIZED: When Rotated",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "UNLOCALIZED: R-Clicked with Wrench",
|
||||
"block.create.deployer.tooltip.behaviour2": "UNLOCALIZED: Toggles punch mode. In _punch_ _mode_, the Deployer will attempt to use its item to _break_ _blocks_ or _hurt_ _entities_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "LINKED EXTRACTOR",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Haalt_ _objecten_ uit een aangesloten _inventaris_ en laat ze op de grond vallen. Laat items niet vallen totdat de ruimte is leeggemaakt. Kan een item-stapel worden toegewezen als een _filter._ Kan op afstand worden bediend via een _Redstone_ _Brug._",
|
||||
"block.create.linked_extractor.tooltip.condition1": "Wanneer Redstone verbinding actief is",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "_Pauzeerd_ de Extractor",
|
||||
"block.create.linked_extractor.tooltip.control1": "R-Klik op Filter Plek",
|
||||
"block.create.linked_extractor.tooltip.action1": "Wijst momenteel _vastgehouden_ _stapel_ toe als de _Filter._ Extractor zal uitsluitend het object _type_ en _hoevelheid_ van de stapel op de grond gooien.",
|
||||
"block.create.linked_extractor.tooltip.control2": "R-Klik op Frequency Plek",
|
||||
"block.create.linked_extractor.tooltip.action2": "Wijst momenteel _vastgehouden_ _object_ toe als onderdeel van de geluisterde frequentie. Wanneer een zendende _Redstone_ _Brug_ van dezelfde frequentie wordt ingeschakeld, pauzeert deze Extractor.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "UNLOCALIZED: LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_. Can be controlled remotely via a _Redstone_ _Link_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "UNLOCALIZED: When Redstone Link Active",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.linked_transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.linked_transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will only pull items that match the item _type_ and _count_ of the filter stack.",
|
||||
"block.create.linked_transposer.tooltip.control2": "UNLOCALIZED: R-Click on Frequency Space",
|
||||
"block.create.linked_transposer.tooltip.action2": "UNLOCALIZED: Assigns the currently _held_ _item_ as part of the Frequency listened on. Whenever a transmitting _Redstone_ _Link_ of the same frequency is powered, this Transposer will pause.",
|
||||
|
||||
"block.create.funnel.tooltip": "TRANSPORTBAND TRECHTER",
|
||||
"block.create.funnel.tooltip.summary": "Verzamelt inkomende items op een _Mechanische_ _Transportband_ en plaatst deze indien mogelijk in de bijgevoegde _Inventaris._ Moet zich direct op een transportband bevinden, met de opening tegenover de bewegingsrichting van de transportband. Het inventaris moet op dezelfde hoogte zijn als de trechter.",
|
||||
"block.create.funnel.tooltip.condition1": "UNLOCALIZED: Passive Belt pulling",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 816",
|
||||
"_": "Missing Localizations: 811",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "UNLOCALIZED: Andesite Casing",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "UNLOCALIZED: Brass Block",
|
||||
"block.create.brass_casing": "UNLOCALIZED: Brass Casing",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "UNLOCALIZED: Copper Casing",
|
||||
"block.create.copper_ore": "UNLOCALIZED: Copper Ore",
|
||||
"block.create.copper_shingles": "UNLOCALIZED: Copper Shingles",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "Criativador Esquemaannon",
|
||||
"block.create.creative_motor": "UNLOCALIZED: Creative Motor",
|
||||
"block.create.crushing_wheel": "Roda de Moer",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "Pilar de Dolomite",
|
||||
"block.create.encased_belt": "Esteira Revestida",
|
||||
"block.create.encased_fan": "Ventilador Revestida",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Eixo Revestido",
|
||||
"block.create.extractor": "Extrator",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "Caixa de Transmissão",
|
||||
"block.create.gearshift": "Câmbio",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Tijolos de Granito",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Pilar de Calcário",
|
||||
"block.create.linear_chassis": "Chassis de Translado",
|
||||
"block.create.linked_extractor": "Extrator Conectado",
|
||||
"block.create.linked_transposer": "UNLOCALIZED: Linked Transposer",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Rolamento Mecânico",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "Contato de Redstone",
|
||||
"block.create.redstone_link": "Conexão de Redstone",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "UNLOCALIZED: Rope",
|
||||
"block.create.rope_pulley": "UNLOCALIZED: Rope Pulley",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "UNLOCALIZED: Scoria Pillar",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "UNLOCALIZED: Sequenced Gearshift",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "Eixo",
|
||||
"block.create.speedometer": "UNLOCALIZED: Speedometer",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Pistão Mecânico Grudento",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "UNLOCALIZED: Stressometer",
|
||||
"block.create.tiled_glass": "Vidro Entalhado",
|
||||
"block.create.tiled_glass_pane": "Vidraça Entalhada",
|
||||
"block.create.transposer": "UNLOCALIZED: Transposer",
|
||||
"block.create.turntable": "Mesa giratória",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "UNLOCALIZED: Vertical Framed Glass",
|
||||
"block.create.vertical_framed_glass_pane": "UNLOCALIZED: Vertical Framed Glass Pane",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "Roda de Água",
|
||||
"block.create.weathered_limestone": "Calcário Resistido",
|
||||
"block.create.weathered_limestone_bricks": "Tijolos de Calcário Resistido",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "UNLOCALIZED: Deforester",
|
||||
"item.create.dough": "Massa",
|
||||
"item.create.electron_tube": "UNLOCALIZED: Electron Tube",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Esquema vazio",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "Filtro",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "Placas de Ferro",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "UNLOCALIZED: Polished Rose Quartz",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "Hélice",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -516,7 +513,7 @@
|
|||
"death.attack.create.fan_fire": "%1$s foi queimado por ar quente",
|
||||
"death.attack.create.fan_lava": "%1$s foi queimado pelo ventilador de lava",
|
||||
"death.attack.create.mechanical_drill": "%1$s foi empalado pela Furadeira Mecânica",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by Mechanical mechanical_saw",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by a Mechanical Saw",
|
||||
"death.attack.create.cuckoo_clock_explosion": "UNLOCALIZED: %1$s was blown up by tampered cuckoo clock",
|
||||
|
||||
"create.block.deployer.damage_source_name": "UNLOCALIZED: a rogue Deployer",
|
||||
|
@ -533,7 +530,7 @@
|
|||
"create.recipe.pressing": "Prensa Mecânica",
|
||||
"create.recipe.mixing": "UNLOCALIZED: Mixing",
|
||||
"create.recipe.packing": "UNLOCALIZED: Compacting",
|
||||
"create.recipe.mechanical_sawing": "UNLOCALIZED: mechanical_sawing",
|
||||
"create.recipe.mechanical_sawing": "UNLOCALIZED: Sawing",
|
||||
"create.recipe.mechanical_crafting": "UNLOCALIZED: Mechanical Crafting",
|
||||
"create.recipe.block_cutting": "UNLOCALIZED: Block Cutting",
|
||||
"create.recipe.blockzapper_upgrade": "Blockzapper Portátil",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Filtros",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "UNLOCALIZED: Freq. #1",
|
||||
"create.logistics.secondFrequency": "UNLOCALIZED: Freq. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "UNLOCALIZED: Generates at %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "UNLOCALIZED: Analog Strength: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "UNLOCALIZED: Min. Ingredients",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRATOR",
|
||||
"block.create.extractor.tooltip.summary": "_Pega_ _itens_ de um _Inventário_ conectado e os joga no chão. Não irá jogar Itens até o espaço ser limpo. Pode ser configurado como para ser um _filtro._",
|
||||
"block.create.extractor.tooltip.condition1": "Quando Ligado por Redstone",
|
||||
"block.create.extractor.tooltip.behaviour1": "_Para_ o Extractor",
|
||||
"block.create.extractor.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.extractor.tooltip.behaviour2": "UNLOCALIZED: Extractors can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the extractor is blocked, the _belt_ _will_ _stall_.",
|
||||
"block.create.extractor.tooltip.control1": "B-Direito no Espaço de Filtro",
|
||||
"block.create.extractor.tooltip.action1": "Configura a _pilha_ atualmente _presente_ como um _Filtro._ Extrator irá apenas puxar apenas _tipo_ e _quantidade_ do item filtro.",
|
||||
|
||||
"block.create.transposer.tooltip": "UNLOCALIZED: TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.transposer.tooltip.condition1": "UNLOCALIZED: When Powered by Redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.transposer.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.transposer.tooltip.behaviour2": "UNLOCALIZED: Transposers can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the transposer is backed up, the _belt_ _will_ _stall_.",
|
||||
"block.create.transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
|
||||
"block.create.deployer.tooltip": "UNLOCALIZED: DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": "UNLOCALIZED: _Punches_, _Uses_, and _Activates_. This machine will try to _imitate_ a _player_ as a much as possible. Can _Take_ and _Deposit_ _items_ in adjacent _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.deployer.tooltip.condition1": "UNLOCALIZED: When Rotated",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "UNLOCALIZED: R-Clicked with Wrench",
|
||||
"block.create.deployer.tooltip.behaviour2": "UNLOCALIZED: Toggles punch mode. In _punch_ _mode_, the Deployer will attempt to use its item to _break_ _blocks_ or _hurt_ _entities_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "EXTRATOR CONECTADO",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Pega_ _itens_ de um _Inventário_ e os joga no chão. Não vai jogar Itens até que o espaço ser limpo. Pode ser configurado como para ser um _filtro._ Pode ser controlado remotamente via _Conexão_ de _Redstone._",
|
||||
"block.create.linked_extractor.tooltip.condition1": "Quando Conexão de Redstone Ativa",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "_Para_ o Extrator",
|
||||
"block.create.linked_extractor.tooltip.control1": "B-Direito no Espaço de Filtro",
|
||||
"block.create.linked_extractor.tooltip.action1": "Configura a _pilha_ atualmente _presente_ como um _Filtro._ Extrator irá apenas puxar apenas _tipo_ e _quantidade_ do item filtro.",
|
||||
"block.create.linked_extractor.tooltip.control2": "B-Direito no Espaço de Frequência",
|
||||
"block.create.linked_extractor.tooltip.action2": "Configura a _pilha_ atualmente _presente_ como parte da Frequência a ouvir. Quando um _Conexão_ de _Redstone_ transmissor da mesma frequência é ligado, esse Extrator irá parar.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "UNLOCALIZED: LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_. Can be controlled remotely via a _Redstone_ _Link_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "UNLOCALIZED: When Redstone Link Active",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.linked_transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.linked_transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will only pull items that match the item _type_ and _count_ of the filter stack.",
|
||||
"block.create.linked_transposer.tooltip.control2": "UNLOCALIZED: R-Click on Frequency Space",
|
||||
"block.create.linked_transposer.tooltip.action2": "UNLOCALIZED: Assigns the currently _held_ _item_ as part of the Frequency listened on. Whenever a transmitting _Redstone_ _Link_ of the same frequency is powered, this Transposer will pause.",
|
||||
|
||||
"block.create.funnel.tooltip": "FUNIL DE ESTEIRA",
|
||||
"block.create.funnel.tooltip.summary": "Coleta itens passando numa _Esteira_ _Mecânica_ e os insere no _Inventário_ conetado, se possível. Precisa estar diretamente _sobre_ uma Esteira, com a abertura virada contra o movimento da Esteira. O inventário precisa estar na mesma altura que o funil.",
|
||||
"block.create.funnel.tooltip.condition1": "UNLOCALIZED: Passive Belt pulling",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 810",
|
||||
"_": "Missing Localizations: 805",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "UNLOCALIZED: Andesite Bricks Stairs",
|
||||
"block.create.andesite_bricks_wall": "UNLOCALIZED: Andesite Bricks Wall",
|
||||
"block.create.andesite_casing": "UNLOCALIZED: Andesite Casing",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "UNLOCALIZED: Andesite Cobblestone",
|
||||
"block.create.andesite_cobblestone_slab": "UNLOCALIZED: Andesite Cobblestone Slab",
|
||||
"block.create.andesite_cobblestone_stairs": "UNLOCALIZED: Andesite Cobblestone Stairs",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "UNLOCALIZED: Birch Window",
|
||||
"block.create.birch_window_pane": "UNLOCALIZED: Birch Window Pane",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "UNLOCALIZED: Brass Block",
|
||||
"block.create.brass_casing": "UNLOCALIZED: Brass Casing",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "UNLOCALIZED: Copper Casing",
|
||||
"block.create.copper_ore": "UNLOCALIZED: Copper Ore",
|
||||
"block.create.copper_shingles": "UNLOCALIZED: Copper Shingles",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "Креативный ящик",
|
||||
"block.create.creative_motor": "UNLOCALIZED: Creative Motor",
|
||||
"block.create.crushing_wheel": "Дробильное колесо",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "Доломитовая колонна",
|
||||
"block.create.encased_belt": "Ленточный привод",
|
||||
"block.create.encased_fan": "Вентилятор",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "Вальный привод",
|
||||
"block.create.extractor": "Экстрактор",
|
||||
"block.create.fancy_andesite_bricks": "UNLOCALIZED: Fancy Andesite Bricks",
|
||||
"block.create.fancy_andesite_bricks_slab": "UNLOCALIZED: Fancy Andesite Bricks Slab",
|
||||
"block.create.fancy_andesite_bricks_stairs": "UNLOCALIZED: Fancy Andesite Bricks Stairs",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "UNLOCALIZED: Gabbro Pillar",
|
||||
"block.create.gearbox": "Муфта",
|
||||
"block.create.gearshift": "Реверсивная муфта",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "Гранитные кирпичи",
|
||||
"block.create.granite_bricks_slab": "UNLOCALIZED: Granite Bricks Slab",
|
||||
"block.create.granite_bricks_stairs": "UNLOCALIZED: Granite Bricks Stairs",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "UNLOCALIZED: Limestone Cobblestone Wall",
|
||||
"block.create.limestone_pillar": "Известняковая колонна",
|
||||
"block.create.linear_chassis": "Поступательная рама",
|
||||
"block.create.linked_extractor": "Сигнальный экстрактор",
|
||||
"block.create.linked_transposer": "UNLOCALIZED: Linked Transposer",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "Механический подшипник",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "UNLOCALIZED: Overgrown Limestone",
|
||||
"block.create.overgrown_scoria": "UNLOCALIZED: Overgrown Scoria",
|
||||
"block.create.overgrown_weathered_limestone": "UNLOCALIZED: Overgrown Weathered Limestone",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "UNLOCALIZED: Paved Andesite",
|
||||
"block.create.paved_andesite_slab": "UNLOCALIZED: Paved Andesite Slab",
|
||||
"block.create.paved_andesite_stairs": "UNLOCALIZED: Paved Andesite Stairs",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "Контактное соединение",
|
||||
"block.create.redstone_link": "Сигнальное соединение",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "UNLOCALIZED: Rope",
|
||||
"block.create.rope_pulley": "UNLOCALIZED: Rope Pulley",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "UNLOCALIZED: Scoria Pillar",
|
||||
"block.create.secondary_linear_chassis": "UNLOCALIZED: Secondary Linear Chassis",
|
||||
"block.create.sequenced_gearshift": "UNLOCALIZED: Sequenced Gearshift",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "Вал",
|
||||
"block.create.speedometer": "UNLOCALIZED: Speedometer",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "UNLOCALIZED: Spruce Window",
|
||||
"block.create.spruce_window_pane": "UNLOCALIZED: Spruce Window Pane",
|
||||
"block.create.sticky_mechanical_piston": "Липкий механический поршень",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "UNLOCALIZED: Stressometer",
|
||||
"block.create.tiled_glass": "Плиточное стекло",
|
||||
"block.create.tiled_glass_pane": "Плиточная стеклянная панель",
|
||||
"block.create.transposer": "UNLOCALIZED: Transposer",
|
||||
"block.create.turntable": "Поворотный стол",
|
||||
"block.create.vertical_extractor": "UNLOCALIZED: Vertical Extractor",
|
||||
"block.create.vertical_framed_glass": "UNLOCALIZED: Vertical Framed Glass",
|
||||
"block.create.vertical_framed_glass_pane": "UNLOCALIZED: Vertical Framed Glass Pane",
|
||||
"block.create.vertical_linked_extractor": "UNLOCALIZED: Vertical Linked Extractor",
|
||||
"block.create.vertical_linked_transposer": "UNLOCALIZED: Vertical Linked Transposer",
|
||||
"block.create.vertical_transposer": "UNLOCALIZED: Vertical Transposer",
|
||||
"block.create.water_wheel": "Водяное колесо",
|
||||
"block.create.weathered_limestone": "Обветренный известняк",
|
||||
"block.create.weathered_limestone_bricks": "Кирпичи из обветренного известняка",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "UNLOCALIZED: Deforester",
|
||||
"item.create.dough": "Тесто",
|
||||
"item.create.electron_tube": "UNLOCALIZED: Electron Tube",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "Пустая схема",
|
||||
"item.create.extendo_grip": "UNLOCALIZED: Extendo Grip",
|
||||
"item.create.filter": "Фильтр",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "Железная пластина",
|
||||
"item.create.lapis_sheet": "UNLOCALIZED: Lapis Sheet",
|
||||
"item.create.minecart_contraption": "UNLOCALIZED: Minecart Contraption",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "UNLOCALIZED: Polished Rose Quartz",
|
||||
"item.create.powdered_obsidian": "UNLOCALIZED: Powdered Obsidian",
|
||||
"item.create.propeller": "Пропеллер",
|
||||
|
@ -458,7 +455,7 @@
|
|||
"advancement.create.electron_tube": "UNLOCALIZED: Beep boop",
|
||||
"advancement.create.electron_tube.desc": "UNLOCALIZED: Make some Electron Tubes, useful in crafting less primitive machinery.",
|
||||
"advancement.create.mechanical_saw": "UNLOCALIZED: Stationary Chopping",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical mechanical_saw",
|
||||
"advancement.create.mechanical_saw.desc": "UNLOCALIZED: Place and power a Mechanical Saw",
|
||||
"advancement.create.basin": "UNLOCALIZED: Basin Operation",
|
||||
"advancement.create.basin.desc": "UNLOCALIZED: Place a basin and try throwing items into it.",
|
||||
"advancement.create.mixer": "UNLOCALIZED: Mixin' it Up",
|
||||
|
@ -516,7 +513,7 @@
|
|||
"death.attack.create.fan_fire": "%1$s сгорел заживо от горячего воздуха.",
|
||||
"death.attack.create.fan_lava": "%1$s сгорел заживо от лавового вентилятора",
|
||||
"death.attack.create.mechanical_drill": "%1$s был проколот механическим буром",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by Mechanical mechanical_saw",
|
||||
"death.attack.create.mechanical_saw": "UNLOCALIZED: %1$s got cut in half by a Mechanical Saw",
|
||||
"death.attack.create.cuckoo_clock_explosion": "UNLOCALIZED: %1$s was blown up by tampered cuckoo clock",
|
||||
|
||||
"create.block.deployer.damage_source_name": "UNLOCALIZED: a rogue Deployer",
|
||||
|
@ -533,7 +530,7 @@
|
|||
"create.recipe.pressing": "Механический пресс",
|
||||
"create.recipe.mixing": "UNLOCALIZED: Mixing",
|
||||
"create.recipe.packing": "UNLOCALIZED: Compacting",
|
||||
"create.recipe.mechanical_sawing": "UNLOCALIZED: mechanical_sawing",
|
||||
"create.recipe.mechanical_sawing": "UNLOCALIZED: Sawing",
|
||||
"create.recipe.mechanical_crafting": "UNLOCALIZED: Mechanical Crafting",
|
||||
"create.recipe.block_cutting": "UNLOCALIZED: Block Cutting",
|
||||
"create.recipe.blockzapper_upgrade": "Портативный размещатель блоков",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "UNLOCALIZED: Lock rotation",
|
||||
|
||||
"create.logistics.filter": "Фильтр",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "Част. #1",
|
||||
"create.logistics.secondFrequency": "Част. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "UNLOCALIZED: Generates at %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "UNLOCALIZED: Analog Strength: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "UNLOCALIZED: Min. Ingredients",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "UNLOCALIZED: When Item in Filter Slot",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "UNLOCALIZED: Anything _extracting_ from this container will provide an _endless_ _supply_ of the item specified. Items _inserted_ into this crate will be _voided._",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRACTOR",
|
||||
"block.create.extractor.tooltip.summary": "_Извлекает_ _предметы_ из прилагаемого _инвентаря_ и бросает на землю. Не будет бросать предметы до тех пор, пока пространство не освободится. Может быть назначен _фильтр_ в виде стака предметов.",
|
||||
"block.create.extractor.tooltip.condition1": "Когда запитан",
|
||||
"block.create.extractor.tooltip.behaviour1": "_Приостанавливает_ экстрактор",
|
||||
"block.create.extractor.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.extractor.tooltip.behaviour2": "UNLOCALIZED: Extractors can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the extractor is blocked, the _belt_ _will_ _stall_.",
|
||||
"block.create.extractor.tooltip.control1": "ПКМ по фильтру",
|
||||
"block.create.extractor.tooltip.action1": "Устанавливает _стак_ _в_ _руке_ в качестве _фильтра._ Экстрактор будет извлекать _определённый_ _предмет_ в _определённом_ _количестве_ по фильтру.",
|
||||
|
||||
"block.create.transposer.tooltip": "UNLOCALIZED: TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.transposer.tooltip.condition1": "UNLOCALIZED: When Powered by Redstone",
|
||||
"block.create.transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.transposer.tooltip.condition2": "UNLOCALIZED: Active Belt pulling",
|
||||
"block.create.transposer.tooltip.behaviour2": "UNLOCALIZED: Transposers can pull items _from_ _belts_ reinforced with _brass_ _casing_. When the transposer is backed up, the _belt_ _will_ _stall_.",
|
||||
"block.create.transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will pull the item _type_ and _count_ of the filter stack exclusively.",
|
||||
|
||||
"block.create.deployer.tooltip": "UNLOCALIZED: DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": "UNLOCALIZED: _Punches_, _Uses_, and _Activates_. This machine will try to _imitate_ a _player_ as a much as possible. Can _Take_ and _Deposit_ _items_ in adjacent _Inventory_. Can be assigned an item-stack as a _filter_.",
|
||||
"block.create.deployer.tooltip.condition1": "UNLOCALIZED: When Rotated",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "UNLOCALIZED: R-Clicked with Wrench",
|
||||
"block.create.deployer.tooltip.behaviour2": "UNLOCALIZED: Toggles punch mode. In _punch_ _mode_, the Deployer will attempt to use its item to _break_ _blocks_ or _hurt_ _entities_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "LINKED EXTRACTOR",
|
||||
"block.create.linked_extractor.tooltip.summary": "_Извлекает_ _предметы_ из прилагаемого _инвентаря_ и бросает на землю. Не будет бросать предметы до тех пор, пока пространство не освободится. Может быть назначен _фильтр_ в виде стака предметов. Может управляться дистанционно через _Передатчик_ _сигнала._",
|
||||
"block.create.linked_extractor.tooltip.condition1": "Когда соединение активно",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "_Приостанавливает_ экстрактор",
|
||||
"block.create.linked_extractor.tooltip.control1": "ПКМ по фильтру",
|
||||
"block.create.linked_extractor.tooltip.action1": "Устанавливает _стак_ _в_ _руке_ в качестве _фильтра._ Экстрактор будет извлекать _определённый_ _предмет_ в _определённом_ _количестве_ по фильтру.",
|
||||
"block.create.linked_extractor.tooltip.control2": "ПКМ по частоте",
|
||||
"block.create.linked_extractor.tooltip.action2": "Устанавливает _частоту_ для этого экстрактора. При передаче сигнала с передающего _Сигнального_ _соединения_ экстрактор будет приостановлен.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "UNLOCALIZED: LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "UNLOCALIZED: _Takes_ _items_ from an attached _Inventory_ and immediately puts them into the target _Inventory_. Can be assigned an item-stack as a _filter_. Can be controlled remotely via a _Redstone_ _Link_.",
|
||||
"block.create.linked_transposer.tooltip.condition1": "UNLOCALIZED: When Redstone Link Active",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "UNLOCALIZED: _Pauses_ the Transposer.",
|
||||
"block.create.linked_transposer.tooltip.control1": "UNLOCALIZED: R-Click on Filter Space",
|
||||
"block.create.linked_transposer.tooltip.action1": "UNLOCALIZED: Assigns currently _held_ _stack_ as the _Filter_. The Transposer will only pull items that match the item _type_ and _count_ of the filter stack.",
|
||||
"block.create.linked_transposer.tooltip.control2": "UNLOCALIZED: R-Click on Frequency Space",
|
||||
"block.create.linked_transposer.tooltip.action2": "UNLOCALIZED: Assigns the currently _held_ _item_ as part of the Frequency listened on. Whenever a transmitting _Redstone_ _Link_ of the same frequency is powered, this Transposer will pause.",
|
||||
|
||||
"block.create.funnel.tooltip": "BELT FUNNEL",
|
||||
"block.create.funnel.tooltip.summary": "Собирает входящие предметы на _Механической_ _ленте_ и по возможности кладет их в прилагаемый _инвентарь._ Должен быть непосредственно _над_ лентой, с проёмом, смотрящим против направления ленты. Инвентарь должен быть на той же высоте, что и воронка.",
|
||||
"block.create.funnel.tooltip.condition1": "UNLOCALIZED: Passive Belt pulling",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_": "Missing Localizations: 72",
|
||||
"_": "Missing Localizations: 92",
|
||||
|
||||
"_": "->------------------------] Game Elements [------------------------<-",
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
|||
"block.create.andesite_bricks_stairs": "安山岩砖楼梯",
|
||||
"block.create.andesite_bricks_wall": "安山岩砖墙",
|
||||
"block.create.andesite_casing": "安山机壳",
|
||||
"block.create.andesite_chute_funnel": "UNLOCALIZED: Andesite Chute Funnel",
|
||||
"block.create.andesite_cobblestone": "安山岩圆石",
|
||||
"block.create.andesite_cobblestone_slab": "安山岩圆石台阶",
|
||||
"block.create.andesite_cobblestone_stairs": "安山岩圆石楼梯",
|
||||
|
@ -30,12 +29,11 @@
|
|||
"block.create.birch_window": "白桦窗户",
|
||||
"block.create.birch_window_pane": "白桦窗户板",
|
||||
"block.create.black_seat": "UNLOCALIZED: Black Seat",
|
||||
"block.create.blaze_heater": "UNLOCALIZED: Blaze Heater",
|
||||
"block.create.blaze_burner": "UNLOCALIZED: Blaze Burner",
|
||||
"block.create.blue_seat": "UNLOCALIZED: Blue Seat",
|
||||
"block.create.brass_belt_funnel": "UNLOCALIZED: Brass Belt Funnel",
|
||||
"block.create.brass_block": "黄铜块",
|
||||
"block.create.brass_casing": "黄铜机壳",
|
||||
"block.create.brass_chute_funnel": "UNLOCALIZED: Brass Chute Funnel",
|
||||
"block.create.brass_funnel": "UNLOCALIZED: Brass Funnel",
|
||||
"block.create.brass_tunnel": "UNLOCALIZED: Brass Tunnel",
|
||||
"block.create.brown_seat": "UNLOCALIZED: Brown Seat",
|
||||
|
@ -54,6 +52,7 @@
|
|||
"block.create.copper_casing": "铜机壳",
|
||||
"block.create.copper_ore": "铜矿石",
|
||||
"block.create.copper_shingles": "铜瓦",
|
||||
"block.create.copper_tiles": "UNLOCALIZED: Copper Tiles",
|
||||
"block.create.creative_crate": "创造板条箱",
|
||||
"block.create.creative_motor": "创造马达",
|
||||
"block.create.crushing_wheel": "粉碎轮",
|
||||
|
@ -95,8 +94,8 @@
|
|||
"block.create.dolomite_pillar": "竖纹白云岩",
|
||||
"block.create.encased_belt": "连携齿轮箱",
|
||||
"block.create.encased_fan": "鼓风机",
|
||||
"block.create.encased_fluid_pipe": "UNLOCALIZED: Encased Fluid Pipe",
|
||||
"block.create.encased_shaft": "齿轮箱",
|
||||
"block.create.extractor": "提取器",
|
||||
"block.create.fancy_andesite_bricks": "方纹安山岩砖",
|
||||
"block.create.fancy_andesite_bricks_slab": "方纹安山岩砖台阶",
|
||||
"block.create.fancy_andesite_bricks_stairs": "方纹安山岩砖楼梯",
|
||||
|
@ -151,6 +150,7 @@
|
|||
"block.create.gabbro_pillar": "竖纹辉长岩",
|
||||
"block.create.gearbox": "十字齿轮箱",
|
||||
"block.create.gearshift": "红石齿轮箱",
|
||||
"block.create.glass_fluid_pipe": "UNLOCALIZED: Glass Fluid Pipe",
|
||||
"block.create.granite_bricks": "花岗岩砖",
|
||||
"block.create.granite_bricks_slab": "花岗岩砖台阶",
|
||||
"block.create.granite_bricks_stairs": "花岗岩砖楼梯",
|
||||
|
@ -192,8 +192,6 @@
|
|||
"block.create.limestone_cobblestone_wall": "石灰岩圆石墙",
|
||||
"block.create.limestone_pillar": "竖纹石灰岩",
|
||||
"block.create.linear_chassis": "机壳底盘",
|
||||
"block.create.linked_extractor": "无线提取器",
|
||||
"block.create.linked_transposer": "无线传输器",
|
||||
"block.create.magenta_seat": "UNLOCALIZED: Magenta Seat",
|
||||
"block.create.mechanical_arm": "UNLOCALIZED: Mechanical Arm",
|
||||
"block.create.mechanical_bearing": "动力轴承",
|
||||
|
@ -236,7 +234,6 @@
|
|||
"block.create.overgrown_limestone": "生草石灰岩",
|
||||
"block.create.overgrown_scoria": "生草熔渣",
|
||||
"block.create.overgrown_weathered_limestone": "生草风化石灰岩",
|
||||
"block.create.packager": "UNLOCALIZED: Packager",
|
||||
"block.create.paved_andesite": "安山岩铺路石",
|
||||
"block.create.paved_andesite_slab": "安山岩铺路石台阶",
|
||||
"block.create.paved_andesite_stairs": "安山岩铺路石楼梯",
|
||||
|
@ -309,6 +306,7 @@
|
|||
"block.create.red_seat": "UNLOCALIZED: Red Seat",
|
||||
"block.create.redstone_contact": "信号检测器",
|
||||
"block.create.redstone_link": "无限红石信号终端",
|
||||
"block.create.refined_radiance_casing": "UNLOCALIZED: Radiant Casing",
|
||||
"block.create.reinforced_rail": "UNLOCALIZED: Reinforced Rail",
|
||||
"block.create.rope": "绳索",
|
||||
"block.create.rope_pulley": "绳索滑轮",
|
||||
|
@ -327,8 +325,10 @@
|
|||
"block.create.scoria_pillar": "竖纹熔渣",
|
||||
"block.create.secondary_linear_chassis": "机壳底盘2号",
|
||||
"block.create.sequenced_gearshift": "可编程齿轮箱",
|
||||
"block.create.shadow_steel_casing": "UNLOCALIZED: Shadow Casing",
|
||||
"block.create.shaft": "传动杆",
|
||||
"block.create.speedometer": "速度表",
|
||||
"block.create.spout": "UNLOCALIZED: Spout",
|
||||
"block.create.spruce_window": "云杉窗户",
|
||||
"block.create.spruce_window_pane": "云杉窗户板",
|
||||
"block.create.sticky_mechanical_piston": "粘性动力活塞",
|
||||
|
@ -336,14 +336,9 @@
|
|||
"block.create.stressometer": "应力表",
|
||||
"block.create.tiled_glass": "十字玻璃窗",
|
||||
"block.create.tiled_glass_pane": "十字玻璃窗板",
|
||||
"block.create.transposer": "传输器",
|
||||
"block.create.turntable": "转盘",
|
||||
"block.create.vertical_extractor": "竖直提取器",
|
||||
"block.create.vertical_framed_glass": "竖直边框玻璃",
|
||||
"block.create.vertical_framed_glass_pane": "竖直边框玻璃板",
|
||||
"block.create.vertical_linked_extractor": "竖直无限提取器",
|
||||
"block.create.vertical_linked_transposer": "竖直无线传输器",
|
||||
"block.create.vertical_transposer": "竖直传输器",
|
||||
"block.create.water_wheel": "水车",
|
||||
"block.create.weathered_limestone": "风化石灰岩",
|
||||
"block.create.weathered_limestone_bricks": "风化石灰岩砖",
|
||||
|
@ -385,6 +380,7 @@
|
|||
"item.create.deforester": "树林毁灭者",
|
||||
"item.create.dough": "面团",
|
||||
"item.create.electron_tube": "电子管",
|
||||
"item.create.empty_blaze_burner": "UNLOCALIZED: Empty Blaze Burner",
|
||||
"item.create.empty_schematic": "空白蓝图",
|
||||
"item.create.extendo_grip": "伸缩机械手",
|
||||
"item.create.filter": "过滤器",
|
||||
|
@ -398,6 +394,7 @@
|
|||
"item.create.iron_sheet": "铁板",
|
||||
"item.create.lapis_sheet": "青金石板",
|
||||
"item.create.minecart_contraption": "装配过的矿车",
|
||||
"item.create.minecart_coupling": "UNLOCALIZED: Minecart Coupling",
|
||||
"item.create.polished_rose_quartz": "磨制玫瑰石英",
|
||||
"item.create.powdered_obsidian": "黑曜石粉末",
|
||||
"item.create.propeller": "扇叶",
|
||||
|
@ -645,6 +642,7 @@
|
|||
"create.contraptions.cart_movement_mode.rotation_locked": "结构方向保持不变",
|
||||
|
||||
"create.logistics.filter": "过滤器",
|
||||
"create.logistics.recipe_filter": "UNLOCALIZED: Recipe Filter",
|
||||
"create.logistics.firstFrequency": "频道. #1",
|
||||
"create.logistics.secondFrequency": "频道. #2",
|
||||
|
||||
|
@ -839,7 +837,23 @@
|
|||
"create.tooltip.generationSpeed": "产生 %1$s %2$s",
|
||||
"create.tooltip.analogStrength": "调节强度: %1$s/15",
|
||||
|
||||
"create.mechanical_mixer.min_ingredients": "最少物品种类数",
|
||||
"create.mechanical_arm.extract_from": "UNLOCALIZED: Take items from %1$s",
|
||||
"create.mechanical_arm.deposit_to": "UNLOCALIZED: Deposit items to %1$s",
|
||||
"create.mechanical_arm.points_outside_range": "UNLOCALIZED: %1$s selected interaction point(s) removed due to range limitations.",
|
||||
|
||||
"create.logistics.when_multiple_outputs_available": "UNLOCALIZED: When Multiple Outputs Available",
|
||||
|
||||
"create.mechanical_arm.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.mechanical_arm.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.mechanical_arm.selection_mode.prefer_first": "UNLOCALIZED: Prefer First Target",
|
||||
|
||||
"create.tunnel.selection_mode.split": "UNLOCALIZED: Split",
|
||||
"create.tunnel.selection_mode.forced_split": "UNLOCALIZED: Forced Split",
|
||||
"create.tunnel.selection_mode.round_robin": "UNLOCALIZED: Round Robin",
|
||||
"create.tunnel.selection_mode.forced_round_robin": "UNLOCALIZED: Forced Round Robin",
|
||||
"create.tunnel.selection_mode.prefer_nearest": "UNLOCALIZED: Prefer Nearest",
|
||||
"create.tunnel.selection_mode.randomize": "UNLOCALIZED: Randomize",
|
||||
"create.tunnel.selection_mode.synchronize": "UNLOCALIZED: Synchronize Inputs",
|
||||
|
||||
"create.gui.config.overlay1": "UNLOCALIZED: Hi :)",
|
||||
"create.gui.config.overlay2": "UNLOCALIZED: This is a sample overlay",
|
||||
|
@ -1268,24 +1282,6 @@
|
|||
"block.create.creative_crate.tooltip.condition1": "当标记了物品时",
|
||||
"block.create.creative_crate.tooltip.behaviour1": "容器将会从虚空中提供_无限量_的标记物品,并且任何放置到容器中的物品都会被_送入虚空_",
|
||||
|
||||
"block.create.extractor.tooltip": "EXTRACTOR",
|
||||
"block.create.extractor.tooltip.summary": "从连接的_容器_里自动将物品_输出_到外面,如果前方已经有物品,则在物品被移动前不会继续输出. 可以设置_白名单过滤_.",
|
||||
"block.create.extractor.tooltip.condition1": "当提供红石信号时",
|
||||
"block.create.extractor.tooltip.behaviour1": "_暂停_自动输出",
|
||||
"block.create.extractor.tooltip.condition2": "放置在传送带上时",
|
||||
"block.create.extractor.tooltip.behaviour2": "当传送带被_黄铜机壳_加固时,使用提取器可以将传送带上的物品_提取_出来. 当提取器堵塞时,传送带将会停下.",
|
||||
"block.create.extractor.tooltip.control1": "当右键过滤框时",
|
||||
"block.create.extractor.tooltip.action1": "将当前持有的_物品数量_的物品设置为物品_过滤白名单_,且输出此_数量_的物品.",
|
||||
|
||||
"block.create.transposer.tooltip": "TRANSPOSER",
|
||||
"block.create.transposer.tooltip.summary": "将过滤框_白名单_中的物品_传输_到指定的容器.",
|
||||
"block.create.transposer.tooltip.condition1": "当给予红石信号时",
|
||||
"block.create.transposer.tooltip.behaviour1": "_暂停_传输.",
|
||||
"block.create.transposer.tooltip.condition2": "放置在传送带上时",
|
||||
"block.create.transposer.tooltip.behaviour2": "当传送带被_黄铜机壳_加固时,使用_传输器_可以将传送带上的物品_提取_出来. 当传输器堵塞时,传送带将会停下.",
|
||||
"block.create.transposer.tooltip.control1": "当右键过滤框时",
|
||||
"block.create.transposer.tooltip.action1": "将当前持有的_物品数量_的物品设置为物品_过滤白名单_,且输出此_数量_的物品.",
|
||||
|
||||
"block.create.deployer.tooltip": "DEPLOYER",
|
||||
"block.create.deployer.tooltip.summary": "它是一个_机械手_,将尽可能_模仿玩家_的行为,也能将方块从容器中取出并_放置_. 可以设置_白名单_.",
|
||||
"block.create.deployer.tooltip.condition1": "被供能时",
|
||||
|
@ -1293,24 +1289,6 @@
|
|||
"block.create.deployer.tooltip.condition2": "当使用扳手时",
|
||||
"block.create.deployer.tooltip.behaviour2": "将会启用拳头模式,在拳头模式之下,机械臂将会试图使用手中的物品_破坏方块_,或者_攻击实体_.",
|
||||
|
||||
"block.create.linked_extractor.tooltip": "LINKED EXTRACTOR",
|
||||
"block.create.linked_extractor.tooltip.summary": "从连接的_容器_里自动将物品_输出_到外面,如果前方已经有物品,则在物品被移动前不会继续输出. 可以设置_白名单过滤_.可以使用_无线红石信号终端_控制.",
|
||||
"block.create.linked_extractor.tooltip.condition1": "当无线红石信号激活时",
|
||||
"block.create.linked_extractor.tooltip.behaviour1": "_暂停_输出物品",
|
||||
"block.create.linked_extractor.tooltip.control1": "右键过滤框时",
|
||||
"block.create.linked_extractor.tooltip.action1": "将当前持有的_物品数量_的物品设置为物品_过滤白名单_,且输出此_数量_的物品.",
|
||||
"block.create.linked_extractor.tooltip.control2": "当右键提取器侧面的频道框时",
|
||||
"block.create.linked_extractor.tooltip.action2": "手持任意物品为其设置_频道_,将接收_无线红石终端_相应频道,可以用两个物品来组合标记频道.",
|
||||
|
||||
"block.create.linked_transposer.tooltip": "LINKED TRANSPOSER",
|
||||
"block.create.linked_transposer.tooltip.summary": "将过滤框_白名单_中的物品_传输_到指定的容器.能够使用_无线红石信号终端_控制",
|
||||
"block.create.linked_transposer.tooltip.condition1": "当无线红石信号触发时",
|
||||
"block.create.linked_transposer.tooltip.behaviour1": "暂停传输",
|
||||
"block.create.linked_transposer.tooltip.control1": "当右键过滤框时",
|
||||
"block.create.linked_transposer.tooltip.action1": "将当前持有的_物品数量_的物品设置为物品_过滤白名单_,且输出此_数量_的物品.",
|
||||
"block.create.linked_transposer.tooltip.control2": "当右键传输器侧面的频道框时",
|
||||
"block.create.linked_transposer.tooltip.action2": "手持任意物品为其设置_频道_,将接收_无线红石终端_相应频道,可以用两个物品来组合标记频道.",
|
||||
|
||||
"block.create.funnel.tooltip": "FUNNEL",
|
||||
"block.create.funnel.tooltip.summary": "接收传送带上的物品到_连接的容器_,必须放置在_正对_传送带的_方向_及_高度_.",
|
||||
"block.create.funnel.tooltip.condition1": "提取传送带物品",
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "create:block/andesite_casing",
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_pull",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"4": "create:block/andesite_funnel_plating"
|
||||
"5": "create:block/andesite_funnel_tall",
|
||||
"6": "create:block/andesite_funnel",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_pull",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"5": "create:block/andesite_funnel_tall_powered",
|
||||
"6": "create:block/andesite_funnel_powered",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_pull",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"5": "create:block/andesite_funnel_tall_powered",
|
||||
"6": "create:block/andesite_funnel_powered",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "create:block/andesite_casing",
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_pull",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"4": "create:block/andesite_funnel_plating"
|
||||
"5": "create:block/andesite_funnel_tall",
|
||||
"6": "create:block/andesite_funnel",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "create:block/andesite_casing",
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_push",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"4": "create:block/andesite_funnel_plating"
|
||||
"5": "create:block/andesite_funnel_tall",
|
||||
"6": "create:block/andesite_funnel",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_push",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"5": "create:block/andesite_funnel_tall_powered",
|
||||
"6": "create:block/andesite_funnel_powered",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_push",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"5": "create:block/andesite_funnel_tall_powered",
|
||||
"6": "create:block/andesite_funnel_powered",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "create:block/andesite_casing",
|
||||
"particle": "block/polished_andesite",
|
||||
"2": "create:block/andesite_funnel_push",
|
||||
"3": "create:block/andesite_funnel_back",
|
||||
"4": "create:block/andesite_funnel_plating"
|
||||
"5": "create:block/andesite_funnel_tall",
|
||||
"6": "create:block/andesite_funnel",
|
||||
"7": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/chute_funnel/block",
|
||||
"textures": {
|
||||
"particle": "create:block/andesite_casing",
|
||||
"3": "create:block/andesite_funnel_pull",
|
||||
"1_2": "create:block/andesite_funnel_back",
|
||||
"4": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/chute_funnel/block",
|
||||
"textures": {
|
||||
"particle": "create:block/andesite_casing",
|
||||
"3": "create:block/andesite_funnel_push",
|
||||
"1_2": "create:block/andesite_funnel_back",
|
||||
"4": "create:block/andesite_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"parent": "create:block/funnel/block",
|
||||
"textures": {
|
||||
"2": "create:block/andesite_funnel_back",
|
||||
"3": "create:block/andesite_funnel",
|
||||
"4": "create:block/andesite_funnel_plating",
|
||||
"particle": "create:block/andesite_casing"
|
||||
"0": "create:block/andesite_funnel_plating",
|
||||
"1": "create:block/andesite_casing",
|
||||
"2": "create:block/andesite_funnel",
|
||||
"3": "create:block/andesite_funnel_back"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"parent": "create:block/funnel/block",
|
||||
"textures": {
|
||||
"0": "create:block/andesite_funnel_plating",
|
||||
"1": "create:block/andesite_casing",
|
||||
"2": "create:block/andesite_funnel_powered",
|
||||
"3": "create:block/andesite_funnel_back"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_pull",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall",
|
||||
"6": "create:block/brass_funnel",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel_pull_powered",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_pull",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall_powered",
|
||||
"6": "create:block/brass_funnel_powered",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel_pull_powered",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_pull",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall_powered",
|
||||
"6": "create:block/brass_funnel_powered",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_pull",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall",
|
||||
"6": "create:block/brass_funnel",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_push",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall",
|
||||
"6": "create:block/brass_funnel",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_extended",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel_push_powered",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_push",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall_powered",
|
||||
"6": "create:block/brass_funnel_powered",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel_push_powered",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_push",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall_powered",
|
||||
"6": "create:block/brass_funnel_powered",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"parent": "create:block/belt_funnel/block_retracted",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"particle": "create:block/brass_block",
|
||||
"2": "create:block/brass_funnel_push",
|
||||
"3": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
"5": "create:block/brass_funnel_tall",
|
||||
"6": "create:block/brass_funnel",
|
||||
"7": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/chute_funnel/block",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"3": "create:block/brass_funnel_pull",
|
||||
"1_2": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/chute_funnel/block",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"3": "create:block/brass_funnel_pull_powered",
|
||||
"1_2": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/chute_funnel/block",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"3": "create:block/brass_funnel_push",
|
||||
"1_2": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/chute_funnel/block",
|
||||
"textures": {
|
||||
"particle": "create:block/brass_casing",
|
||||
"3": "create:block/brass_funnel_push_powered",
|
||||
"1_2": "create:block/brass_funnel_back",
|
||||
"4": "create:block/brass_funnel_plating"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"parent": "create:block/funnel/block",
|
||||
"textures": {
|
||||
"2": "create:block/brass_funnel_back",
|
||||
"3": "create:block/brass_funnel",
|
||||
"4": "create:block/brass_funnel_plating",
|
||||
"particle": "create:block/brass_casing"
|
||||
"0": "create:block/brass_funnel_plating",
|
||||
"1": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel",
|
||||
"3": "create:block/brass_funnel_back"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"parent": "create:block/funnel/block",
|
||||
"textures": {
|
||||
"2": "create:block/brass_funnel_back",
|
||||
"3": "create:block/brass_funnel_powered",
|
||||
"4": "create:block/brass_funnel_plating",
|
||||
"particle": "create:block/brass_casing"
|
||||
"0": "create:block/brass_funnel_plating",
|
||||
"1": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel_powered",
|
||||
"3": "create:block/brass_funnel_back"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "block/cube_column",
|
||||
"textures": {
|
||||
"side": "create:block/copper_casing",
|
||||
"end": "create:block/encased_pipe"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_0"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_2"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_3"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_4"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_5"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_6"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/oxidized/copper_tiles_7"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/refined_radiance_casing"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "create:block/shadow_steel_casing"
|
||||
}
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"parent": "create:block/funnel/item",
|
||||
"textures": {
|
||||
"2": "create:block/andesite_funnel_back",
|
||||
"3": "create:block/andesite_funnel",
|
||||
"4": "create:block/andesite_funnel_plating",
|
||||
"particle": "create:block/andesite_casing"
|
||||
"0": "create:block/andesite_funnel_plating",
|
||||
"1": "create:block/andesite_casing",
|
||||
"2": "create:block/andesite_funnel",
|
||||
"3": "create:block/andesite_funnel_back"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "create:block/blaze_burner/block_with_blaze"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/blaze_heater/block"
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"parent": "create:block/funnel/item",
|
||||
"textures": {
|
||||
"2": "create:block/brass_funnel_back",
|
||||
"3": "create:block/brass_funnel",
|
||||
"4": "create:block/brass_funnel_plating",
|
||||
"particle": "create:block/brass_casing"
|
||||
"0": "create:block/brass_funnel_plating",
|
||||
"1": "create:block/brass_casing",
|
||||
"2": "create:block/brass_funnel",
|
||||
"3": "create:block/brass_funnel_back"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "create:block/oxidized/copper_tiles_0"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "create:block/blaze_burner/block"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/encased_shaft/item"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/extractor/horizontal"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/extractor/horizontal_linked"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/transposer/horizontal_linked"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "create:item/minecart_coupling"
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/packager/item"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "create:block/refined_radiance_casing"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "create:block/shadow_steel_casing"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "create:block/spout/item"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "create:block/transposer/block"
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:smelting/glass_from_framed_glass"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:framed_glass"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:smelting/glass_from_framed_glass"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:smelting/glass_from_horizontal_framed_glass"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:horizontal_framed_glass"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:smelting/glass_from_horizontal_framed_glass"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:smelting/glass_from_tiled_glass"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:tiled_glass"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:smelting/glass_from_tiled_glass"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:smelting/glass_from_vertical_framed_glass"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:vertical_framed_glass"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:smelting/glass_from_vertical_framed_glass"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:blasting/brass_ingot_from_crushed"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:crushed_brass"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:blasting/brass_ingot_from_crushed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:blasting/copper_ingot_from_crushed"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:crushed_copper_ore"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:blasting/copper_ingot_from_crushed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:blasting/copper_ingot_from_ore"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"tag": "forge:ores/copper"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:blasting/copper_ingot_from_ore"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:blasting/zinc_ingot_from_crushed"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "create:crushed_zinc_ore"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:blasting/zinc_ingot_from_crushed"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"create:blasting/zinc_ingot_from_ore"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_item": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"tag": "forge:ores/zinc"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "create:blasting/zinc_ingot_from_ore"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_item",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue