mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-10-31 22:50:50 +01:00
Undo the bad decision part 2
This commit is contained in:
parent
36c17b3681
commit
4009cec2ef
923 changed files with 12698 additions and 9 deletions
|
@ -17,7 +17,7 @@ import net.minecraftforge.fluids.Fluid;
|
||||||
public class FluidAA extends Fluid{
|
public class FluidAA extends Fluid{
|
||||||
|
|
||||||
public FluidAA(String fluidName, String textureName){
|
public FluidAA(String fluidName, String textureName){
|
||||||
super(fluidName, new ResourceLocation(ModUtil.MOD_ID, "blocks/"+textureName+"still"), new ResourceLocation(ModUtil.MOD_ID, "blocks/"+textureName+"flowing"));
|
super(fluidName, new ResourceLocation(ModUtil.MOD_ID, "blocks/"+textureName+"Still"), new ResourceLocation(ModUtil.MOD_ID, "blocks/"+textureName+"Flowing"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -44,7 +44,7 @@ public final class InitFluids{
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Fluid registerFluid(String fluidName, String fluidTextureName, EnumRarity rarity){
|
private static Fluid registerFluid(String fluidName, String fluidTextureName, EnumRarity rarity){
|
||||||
Fluid fluid = new FluidAA(fluidName.toLowerCase(Locale.ROOT), fluidTextureName.toLowerCase(Locale.ROOT)).setRarity(rarity);
|
Fluid fluid = new FluidAA(fluidName.toLowerCase(Locale.ROOT), fluidTextureName).setRarity(rarity);
|
||||||
FluidRegistry.registerFluid(fluid);
|
FluidRegistry.registerFluid(fluid);
|
||||||
FluidRegistry.addBucketForFluid(fluid);
|
FluidRegistry.addBucketForFluid(fluid);
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ public class ItemAllToolAA extends ItemToolAA implements IColorProvidingItem{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void registerRendering(){
|
protected void registerRendering(){
|
||||||
ResourceLocation resLoc = new ResourceLocation(ModUtil.MOD_ID, "itempaxel");
|
ResourceLocation resLoc = new ResourceLocation(ModUtil.MOD_ID, "itemPaxel");
|
||||||
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this), resLoc, "inventory");
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this), resLoc, "inventory");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,8 +31,8 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
||||||
|
|
||||||
public class DungeonLoot{
|
public class DungeonLoot{
|
||||||
|
|
||||||
public static final ResourceLocation JAM_HOUSE = new ResourceLocation(ModUtil.MOD_ID, "jamhouse");
|
public static final ResourceLocation JAM_HOUSE = new ResourceLocation(ModUtil.MOD_ID, "jamHouse");
|
||||||
public static final ResourceLocation LUSH_CAVES = new ResourceLocation(ModUtil.MOD_ID, "lushcaves");
|
public static final ResourceLocation LUSH_CAVES = new ResourceLocation(ModUtil.MOD_ID, "lushCaves");
|
||||||
|
|
||||||
public DungeonLoot(){
|
public DungeonLoot(){
|
||||||
LootTableList.register(JAM_HOUSE);
|
LootTableList.register(JAM_HOUSE);
|
||||||
|
|
|
@ -35,7 +35,7 @@ public final class SoundHandler{
|
||||||
}
|
}
|
||||||
|
|
||||||
private static SoundEvent registerSound(String name){
|
private static SoundEvent registerSound(String name){
|
||||||
ResourceLocation resLoc = new ResourceLocation(ModUtil.MOD_ID, name.toLowerCase(Locale.ROOT));
|
ResourceLocation resLoc = new ResourceLocation(ModUtil.MOD_ID, name);
|
||||||
|
|
||||||
SoundEvent event = new SoundEvent(resLoc);
|
SoundEvent event = new SoundEvent(resLoc);
|
||||||
SoundEvent.REGISTRY.register(size, resLoc, event);
|
SoundEvent.REGISTRY.register(size, resLoc, event);
|
||||||
|
|
|
@ -107,8 +107,7 @@ public class ClientProxy implements IProxy{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void addRenderRegister(ItemStack stack, ResourceLocation location, String variant){
|
public void addRenderRegister(ItemStack stack, ResourceLocation location, String variant){
|
||||||
ResourceLocation lowerLocation = new ResourceLocation(location.toString().toLowerCase(Locale.ROOT));
|
MODEL_LOCATIONS_FOR_REGISTERING.put(stack, new ModelResourceLocation(location, variant));
|
||||||
MODEL_LOCATIONS_FOR_REGISTERING.put(stack, new ModelResourceLocation(lowerLocation, variant));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -41,7 +41,7 @@ public final class AssetUtil{
|
||||||
public static final ResourceLocation GUI_INVENTORY_LOCATION = getGuiLocation("guiInventory");
|
public static final ResourceLocation GUI_INVENTORY_LOCATION = getGuiLocation("guiInventory");
|
||||||
|
|
||||||
public static ResourceLocation getGuiLocation(String file){
|
public static ResourceLocation getGuiLocation(String file){
|
||||||
return new ResourceLocation(ModUtil.MOD_ID, "textures/gui/"+file.toLowerCase(Locale.ROOT)+".png");
|
return new ResourceLocation(ModUtil.MOD_ID, "textures/gui/"+file+".png");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ResourceLocation getBookletGuiLocation(String file){
|
public static ResourceLocation getBookletGuiLocation(String file){
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockAtomicReconstructor",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockAtomicReconstructor",
|
||||||
|
"down": "#particle",
|
||||||
|
"south": "#particle",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockBioReactor"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cross",
|
||||||
|
"textures": {
|
||||||
|
"cross": "actuallyadditions:blocks/blockBlackLotus"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockBookletStand",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 270 },
|
||||||
|
"1": { "y" : 90 },
|
||||||
|
"2": { "y" : 180 },
|
||||||
|
"3": { "y" : 0 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockBreaker",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockBreakerTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockBreakerFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:crop",
|
||||||
|
"textures": {
|
||||||
|
"crop": "actuallyadditions:blocks/blockCanolaStage1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"age": {
|
||||||
|
"0": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage1" } },
|
||||||
|
"1": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage2" } },
|
||||||
|
"2": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage2" } },
|
||||||
|
"3": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage2" } },
|
||||||
|
"4": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage3" } },
|
||||||
|
"5": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage3" } },
|
||||||
|
"6": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage3" } },
|
||||||
|
"7": { "textures": { "crop": "actuallyadditions:blocks/blockCanolaStage4" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockCanolaPress",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockCanolaPress"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:half_slab",
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMiscBlackQuartzChiseled",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "model": "minecraft:upper_slab" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMiscBlackQuartzChiseled",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "minecraft:stairs" },
|
||||||
|
"inventory": { "model": "minecraft:stairs" },
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "minecraft:stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "up": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockChiseledQuartzWallPost" }
|
||||||
|
},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockChiseledQuartzWallSide", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockChiseledQuartzWallSide", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockChiseledQuartzWallSide", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockChiseledQuartzWallSide", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockCoalGenerator",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockCoalGenerator"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0 },
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:crop",
|
||||||
|
"textures": {
|
||||||
|
"crop": "actuallyadditions:blocks/blockCoffeeStage1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"age": {
|
||||||
|
"0": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage1" } },
|
||||||
|
"1": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage2" } },
|
||||||
|
"2": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage2" } },
|
||||||
|
"3": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage3" } },
|
||||||
|
"4": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage4" } },
|
||||||
|
"5": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage4" } },
|
||||||
|
"6": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage5" } },
|
||||||
|
"7": { "textures": { "crop": "actuallyadditions:blocks/blockCoffeeStage6" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockCoffeeMachine",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 180 },
|
||||||
|
"1": { "y" : 0 },
|
||||||
|
"2": { "y" : 90 },
|
||||||
|
"3": { "y" : 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampWhite" } },
|
||||||
|
"1": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOrange" } },
|
||||||
|
"2": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampMagenta" } },
|
||||||
|
"3": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampLightBlue" } },
|
||||||
|
"4": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampYellow" } },
|
||||||
|
"5": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampLime" } },
|
||||||
|
"6": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampPink" } },
|
||||||
|
"7": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampGray" } },
|
||||||
|
"8": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampLightGray" } },
|
||||||
|
"9": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampCyan" } },
|
||||||
|
"10": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampPurple" } },
|
||||||
|
"11": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampBlue" } },
|
||||||
|
"12": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampBrown" } },
|
||||||
|
"13": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampGreen" } },
|
||||||
|
"14": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampRed" } },
|
||||||
|
"15": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampBlack" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnWhite" } },
|
||||||
|
"1": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnOrange" } },
|
||||||
|
"2": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnMagenta" } },
|
||||||
|
"3": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnLightBlue" } },
|
||||||
|
"4": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnYellow" } },
|
||||||
|
"5": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnLime" } },
|
||||||
|
"6": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnPink" } },
|
||||||
|
"7": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnGray" } },
|
||||||
|
"8": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnLightGray" } },
|
||||||
|
"9": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnCyan" } },
|
||||||
|
"10": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnPurple" } },
|
||||||
|
"11": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnBlue" } },
|
||||||
|
"12": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnBrown" } },
|
||||||
|
"13": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnGreen" } },
|
||||||
|
"14": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnRed" } },
|
||||||
|
"15": { "textures" : { "all" : "actuallyadditions:blocks/blockColoredLampOnBlack" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockCompost",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalRed" } },
|
||||||
|
"1": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalBlue" } },
|
||||||
|
"2": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalLightBlue" } },
|
||||||
|
"3": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalBlack" } },
|
||||||
|
"4": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalGreen" } },
|
||||||
|
"5": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalWhite" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalEmpoweredRed" } },
|
||||||
|
"1": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalEmpoweredBlue" } },
|
||||||
|
"2": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalEmpoweredLightBlue" } },
|
||||||
|
"3": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalEmpoweredBlack" } },
|
||||||
|
"4": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalEmpoweredGreen" } },
|
||||||
|
"5": { "textures" : { "all" : "actuallyadditions:blocks/blockCrystalEmpoweredWhite" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockDirectionalBreaker",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockDirectionalBreakerTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockDirectionalBreakerFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockDisplayStand",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockGiantChestTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockItemDistributor"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockDropper",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockDropperTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockDropperFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockEmpowerer",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockEmpowerer"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockEnergizerSide",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockEnergizer",
|
||||||
|
"top": "actuallyadditions:blocks/blockEnergizerTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockEnervatorSide",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockEnervator",
|
||||||
|
"top": "actuallyadditions:blocks/blockEnervatorTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockFarmer",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockFarmerTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockFarmerFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0 },
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockFeeder",
|
||||||
|
"bottom": "#top",
|
||||||
|
"top": "actuallyadditions:blocks/blockFeederTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockFermentingBarrel",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockFermentingBarrel"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockFireworkBox",
|
||||||
|
"bottom": "#side",
|
||||||
|
"top": "actuallyadditions:blocks/blockFireworkBoxTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockFishingNet",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:crop",
|
||||||
|
"textures": {
|
||||||
|
"crop": "actuallyadditions:blocks/blockFlaxStage1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"age": {
|
||||||
|
"0": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage1" } },
|
||||||
|
"1": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage2" } },
|
||||||
|
"2": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage2" } },
|
||||||
|
"3": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage3" } },
|
||||||
|
"4": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage4" } },
|
||||||
|
"5": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage4" } },
|
||||||
|
"6": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage5" } },
|
||||||
|
"7": { "textures": { "crop": "actuallyadditions:blocks/blockFlaxStage6" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockFluidCollector",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockFluidCollectorTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockFluidCollectorFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockFluidPlacer",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockFluidPlacerTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockFluidPlacerFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockFurnaceDouble",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockFurnaceDoubleTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockFurnaceDoubleFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0 },
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 },
|
||||||
|
"4": { "y" : 0, "textures": { "north": "actuallyadditions:blocks/blockFurnaceDoubleOn" } },
|
||||||
|
"5": { "y" : 180, "textures": { "north": "actuallyadditions:blocks/blockFurnaceDoubleOn" } },
|
||||||
|
"6": { "y" : 270, "textures": { "north": "actuallyadditions:blocks/blockFurnaceDoubleOn" } },
|
||||||
|
"7": { "y" : 90, "textures": { "north": "actuallyadditions:blocks/blockFurnaceDoubleOn" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockFurnaceSolar",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockGiantChest",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockGiantChest"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockGiantChestLarge",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockGiantChest"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockGiantChestMedium",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockGiantChest"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockGreenhouseGlass"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockGrinder",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockGrinderBottom",
|
||||||
|
"top": "actuallyadditions:blocks/blockGrinderTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "textures": { "top": "actuallyadditions:blocks/blockGrinderOn" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockGrinderDouble",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockGrinderBottom",
|
||||||
|
"top": "actuallyadditions:blocks/blockGrinderTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "textures": { "top": "actuallyadditions:blocks/blockGrinderOn" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockHeatCollectorSide",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockHeatCollectorBottom",
|
||||||
|
"top": "actuallyadditions:blocks/blockHeatCollectorTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockInputter"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockInputterAdvanced"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockItemRepairer",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockItemRepairerBottom",
|
||||||
|
"top": "actuallyadditions:blocks/blockItemRepairerTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockItemViewer"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockLampPowerer",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "#particle",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockLampPowererFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockLaserRelay",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/models/modelLaserRelay"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x": 180 },
|
||||||
|
"1": {},
|
||||||
|
"2": { "x": 90 },
|
||||||
|
"3": { "x": 270 },
|
||||||
|
"4": { "x": 90, "y": 270 },
|
||||||
|
"5": { "x": 270, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockLaserRelay",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/models/modelLaserRelayAdvanced"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x": 180 },
|
||||||
|
"1": {},
|
||||||
|
"2": { "x": 90 },
|
||||||
|
"3": { "x": 270 },
|
||||||
|
"4": { "x": 90, "y": 270 },
|
||||||
|
"5": { "x": 270, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockLaserRelay",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/models/modelLaserRelayExtreme"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x": 180 },
|
||||||
|
"1": {},
|
||||||
|
"2": { "x": 90 },
|
||||||
|
"3": { "x": 270 },
|
||||||
|
"4": { "x": 90, "y": 270 },
|
||||||
|
"5": { "x": 270, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockLaserRelay",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/models/modelLaserRelayFluids"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x": 180 },
|
||||||
|
"1": {},
|
||||||
|
"2": { "x": 90 },
|
||||||
|
"3": { "x": 270 },
|
||||||
|
"4": { "x": 90, "y": 270 },
|
||||||
|
"5": { "x": 270, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockLaserRelay",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/models/modelLaserRelayItem"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x": 180 },
|
||||||
|
"1": {},
|
||||||
|
"2": { "x": 90 },
|
||||||
|
"3": { "x": 270 },
|
||||||
|
"4": { "x": 90, "y": 270 },
|
||||||
|
"5": { "x": 270, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockLaserRelay",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/models/modelLaserRelayItemWhitelist"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x": 180 },
|
||||||
|
"1": {},
|
||||||
|
"2": { "x": 90 },
|
||||||
|
"3": { "x": 270 },
|
||||||
|
"4": { "x": 90, "y": 270 },
|
||||||
|
"5": { "x": 270, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockLavaFactoryController",
|
||||||
|
"bottom": "#side",
|
||||||
|
"top": "actuallyadditions:blocks/blockLavaFactoryControllerTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockLeafGenerator"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_bottom_top",
|
||||||
|
"textures": {
|
||||||
|
"side": "actuallyadditions:blocks/blockMiner",
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMinerFront",
|
||||||
|
"top": "actuallyadditions:blocks/blockMinerTop"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscBlackQuartzPillar" } },
|
||||||
|
"1": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscBlackQuartzChiseled" } },
|
||||||
|
"2": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscBlackQuartz" } },
|
||||||
|
"3": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscOreBlackQuartz" } },
|
||||||
|
"4": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscWoodCasing" } },
|
||||||
|
"5": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscCharcoal" } },
|
||||||
|
"6": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscEnderpearl" } },
|
||||||
|
"7": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscLavaFactoryCase" } },
|
||||||
|
"8": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscEnderCasing" } },
|
||||||
|
"9": { "textures" : { "all" : "actuallyadditions:blocks/blockMiscIronCasing" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockOilGenerator",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockOilGenerator"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0 },
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockPhantomBooster",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPhantomBreaker"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPhantomEnergyface"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPhantomLiquiface"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPhantomPlacer"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPhantomRedstoneface"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPhantomface"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:half_slab",
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMiscBlackQuartzPillar",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "model": "minecraft:upper_slab" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMiscBlackQuartzPillar",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "minecraft:stairs" },
|
||||||
|
"inventory": { "model": "minecraft:stairs" },
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "minecraft:stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "up": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockPillarQuartzWallPost" }
|
||||||
|
},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockPillarQuartzWallSide", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockPillarQuartzWallSide", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockPillarQuartzWallSide", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockPillarQuartzWallSide", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockPlacer",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockPlacerTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockPlacerFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "x" : 90 },
|
||||||
|
"1": { "x" : 270 },
|
||||||
|
"2": { "y" : 0 },
|
||||||
|
"3": { "y" : 180 },
|
||||||
|
"4": { "y" : 270 },
|
||||||
|
"5": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockPlayerInterface"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:half_slab",
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMiscBlackQuartz",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "model": "minecraft:upper_slab" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockMiscBlackQuartz",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "minecraft:stairs" },
|
||||||
|
"inventory": { "model": "minecraft:stairs" },
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "minecraft:stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "up": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockQuartzWallPost" }
|
||||||
|
},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockQuartzWallSide", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockQuartzWallSide", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockQuartzWallSide", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockQuartzWallSide", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockRangedCollector"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:crop",
|
||||||
|
"textures": {
|
||||||
|
"crop": "actuallyadditions:blocks/blockRiceStage1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"age": {
|
||||||
|
"0": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage1" } },
|
||||||
|
"1": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage2" } },
|
||||||
|
"2": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage2" } },
|
||||||
|
"3": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage3" } },
|
||||||
|
"4": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage4" } },
|
||||||
|
"5": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage4" } },
|
||||||
|
"6": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage5" } },
|
||||||
|
"7": { "textures": { "crop": "actuallyadditions:blocks/blockRiceStage6" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockShockAbsorber"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "actuallyadditions:blockSmileyCloud",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0},
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 },
|
||||||
|
"4": { "y" : 0, "model": "actuallyadditions:blockSmileyCloudFluffy" },
|
||||||
|
"5": { "y" : 180, "model": "actuallyadditions:blockSmileyCloudFluffy" },
|
||||||
|
"6": { "y" : 270, "model": "actuallyadditions:blockSmileyCloudFluffy" },
|
||||||
|
"7": { "y" : 90, "model": "actuallyadditions:blockSmileyCloudFluffy" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "up": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksGreenFencePost" }
|
||||||
|
},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksGreenFenceSide", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksGreenFenceSide", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksGreenFenceSide", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksGreenFenceSide", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:half_slab",
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockTestifiBucksGreenWall",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "model": "minecraft:upper_slab" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockTestifiBucksGreenWall",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "minecraft:stairs" },
|
||||||
|
"inventory": { "model": "minecraft:stairs" },
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "minecraft:stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockTestifiBucksGreenWall"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "up": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksWhiteFencePost" }
|
||||||
|
},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksWhiteFenceSide", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksWhiteFenceSide", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksWhiteFenceSide", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "actuallyadditions:blockTestifiBucksWhiteFenceSide", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:half_slab",
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockTestifiBucksWhiteWall",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": {},
|
||||||
|
"1": { "model": "minecraft:upper_slab" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"textures": {
|
||||||
|
"bottom": "actuallyadditions:blocks/blockTestifiBucksWhiteWall",
|
||||||
|
"top": "#bottom",
|
||||||
|
"side": "#bottom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "minecraft:stairs" },
|
||||||
|
"inventory": { "model": "minecraft:stairs" },
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "minecraft:stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "minecraft:stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "minecraft:outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "minecraft:inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "minecraft:stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "minecraft:outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "minecraft:inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "actuallyadditions:blocks/blockTestifiBucksWhiteWall"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=up": { "model": "actuallyadditions:blockTinyTorch" },
|
||||||
|
"facing=east": { "model": "actuallyadditions:blockTinyTorchWall" },
|
||||||
|
"facing=south": { "model": "actuallyadditions:blockTinyTorchWall", "y": 90 },
|
||||||
|
"facing=west": { "model": "actuallyadditions:blockTinyTorchWall", "y": 180 },
|
||||||
|
"facing=north": { "model": "actuallyadditions:blockTinyTorchWall", "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockTreasureChest",
|
||||||
|
"down": "actuallyadditions:blocks/blockTreasureChestBottom",
|
||||||
|
"up": "actuallyadditions:blocks/blockTreasureChestTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockTreasureChestFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0 },
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cross",
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "textures" : { "cross" : "actuallyadditions:blocks/blockCanolaStage4" } },
|
||||||
|
"1": { "textures" : { "cross" : "actuallyadditions:blocks/blockFlaxStage6" } },
|
||||||
|
"2": { "textures" : { "cross" : "actuallyadditions:blocks/blockRiceStage6" } },
|
||||||
|
"3": { "textures" : { "cross" : "actuallyadditions:blocks/blockCoffeeStage6" } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"model": "minecraft:cube",
|
||||||
|
"textures": {
|
||||||
|
"particle": "actuallyadditions:blocks/blockXPSolidifier",
|
||||||
|
"down": "#particle",
|
||||||
|
"up": "actuallyadditions:blocks/blockXPSolidifierTop",
|
||||||
|
"south": "#particle",
|
||||||
|
"north": "actuallyadditions:blocks/blockXPSolidifierFront",
|
||||||
|
"east": "#particle",
|
||||||
|
"west": "#particle"
|
||||||
|
},
|
||||||
|
"transform": "forge:default-block"
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"normal": [{}],
|
||||||
|
"inventory": [{}],
|
||||||
|
"meta": {
|
||||||
|
"0": { "y" : 0 },
|
||||||
|
"1": { "y" : 180 },
|
||||||
|
"2": { "y" : 270 },
|
||||||
|
"3": { "y" : 90 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"variants": {
|
||||||
|
"canolaoil": {
|
||||||
|
"model": "forge:fluid",
|
||||||
|
"custom": { "fluid": "canolaoil" }
|
||||||
|
},
|
||||||
|
"oil": {
|
||||||
|
"model": "forge:fluid",
|
||||||
|
"custom": { "fluid": "oil" }
|
||||||
|
},
|
||||||
|
"crystaloil": {
|
||||||
|
"model": "forge:fluid",
|
||||||
|
"custom": { "fluid": "crystaloil" }
|
||||||
|
},
|
||||||
|
"empoweredoil": {
|
||||||
|
"model": "forge:fluid",
|
||||||
|
"custom": { "fluid": "empoweredoil" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
773
src/main/resources/assets/actuallyadditions/lang/de_DE.lang
Normal file
773
src/main/resources/assets/actuallyadditions/lang/de_DE.lang
Normal file
|
@ -0,0 +1,773 @@
|
||||||
|
#General / Allgemein
|
||||||
|
itemGroup.actuallyadditions=Actually Additions
|
||||||
|
achievement.page.actuallyadditions=Actually Additions
|
||||||
|
actuallyadditions.lolWutHowUDoDis.name=This is bugged. Throw it away. Please.
|
||||||
|
|
||||||
|
#Fluids / Flüssigkeiten
|
||||||
|
fluid.actuallyadditions.oil=Öl
|
||||||
|
fluid.actuallyadditions.canolaoil=Rapsöl
|
||||||
|
|
||||||
|
#NEI Integration / NEI Integration
|
||||||
|
container.nei.actuallyadditions.crushing.name=Brecher
|
||||||
|
container.nei.actuallyadditions.crushingDouble.name=Doppelter Brecher
|
||||||
|
container.nei.actuallyadditions.ballOfHair.name=Haarknäuel
|
||||||
|
container.nei.actuallyadditions.compost.name=Kompost
|
||||||
|
container.nei.actuallyadditions.furnaceDouble.name=Doppelter Ofen
|
||||||
|
container.nei.actuallyadditions.treasureChest.name=Schatzkiste
|
||||||
|
container.nei.actuallyadditions.treasureChest.info=Gegenstände zu
|
||||||
|
container.nei.actuallyadditions.coffee.name=Kaffeemaschine
|
||||||
|
container.nei.actuallyadditions.coffee.special=Spezialfunktion
|
||||||
|
container.nei.actuallyadditions.coffee.maxAmount=Maximale Menge
|
||||||
|
container.nei.actuallyadditions.coffee.extra.milk=+01:00, -1 Level
|
||||||
|
container.nei.actuallyadditions.reconstructor.name=Atomarer Umwandler
|
||||||
|
|
||||||
|
container.nei.actuallyadditions.booklet.name=ActAdd Handbuch
|
||||||
|
container.nei.actuallyadditions.booklet.header=The <item>Actually Additions Handbuch<r> liest:
|
||||||
|
container.nei.actuallyadditions.booklet.noText=Offensichtlich nichts! Aber das macht nichts. Klicke einfach auf den Button am Ende, um die Gegenstände im Buch zu sehen, und blättere in ihm, um viele fantastische Sachen zu sehen!
|
||||||
|
|
||||||
|
#Damage Sources / Schadensquellen
|
||||||
|
death.actuallyadditions.atomicReconstructor.1=%s wurde atomar umgewandelt.
|
||||||
|
death.actuallyadditions.atomicReconstructor.2=%s stand dem Atomaren Umwandler im Weg.
|
||||||
|
death.actuallyadditions.atomicReconstructor.3=Scheinbar funktioniert es nicht, Leute wie %s atomar umzuwandeln.
|
||||||
|
death.actuallyadditions.atomicReconstructor.4=%s sollte in Zukunft keine Atomaren Umwandler mehr essen.
|
||||||
|
death.actuallyadditions.atomicReconstructor.5=%s hätte Umwandlungs-Schaum verwenden sollen.
|
||||||
|
|
||||||
|
#Blocks / Blöcke
|
||||||
|
tile.actuallyadditions.blockCompost.name=Kompost
|
||||||
|
tile.actuallyadditions.blockMiscOreBlackQuartz.name=Schwarzes Quarzerz
|
||||||
|
tile.actuallyadditions.blockMiscBlackQuartz.name=Schwarzer Quarzblock
|
||||||
|
tile.actuallyadditions.blockMiscBlackQuartzChiseled.name=Gemeißelter Block aus Schwarzem Quarz
|
||||||
|
tile.actuallyadditions.blockMiscBlackQuartzPillar.name=Schwarze Quarzsäule
|
||||||
|
tile.actuallyadditions.blockFeeder.name=Automatischer Fütterer
|
||||||
|
tile.actuallyadditions.blockGiantChest.name=Lagerkiste
|
||||||
|
tile.actuallyadditions.blockGrinder.name=Brecher
|
||||||
|
tile.actuallyadditions.blockGrinderDouble.name=Doppelter Brecher
|
||||||
|
tile.actuallyadditions.blockFurnaceDouble.name=Doppelter Ofen
|
||||||
|
tile.actuallyadditions.blockFishingNet.name=Fischernetz
|
||||||
|
tile.actuallyadditions.blockFurnaceSolar.name=Solarkollektor
|
||||||
|
tile.actuallyadditions.blockHeatCollector.name=Hitzekollektor
|
||||||
|
tile.actuallyadditions.blockItemRepairer.name=Reparierer
|
||||||
|
tile.actuallyadditions.blockMiscWoodCasing.name=Holzgehäuse
|
||||||
|
tile.actuallyadditions.blockGreenhouseGlass.name=Gewächshausglas
|
||||||
|
tile.actuallyadditions.blockEnergizer.name=Energetisierer
|
||||||
|
tile.actuallyadditions.blockEnervator.name=Schwächer
|
||||||
|
tile.actuallyadditions.blockRice.name=Reispflanze
|
||||||
|
tile.actuallyadditions.blockMiscCharcoal.name=Holzkohleblock
|
||||||
|
tile.actuallyadditions.blockCoalGenerator.name=Kohlegenerator
|
||||||
|
tile.actuallyadditions.blockLampPowerer.name=Lampenregler
|
||||||
|
tile.actuallyadditions.blockColoredLampWhite.name=Weiße Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampOrange.name=Orangene Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampMagenta.name=Magenta Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampYellow.name=Gelbe Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampLightBlue.name=Hellblaue Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampBlue.name=Blaue Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampGray.name=Graue Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampLightGray.name=Hellgraue Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampGreen.name=Grüne Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampBlack.name=Schwarze Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampBrown.name=Braune Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampRed.name=Rote Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampLime.name=Hellgrüne Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampPink.name=Rosa Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampCyan.name=Hellblaue Lampe
|
||||||
|
tile.actuallyadditions.blockColoredLampPurple.name=Violette Lampe
|
||||||
|
tile.actuallyadditions.blockPhantomface.name=Phantom Oberfläche
|
||||||
|
tile.actuallyadditions.blockPhantomEnergyface.name=Phantom Energie-Oberfläche
|
||||||
|
tile.actuallyadditions.blockPhantomLiquiface.name=Phantom Liqui-Oberfläche
|
||||||
|
tile.actuallyadditions.blockPhantomPlacer.name=Phantom Platzierer
|
||||||
|
tile.actuallyadditions.blockPhantomBreaker.name=Phantom Abbauer
|
||||||
|
tile.actuallyadditions.blockLavaFactoryController.name=Lavafabrik-Kollektor
|
||||||
|
tile.actuallyadditions.blockMiscLavaFactoryCase.name=Gehäuse
|
||||||
|
tile.actuallyadditions.blockFluidPlacer.name=Flüssigkeitenplatzierer
|
||||||
|
tile.actuallyadditions.blockFluidCollector.name=Flüssigkeitenkollektor
|
||||||
|
tile.actuallyadditions.blockPhantomBooster.name=Phantom-Booster
|
||||||
|
tile.actuallyadditions.blockCoffee.name=Kaffeepflanze
|
||||||
|
tile.actuallyadditions.blockWildCanola.name=Wilder Raps
|
||||||
|
tile.actuallyadditions.blockWildRice.name=Wilder Reis
|
||||||
|
tile.actuallyadditions.blockWildCoffee.name=Wilder Kaffee
|
||||||
|
tile.actuallyadditions.blockWildFlax.name=Wilder Flachs
|
||||||
|
tile.actuallyadditions.blockTestifiBucksGreenWall.name=Ethetischer Grüner Block
|
||||||
|
tile.actuallyadditions.blockTestifiBucksWhiteWall.name=Ethetischer Quarz
|
||||||
|
tile.actuallyadditions.blockTestifiBucksGreenStairs.name=Ethetische Grüne Treppe
|
||||||
|
tile.actuallyadditions.blockTestifiBucksWhiteStairs.name=Ethetische Quarztreppe
|
||||||
|
tile.actuallyadditions.blockTestifiBucksGreenSlab.name=Ethetische Grüne Stufe
|
||||||
|
tile.actuallyadditions.blockTestifiBucksWhiteSlab.name=Ethetische Quarzstufe
|
||||||
|
tile.actuallyadditions.blockCanola.name=Rapspflanze
|
||||||
|
tile.actuallyadditions.blockTreasureChest.name=Schatzkiste
|
||||||
|
tile.actuallyadditions.blockCanolaPress.name=Rapspresse
|
||||||
|
tile.actuallyadditions.blockFermentingBarrel.name=Fermentierungsfass
|
||||||
|
tile.actuallyadditions.blockCanolaOil.name=Rapspflanze
|
||||||
|
tile.actuallyadditions.blockOil.name=Öl
|
||||||
|
tile.actuallyadditions.blockMiscEnderpearl.name=Enderperlenblock
|
||||||
|
tile.actuallyadditions.blockOilGenerator.name=Ölgenerator
|
||||||
|
tile.actuallyadditions.blockBreaker.name=Automatischer Abbauer
|
||||||
|
tile.actuallyadditions.blockPlacer.name=Automatischer Platzierer
|
||||||
|
tile.actuallyadditions.blockDropper.name=Automatischer Präzisionsspender
|
||||||
|
tile.actuallyadditions.blockMiscEnderCasing.name=Endergehäuse
|
||||||
|
tile.actuallyadditions.blockFlax.name=Flachspflanze
|
||||||
|
tile.actuallyadditions.blockCoffeeMachine.name=Kaffeemaschine
|
||||||
|
tile.actuallyadditions.blockXPSolidifier.name=Erfahrungsverdichter
|
||||||
|
tile.actuallyadditions.blockSmileyCloud.name=Smiley-Wolke
|
||||||
|
tile.actuallyadditions.blockLeafGenerator.name=Blätteressender Generator
|
||||||
|
tile.actuallyadditions.blockDirectionalBreaker.name=Abbauer (große Reichweite)
|
||||||
|
tile.actuallyadditions.blockRangedCollector.name=Kollektor (große Reichweite)
|
||||||
|
tile.actuallyadditions.blockLaserRelay.name=Laserrelais
|
||||||
|
tile.actuallyadditions.blockMiscIronCasing.name=Eisengehäuse
|
||||||
|
tile.actuallyadditions.blockBlackLotus.name=Schwarze Lotos
|
||||||
|
tile.actuallyadditions.blockTestifiBucksWhiteFence.name=Ethetische Quarz Wand
|
||||||
|
tile.actuallyadditions.blockTestifiBucksGreenFence.name=Ethetische Grüne Wand
|
||||||
|
tile.actuallyadditions.blockCrystalRed.name=Restonia Kristallblock
|
||||||
|
tile.actuallyadditions.blockCrystalBlue.name=Palis Kristallblock
|
||||||
|
tile.actuallyadditions.blockCrystalLightBlue.name=Diamatin Kristallblock
|
||||||
|
tile.actuallyadditions.blockCrystalGreen.name=Emeradik Kristallblock
|
||||||
|
tile.actuallyadditions.blockCrystalBlack.name=Void Kristallblock
|
||||||
|
tile.actuallyadditions.blockCrystalWhite.name=Enori Kristallblock
|
||||||
|
tile.actuallyadditions.blockBookStand.name=Handbuchständer
|
||||||
|
tile.actuallyadditions.blockMiner.name=Senkrechter Diggah
|
||||||
|
tile.actuallyadditions.blockFireworkBox.name=Feuerwerkskiste
|
||||||
|
tile.actuallyadditions.blockQuartzWall.name=Schwarze Quarzwand
|
||||||
|
tile.actuallyadditions.blockQuartzStair.name=Schwarze Quarztreppe
|
||||||
|
tile.actuallyadditions.blockQuartzSlab.name=Schwarze Quarzstufe
|
||||||
|
tile.actuallyadditions.blockChiseledQuartzWall.name=Gemeißelte Schwarze Quarzwand
|
||||||
|
tile.actuallyadditions.blockChiseledQuartzStair.name=Gemeißelte Schwarze Quarztreppe
|
||||||
|
tile.actuallyadditions.blockChiseledQuartzSlab.name=Gemeißelte Schwarze Quarzstufe
|
||||||
|
tile.actuallyadditions.blockPillarQuartzWall.name=Schwarze Quarz-Säulenwand
|
||||||
|
tile.actuallyadditions.blockPillarQuartzStair.name=Schwarze Quarz-Säulentreppe
|
||||||
|
tile.actuallyadditions.blockPillarQuartzSlab.name=Schwarze Quarz-Säulenstufe
|
||||||
|
|
||||||
|
#ESD / ESG
|
||||||
|
tile.actuallyadditions.blockInputter.name=ESG
|
||||||
|
tile.actuallyadditions.blockInputterAdvanced.name=Hochwertiger ESG
|
||||||
|
tile.actuallyadditions.blockInputter.add.1.name=Ellpeck's Slot Gerät
|
||||||
|
tile.actuallyadditions.blockInputter.add.2.name=Entstellter Sack-Gouda
|
||||||
|
tile.actuallyadditions.blockInputter.add.3.name=Episches System-Gadget
|
||||||
|
tile.actuallyadditions.blockInputter.add.4.name=Einmaliges Scheingeschäft
|
||||||
|
tile.actuallyadditions.blockInputter.add.5.name=Ein Surreales Gänseblümchen
|
||||||
|
tile.actuallyadditions.blockInputter.add.6.name=Elektronischer Sachen-Gegenstand
|
||||||
|
tile.actuallyadditions.blockInputter.add.7.name=Einmachglas Saurer Gurken
|
||||||
|
tile.actuallyadditions.blockInputter.add.8.name=Eigenartig-Schräger Giraffenhals
|
||||||
|
tile.actuallyadditions.blockInputter.add.9.name=Einfach Schlechter Gartenarchitekt
|
||||||
|
tile.actuallyadditions.blockInputter.add.10.name=Eindringlich Schauender Gaffer
|
||||||
|
tile.actuallyadditions.blockInputter.add.11.name=Einarmig Schaffender Gastarbeiter
|
||||||
|
tile.actuallyadditions.blockInputter.add.12.name=Einfältig Spielender Gaukler
|
||||||
|
tile.actuallyadditions.blockInputter.add.13.name=Eingelaugtes Salz-Gebäck
|
||||||
|
tile.actuallyadditions.blockInputter.add.14.name=Eierlegendes Schreck-Gebilde
|
||||||
|
tile.actuallyadditions.blockInputter.add.15.name=Exzellentes Spaghetti-Gericht
|
||||||
|
|
||||||
|
#Reconstructor / Umwandler
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.name=Atomarer Umwandler
|
||||||
|
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.1=Molekular
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.2=Materiell
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.3=Quarkal
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.4=Atomar
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.5=Kleines Bisschen
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.6=Komponente
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.7=Vittell
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.8=Transmateriell
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.9=Partiell
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.10=Räumlich
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.11=Stickig
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.1.12=Interdimensional
|
||||||
|
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.1=Vermischer
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.2=Verschieber
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.3=Rekombinierer
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.4=Modulator
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.5=Molekülisator
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.6=Modifikulisator
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.7=Veränderer
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.8=Atomisierer
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.9=Zerhacker
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.10=Swapper
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.11=Vertauscher
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.12=Austauscher
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.13=Differenzierer
|
||||||
|
tile.actuallyadditions.blockAtomicReconstructor.info.2.14=Empfänger
|
||||||
|
|
||||||
|
#Items / Gegenstände
|
||||||
|
item.actuallyadditions.itemDrill.name=Bohrer
|
||||||
|
item.actuallyadditions.itemFoodRice.name=Reis
|
||||||
|
item.actuallyadditions.itemFoodDoughnut.name=Krapfen
|
||||||
|
item.actuallyadditions.itemMiscRiceDough.name=Reisteig
|
||||||
|
item.actuallyadditions.itemFoodRiceBread.name=Reisbrot
|
||||||
|
item.actuallyadditions.itemRiceSeed.name=Reissaat
|
||||||
|
item.actuallyadditions.itemMiscTinyCoal.name=Winzige Kohle
|
||||||
|
item.actuallyadditions.itemMiscTinyCharcoal.name=Winzige Holzkohle
|
||||||
|
item.actuallyadditions.itemMiscRiceSlime.name=Reisschleimball
|
||||||
|
item.actuallyadditions.itemBattery.name=Einzelne Batterie
|
||||||
|
item.actuallyadditions.itemBatteryDouble.name=Zweifache Batterie
|
||||||
|
item.actuallyadditions.itemBatteryTriple.name=Dreifache Batterie
|
||||||
|
item.actuallyadditions.itemBatteryQuadruple.name=Vierfache Batterie
|
||||||
|
item.actuallyadditions.itemBatteryQuintuple.name=Fünffache Batterie
|
||||||
|
item.actuallyadditions.itemGrowthRing.name=Ring des Wachstums
|
||||||
|
item.actuallyadditions.itemWaterRemovalRing.name=Ring der Flüssigkeitsverbannung
|
||||||
|
item.actuallyadditions.itemSuctionRing.name=Ring der Magnetisierung
|
||||||
|
item.actuallyadditions.itemBucketCanolaOil.name=Rapsöleimer
|
||||||
|
item.actuallyadditions.itemBucketOil.name=Öleimer
|
||||||
|
item.actuallyadditions.itemWingsOfTheBats.name=Flügel der Fledermäuse
|
||||||
|
item.actuallyadditions.itemMiscBatWing.name=Fledermausflügel
|
||||||
|
item.actuallyadditions.woodenPaxel.name=Holz-AIEW
|
||||||
|
item.actuallyadditions.stonePaxel.name=Stein-AIEW
|
||||||
|
item.actuallyadditions.ironPaxel.name=Eisen-AIEW
|
||||||
|
item.actuallyadditions.goldPaxel.name=Gold-AIEW
|
||||||
|
item.actuallyadditions.diamondPaxel.name=Diamant-AIEW
|
||||||
|
item.actuallyadditions.emeraldPaxel.name=Smaragd-AIEW
|
||||||
|
item.actuallyadditions.obsidianPaxel.name=Obsidian-AIEW
|
||||||
|
item.actuallyadditions.quartzPaxel.name=Schwarzes Quarz-AIEW
|
||||||
|
item.actuallyadditions.paxelTFCopper.name=Kupfer-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFTin.name=Zinn-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFLead.name=Blei-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFSilver.name=Silber-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFElectrum.name=Elektrum-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFNickel.name=Eisen-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFBronze.name=Bronze-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFPlatinum.name=Glänzendes AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelTFInvar.name=Invar-AIEW (TF)
|
||||||
|
item.actuallyadditions.paxelMTObsidian.name=Obsidian-AIEW (MT)
|
||||||
|
item.actuallyadditions.paxelMTGlowstone.name=Glowstone-AIEW (MT)
|
||||||
|
item.actuallyadditions.paxelMTLapisLazuli.name=Lapis Lazuli-AIEW (MT)
|
||||||
|
item.actuallyadditions.paxelMTOsmium.name=Osmium-AIEW (MT)
|
||||||
|
item.actuallyadditions.paxelMTBronze.name=Bronze-AIEW (MT)
|
||||||
|
item.actuallyadditions.paxelMTSteel.name=Stahl-AIEW (MT)
|
||||||
|
item.actuallyadditions.paxelSOadamantium.name=Adamantium-AIEW (SO)
|
||||||
|
item.actuallyadditions.paxelSOcopper.name=Kupfer-AIEW (SO)
|
||||||
|
item.actuallyadditions.paxelSOtin.name=Zinn-AIEW (SO)
|
||||||
|
item.actuallyadditions.paxelSOonyx.name=Onyx-AIEW (SO)
|
||||||
|
item.actuallyadditions.paxelSOmythril.name=Mythril-AIEW (SO)
|
||||||
|
item.actuallyadditions.itemPhantomConnector.name=Phantom-Verbinder
|
||||||
|
item.actuallyadditions.itemMiscCup.name=Leere Tasse
|
||||||
|
item.actuallyadditions.itemCoffee.name=Tasse Kaffee
|
||||||
|
item.actuallyadditions.itemCoffeeSeed.name=Kaffeesaat
|
||||||
|
item.actuallyadditions.itemCoffeeBeans.name=Kaffeebohnen
|
||||||
|
item.actuallyadditions.itemCanolaSeed.name=Rapssaat
|
||||||
|
item.actuallyadditions.itemMiscCanola.name=Raps
|
||||||
|
item.actuallyadditions.itemResonantRice.name=Resonanz-Reis
|
||||||
|
item.actuallyadditions.itemDrillUpgradeSpeed.name=Bohrerverbesserung: Effizienz I
|
||||||
|
item.actuallyadditions.itemDrillUpgradeSpeedII.name=Bohrerverbesserung: Effizienz II
|
||||||
|
item.actuallyadditions.itemDrillUpgradeSpeedIII.name=Bohrerverbesserung: Effizienz III
|
||||||
|
item.actuallyadditions.itemDrillUpgradeSilkTouch.name=Bohrerverbesserung: Behutsamkeit
|
||||||
|
item.actuallyadditions.itemDrillUpgradeFortune.name=Bohrerverbesserung: Glück I
|
||||||
|
item.actuallyadditions.itemDrillUpgradeFortuneII.name=Bohrerverbesserung: Glück II (Gibt Glück III!)
|
||||||
|
item.actuallyadditions.itemDrillUpgradeBlockPlacing.name=Bohrerverbesserung: Blockplazierung
|
||||||
|
item.actuallyadditions.itemDrillUpgradeThreeByThree.name=Bohrerverbesserung: Abbau I
|
||||||
|
item.actuallyadditions.itemDrillUpgradeFiveByFive.name=Bohrerverbesserung: Abbau II
|
||||||
|
item.actuallyadditions.itemMiscMashedFood.name=Püriertes Essen
|
||||||
|
item.actuallyadditions.itemFertilizer.name=Düngemaschine
|
||||||
|
item.actuallyadditions.itemMiscDough.name=Teig
|
||||||
|
item.actuallyadditions.itemMiscPaperCone.name=Papierhut
|
||||||
|
item.actuallyadditions.itemMiscKnifeBlade.name=Messerklinge
|
||||||
|
item.actuallyadditions.itemMiscKnifeHandle.name=Messerheft
|
||||||
|
item.actuallyadditions.itemMiscBlackQuartz.name=Schwarzer Quarz
|
||||||
|
item.actuallyadditions.itemMiscRing.name=Ring
|
||||||
|
item.actuallyadditions.itemTeleStaff.name=Teleportations-Zauberstab
|
||||||
|
item.actuallyadditions.itemJamCuBaRa.name=JoBaHi-Marmelade
|
||||||
|
item.actuallyadditions.itemJamGraKiBa.name=WeiKiBa-Marmelade
|
||||||
|
item.actuallyadditions.itemJamPlApLe.name=PfApZit-Marmelade
|
||||||
|
item.actuallyadditions.itemJamChApCi.name=KirApZi-Marmelade
|
||||||
|
item.actuallyadditions.itemJamHoMeKi.name=HoMeKi-Marmelade
|
||||||
|
item.actuallyadditions.itemJamHoMeCo.name=HoMeKo-Marmelade
|
||||||
|
item.actuallyadditions.itemJamPiCo.name=AnKo-Marmelade
|
||||||
|
item.actuallyadditions.itemHairyBall.name=Haarknäuel
|
||||||
|
item.actuallyadditions.itemLeafBlower.name=Laubbläser
|
||||||
|
item.actuallyadditions.itemLeafBlowerAdvanced.name=Hochwertiger Laubbläser
|
||||||
|
item.actuallyadditions.itemKnife.name=Messer
|
||||||
|
item.actuallyadditions.itemPickaxeEmerald.name=Smaragdspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeEmerald.name=Smaragdaxt
|
||||||
|
item.actuallyadditions.itemShovelEmerald.name=Smaragdschaufel
|
||||||
|
item.actuallyadditions.itemHoeEmerald.name=Smaragdhacke
|
||||||
|
item.actuallyadditions.itemSwordEmerald.name=Smaragdschwert
|
||||||
|
item.actuallyadditions.itemPickaxeQuartz.name=Schwarze Quarzspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeQuartz.name=Schwarze Quarzaxt
|
||||||
|
item.actuallyadditions.itemShovelQuartz.name=Schwarze Quarzschaufel
|
||||||
|
item.actuallyadditions.itemHoeQuartz.name=Schwarze Quarzhacke
|
||||||
|
item.actuallyadditions.itemSwordQuartz.name=Schwarzes Quarzschwert
|
||||||
|
item.actuallyadditions.itemPickaxeObsidian.name=Obsidianspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeObsidian.name=Obsidianaxt
|
||||||
|
item.actuallyadditions.itemShovelObsidian.name=Obsidianschaufel
|
||||||
|
item.actuallyadditions.itemHoeObsidian.name=Obsidianhacke
|
||||||
|
item.actuallyadditions.itemSwordObsidian.name=Obsidianschwert
|
||||||
|
item.actuallyadditions.itemCrafterOnAStick.name=Mobile Werkbank
|
||||||
|
item.actuallyadditions.itemFoodBaguette.name=Baguette
|
||||||
|
item.actuallyadditions.itemFoodPizza.name=Pizza
|
||||||
|
item.actuallyadditions.itemFoodHamburger.name=Hamburger
|
||||||
|
item.actuallyadditions.itemFoodBigCookie.name=Großer Keks
|
||||||
|
item.actuallyadditions.itemFoodSubmarineSandwich.name=U-Boot-Sandwich
|
||||||
|
item.actuallyadditions.itemFoodToast.name=Toastbrot
|
||||||
|
item.actuallyadditions.itemFoodChocolateToast.name=Arme Ritter mit Schokolade
|
||||||
|
item.actuallyadditions.itemFoodChocolate.name=Schokolade
|
||||||
|
item.actuallyadditions.itemFoodChocolateCake.name=Schokoladenkuchen
|
||||||
|
item.actuallyadditions.itemFoodNoodle.name=Nudel
|
||||||
|
item.actuallyadditions.itemFoodSpaghetti.name=Spaghetti
|
||||||
|
item.actuallyadditions.itemFoodFrenchFry.name=Pomme frite
|
||||||
|
item.actuallyadditions.itemFoodFrenchFries.name=Pommes frites
|
||||||
|
item.actuallyadditions.itemFoodFishNChips.name=Bratfisch mit Pommes frites
|
||||||
|
item.actuallyadditions.itemFoodCarrotJuice.name=Karottensaft
|
||||||
|
item.actuallyadditions.itemFoodPumpkinStew.name=Kürbiseintopf
|
||||||
|
item.actuallyadditions.itemFoodCheese.name=Käse
|
||||||
|
item.actuallyadditions.itemMiscCoil.name=Spule
|
||||||
|
item.actuallyadditions.itemMiscCoilAdvanced.name=Hochwertige Spule
|
||||||
|
item.actuallyadditions.itemPotionRing.name=Ring der #this line may cause grammatical issues
|
||||||
|
item.actuallyadditions.itemPotionRingAdvanced.name=Hochwertiger Ring der #this line may cause grammatical issues
|
||||||
|
item.actuallyadditions.itemSolidifiedExperience.name=Verdichtete Erfahrung
|
||||||
|
item.actuallyadditions.itemDustIron.name=Gebrochenes Eisen
|
||||||
|
item.actuallyadditions.itemDustGold.name=Gebrochenes Gold
|
||||||
|
item.actuallyadditions.itemDustDiamond.name=Gebrochener Diamant
|
||||||
|
item.actuallyadditions.itemDustLapis.name=Gebrochener Lapislazuli
|
||||||
|
item.actuallyadditions.itemDustEmerald.name=Gebrochener Smaragd
|
||||||
|
item.actuallyadditions.itemDustQuartz.name=Gebrochener Quarz
|
||||||
|
item.actuallyadditions.itemDustCoal.name=Gebrochene Kohle
|
||||||
|
item.actuallyadditions.itemDustQuartzBlack.name=Gebrochener Schwarzer Quarz
|
||||||
|
item.actuallyadditions.itemFlaxSeed.name=Flachssaat
|
||||||
|
item.actuallyadditions.itemHelmObsidian.name=Obsidianhelm
|
||||||
|
item.actuallyadditions.itemChestObsidian.name=Obsidianbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsObsidian.name=Obsidianbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsObsidian.name=Obsidianstiefel
|
||||||
|
item.actuallyadditions.itemHelmEmerald.name=Smaragdhelm
|
||||||
|
item.actuallyadditions.itemChestEmerald.name=Smaragdbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsEmerald.name=Smaragdbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsEmerald.name=Smaragdstiefel
|
||||||
|
item.actuallyadditions.itemHelmQuartz.name=Schwarzer Quarzhelm
|
||||||
|
item.actuallyadditions.itemChestQuartz.name=Schwarzer Quarzbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsQuartz.name=Schwarzer Quarzbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsQuartz.name=Schwarze Quarzstiefel
|
||||||
|
item.actuallyadditions.itemBooklet.name=Actually Additions Handbuch
|
||||||
|
item.actuallyadditions.itemLaserWrench.name=Laser-Schraubenschlüssel
|
||||||
|
item.actuallyadditions.itemChestToCrateUpgrade.name=Kiste auch Lagerkiste aufwerten
|
||||||
|
item.actuallyadditions.itemMiscDrillCore.name=Bohrerkern
|
||||||
|
item.actuallyadditions.itemMiscBlackDye.name=Schwarzer Farbstoff
|
||||||
|
item.actuallyadditions.itemCrystalRed.name=Restoniakristall
|
||||||
|
item.actuallyadditions.itemCrystalBlue.name=Paliskristall
|
||||||
|
item.actuallyadditions.itemCrystalLightBlue.name=Diamatinkristall
|
||||||
|
item.actuallyadditions.itemCrystalGreen.name=Emeradikkristall
|
||||||
|
item.actuallyadditions.itemCrystalBlack.name=Voidkristall
|
||||||
|
item.actuallyadditions.itemCrystalWhite.name=Enorikristall
|
||||||
|
item.actuallyadditions.itemMiscLens.name=Linse
|
||||||
|
item.actuallyadditions.itemColorLens.name=Farblinse
|
||||||
|
item.actuallyadditions.itemExplosionLens.name=Detonationslinse
|
||||||
|
item.actuallyadditions.itemDamageLens.name=Linse des sicheren Todes
|
||||||
|
item.actuallyadditions.itemCrateKeeper.name=Lagerkistenhalter
|
||||||
|
item.actuallyadditions.itemPickaxeCrystalRed.name=Restoniakristallspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeCrystalRed.name=Restoniakristallaxt
|
||||||
|
item.actuallyadditions.itemShovelCrystalRed.name=Restoniakristallschaufel
|
||||||
|
item.actuallyadditions.itemSwordCrystalRed.name=Restoniakristallschwert
|
||||||
|
item.actuallyadditions.itemHoeCrystalRed.name=Restoniakristallhacke
|
||||||
|
item.actuallyadditions.itemHelmCrystalRed.name=Restoniakristallhelm
|
||||||
|
item.actuallyadditions.itemChestCrystalRed.name=Restoniakristallbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsCrystalRed.name=Restoniakristallbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsCrystalRed.name=Restoniakristallstiefel
|
||||||
|
item.actuallyadditions.itemPickaxeCrystalBlue.name=Paliskristallspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeCrystalBlue.name=Paliskristallaxt
|
||||||
|
item.actuallyadditions.itemShovelCrystalBlue.name=Paliskristallschaufel
|
||||||
|
item.actuallyadditions.itemSwordCrystalBlue.name=Paliskristallschwert
|
||||||
|
item.actuallyadditions.itemHoeCrystalBlue.name=Paliskristallhacke
|
||||||
|
item.actuallyadditions.itemHelmCrystalBlue.name=Paliskristallhelm
|
||||||
|
item.actuallyadditions.itemChestCrystalBlue.name=Paliskristallbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsCrystalBlue.name=Paliskristallbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsCrystalBlue.name=Paliskristallstiefel
|
||||||
|
item.actuallyadditions.itemPickaxeCrystalLightBlue.name=Diamatinkristallspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeCrystalLightBlue.name=Diamatinkristallaxt
|
||||||
|
item.actuallyadditions.itemShovelCrystalLightBlue.name=Diamatinkristallschaufel
|
||||||
|
item.actuallyadditions.itemSwordCrystalLightBlue.name=Diamatinkristallschwert
|
||||||
|
item.actuallyadditions.itemHoeCrystalLightBlue.name=Diamatinkristallhacke
|
||||||
|
item.actuallyadditions.itemHelmCrystalLightBlue.name=Diamatinkristallhelm
|
||||||
|
item.actuallyadditions.itemChestCrystalLightBlue.name=Diamatinkristallbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsCrystalLightBlue.name=Diamatinkristallbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsCrystalLightBlue.name=Diamatinkristallstiefel
|
||||||
|
item.actuallyadditions.itemPickaxeCrystalBlack.name=Voidkristallspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeCrystalBlack.name=Voidkristallaxt
|
||||||
|
item.actuallyadditions.itemShovelCrystalBlack.name=Voidkristallschaufel
|
||||||
|
item.actuallyadditions.itemSwordCrystalBlack.name=Voidkristallschwert
|
||||||
|
item.actuallyadditions.itemHoeCrystalBlack.name=Voidkristallhacke
|
||||||
|
item.actuallyadditions.itemHelmCrystalBlack.name=Voidkristallhelm
|
||||||
|
item.actuallyadditions.itemChestCrystalBlack.name=Voidkristallbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsCrystalBlack.name=Voidkristallbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsCrystalBlack.name=Voidkristallstiefel
|
||||||
|
item.actuallyadditions.itemPickaxeCrystalGreen.name=Emeradikkristallspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeCrystalGreen.name=Emeradikkristallaxt
|
||||||
|
item.actuallyadditions.itemShovelCrystalGreen.name=Emeradikkristallschaufel
|
||||||
|
item.actuallyadditions.itemSwordCrystalGreen.name=Emeradikkristallschwert
|
||||||
|
item.actuallyadditions.itemHoeCrystalGreen.name=Emeradikkristallhacke
|
||||||
|
item.actuallyadditions.itemHelmCrystalGreen.name=Emeradikkristallhelm
|
||||||
|
item.actuallyadditions.itemChestCrystalGreen.name=Emeradikkristallbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsCrystalGreen.name=Emeradikkristallbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsCrystalGreen.name=Emeradikkristallstiefel
|
||||||
|
item.actuallyadditions.itemPickaxeCrystalWhite.name=Enorikristallspitzhacke
|
||||||
|
item.actuallyadditions.itemAxeCrystalWhite.name=Enorikristallaxt
|
||||||
|
item.actuallyadditions.itemShovelCrystalWhite.name=Enorikristallschaufel
|
||||||
|
item.actuallyadditions.itemSwordCrystalWhite.name=Enorikristallschwert
|
||||||
|
item.actuallyadditions.itemHoeCrystalWhite.name=Enorikristallhacke
|
||||||
|
item.actuallyadditions.itemHelmCrystalWhite.name=Enorikristallhelm
|
||||||
|
item.actuallyadditions.itemChestCrystalWhite.name=Enorikristallbrustpanzer
|
||||||
|
item.actuallyadditions.itemPantsCrystalWhite.name=Enorikristallbeinschutz
|
||||||
|
item.actuallyadditions.itemBootsCrystalWhite.name=Enorikristallstiefel
|
||||||
|
item.actuallyadditions.itemPaxelCrystalRed.name=Restoniakristall-AIEW
|
||||||
|
item.actuallyadditions.itemPaxelCrystalBlue.name=Paliskristall-AIEW
|
||||||
|
item.actuallyadditions.itemPaxelCrystalLightBlue.name=Diamatinkristall-AIEW
|
||||||
|
item.actuallyadditions.itemPaxelCrystalBlack.name=Voidkristall-AIEW
|
||||||
|
item.actuallyadditions.itemPaxelCrystalWhite.name=Enorikristall-AIEW
|
||||||
|
item.actuallyadditions.itemPaxelCrystalGreen.name=Emeradikkristall-AIEW
|
||||||
|
item.actuallyadditions.itemFoodBacon.name=Speck
|
||||||
|
|
||||||
|
#Tooltips
|
||||||
|
tooltip.actuallyadditions.onSuffix.desc=An
|
||||||
|
tooltip.actuallyadditions.phantom.connected.desc=<Block is angeschaltet!>
|
||||||
|
tooltip.actuallyadditions.phantom.stored.desc=<Block wurde in diesen Verbinder aufgenommen!>
|
||||||
|
tooltip.actuallyadditions.phantom.unbound.desc=Die Verbindung wurde aufgelöst!
|
||||||
|
tooltip.actuallyadditions.boundTo.desc=Verbunden mit
|
||||||
|
tooltip.actuallyadditions.clearStorage.desc=Plaziere es in einer Werkbank, um den Speicher zu leeren!
|
||||||
|
tooltip.actuallyadditions.phantom.connectedRange.desc=Die Verbindung ist ausgezeichnet und funktioniert.
|
||||||
|
tooltip.actuallyadditions.phantom.connectedNoRange.desc=Die Verbindung ist blockiert: Es ist entweder zu weit entfernt, in nicht-geladenen Chunks oder nicht der richtige Blocktyp für dieses Phantom.
|
||||||
|
tooltip.actuallyadditions.phantom.notConnected.desc=Es besteht keine Verbindung!
|
||||||
|
tooltip.actuallyadditions.phantom.blockInfo.desc=Der verbundene Block ist %s bei %s, %s, %s in %s Blöcken Entfernung.
|
||||||
|
tooltip.actuallyadditions.factory.notPart.desc=Der Regler ist kein Teil des richtigen Multi-Blocks! Siehe dir die Regler-Beschreibung an!
|
||||||
|
tooltip.actuallyadditions.factory.works.desc=Diese Lavafabrik ist komplett und kann nun Lava produzieren!
|
||||||
|
tooltip.actuallyadditions.oredictName.desc=OreDictionary-Einträge
|
||||||
|
tooltip.actuallyadditions.noOredictNameAvail.desc=Keine
|
||||||
|
tooltip.actuallyadditions.codeName.desc=Codename
|
||||||
|
tooltip.actuallyadditions.baseUnlocName.desc=Unlokalisierter Name des Gegenstands
|
||||||
|
tooltip.actuallyadditions.meta.desc=Metadaten
|
||||||
|
tooltip.actuallyadditions.nbt.desc=NBT-Daten
|
||||||
|
tooltip.actuallyadditions.unlocName.desc=Unlokalisierter Name der Meta
|
||||||
|
tooltip.actuallyadditions.disablingInfo.desc=Wenn du diese Informationen nicht sehen möchtest, deaktiviere sie in den Actually Additions-Einstellungen!
|
||||||
|
tooltip.actuallyadditions.ctrlForMoreInfo.desc=Drücke STRG für weitere Informationen
|
||||||
|
tooltip.actuallyadditions.extraInfo.desc=Erweiterte Informationen
|
||||||
|
tooltip.actuallyadditions.blockPhantomRange.desc=Reichweite
|
||||||
|
tooltip.actuallyadditions.laser.stored.desc=<Laser gespeichert!>
|
||||||
|
tooltip.actuallyadditions.laser.connected.desc=<Laser verbunden!>
|
||||||
|
tooltip.actuallyadditions.laser.cantConnect.desc=Kann nicht verbunden werden: Die Relais sind entweder nicht im selben Netzwerk, das gespeicherte Relais existiert nicht mehr oder es ist zu weit entfernt!
|
||||||
|
tooltip.actuallyadditions.itemBooklet.desc=Oder "Heft", wenn man möchte
|
||||||
|
|
||||||
|
#Gui Information
|
||||||
|
info.actuallyadditions.gui.animals=Tiere
|
||||||
|
info.actuallyadditions.gui.enoughToBreed=Genügend um zu vermehren!
|
||||||
|
info.actuallyadditions.gui.tooMany=Zu viel, um vermehren zu können!
|
||||||
|
info.actuallyadditions.gui.notEnough=Nicht genügend, um zu vermehren!
|
||||||
|
info.actuallyadditions.gui.disabled=Deaktiviert
|
||||||
|
info.actuallyadditions.gui.up=Oben
|
||||||
|
info.actuallyadditions.gui.down=Unten
|
||||||
|
info.actuallyadditions.gui.north=Norden
|
||||||
|
info.actuallyadditions.gui.east=Osten
|
||||||
|
info.actuallyadditions.gui.south=Süden
|
||||||
|
info.actuallyadditions.gui.west=Westen
|
||||||
|
info.actuallyadditions.gui.all=Alle
|
||||||
|
info.actuallyadditions.gui.put=Put #line couldn't be translatet for grammatical reasons
|
||||||
|
info.actuallyadditions.gui.pull=Pull #line couldn't be translatet for grammatical reasons
|
||||||
|
info.actuallyadditions.gui.whitelist=Whitelist
|
||||||
|
info.actuallyadditions.gui.blacklist=Blacklist
|
||||||
|
info.actuallyadditions.gui.coffee=Kaffee
|
||||||
|
info.actuallyadditions.gui.ok=Ok
|
||||||
|
info.actuallyadditions.gui.the=the #line couldn't be translatet for grammatical reasons
|
||||||
|
info.actuallyadditions.inputter.info.1=This is the first Slot in the connected Inventory to <p> at. #line couldn't be translatet for grammatical reasons
|
||||||
|
info.actuallyadditions.inputter.info.2=This is the slot after the last Slot in the connected Inventory to <p> at. What that means: If you, for example, write 2 in the field to the left and 5 in this one, it will <p> at Slot 2, 3, and 4. #line couldn't be translatet for grammatical reasons
|
||||||
|
info.actuallyadditions.inputter.whitelistInfo=This applies for this part of the white-/blacklist. The other side applies as well, so you can have some Items whitelisted and some blacklisted. Note that, if you have an empty blacklist or an item whitelisted on at least one side, it will always go through. #line couldn't be translatet for grammatical reasons
|
||||||
|
info.actuallyadditions.noLens=Keine Neigungen
|
||||||
|
info.actuallyadditions.booklet.manualName.1=Actually Additions
|
||||||
|
info.actuallyadditions.booklet.manualName.2=Handbuch
|
||||||
|
info.actuallyadditions.booklet.edition=Auflage
|
||||||
|
|
||||||
|
#Container Names / Container-Namen
|
||||||
|
container.actuallyadditions.inputter.name=ESG
|
||||||
|
container.actuallyadditions.inputterAdvanced.name=Advanced ESG
|
||||||
|
container.actuallyadditions.grinder.name=Brecher
|
||||||
|
container.actuallyadditions.grinderDouble.name=Doppelter Brecher
|
||||||
|
container.actuallyadditions.furnaceDouble.name=Doppelter Ofen
|
||||||
|
container.actuallyadditions.feeder.name=Automatischer Füterer
|
||||||
|
container.actuallyadditions.giantChest.name=Lagerkiste
|
||||||
|
container.actuallyadditions.repairer.name=Reparierer
|
||||||
|
container.actuallyadditions.placer.name=Platzierer
|
||||||
|
container.actuallyadditions.breaker.name=Abbauer
|
||||||
|
container.actuallyadditions.dropper.name=Prezisionsspender
|
||||||
|
container.actuallyadditions.crafting.name=Mobile Werkbank
|
||||||
|
container.actuallyadditions.canolaPress.name=Rapspresse
|
||||||
|
container.actuallyadditions.fermentingBarrel.name=Fermentierungsfass
|
||||||
|
container.actuallyadditions.coalGenerator.name=Kohlegenerator
|
||||||
|
container.actuallyadditions.oilGenerator.name=Ölgenerator
|
||||||
|
container.actuallyadditions.phantomPlacer.name=Phantomplatzierer
|
||||||
|
container.actuallyadditions.phantomBreaker.name=Phantomabbauer
|
||||||
|
container.actuallyadditions.phantomface.name=Phantomoberfläche
|
||||||
|
container.actuallyadditions.liquiface.name=Liqui-Oberfläche
|
||||||
|
container.actuallyadditions.energyface.name=Energieoberfläche
|
||||||
|
container.actuallyadditions.fluidPlacer.name=Flüssigkeitenplatzierer
|
||||||
|
container.actuallyadditions.fluidCollector.name=Flüssigkeitenkollektor
|
||||||
|
container.actuallyadditions.coffeeMachine.name=Kaffeemaschine
|
||||||
|
container.actuallyadditions.drill.name=Bohrer
|
||||||
|
container.actuallyadditions.energizer.name=Energetisierer
|
||||||
|
container.actuallyadditions.enervator.name=Schwächer
|
||||||
|
container.actuallyadditions.xpSolidifier.name=Erfahrungsverdichter
|
||||||
|
container.actuallyadditions.cloud.name=Smiley-Wolke
|
||||||
|
container.actuallyadditions.directionalBreaker.name=Brecher (große Reichweite)
|
||||||
|
container.actuallyadditions.rangedCollector.name=Kollektor (große Reichweite)
|
||||||
|
container.actuallyadditions.miner.name=Senkrechter Diggah
|
||||||
|
|
||||||
|
#Update Information / Update-Informationen
|
||||||
|
info.actuallyadditions.update.generic=[{"text":"Es ist ein "},{"text":"Actually Additions","color":"dark_green"},{"text":"-Update verfügbar!","color":"none"}]
|
||||||
|
info.actuallyadditions.update.versionCompare=[{"text":"Verwendete Version: "},{"text":"%s","color":"dark_red"},{"text":", neuste Version: ","color":"none"},{"text":"%s","color":"dark_green"}]
|
||||||
|
info.actuallyadditions.update.buttons=[{"text":"["},{"text":"Klicke hier für den Changelog","color":"green","clickEvent":{"action":"open_url","value":"%s"}},{"text":"] [","color":"none"},{"text":"Klicke hier für den Download","color":"green","clickEvent":{"action":"open_url","value":"%s"}},{"text":"]","color":"none"}]
|
||||||
|
info.actuallyadditions.update.buttonOptions=Klick: Changelog, [Umschalt]-Klick: Download! (Im Browser)
|
||||||
|
info.actuallyadditions.update.failed=[{"text":"Die Überprüfung nach "},{"text":"Actually Additions","color":"dark_green"},{"text":"-Updates ist fehlgeschlagen! In den Logs findest du weite Informationen!","color":"none"}]
|
||||||
|
|
||||||
|
#Achievements / Erfolge
|
||||||
|
achievement.actuallyadditions.openBooklet=Geschrei des Wissens
|
||||||
|
achievement.actuallyadditions.openBooklet.desc=Öffne ein Actually Additions-Handbuch
|
||||||
|
|
||||||
|
achievement.actuallyadditions.nameSmileyCloud=Dein bester Freund
|
||||||
|
achievement.actuallyadditions.nameSmileyCloud.desc=Benenne eine Smiley-Wolke
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftPhantomface=Zoom, Zoom, Gegenstände!
|
||||||
|
achievement.actuallyadditions.craftPhantomface.desc=Fertige eine Phantomoberfläche an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.openTreasureChest=Verlies unter Wasser
|
||||||
|
achievement.actuallyadditions.openTreasureChest.desc=Offne eine Schatzkiste
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftLiquiface=Zoom, Zoom, Flüssigkeiten!
|
||||||
|
achievement.actuallyadditions.craftLiquiface.desc=Fertige eine Liqui-Oberfläche an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftEnergyface=Zoom, Zoom, RF!
|
||||||
|
achievement.actuallyadditions.craftEnergyface.desc=Fertige eine Phantom-Energie-Oberfläche an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftCoalGen=Furnace for cools
|
||||||
|
achievement.actuallyadditions.craftCoalGen.desc=Fertige einen Kohle-Generator an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftLeafGen=Mampf, Alter!
|
||||||
|
achievement.actuallyadditions.craftLeafGen.desc=Fertige einen blätterfressenden Generator an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftReconstructor=Bzrrrr etwas anderes
|
||||||
|
achievement.actuallyadditions.craftReconstructor.desc=Fertige einen Atomaren Umwandler an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftLaserRelay=Weitergeschoben, nicht aufgeschoben!
|
||||||
|
achievement.actuallyadditions.craftLaserRelay.desc=Fertige ein Laser-Relais an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftCrusher=Verdoppeln!
|
||||||
|
achievement.actuallyadditions.craftCrusher.desc=Fertige einen Brecher an.
|
||||||
|
|
||||||
|
achievement.actuallyadditions.pickUpCoffee=Macht dich süchtig
|
||||||
|
achievement.actuallyadditions.pickUpCoffee.desc=Ernte etwas Kaffee
|
||||||
|
|
||||||
|
achievement.actuallyadditions.craftCoffeeMachine=Sucht in Tassen
|
||||||
|
achievement.actuallyadditions.craftCoffeeMachine.desc=Fertige eine Kaffeemaschine an.
|
||||||
|
|
||||||
|
#Booklet Recipe Names / Rezept-Namen (Büchlein)
|
||||||
|
booklet.actuallyadditions.shapelessRecipe=Formloses Rezept
|
||||||
|
booklet.actuallyadditions.shapedRecipe=Geformtes Rezept
|
||||||
|
booklet.actuallyadditions.shapelessOreRecipe=Formloses OreDictionary-Rezept
|
||||||
|
booklet.actuallyadditions.shapedOreRecipe=Geformtes OreDictionary-Rezept
|
||||||
|
|
||||||
|
#Booklet Entries / Handbuch-Einträge
|
||||||
|
booklet.actuallyadditions.indexEntry.gettingStarted.name=Erste Schritte
|
||||||
|
booklet.actuallyadditions.indexEntry.misc.name=Verschiedenes
|
||||||
|
booklet.actuallyadditions.indexEntry.functionalNoRF.name=Blöcke, die nicht RF benutzen
|
||||||
|
booklet.actuallyadditions.indexEntry.allAndSearch.name=Alle Gegenstände und Suche
|
||||||
|
booklet.actuallyadditions.indexEntry.functionalRF.name=Blöcke, die RF benutzen
|
||||||
|
booklet.actuallyadditions.indexEntry.generatingRF.name=Blöcke, die RF herstellen
|
||||||
|
booklet.actuallyadditions.indexEntry.itemsNoRF.name=Gegenstände, die nicht RF benutzen
|
||||||
|
booklet.actuallyadditions.indexEntry.itemsRF.name=Gegenstände, die RF benutzen
|
||||||
|
|
||||||
|
#Booklet Info / Handbuch-Informationen
|
||||||
|
booklet.actuallyadditions.recipeDisabled=Das Rezept für diesen Gegenstand ist deaktiviert! Wenn du dich auf einem Server befindest, frage den Besitzer, es für dich zu aktivieren. Im Einzelspieler-Modus, kannst du einfach oben rechts auf 'Config öffnen' klicken und das Rezept aktivieren!
|
||||||
|
booklet.actuallyadditions.clickToSeeRecipe=Klicke, um weitere Informationen zu erhalten.
|
||||||
|
booklet.actuallyadditions.amountOfWords=%s Wörter insgesamt
|
||||||
|
booklet.actuallyadditions.amountOfChars=%s Zeichen insgesamt
|
||||||
|
|
||||||
|
#Booklet Chapters / Handbuch-Kapitel
|
||||||
|
booklet.actuallyadditions.chapter.intro.name=Einführung zu ActAdd
|
||||||
|
booklet.actuallyadditions.chapter.intro.text.1=<i>Für eine zu lange Zeit haben die Bewohner von Minecraftien unter der Gewalt einer unerbittlichen Peitsche geschuftet. Eine Peitsche so verletzend und schädlich: einfach lästig. Ja, die millionenfachen Lästigkeiten aus denen diese Plage besteht, die die Spieler dazu zwingt Stunden - nein, sogar Tage! - Bäume zu fällen, Weizen zu farmen und anderen solch stumpfsinnigen Tätigkeiten nachzugehen, nur um augenblicklich der erbarmungslosen Langeweile zu entfliehen und die wirklichen
|
||||||
|
booklet.actuallyadditions.chapter.intro.text.2=<i>Freuden in Minecraftien zu erleben, zu bauen und die tiefen und fernen Welten zu entdecken bis hin zum unerforschten Reichtum, der in dieser Welt steckt. Noch nicht früher ist jemand in diese kreative Unternehmung eingetaucht als die Unannehmlichkeiten zurückkehren, wie millionen rasende, lästige Bienen, stechend, um dich herum schwirred bis das Spiel aufhört Spaß zu machen, und du bist bis in alle Ewigkeit vertrieben. Zu diesem Zweck hat ein gewisser Ellpeck
|
||||||
|
booklet.actuallyadditions.chapter.intro.text.3=<i>dieses Actually Additions geschaffen, welches dem Spieler erlaubt, sich mehr mit den Kernerlebnissen Minecrafts zu beschäftigen - bauen und abenteuern - indem die Monotonie automatisiert und rationalisiert wird, die Minecraft plagt. Deshalb präsentiert dir Ellpeck demütig dieses Handbuch, welches dir die Funktionen dieser Modifikation zeigen und, ultimativ, dir erlauben wird, die Unbequemlichkeiten zu überwinden und Erleuchtung zu erlangen. <r><n> ~by <imp>Tulkas<r>
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.craftingIngs.name=Werkel-Zutaten
|
||||||
|
booklet.actuallyadditions.chapter.craftingIngs.text.1=<imp>Actually Additions<r> hat viele Gegenstände, die <imp>elementare Werkel-Gegenstände<r> benötigen um hergestellt zu werden. In diesem Kapitel sind diese alle <imp>gruppiert<r>, so kannst du sie alle auf einem Mal sehen.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.quartz.name=Schwarzer Quarz
|
||||||
|
booklet.actuallyadditions.chapter.quartz.text.1=<item>Schwarzer Quarz<r> ist ein <imp>Erz<r> welches in der Welt <imp>zwischen Ebene <lowest> und <highest><r> generiert. Wenn es abgebaut wurde, kann es <imp>in einem Ofen geschmolzen<r> or <imp>in einem Brecher gebrochen<r> werden.
|
||||||
|
booklet.actuallyadditions.chapter.quartz.text.2=Der Gegenstand <item>Schwarzer Quarz<r> wird in der <imp>Herstellung<r> vieler Dinge in <imp>Actually Additions<r> gebraucht. Sie sind sehr wichtig, un solten deswegen abgebaut werden, wenn sie gefunden werden. Aus ihnen lassen sich einige <imp>dekorative Blöcke<r> produzieren, welche auf den folgenden Seiten gezeigt werden. <n>Jede Variante kann auch zu <imp>Treppen, Stufen oder Wänden<r> weiterverarbeitet werden, indem man die gängigen Rezepte nutzt. <n><n><i>Nether-Quarz, nur tötlicher
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.cloud.name=Smiley-Wolke
|
||||||
|
booklet.actuallyadditions.chapter.cloud.text.1=Die <item>Smiley-Wolke<r> ist eine magisch schwebende Wolke, in die Leben durch ein kleines Stück Verdichtete Erfahrung eingehaucht wird. Sie schwebt an ihrem Platz hoch und runter, ganz heiter und fröhlich, mit einem <imp>Rechtsklick<r>kannst du ihr <imp>einen Namen geben<r>. <n>Wenn du ihr <imp>besondere Namen bibst,<r> wie beispielsweise <imp>"Ellpeck"<r> oder <imp>"AcidBlues"<r>, trägt sie ein paar besondere Gegenstände!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.coalStuff.name=Coal Stuff
|
||||||
|
booklet.actuallyadditions.chapter.coalStuff.text.1=Sometimes your <item>Coal<r> just <imp>burns for too long or too short<r>, you know what I mean? <n>For that, you can now craft <item>Tiny Coal<r>, <item>Tiny Charcoal<r> and <item>Blocks of Charcoal<r> for using them in a furnace. <n>While the <item>Block of Charcoal<r> burns for as long as a <item>Block of Coal<r>, the <item>Tiny Coal<r> and <item>Tiny Charcoal<r> will burn for <imp>one eighth of a piece of coal<r>, meaning it will <imp>smelt one item in a normal furnace<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.lamps.name=Lamps
|
||||||
|
booklet.actuallyadditions.chapter.lamps.text.1=<item>Lamps<r> are a block providing lots of light, similar to the mystic Glowstone or Torches, but they can be <imp>dyed with all of the 16 different colors<r> either by <imp>crafting them<r> or by placing them on the ground and <imp>right-clicking them with a piece of dye<r>. <n>When <imp>right-clicking<r> them with an empty hand, they will <imp>turn on and off<r>. If you want them, however, to be toggled using <item>Redstone<r> Power, just place a <item>Lamp Controller<r> next to one.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.treasureChest.name=Treasure Chests
|
||||||
|
booklet.actuallyadditions.chapter.treasureChest.text.1=A <item>Treasure Chest<r> found underwater.
|
||||||
|
booklet.actuallyadditions.chapter.treasureChest.text.2=<item>Treasure Chests<r> are a semi-uncommon occurence <imp>in Ocean Biomes<r>. They appear on the bottom of the sea, probably left there by bypassing Ships who threw off or lost some load. These Chests however, <imp>hold some valuable items<r>, if you're lucky. Breaking them won't yield you anything, though, you just have to <imp>right-click them<r> to receive some amazing goodies.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.breaker.name=Breakers and Placers
|
||||||
|
booklet.actuallyadditions.chapter.breaker.text.1=The <item>Breaker<r> breaks blocks in front of it. It can be oriented in every direction. <n>When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
booklet.actuallyadditions.chapter.breaker.text.2=The <item>Placer<r> places blocks in front of it. It can be oriented in every direction. <n>When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
booklet.actuallyadditions.chapter.breaker.text.3=The <item>Liquid Placer<r> places liquids you supply it with. It needs <imp>1000mB<r> to place one block. When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
booklet.actuallyadditions.chapter.breaker.text.4=The <item>Liquid Collector<r> will collect <imp>1000mB<r> of liquids in front of it, that's a filled bucket. When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.name=Phantomfaces
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.text.1=<item>Phantomfaces<r> are a simple way to <imp>connect inventories together<r>, they have a very important twist however: Instead of just connecting two inventories, a <item>Phantomface<r> <imp>simulates the inventory it is connected to<r>, meaning you can put items into and pull out of the Phantomface itself. A <item>Phantomface<r> has a <imp>default range of <range> blocks<r>, but it can be upgraded with a <item>Phantom Booster<r>. <item>Phantomfaces<r> are connected by <imp>right-clicking<r> an inventory with a <item>Phantom Connector<r> and then <imp>right-clicking<r> the <item>Phantomface.
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.text.2=<imp>Important Information:<r><n>It should be noted that the Phantomface is <imp>not<r> supposed to be <imp>used as a wireless transport<r> system. <n>The Phantomface should be used when, for example, wanting to input items into a machine that doesn't have enough space for the amount of cables you need around it, or when you want it to look nice in a room without needing any cables or other blocks around it. <n><n><i>It's not a short-range Tesseract.
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.text.3=The default <item>Phantomface<r> works for items, like described on the first page.
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.text.4=The <item>Phantom Liquiface<r> acts exactly like the normal <item>Phantomface<r>, but it <imp>works for liquid containing blocks<r>. When given a <imp>Redstone Signal<r>, it can be set to <imp>Auto-Output<r>. Be careful with this though, as it <imp>could cause infinte loops and lag<r> under certain conditions!
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.text.5=The <item>Phantom Energyface<r> acts exactly like the normal <item>Phantomface<r>, but it <imp>works for RF<r>, meaning you can connect it to things like Generators and Crushers.
|
||||||
|
booklet.actuallyadditions.chapter.phantomfaces.text.7=The <item>Phantom Booster<r>, as explained on the first page, ups the range of <item>Phantomface<r>s by being placed <imp>on top of them<r>. The maximum amount above one <item>Phantomface<r> is <imp>3<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.phantomBreaker.name=Phantom Breakers & Placers
|
||||||
|
booklet.actuallyadditions.chapter.phantomBreaker.text.1=<item>Phantom Breakers<r> and <item>Placers<r> work similarly to the normal <item>Phantomfaces<r>, except that they are used to <imp>break and place blocks from a distance<r>. Their default range is <imp><range> Blocks<r>. To connect them to blocks to break, do as described in the <imp>Phantomface Chapter<r>. When connecting them to air spaces, just place a block, store it and then break it again. <n>When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.esd.name=ESDs
|
||||||
|
booklet.actuallyadditions.chapter.esd.text.1=The <item>ESD<r> is a block that works <imp>similar to a Hopper<r> but has <imp>a lot more functionality<r>. <n>You can choose the sides to input and output and you can <imp>precisely configure<r> the range of slots to look at! <n>For more precise information about <item>ESDs<r>, craft one and <imp>hover over the elements in their GUI<r>! <n><n><i>Its actual name is
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.xpSolidifier.name=Experience Solidifier
|
||||||
|
booklet.actuallyadditions.chapter.xpSolidifier.text.1=The <item>Experience Solidifer<r> uses the player's experience and turns it into <item>Solidified Experience<r> which can later be used by <imp>right-clicking<r> to get the experience you stored into Item form back onto your character. <n>This is a safe and easy way to store your experience so that it isn't getting lost when you die. <n><item>Solidified Experience<r> also drops from Monsters sometimes as an Extra.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.greenhouseGlass.name=Greenhouse Glass
|
||||||
|
booklet.actuallyadditions.chapter.greenhouseGlass.text.1=<item>Greenhouse Glass<r> is a very effective way to <imp>speed up the growth of your plants<r>! When placed anywhere above the plant, as long as there are no blocks below obstructing the path, and there is sunlight above the glass, it will <imp>significantly speed up the growth of the plant<r>! <n>It obviously has to be daytime, too. Thought that was obvious.
|
||||||
|
booklet.actuallyadditions.chapter.greenhouseGlass.text.2=<i>Greenhouse Gas
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.fishingNet.name=Fishing Net
|
||||||
|
booklet.actuallyadditions.chapter.fishingNet.text.1=The <item>Fishing Net<r> is a block that makes fishing a lot easier! Just <imp>place it above some water<r> and it will, given a little bit of time, automatically catch fish for you! To store the fish, just place a chest above the <item>Fishing Net<r> or let the items spew out of the top and collect them manually. <n><n><i>For the impatient
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.feeder.name=Feeder
|
||||||
|
booklet.actuallyadditions.chapter.feeder.text.1=The <item>Feeder<r> is a good alternative to a manual animal farm. Place it in the middle of an animal pen and supply it with some wheat, seeds or carrots, depending on the animal you want to feed, and just wait. It will <imp>automatically feed the animals<r> and if there is enough animals near it, it will <imp>shut off on its own<r> to prevent lag or animal overflow. <n><n><i>Greenpeace approves
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.compost.name=Compost and Fertilizer
|
||||||
|
booklet.actuallyadditions.chapter.compost.text.1=The <item>Compost<r> is used to make <item>Fertilizier<r> from <item>Mashed Food<r>. <item>Fertilizer<r> acts just like Bone Meal, but can be crafted in a much simpler manner just by crafting <item>Mashed Food<r> and then putting <num> of those inside of a <item>Compost<r> and waiting for a bit. When the mashed food is composted, just take it out by right-clicking again.
|
||||||
|
booklet.actuallyadditions.chapter.compost.text.3=<item>Mashed Food<r> can be crafted from <imp>any type of food or plantable item<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.crate.name=Storage Crates
|
||||||
|
booklet.actuallyadditions.chapter.crate.text.1=<item>Storage Crates<r> are big. <imp>Really big<r>. They hold tons of items, more than 4 chests worth of them.
|
||||||
|
booklet.actuallyadditions.chapter.crate.text.2=Placing a <item>Storage Crate Keeper<r> inside the Storage Crate before breaking it will cause it to <imp>keep all of its items<r>, however the Keeper will be destroyed upon placing the Crate back down.
|
||||||
|
booklet.actuallyadditions.chapter.crate.text.3=The <item>Chest To Storage Crate Upgrade<r> allows you to <imp>convert any chest into a Storage Crate<r>, retaining its items! <n>Just <imp>shift-right-click<r> onto the chest to apply it.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.coffeeMachine.name=Coffee Machine
|
||||||
|
booklet.actuallyadditions.chapter.coffeeMachine.text.1=The <item>Coffee Machine<r> is a block used to make <item>Coffee<r>, a <imp>potion-like<r> item that gives the user several buffs. <n>To use the coffee machine, you need a <item>Empty Cup<r>, <coffee> <item>Coffee Beans<r>, which can be found in the wild, harvested and <imp>planted on farmland<r> again, <rf> RF/t and <water>mB of Water per cup brewed. <n>On the coffee machine recipe pages at the back, to see what the item does, just hover over the Cup of Coffee.
|
||||||
|
booklet.actuallyadditions.chapter.coffeeMachine.text.2=To actually give your coffee some buffs, <imp>put some of the items shown on the later pages into the slots on the right<r>. <n>The more slots are filled up with one item, the higher the <imp>Amplifier<r> of the effect will be. The <imp>Maximum Amplifier<r> is the max amount of items to be put into one coffee. <n>Order matters: When using, for example, <item>Milk<r> (to see what it does exactly, go to a later page), you are going to have to plan the items out inside the <imp>numbered slots<r> in such a way that it brews the coffee you want.
|
||||||
|
booklet.actuallyadditions.chapter.coffeeMachine.text.3=This is an example of a recipe making a coffee containing <imp>Fire Resistance 1 for 0:20<r> and <imp>Speed 1 for 2:30<r>.
|
||||||
|
booklet.actuallyadditions.chapter.coffeeMachine.text.6=<item>Milk<r> is an important item when brewing coffee: It <imp>adds 2 minutes<r> to all effects of items in slots with lower numbers while <imp>removing 1 amplifier<r>. When the amplifier of an effect is 1, however, it will remove the effect.
|
||||||
|
booklet.actuallyadditions.chapter.coffeeMachine.text.7=<i>The fact that you're reading this means that you either have <imp>HarvestCraft<r><i> installed, or that you're looking at the lang file. <r><n>This does the same thing as <item>Milk<r>, but for veggie guys.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.crusher.name=Crusher and Double Crusher
|
||||||
|
booklet.actuallyadditions.chapter.crusher.text.1=The <item>Crusher<r> turns every ore, ingot and gem into its corresponding <imp>dust<r> using <rf1> RF/t. <n>When you put in <imp>Ores<r> however, they will yield <imp>2 pieces of dust<r>. <n>The <item>Double Crusher<r> basically does the same, however it can crush two ores at a time and uses <rf2> RF/t. <n>On the following pages, you can see some additional useful recipes for inside the crusher. <n><n><i>He's my crush
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.furnaceDouble.name=Double Furnace
|
||||||
|
booklet.actuallyadditions.chapter.furnaceDouble.text.1=The <item>Double Furnace<r> works like a furnace, however, it uses <rf> RF/t and can smelt <imp>two items at a time<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.lavaFactory.name=Lava Factory
|
||||||
|
booklet.actuallyadditions.chapter.lavaFactory.text.1=The <item>Lava Factory<r> can produce blocks of lava given <imp><rf> RF/block<r>. <n>The Block above it has to be surrounded with 4 Casing Blocks, otherwise it won't be able to produce Lava. <n>Right-Clicking on the <item>Lava Factory<r> will show you if it's able to produce Lava in its current setup. <n><n><i>Lava, for a fact. <n> ory
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.energizer.name=Energizer and Enervator
|
||||||
|
booklet.actuallyadditions.chapter.energizer.text.1=The <item>Energizer<r> <imp>charges items that hold RF<r> using its energy supply.
|
||||||
|
booklet.actuallyadditions.chapter.energizer.text.2=The <item>Enervator<r> <imp>discharges items that hold RF<r> and stores the energy in its energy supply.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.repairer.name=Item Repairer
|
||||||
|
booklet.actuallyadditions.chapter.repairer.text.1=The <item>Item Repairer<r> uses <imp><rf> RF/t<r> to repair items that can be repaired in an Anvil <imp>without needing any materials<r>!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.coalGen.name=Coal Generator
|
||||||
|
booklet.actuallyadditions.chapter.coalGen.text.1=The <item>Coal Generator<r> generates <imp><rf> RF/t<r> through the use of everything that can be put into a furnace. <n>Note that it only starts burning something up if there's enough space for the energy generated.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.solarPanel.name=Solar Panel
|
||||||
|
booklet.actuallyadditions.chapter.solarPanel.text.1=The <item>Solar Panel<r> <imp>produces <rf> RF/t<r> when it has direct daylight above it and it is daytime. <n><n><i>Panelled walls
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.heatCollector.name=Heat Collector
|
||||||
|
booklet.actuallyadditions.chapter.heatCollector.text.1=The <item>Heat Collector<r> is a block that <imp>produces <rf> RF/t<r>. <n>To do that, it needs to be <imp>surrounded with at least <min> Lava Blocks<r> directly around it on any side except the top one. But watch out, it sometimes <imp>destroys some of these Lava Blocks<r>!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.canola.name=Everything Canola
|
||||||
|
booklet.actuallyadditions.chapter.canola.text.1=There is lots of stuff that can be produced from Canola (which can be found in the wild and then planted and harvested!): You can make <imp>Canola Oil<r>, <imp>Oil<r> and produce <imp>RF<r> from it. <n>The way to do that is to take some <item>Canola, put it into a <item>Canola Press<r> which uses <pressRF> RF/t. That creates <imp><canola> mB of Canola Oil<r>. Put that into a <item>Fermenting Barrel<r>, let it sit there for a while before it converts into <imp>Oil<r>. That oil can then be used in a <item>Oil Generator<r> to create <imp><rf> RF/t<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.wings.name=Wings Of The Bats
|
||||||
|
booklet.actuallyadditions.chapter.wings.text.1=Sometimes, bats will drop <item>Wings<r>. These wings can't really be used to fly, but that's just because they're not powerful enough. <n>To make them more powerful, you can craft <item>Wings Of The Bats<r>. When you have these in your inventory, they will allow you to <imp>fly like in creative mode<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.foods.name=Foodstuffs
|
||||||
|
booklet.actuallyadditions.chapter.foods.text.1=Yes, this is <item>Bacon<r>. Don't try naming it <imp>Ellspeck<r>. <n><n><i>Please, just don't.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.leafBlower.name=Leaf Blowers
|
||||||
|
booklet.actuallyadditions.chapter.leafBlower.text.1=The <item>Leaf Blower<r> can blow away tall grass, flowers and other stuff around you when you <imp>hold right-click<r>. There is an <item>Advanced Leaf Blower<r>, which works like the basic one, except that it operates <imp>much faster<r> and <imp>also breaks Leaves<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.aiots.name=All-In-One-Tools (AIOTs)
|
||||||
|
booklet.actuallyadditions.chapter.aiots.text.1=An <item>All-In-One-Tool<r> is a tool that is <imp>Pickaxe, Axe, Shovel, Sword and Hoe in one<r>. They are available in every material and if you have <imp>Thermal Foundation<r> or <imp>MekanismTools<r> installed, there are even AIOTs made of their materials!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.jams.name=Jams
|
||||||
|
booklet.actuallyadditions.chapter.jams.text.1=Once, there was a <imp>Kitty<r> who really wanted some Jam. <n>So I made some <item>Jam<r>. <n>Seriously, this is Jam. You can find it in Village Houses or buy it from the <imp>Jam Villager<r>. <n>Every Jam gives you two different <imp>potion effects<r>!
|
||||||
|
booklet.actuallyadditions.chapter.jams.text.2=A <imp>Jam House<r> and <n>its inhabitant
|
||||||
|
booklet.actuallyadditions.chapter.jams.text.3=So. <n>You're probably wondering what the names of the jams mean. <n>Now, let me tell you: <n><n><i>-Honeydew Melon and Kiwi <n>-Honeydew Melon and Coconut <n>-Pineapple and Coconut <n>-Cherry, Apple and Cinnamon <n>-Plum, Apple and Lemon <n>-Grape, Kiwi and Banana <n>-Currant, Banana and Raspberry <n><n><r>Now, which one is which, you may ask? Figure it out yourself.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.potionRings.name=Potion Rings
|
||||||
|
booklet.actuallyadditions.chapter.potionRings.text.1=The <item>Potion Rings<r> have two versions: A <imp>normal version<r> and an <imp>advanced version<r>. <n>The normal version, when you have it in your hand, will give you a <imp>Potion Effect<r> of Level 1. The advanced version can be anywhere in your inventory and gives you an effect of Level 2!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.drill.name=Drills
|
||||||
|
booklet.actuallyadditions.chapter.drill.text.1=The <item>Drill<r> works like a Pickaxe and a Shovel. It uses <imp>RF<r> per block. It can be <imp>charged in an Energizer<r> and upgraded by <imp>right-clicking<r> with it in your hand. There is <imp>a lot of upgrades<r>, but here is an explanation of some of them: <n>The <item>Mining Uprgades<r> enlarge the hole which the Drill digs. <n>The <item>Placement Upgrade<r>, after you right-click it in any slot of your hotbar, will make the Drill able to <imp>place a block from that slot by right-clicking<r>. You can also put a <item>Battery<r> inside the Drill to give it more charge.
|
||||||
|
booklet.actuallyadditions.chapter.drill.text.3=The <item>Drill<r> can also be <imp>dyed<r> in Minecraft's 16 colors. <n>It's only cosmetic and won't have any effect other than it looking different, however.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.staff.name=Staff
|
||||||
|
booklet.actuallyadditions.chapter.staff.text.1=The <item>Teleport Staff<r>, when charged in an Energizer, can be <imp>right-clicked<r> to <imp>teleport you to where you're looking<r>. When you are looking at a block, it will teleport you there, however, when you aren't looking at a block, you can only be looking upwards up to <imp>5 degrees<r>, otherwise the teleport will fail.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.magnetRing.name=Ring Of Magnetism
|
||||||
|
booklet.actuallyadditions.chapter.magnetRing.text.1=The <item>Ring Of Magnetism<r>, when it is charged in an Energizer and inside your inventory, uses <imp>RF<r> to suck up items that are farther away than you can pick up by yourself.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.growthRing.name=Ring Of Growth
|
||||||
|
booklet.actuallyadditions.chapter.growthRing.text.1=The <item>Ring Of Growth<r>, when it is charged in an Energizer and in your hand, uses <imp>RF<r> to make plants around you grow much faster.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.waterRemovalRing.name=Ring Of Liquid Banning
|
||||||
|
booklet.actuallyadditions.chapter.waterRemovalRing.text.1=The <item>Ring Of Liquid Banning<r>, when it is charged in an Energizer and in your hand, uses <imp>RF<r> to remove <imp>Lava<r> and <imp>Water<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.batteries.name=Batteries
|
||||||
|
booklet.actuallyadditions.chapter.batteries.text.1=<item>Batteries<r> are a good way to store RF to move around. They can be <imp>charged in an Energizer<r> and <imp>discharged in an Enervator<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.leafGen.name=Leaf-Eating Generator
|
||||||
|
booklet.actuallyadditions.chapter.leafGen.text.1=The <item>Leaf Generator<r> can generate <imp>RF<r> just by being placed alongside some <item>Leaves<r>. <n>It will destroy the leaves, generating <imp><rf> RF per leaf broken<r> in the process. <n>By right-clicking the generator, you can see how much RF it has stored. <n>It has a <imp>range of <range><r> blocks.
|
||||||
|
booklet.actuallyadditions.chapter.leafGen.text.2=<i>Munchy
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.longRangeBreaker.name=Long-Range Breaker
|
||||||
|
booklet.actuallyadditions.chapter.longRangeBreaker.text.1=The <item>Long-Range Breaker<r> works like a normal <item>Breaker<r>, but it can break <imp>up to <range> blocks in front of it<r>. <n>Per block broken, it uses <imp><rf> RF<r>. <n>When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>. <n><n><i>Breaking the <range>th wall
|
||||||
|
booklet.actuallyadditions.chapter.longRangeBreaker.text.2=<i>Sequence Breaking
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.dropper.name=Automatic Precision Dropper
|
||||||
|
booklet.actuallyadditions.chapter.dropper.text.1=The <item>Automatic Precision Dropper<r> works much like a normal dropper, but it will drop items <imp>without needing a Redstone Signal<r>. <n>It also won't spit them out all over the ground, but it will <imp>drop them straight into the direction you point it at<r>! <n>When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.rangedCollector.name=Ranged Collector
|
||||||
|
booklet.actuallyadditions.chapter.rangedCollector.text.1=The <item>Ranged Collector<r> works much like a hopper, in that it <imp>collects items around it<r>, having the power, however, to pick up items that are in an area of <imp><range> blocks<r> around it. <n>It has a <imp>filter<r> that can be set to <imp>white- or blacklist<r>. <n>This comes with a disadvantage, however: It doesn't auto-output its items.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.hairBalls.name=Ball of Fur-s
|
||||||
|
booklet.actuallyadditions.chapter.hairBalls.text.1=<item>Balls of Fur<r> dropped by <imp>live<r> cats. <n>More information on the next page.
|
||||||
|
booklet.actuallyadditions.chapter.hairBalls.text.2=<item>Balls of Fur<r> are an item rarely dropped by <imp>cats<r> which have been <imp>tamed<r> by the player. <n>Cats are very mysterious creatures as they <imp>appear to get everything stuck in their fur<r>. <item>Balls of Fur<r> may seem disgusting at first, but when removing all of the hair by <imp>right-clicking<r>, they will reveal some <imp>valuable items<r>. <n>Or just some String. <n><n><n><i>FUURRRRRR!!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.laserRelays.name=Laser Relays
|
||||||
|
booklet.actuallyadditions.chapter.laserRelays.text.1=The <item>Laser Relay<r> is a block that can <imp>wirelessly transfer RF<r> just by being connected with a <item>Laser Wrench<r>, generating a network. <n>When placing a Power Generator or Receiver next to the relay, it can receive Power <imp>from any other relay<r> in the network. <n>Two relays can be at most <range> blocks apart. <n>During an energy transfer, they have an <imp>Energy Loss<r> of <loss>%.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.blackLotus.name=Black Lotus
|
||||||
|
booklet.actuallyadditions.chapter.blackLotus.text.1=Think of this: <n>You need to craft <imp>black wool<r>, <imp>black clay<r> or anything else that <imp>needs black dye<r> but you are just guilty about killing so many <imp>innocent squids<r>? <n>Well, the <item>Black Lotus<r> is exactly the thing you need! <n>Just look around <imp>in the wild<r> a bit, and you will find one, then being able to craft some <item>Black Dye<r> that can be used <imp>instead of Ink Sacs<r> so that you don't need to kill poor squids and L any longer.
|
||||||
|
booklet.actuallyadditions.chapter.blackLotus.text.2=<i>No, not that one, Vaz
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.crystals.name=Crystals and Reconstructor
|
||||||
|
booklet.actuallyadditions.chapter.crystals.text.1=The <item>Atomic Reconstructor<r> is used to craft <item>Crystals<r>, which are the main crafting ingredient in most items from <imp>Actually Additions<r>. <n>Upon being supplied with power, it shoots out a Laser. <tifisgrin>When the Laser hits a block<r>, it will convert all surrounding items and blocks, provided they can be converted. <n>When shooting a laser, it uses <imp><rf> RF<r>, but additional rates vary depending on the conversion.
|
||||||
|
booklet.actuallyadditions.chapter.crystals.text.2=There are various <item>Lenses<r> that can be attached to the Reconstructor that don't all follow the default behavior of the Reconstructor and are able to do some neat things. <n>See the <imp>"Reconstructor Lenses & Misc"<r> chapter in the booklet's Miscellaneous section <imp>for more information<r>. <n><n>When right-clicking the Reconstructor with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
booklet.actuallyadditions.chapter.crystals.text.3=It should be noted that any recipes listed without information about Lenses <imp>don't use one<r>. <n><i>I thought that was obvious.
|
||||||
|
booklet.actuallyadditions.chapter.crystals.text.5=When you have crafted a couple of items, you might want to find a way to <imp>automate this<r>. <n>There is a very simple way to do accomplish this: <n>Place the <item>Atomic Reconstructor<r> down facing into a <item>Precision Dropper<r> (to find it, look it up in the <imp>All Items and Search<r> Entry!). <n>Next, place a <item>Ranged Collector<r> in the area that has the converted items set as a whitelist. <n>Now you can just chuck your raw materials into the Dropper to convert them!
|
||||||
|
booklet.actuallyadditions.chapter.crystals.text.6=<n><n><n><i>Molecular Transformilator
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.bookTutorial.name=Intro to the Manual
|
||||||
|
booklet.actuallyadditions.chapter.bookTutorial.text.1=The <item>Actually Additions Manual<r> is very versatile. Here is a quick overview: <n><imp>Entries & Chapters<r><n>An Entry is a general topic while a Chapter is almost always pointed to a specific item. When closing a chapter, the index opens, when closing that, the front page will. <n><imp>Bookmarks<r><n>Bookmarks, as seen on the bottom of the booklet, store the current page when clicked and can restore said page when clicked again. This can be very useful for easy navigation.
|
||||||
|
booklet.actuallyadditions.chapter.bookTutorial.text.2=<imp>The Buttons at the top right<r> lead you to the Achievements or Configuration Screen. When looking at a chapter that is somehow connected to an achievement, a speech bubble that you can hover over to see the Achievement in question will point to the Achievements Button. <n><imp>The Buttons on the top left<r> can be used to be directed to various Webpages that have to do with the mod. <n>When an update is available, a button to download it will also show up on the top left.
|
||||||
|
booklet.actuallyadditions.chapter.bookTutorial.text.3=If you, for some reason, want to craft this book again, just take a <item>piece of paper<r> and a <item>canola seed<r> which you can find randomly generated and craft them together!
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.bookStand.name=Manual Stand
|
||||||
|
booklet.actuallyadditions.chapter.bookStand.text.1=The <item>Manual Stand<r> is a block that is supposed to mainly be used on <imp>Servers<r>. <n>You can, provided you are the person who <imp>placed it down<r>, set a page in the GUI that will <imp>open when someone else accesses it<r> by pressing the "Set Page"-button while being on the desired page. <n>The Manual Stand <imp>does not save<r> pages another player navigated to, meaing re-accessing the Stand will cause it to always <imp>end up on the page speficied<r> by the placer.
|
||||||
|
booklet.actuallyadditions.chapter.bookStand.text.2=<n><n><n><i>Stand on it
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.reconstructorLenses.name=Reconstructor Lenses & Misc
|
||||||
|
booklet.actuallyadditions.chapter.reconstructorLenses.text.1=The <item>Atomic Reconstructor<r>, by default, can only convert some blocks. <n>This can be changed, however, with <item>Lenses<r>. They can be, once crafted, attached to the Reconstructor via <imp>right-clicking<r> the Reconstructor with them in hand. To remove them, right-click it with an empty hand. <n><item>Lenses<r> have lots of different features and uses, as you can see on <imp>the following pages<r>. <n>However, there is also some <imp>other useful recipes<r> to be found there too.
|
||||||
|
booklet.actuallyadditions.chapter.reconstructorLenses.text.3=The <item>Lens of Color<r> changes the color of <imp>Stained Glass and Panes, Stained Clay, Carpetet, Dye, Lamps, Wool<r> in its sight. <n>Contrary to using no lens, it goes <imp>through blocks<r> and only converts blocks it touches.
|
||||||
|
booklet.actuallyadditions.chapter.reconstructorLenses.text.4=The <item>Lens of Detonation<r> will create a firey explosion <imp>around the block the laser hits<r>. <n>Be careful with this. Seriously. <n>(With this lens, the laser also goes 3 times as far!)
|
||||||
|
booklet.actuallyadditions.chapter.reconstructorLenses.text.5=The <item>Lens of Certain Death<r> will, <imp>deal lots of damage<r> to whatever steps into it, enough, in fact, to kill a player <imp>in a single hit<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.name=Some Decor
|
||||||
|
booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.text.1=Sometimes, when you build, you notice there is just <imp>not enough decor blocks<r>. Well, we present to you: <item>Ethetic Blocks<r>! <n>These are some quartz-like decor blocks with lovely patterns that can also be <imp>converted<r> into <imp>Stairs<r>, <imp>Slabs<r> and <imp>Walls<r> using the usual, well-known recipe patterns.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.miner.name=Vertical Digger
|
||||||
|
booklet.actuallyadditions.chapter.miner.text.1=The <item>Vertical Digger<r> can be used to automatically <imp>mine blocks<r> from the world. <n>It has two modes: It can either <imp>only mine ores<r> or <imp>mine everything<r>. When mining a block, it uses about <rf> RF. <n>Mined items get stored in an internal buffer that can be accessed through right-clicking. <n><n>Its default radius is <range>, but much like Phantomfaces, the Digger's range can be upgraded by placing 3 or less <item>Phantom Boosters<r> above it.
|
||||||
|
booklet.actuallyadditions.chapter.miner.text.2=(Works with any colored Drill) <n><n><n><n><n><i>I dig it
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.fireworkBox.name=Firework Box
|
||||||
|
booklet.actuallyadditions.chapter.fireworkBox.text.1=The <item>Firework Box<r> is a perfect thing for New Year's! When placed down and supplied with some <imp>RF<r>, it will shoot out some <imp>randomly generated<r> <item>Fireworks<r> around it. <n>For each shot, it uses <rf> RF. <n><n><i>You know, Vanilla Fireworks are just too bloody annoying to craft, but too awesome not to use. So here's the solution.
|
||||||
|
booklet.actuallyadditions.chapter.fireworkBox.text.2=When right-clicking it with a <item>Redstone Torch<r> in hand, it will change between a mode where it <imp>gets deactivated by Redstone<r> and a mode where it <imp>responds to pulses<r>.
|
||||||
|
|
||||||
|
booklet.actuallyadditions.chapter.rf.name=RF (Redstone Flux)
|
||||||
|
booklet.actuallyadditions.chapter.rf.text.1=For anyone who hasn't used much of a mod that uses <imp>RF<r> yet, here's a quick explanation. <n><imp>Redstone Flux<r>, or RF for short, is a power system used by many mods. <n>The basic concept is is that lots of machines generate or use it <imp>every game tick<r>. That's what <imp>RF/t<r> means. <n>To connect a power generating (thus, outputting) machine to one that needs (thus, receives) power, just <imp>place it next to it<r>. <n><n><i>What's a fourth wall?
|
1080
src/main/resources/assets/actuallyadditions/lang/en_US.lang
Normal file
1080
src/main/resources/assets/actuallyadditions/lang/en_US.lang
Normal file
File diff suppressed because it is too large
Load diff
1024
src/main/resources/assets/actuallyadditions/lang/zh_CN.lang
Normal file
1024
src/main/resources/assets/actuallyadditions/lang/zh_CN.lang
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue