diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/FluidAA.java b/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/FluidAA.java index 7c0922dd2..c1bd9b6ff 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/FluidAA.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/FluidAA.java @@ -17,7 +17,7 @@ import net.minecraftforge.fluids.Fluid; public class FluidAA extends Fluid{ 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 diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/InitFluids.java b/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/InitFluids.java index 915bb4847..dd09fcbba 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/InitFluids.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/fluids/InitFluids.java @@ -44,7 +44,7 @@ public final class InitFluids{ } 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.addBucketForFluid(fluid); diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemAllToolAA.java b/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemAllToolAA.java index 3f9ed901a..82a73cecf 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemAllToolAA.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemAllToolAA.java @@ -58,7 +58,7 @@ public class ItemAllToolAA extends ItemToolAA implements IColorProvidingItem{ @Override 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"); } diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/misc/DungeonLoot.java b/src/main/java/de/ellpeck/actuallyadditions/mod/misc/DungeonLoot.java index 1b47bace9..e9842e6fa 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/misc/DungeonLoot.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/misc/DungeonLoot.java @@ -31,8 +31,8 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class DungeonLoot{ - 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 JAM_HOUSE = new ResourceLocation(ModUtil.MOD_ID, "jamHouse"); + public static final ResourceLocation LUSH_CAVES = new ResourceLocation(ModUtil.MOD_ID, "lushCaves"); public DungeonLoot(){ LootTableList.register(JAM_HOUSE); diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/misc/SoundHandler.java b/src/main/java/de/ellpeck/actuallyadditions/mod/misc/SoundHandler.java index e4353d73f..bf5959b59 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/misc/SoundHandler.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/misc/SoundHandler.java @@ -35,7 +35,7 @@ public final class SoundHandler{ } 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.REGISTRY.register(size, resLoc, event); diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/proxy/ClientProxy.java b/src/main/java/de/ellpeck/actuallyadditions/mod/proxy/ClientProxy.java index f8b62daee..e9ae0a897 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/proxy/ClientProxy.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/proxy/ClientProxy.java @@ -107,8 +107,7 @@ public class ClientProxy implements IProxy{ @Override 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(lowerLocation, variant)); + MODEL_LOCATIONS_FOR_REGISTERING.put(stack, new ModelResourceLocation(location, variant)); } @Override diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java b/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java index 0998f10b5..96a8f82a5 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/util/AssetUtil.java @@ -41,7 +41,7 @@ public final class AssetUtil{ public static final ResourceLocation GUI_INVENTORY_LOCATION = getGuiLocation("guiInventory"); 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){ diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json b/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json new file mode 100644 index 000000000..2519848bd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockAtomicReconstructor.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockBioReactor.json b/src/main/resources/assets/actuallyadditions/blockstates/blockBioReactor.json new file mode 100644 index 000000000..58438052b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockBioReactor.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockBioReactor" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockBlackLotus.json b/src/main/resources/assets/actuallyadditions/blockstates/blockBlackLotus.json new file mode 100644 index 000000000..746308517 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockBlackLotus.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cross", + "textures": { + "cross": "actuallyadditions:blocks/blockBlackLotus" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockBookletStand.json b/src/main/resources/assets/actuallyadditions/blockstates/blockBookletStand.json new file mode 100644 index 000000000..23f14b719 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockBookletStand.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockBreaker.json b/src/main/resources/assets/actuallyadditions/blockstates/blockBreaker.json new file mode 100644 index 000000000..141e4d1a9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockBreaker.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCanola.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCanola.json new file mode 100644 index 000000000..292029962 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCanola.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCanolaPress.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCanolaPress.json new file mode 100644 index 000000000..b640a6e05 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCanolaPress.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockCanolaPress", + "textures": { + "particle": "actuallyadditions:blocks/blockCanolaPress" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzSlab.json b/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzSlab.json new file mode 100644 index 000000000..61816ef58 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzSlab.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzStair.json b/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzStair.json new file mode 100644 index 000000000..e64773e72 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzStair.json @@ -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 } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzWall.json b/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzWall.json new file mode 100644 index 000000000..e0fb94fbe --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockChiseledQuartzWall.json @@ -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 } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json new file mode 100644 index 000000000..381ca3f04 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCoalGenerator.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCoffee.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCoffee.json new file mode 100644 index 000000000..e5e4e9fe7 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCoffee.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCoffeeMachine.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCoffeeMachine.json new file mode 100644 index 000000000..e5a656040 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCoffeeMachine.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockColoredLamp.json b/src/main/resources/assets/actuallyadditions/blockstates/blockColoredLamp.json new file mode 100644 index 000000000..141db12a5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockColoredLamp.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockColoredLampOn.json b/src/main/resources/assets/actuallyadditions/blockstates/blockColoredLampOn.json new file mode 100644 index 000000000..04f4cd249 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockColoredLampOn.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCompost.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCompost.json new file mode 100644 index 000000000..fa7aee26b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCompost.json @@ -0,0 +1,11 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockCompost", + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCrystal.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCrystal.json new file mode 100644 index 000000000..762a9aab9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCrystal.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockCrystalEmpowered.json b/src/main/resources/assets/actuallyadditions/blockstates/blockCrystalEmpowered.json new file mode 100644 index 000000000..1b8c08c23 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockCrystalEmpowered.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockDirectionalBreaker.json b/src/main/resources/assets/actuallyadditions/blockstates/blockDirectionalBreaker.json new file mode 100644 index 000000000..17b37d272 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockDirectionalBreaker.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json b/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json new file mode 100644 index 000000000..8afed312d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockDisplayStand.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockDisplayStand", + "textures": { + "particle": "actuallyadditions:blocks/blockGiantChestTop" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockDistributorItem.json b/src/main/resources/assets/actuallyadditions/blockstates/blockDistributorItem.json new file mode 100644 index 000000000..aa09ba60f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockDistributorItem.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockItemDistributor" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockDropper.json b/src/main/resources/assets/actuallyadditions/blockstates/blockDropper.json new file mode 100644 index 000000000..172868672 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockDropper.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json new file mode 100644 index 000000000..cac6af8eb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockEmpowerer.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockEmpowerer", + "textures": { + "particle": "actuallyadditions:blocks/blockEmpowerer" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockEnergizer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockEnergizer.json new file mode 100644 index 000000000..bda07cd88 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockEnergizer.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockEnervator.json b/src/main/resources/assets/actuallyadditions/blockstates/blockEnervator.json new file mode 100644 index 000000000..db9336579 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockEnervator.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFarmer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFarmer.json new file mode 100644 index 000000000..ce14b7668 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFarmer.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFeeder.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFeeder.json new file mode 100644 index 000000000..b5991fc59 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFeeder.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFermentingBarrel.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFermentingBarrel.json new file mode 100644 index 000000000..a10517e85 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFermentingBarrel.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockFermentingBarrel", + "textures": { + "particle": "actuallyadditions:blocks/blockFermentingBarrel" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFireworkBox.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFireworkBox.json new file mode 100644 index 000000000..040c8d451 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFireworkBox.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFishingNet.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFishingNet.json new file mode 100644 index 000000000..69132a90d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFishingNet.json @@ -0,0 +1,11 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockFishingNet", + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFlax.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFlax.json new file mode 100644 index 000000000..7ed1088df --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFlax.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFluidCollector.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFluidCollector.json new file mode 100644 index 000000000..56495538f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFluidCollector.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFluidPlacer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFluidPlacer.json new file mode 100644 index 000000000..7727f4693 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFluidPlacer.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFurnaceDouble.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFurnaceDouble.json new file mode 100644 index 000000000..4d04cfcb0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFurnaceDouble.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockFurnaceSolar.json b/src/main/resources/assets/actuallyadditions/blockstates/blockFurnaceSolar.json new file mode 100644 index 000000000..ec0aa1e5c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockFurnaceSolar.json @@ -0,0 +1,11 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockFurnaceSolar", + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json new file mode 100644 index 000000000..956f8157a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChest.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockGiantChest", + "textures": { + "particle": "actuallyadditions:blocks/blockGiantChest" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json new file mode 100644 index 000000000..e3f20ee8c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestLarge.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockGiantChestLarge", + "textures": { + "particle": "actuallyadditions:blocks/blockGiantChest" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json new file mode 100644 index 000000000..140305691 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGiantChestMedium.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockGiantChestMedium", + "textures": { + "particle": "actuallyadditions:blocks/blockGiantChest" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGreenhouseGlass.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGreenhouseGlass.json new file mode 100644 index 000000000..94c51c62f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGreenhouseGlass.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockGreenhouseGlass" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGrinder.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGrinder.json new file mode 100644 index 000000000..cefd418bb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGrinder.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockGrinderDouble.json b/src/main/resources/assets/actuallyadditions/blockstates/blockGrinderDouble.json new file mode 100644 index 000000000..577b80f5a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockGrinderDouble.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockHeatCollector.json b/src/main/resources/assets/actuallyadditions/blockstates/blockHeatCollector.json new file mode 100644 index 000000000..fb8dc627c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockHeatCollector.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockInputter.json b/src/main/resources/assets/actuallyadditions/blockstates/blockInputter.json new file mode 100644 index 000000000..00312e0c1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockInputter.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockInputter" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockInputterAdvanced.json b/src/main/resources/assets/actuallyadditions/blockstates/blockInputterAdvanced.json new file mode 100644 index 000000000..9ac462bee --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockInputterAdvanced.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockInputterAdvanced" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockItemRepairer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockItemRepairer.json new file mode 100644 index 000000000..5c24da2f2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockItemRepairer.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockItemViewer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockItemViewer.json new file mode 100644 index 000000000..30a6f64c4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockItemViewer.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockItemViewer" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLampPowerer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLampPowerer.json new file mode 100644 index 000000000..792cdcd96 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLampPowerer.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelay.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelay.json new file mode 100644 index 000000000..882150334 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelay.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayAdvanced.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayAdvanced.json new file mode 100644 index 000000000..5a1e6f8f6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayAdvanced.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayExtreme.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayExtreme.json new file mode 100644 index 000000000..4beaf3319 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayExtreme.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayFluids.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayFluids.json new file mode 100644 index 000000000..406412e13 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayFluids.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayItem.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayItem.json new file mode 100644 index 000000000..368193170 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayItem.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayItemWhitelist.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayItemWhitelist.json new file mode 100644 index 000000000..c0c8b68f4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLaserRelayItemWhitelist.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLavaFactoryController.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLavaFactoryController.json new file mode 100644 index 000000000..321021e7e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLavaFactoryController.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockLeafGenerator.json b/src/main/resources/assets/actuallyadditions/blockstates/blockLeafGenerator.json new file mode 100644 index 000000000..f2f3b0e96 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockLeafGenerator.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockLeafGenerator" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockMiner.json b/src/main/resources/assets/actuallyadditions/blockstates/blockMiner.json new file mode 100644 index 000000000..63930db2a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockMiner.json @@ -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": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockMisc.json b/src/main/resources/assets/actuallyadditions/blockstates/blockMisc.json new file mode 100644 index 000000000..95c1376c4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockMisc.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockOilGenerator.json b/src/main/resources/assets/actuallyadditions/blockstates/blockOilGenerator.json new file mode 100644 index 000000000..d8d0648f6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockOilGenerator.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomBooster.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomBooster.json new file mode 100644 index 000000000..a176bd833 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomBooster.json @@ -0,0 +1,11 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "actuallyadditions:blockPhantomBooster", + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomBreaker.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomBreaker.json new file mode 100644 index 000000000..575be757f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomBreaker.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPhantomBreaker" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomEnergyface.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomEnergyface.json new file mode 100644 index 000000000..96d57a530 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomEnergyface.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPhantomEnergyface" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomLiquiface.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomLiquiface.json new file mode 100644 index 000000000..bba3caad1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomLiquiface.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPhantomLiquiface" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomPlacer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomPlacer.json new file mode 100644 index 000000000..da99bdd00 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomPlacer.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPhantomPlacer" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomRedstoneface.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomRedstoneface.json new file mode 100644 index 000000000..9030482ce --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomRedstoneface.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPhantomRedstoneface" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomface.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomface.json new file mode 100644 index 000000000..82d693611 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPhantomface.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPhantomface" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzSlab.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzSlab.json new file mode 100644 index 000000000..6850084a0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzSlab.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzStair.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzStair.json new file mode 100644 index 000000000..a96f642ba --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzStair.json @@ -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 } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzWall.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzWall.json new file mode 100644 index 000000000..5b033d2a7 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPillarQuartzWall.json @@ -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 } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPlacer.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPlacer.json new file mode 100644 index 000000000..39c3138d1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPlacer.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockPlayerInterface.json b/src/main/resources/assets/actuallyadditions/blockstates/blockPlayerInterface.json new file mode 100644 index 000000000..820340e7c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockPlayerInterface.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockPlayerInterface" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzSlab.json b/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzSlab.json new file mode 100644 index 000000000..e0c091c27 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzSlab.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzStair.json b/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzStair.json new file mode 100644 index 000000000..f64d8e0b1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzStair.json @@ -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 } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzWall.json b/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzWall.json new file mode 100644 index 000000000..726aa6850 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockQuartzWall.json @@ -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 } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockRangedCollector.json b/src/main/resources/assets/actuallyadditions/blockstates/blockRangedCollector.json new file mode 100644 index 000000000..ee6cf99ab --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockRangedCollector.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockRangedCollector" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockRice.json b/src/main/resources/assets/actuallyadditions/blockstates/blockRice.json new file mode 100644 index 000000000..98c31ee72 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockRice.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockShockSuppressor.json b/src/main/resources/assets/actuallyadditions/blockstates/blockShockSuppressor.json new file mode 100644 index 000000000..8de206d19 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockShockSuppressor.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockShockAbsorber" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockSmileyCloud.json b/src/main/resources/assets/actuallyadditions/blockstates/blockSmileyCloud.json new file mode 100644 index 000000000..1cdb3ecae --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockSmileyCloud.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenFence.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenFence.json new file mode 100644 index 000000000..f7415555c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenFence.json @@ -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 } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenSlab.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenSlab.json new file mode 100644 index 000000000..416fd8e2c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenSlab.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenStairs.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenStairs.json new file mode 100644 index 000000000..6b94a6e85 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenStairs.json @@ -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 } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenWall.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenWall.json new file mode 100644 index 000000000..aac2e55e0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksGreenWall.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockTestifiBucksGreenWall" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteFence.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteFence.json new file mode 100644 index 000000000..53a97c100 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteFence.json @@ -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 } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteSlab.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteSlab.json new file mode 100644 index 000000000..243043710 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteSlab.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteStairs.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteStairs.json new file mode 100644 index 000000000..f6fbe75ba --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteStairs.json @@ -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 } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteWall.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteWall.json new file mode 100644 index 000000000..f1f89c3bc --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTestifiBucksWhiteWall.json @@ -0,0 +1,14 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "actuallyadditions:blocks/blockTestifiBucksWhiteWall" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [{}], + "inventory": [{}] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTinyTorch.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTinyTorch.json new file mode 100644 index 000000000..9d048ab3a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTinyTorch.json @@ -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 } + } +} diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockTreasureChest.json b/src/main/resources/assets/actuallyadditions/blockstates/blockTreasureChest.json new file mode 100644 index 000000000..68fdfa6fe --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockTreasureChest.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockWild.json b/src/main/resources/assets/actuallyadditions/blockstates/blockWild.json new file mode 100644 index 000000000..4755635d0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockWild.json @@ -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" } } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/blockXPSolidifier.json b/src/main/resources/assets/actuallyadditions/blockstates/blockXPSolidifier.json new file mode 100644 index 000000000..b1b9326cd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/blockXPSolidifier.json @@ -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 } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/blockstates/fluids.json b/src/main/resources/assets/actuallyadditions/blockstates/fluids.json new file mode 100644 index 000000000..ab66adc9d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/blockstates/fluids.json @@ -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" } + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/lang/de_DE.lang b/src/main/resources/assets/actuallyadditions/lang/de_DE.lang new file mode 100644 index 000000000..c8f469f96 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/lang/de_DE.lang @@ -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 Actually Additions Handbuch 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= +tooltip.actuallyadditions.phantom.stored.desc= +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= +tooltip.actuallyadditions.laser.connected.desc= +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

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

at. What that means: If you, for example, write 2 in the field to the left and 5 in this one, it will

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=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=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=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. ~by Tulkas + +booklet.actuallyadditions.chapter.craftingIngs.name=Werkel-Zutaten +booklet.actuallyadditions.chapter.craftingIngs.text.1=Actually Additions hat viele Gegenstände, die elementare Werkel-Gegenstände benötigen um hergestellt zu werden. In diesem Kapitel sind diese alle gruppiert, so kannst du sie alle auf einem Mal sehen. + +booklet.actuallyadditions.chapter.quartz.name=Schwarzer Quarz +booklet.actuallyadditions.chapter.quartz.text.1=Schwarzer Quarz ist ein Erz welches in der Welt zwischen Ebene und generiert. Wenn es abgebaut wurde, kann es in einem Ofen geschmolzen or in einem Brecher gebrochen werden. +booklet.actuallyadditions.chapter.quartz.text.2=Der Gegenstand Schwarzer Quarz wird in der Herstellung vieler Dinge in Actually Additions gebraucht. Sie sind sehr wichtig, un solten deswegen abgebaut werden, wenn sie gefunden werden. Aus ihnen lassen sich einige dekorative Blöcke produzieren, welche auf den folgenden Seiten gezeigt werden. Jede Variante kann auch zu Treppen, Stufen oder Wänden weiterverarbeitet werden, indem man die gängigen Rezepte nutzt. Nether-Quarz, nur tötlicher + +booklet.actuallyadditions.chapter.cloud.name=Smiley-Wolke +booklet.actuallyadditions.chapter.cloud.text.1=Die Smiley-Wolke 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 Rechtsklickkannst du ihr einen Namen geben. Wenn du ihr besondere Namen bibst, wie beispielsweise "Ellpeck" oder "AcidBlues", trägt sie ein paar besondere Gegenstände! + +booklet.actuallyadditions.chapter.coalStuff.name=Coal Stuff +booklet.actuallyadditions.chapter.coalStuff.text.1=Sometimes your Coal just burns for too long or too short, you know what I mean? For that, you can now craft Tiny Coal, Tiny Charcoal and Blocks of Charcoal for using them in a furnace. While the Block of Charcoal burns for as long as a Block of Coal, the Tiny Coal and Tiny Charcoal will burn for one eighth of a piece of coal, meaning it will smelt one item in a normal furnace. + +booklet.actuallyadditions.chapter.lamps.name=Lamps +booklet.actuallyadditions.chapter.lamps.text.1=Lamps are a block providing lots of light, similar to the mystic Glowstone or Torches, but they can be dyed with all of the 16 different colors either by crafting them or by placing them on the ground and right-clicking them with a piece of dye. When right-clicking them with an empty hand, they will turn on and off. If you want them, however, to be toggled using Redstone Power, just place a Lamp Controller next to one. + +booklet.actuallyadditions.chapter.treasureChest.name=Treasure Chests +booklet.actuallyadditions.chapter.treasureChest.text.1=A Treasure Chest found underwater. +booklet.actuallyadditions.chapter.treasureChest.text.2=Treasure Chests are a semi-uncommon occurence in Ocean Biomes. They appear on the bottom of the sea, probably left there by bypassing Ships who threw off or lost some load. These Chests however, hold some valuable items, if you're lucky. Breaking them won't yield you anything, though, you just have to right-click them to receive some amazing goodies. + +booklet.actuallyadditions.chapter.breaker.name=Breakers and Placers +booklet.actuallyadditions.chapter.breaker.text.1=The Breaker breaks blocks in front of it. It can be oriented in every direction. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.breaker.text.2=The Placer places blocks in front of it. It can be oriented in every direction. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.breaker.text.3=The Liquid Placer places liquids you supply it with. It needs 1000mB to place one block. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.breaker.text.4=The Liquid Collector will collect 1000mB of liquids in front of it, that's a filled bucket. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.phantomfaces.name=Phantomfaces +booklet.actuallyadditions.chapter.phantomfaces.text.1=Phantomfaces are a simple way to connect inventories together, they have a very important twist however: Instead of just connecting two inventories, a Phantomface simulates the inventory it is connected to, meaning you can put items into and pull out of the Phantomface itself. A Phantomface has a default range of blocks, but it can be upgraded with a Phantom Booster. Phantomfaces are connected by right-clicking an inventory with a Phantom Connector and then right-clicking the Phantomface. +booklet.actuallyadditions.chapter.phantomfaces.text.2=Important Information:It should be noted that the Phantomface is not supposed to be used as a wireless transport system. 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. It's not a short-range Tesseract. +booklet.actuallyadditions.chapter.phantomfaces.text.3=The default Phantomface works for items, like described on the first page. +booklet.actuallyadditions.chapter.phantomfaces.text.4=The Phantom Liquiface acts exactly like the normal Phantomface, but it works for liquid containing blocks. When given a Redstone Signal, it can be set to Auto-Output. Be careful with this though, as it could cause infinte loops and lag under certain conditions! +booklet.actuallyadditions.chapter.phantomfaces.text.5=The Phantom Energyface acts exactly like the normal Phantomface, but it works for RF, meaning you can connect it to things like Generators and Crushers. +booklet.actuallyadditions.chapter.phantomfaces.text.7=The Phantom Booster, as explained on the first page, ups the range of Phantomfaces by being placed on top of them. The maximum amount above one Phantomface is 3. + +booklet.actuallyadditions.chapter.phantomBreaker.name=Phantom Breakers & Placers +booklet.actuallyadditions.chapter.phantomBreaker.text.1=Phantom Breakers and Placers work similarly to the normal Phantomfaces, except that they are used to break and place blocks from a distance. Their default range is Blocks. To connect them to blocks to break, do as described in the Phantomface Chapter. When connecting them to air spaces, just place a block, store it and then break it again. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.esd.name=ESDs +booklet.actuallyadditions.chapter.esd.text.1=The ESD is a block that works similar to a Hopper but has a lot more functionality. You can choose the sides to input and output and you can precisely configure the range of slots to look at! For more precise information about ESDs, craft one and hover over the elements in their GUI! Its actual name is + +booklet.actuallyadditions.chapter.xpSolidifier.name=Experience Solidifier +booklet.actuallyadditions.chapter.xpSolidifier.text.1=The Experience Solidifer uses the player's experience and turns it into Solidified Experience which can later be used by right-clicking to get the experience you stored into Item form back onto your character. This is a safe and easy way to store your experience so that it isn't getting lost when you die. Solidified Experience also drops from Monsters sometimes as an Extra. + +booklet.actuallyadditions.chapter.greenhouseGlass.name=Greenhouse Glass +booklet.actuallyadditions.chapter.greenhouseGlass.text.1=Greenhouse Glass is a very effective way to speed up the growth of your plants! 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 significantly speed up the growth of the plant! It obviously has to be daytime, too. Thought that was obvious. +booklet.actuallyadditions.chapter.greenhouseGlass.text.2=Greenhouse Gas + +booklet.actuallyadditions.chapter.fishingNet.name=Fishing Net +booklet.actuallyadditions.chapter.fishingNet.text.1=The Fishing Net is a block that makes fishing a lot easier! Just place it above some water and it will, given a little bit of time, automatically catch fish for you! To store the fish, just place a chest above the Fishing Net or let the items spew out of the top and collect them manually. For the impatient + +booklet.actuallyadditions.chapter.feeder.name=Feeder +booklet.actuallyadditions.chapter.feeder.text.1=The Feeder 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 automatically feed the animals and if there is enough animals near it, it will shut off on its own to prevent lag or animal overflow. Greenpeace approves + +booklet.actuallyadditions.chapter.compost.name=Compost and Fertilizer +booklet.actuallyadditions.chapter.compost.text.1=The Compost is used to make Fertilizier from Mashed Food. Fertilizer acts just like Bone Meal, but can be crafted in a much simpler manner just by crafting Mashed Food and then putting of those inside of a Compost 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=Mashed Food can be crafted from any type of food or plantable item. + +booklet.actuallyadditions.chapter.crate.name=Storage Crates +booklet.actuallyadditions.chapter.crate.text.1=Storage Crates are big. Really big. They hold tons of items, more than 4 chests worth of them. +booklet.actuallyadditions.chapter.crate.text.2=Placing a Storage Crate Keeper inside the Storage Crate before breaking it will cause it to keep all of its items, however the Keeper will be destroyed upon placing the Crate back down. +booklet.actuallyadditions.chapter.crate.text.3=The Chest To Storage Crate Upgrade allows you to convert any chest into a Storage Crate, retaining its items! Just shift-right-click onto the chest to apply it. + +booklet.actuallyadditions.chapter.coffeeMachine.name=Coffee Machine +booklet.actuallyadditions.chapter.coffeeMachine.text.1=The Coffee Machine is a block used to make Coffee, a potion-like item that gives the user several buffs. To use the coffee machine, you need a Empty Cup, Coffee Beans, which can be found in the wild, harvested and planted on farmland again, RF/t and mB of Water per cup brewed. 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, put some of the items shown on the later pages into the slots on the right. The more slots are filled up with one item, the higher the Amplifier of the effect will be. The Maximum Amplifier is the max amount of items to be put into one coffee. Order matters: When using, for example, Milk (to see what it does exactly, go to a later page), you are going to have to plan the items out inside the numbered slots 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 Fire Resistance 1 for 0:20 and Speed 1 for 2:30. +booklet.actuallyadditions.chapter.coffeeMachine.text.6=Milk is an important item when brewing coffee: It adds 2 minutes to all effects of items in slots with lower numbers while removing 1 amplifier. When the amplifier of an effect is 1, however, it will remove the effect. +booklet.actuallyadditions.chapter.coffeeMachine.text.7=The fact that you're reading this means that you either have HarvestCraft installed, or that you're looking at the lang file. This does the same thing as Milk, but for veggie guys. + +booklet.actuallyadditions.chapter.crusher.name=Crusher and Double Crusher +booklet.actuallyadditions.chapter.crusher.text.1=The Crusher turns every ore, ingot and gem into its corresponding dust using RF/t. When you put in Ores however, they will yield 2 pieces of dust. The Double Crusher basically does the same, however it can crush two ores at a time and uses RF/t. On the following pages, you can see some additional useful recipes for inside the crusher. He's my crush + +booklet.actuallyadditions.chapter.furnaceDouble.name=Double Furnace +booklet.actuallyadditions.chapter.furnaceDouble.text.1=The Double Furnace works like a furnace, however, it uses RF/t and can smelt two items at a time. + +booklet.actuallyadditions.chapter.lavaFactory.name=Lava Factory +booklet.actuallyadditions.chapter.lavaFactory.text.1=The Lava Factory can produce blocks of lava given RF/block. The Block above it has to be surrounded with 4 Casing Blocks, otherwise it won't be able to produce Lava. Right-Clicking on the Lava Factory will show you if it's able to produce Lava in its current setup. Lava, for a fact. ory + +booklet.actuallyadditions.chapter.energizer.name=Energizer and Enervator +booklet.actuallyadditions.chapter.energizer.text.1=The Energizer charges items that hold RF using its energy supply. +booklet.actuallyadditions.chapter.energizer.text.2=The Enervator discharges items that hold RF and stores the energy in its energy supply. + +booklet.actuallyadditions.chapter.repairer.name=Item Repairer +booklet.actuallyadditions.chapter.repairer.text.1=The Item Repairer uses RF/t to repair items that can be repaired in an Anvil without needing any materials! + +booklet.actuallyadditions.chapter.coalGen.name=Coal Generator +booklet.actuallyadditions.chapter.coalGen.text.1=The Coal Generator generates RF/t through the use of everything that can be put into a furnace. 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 Solar Panel produces RF/t when it has direct daylight above it and it is daytime. Panelled walls + +booklet.actuallyadditions.chapter.heatCollector.name=Heat Collector +booklet.actuallyadditions.chapter.heatCollector.text.1=The Heat Collector is a block that produces RF/t. To do that, it needs to be surrounded with at least Lava Blocks directly around it on any side except the top one. But watch out, it sometimes destroys some of these Lava Blocks! + +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 Canola Oil, Oil and produce RF from it. The way to do that is to take some Canola, put it into a Canola Press which uses RF/t. That creates mB of Canola Oil. Put that into a Fermenting Barrel, let it sit there for a while before it converts into Oil. That oil can then be used in a Oil Generator to create RF/t. + +booklet.actuallyadditions.chapter.wings.name=Wings Of The Bats +booklet.actuallyadditions.chapter.wings.text.1=Sometimes, bats will drop Wings. These wings can't really be used to fly, but that's just because they're not powerful enough. To make them more powerful, you can craft Wings Of The Bats. When you have these in your inventory, they will allow you to fly like in creative mode. + +booklet.actuallyadditions.chapter.foods.name=Foodstuffs +booklet.actuallyadditions.chapter.foods.text.1=Yes, this is Bacon. Don't try naming it Ellspeck. Please, just don't. + +booklet.actuallyadditions.chapter.leafBlower.name=Leaf Blowers +booklet.actuallyadditions.chapter.leafBlower.text.1=The Leaf Blower can blow away tall grass, flowers and other stuff around you when you hold right-click. There is an Advanced Leaf Blower, which works like the basic one, except that it operates much faster and also breaks Leaves. + +booklet.actuallyadditions.chapter.aiots.name=All-In-One-Tools (AIOTs) +booklet.actuallyadditions.chapter.aiots.text.1=An All-In-One-Tool is a tool that is Pickaxe, Axe, Shovel, Sword and Hoe in one. They are available in every material and if you have Thermal Foundation or MekanismTools 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 Kitty who really wanted some Jam. So I made some Jam. Seriously, this is Jam. You can find it in Village Houses or buy it from the Jam Villager. Every Jam gives you two different potion effects! +booklet.actuallyadditions.chapter.jams.text.2=A Jam House and its inhabitant +booklet.actuallyadditions.chapter.jams.text.3=So. You're probably wondering what the names of the jams mean. Now, let me tell you: -Honeydew Melon and Kiwi -Honeydew Melon and Coconut -Pineapple and Coconut -Cherry, Apple and Cinnamon -Plum, Apple and Lemon -Grape, Kiwi and Banana -Currant, Banana and Raspberry 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 Potion Rings have two versions: A normal version and an advanced version. The normal version, when you have it in your hand, will give you a Potion Effect 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 Drill works like a Pickaxe and a Shovel. It uses RF per block. It can be charged in an Energizer and upgraded by right-clicking with it in your hand. There is a lot of upgrades, but here is an explanation of some of them: The Mining Uprgades enlarge the hole which the Drill digs. The Placement Upgrade, after you right-click it in any slot of your hotbar, will make the Drill able to place a block from that slot by right-clicking. You can also put a Battery inside the Drill to give it more charge. +booklet.actuallyadditions.chapter.drill.text.3=The Drill can also be dyed in Minecraft's 16 colors. 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 Teleport Staff, when charged in an Energizer, can be right-clicked to teleport you to where you're looking. 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 5 degrees, otherwise the teleport will fail. + +booklet.actuallyadditions.chapter.magnetRing.name=Ring Of Magnetism +booklet.actuallyadditions.chapter.magnetRing.text.1=The Ring Of Magnetism, when it is charged in an Energizer and inside your inventory, uses RF 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 Ring Of Growth, when it is charged in an Energizer and in your hand, uses RF to make plants around you grow much faster. + +booklet.actuallyadditions.chapter.waterRemovalRing.name=Ring Of Liquid Banning +booklet.actuallyadditions.chapter.waterRemovalRing.text.1=The Ring Of Liquid Banning, when it is charged in an Energizer and in your hand, uses RF to remove Lava and Water. + +booklet.actuallyadditions.chapter.batteries.name=Batteries +booklet.actuallyadditions.chapter.batteries.text.1=Batteries are a good way to store RF to move around. They can be charged in an Energizer and discharged in an Enervator. + +booklet.actuallyadditions.chapter.leafGen.name=Leaf-Eating Generator +booklet.actuallyadditions.chapter.leafGen.text.1=The Leaf Generator can generate RF just by being placed alongside some Leaves. It will destroy the leaves, generating RF per leaf broken in the process. By right-clicking the generator, you can see how much RF it has stored. It has a range of blocks. +booklet.actuallyadditions.chapter.leafGen.text.2=Munchy + +booklet.actuallyadditions.chapter.longRangeBreaker.name=Long-Range Breaker +booklet.actuallyadditions.chapter.longRangeBreaker.text.1=The Long-Range Breaker works like a normal Breaker, but it can break up to blocks in front of it. Per block broken, it uses RF. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. Breaking the th wall +booklet.actuallyadditions.chapter.longRangeBreaker.text.2=Sequence Breaking + +booklet.actuallyadditions.chapter.dropper.name=Automatic Precision Dropper +booklet.actuallyadditions.chapter.dropper.text.1=The Automatic Precision Dropper works much like a normal dropper, but it will drop items without needing a Redstone Signal. It also won't spit them out all over the ground, but it will drop them straight into the direction you point it at! When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.rangedCollector.name=Ranged Collector +booklet.actuallyadditions.chapter.rangedCollector.text.1=The Ranged Collector works much like a hopper, in that it collects items around it, having the power, however, to pick up items that are in an area of blocks around it. It has a filter that can be set to white- or blacklist. 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=Balls of Fur dropped by live cats. More information on the next page. +booklet.actuallyadditions.chapter.hairBalls.text.2=Balls of Fur are an item rarely dropped by cats which have been tamed by the player. Cats are very mysterious creatures as they appear to get everything stuck in their fur. Balls of Fur may seem disgusting at first, but when removing all of the hair by right-clicking, they will reveal some valuable items. Or just some String. FUURRRRRR!! + +booklet.actuallyadditions.chapter.laserRelays.name=Laser Relays +booklet.actuallyadditions.chapter.laserRelays.text.1=The Laser Relay is a block that can wirelessly transfer RF just by being connected with a Laser Wrench, generating a network. When placing a Power Generator or Receiver next to the relay, it can receive Power from any other relay in the network. Two relays can be at most blocks apart. During an energy transfer, they have an Energy Loss of %. + +booklet.actuallyadditions.chapter.blackLotus.name=Black Lotus +booklet.actuallyadditions.chapter.blackLotus.text.1=Think of this: You need to craft black wool, black clay or anything else that needs black dye but you are just guilty about killing so many innocent squids? Well, the Black Lotus is exactly the thing you need! Just look around in the wild a bit, and you will find one, then being able to craft some Black Dye that can be used instead of Ink Sacs so that you don't need to kill poor squids and L any longer. +booklet.actuallyadditions.chapter.blackLotus.text.2=No, not that one, Vaz + +booklet.actuallyadditions.chapter.crystals.name=Crystals and Reconstructor +booklet.actuallyadditions.chapter.crystals.text.1=The Atomic Reconstructor is used to craft Crystals, which are the main crafting ingredient in most items from Actually Additions. Upon being supplied with power, it shoots out a Laser. When the Laser hits a block, it will convert all surrounding items and blocks, provided they can be converted. When shooting a laser, it uses RF, but additional rates vary depending on the conversion. +booklet.actuallyadditions.chapter.crystals.text.2=There are various Lenses 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. See the "Reconstructor Lenses & Misc" chapter in the booklet's Miscellaneous section for more information. When right-clicking the Reconstructor with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.crystals.text.3=It should be noted that any recipes listed without information about Lenses don't use one. 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 automate this. There is a very simple way to do accomplish this: Place the Atomic Reconstructor down facing into a Precision Dropper (to find it, look it up in the All Items and Search Entry!). Next, place a Ranged Collector in the area that has the converted items set as a whitelist. Now you can just chuck your raw materials into the Dropper to convert them! +booklet.actuallyadditions.chapter.crystals.text.6=Molecular Transformilator + +booklet.actuallyadditions.chapter.bookTutorial.name=Intro to the Manual +booklet.actuallyadditions.chapter.bookTutorial.text.1=The Actually Additions Manual is very versatile. Here is a quick overview: Entries & ChaptersAn 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. BookmarksBookmarks, 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=The Buttons at the top right 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. The Buttons on the top left can be used to be directed to various Webpages that have to do with the mod. 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 piece of paper and a canola seed which you can find randomly generated and craft them together! + +booklet.actuallyadditions.chapter.bookStand.name=Manual Stand +booklet.actuallyadditions.chapter.bookStand.text.1=The Manual Stand is a block that is supposed to mainly be used on Servers. You can, provided you are the person who placed it down, set a page in the GUI that will open when someone else accesses it by pressing the "Set Page"-button while being on the desired page. The Manual Stand does not save pages another player navigated to, meaing re-accessing the Stand will cause it to always end up on the page speficied by the placer. +booklet.actuallyadditions.chapter.bookStand.text.2=Stand on it + +booklet.actuallyadditions.chapter.reconstructorLenses.name=Reconstructor Lenses & Misc +booklet.actuallyadditions.chapter.reconstructorLenses.text.1=The Atomic Reconstructor, by default, can only convert some blocks. This can be changed, however, with Lenses. They can be, once crafted, attached to the Reconstructor via right-clicking the Reconstructor with them in hand. To remove them, right-click it with an empty hand. Lenses have lots of different features and uses, as you can see on the following pages. However, there is also some other useful recipes to be found there too. +booklet.actuallyadditions.chapter.reconstructorLenses.text.3=The Lens of Color changes the color of Stained Glass and Panes, Stained Clay, Carpetet, Dye, Lamps, Wool in its sight. Contrary to using no lens, it goes through blocks and only converts blocks it touches. +booklet.actuallyadditions.chapter.reconstructorLenses.text.4=The Lens of Detonation will create a firey explosion around the block the laser hits. Be careful with this. Seriously. (With this lens, the laser also goes 3 times as far!) +booklet.actuallyadditions.chapter.reconstructorLenses.text.5=The Lens of Certain Death will, deal lots of damage to whatever steps into it, enough, in fact, to kill a player in a single hit. + +booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.name=Some Decor +booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.text.1=Sometimes, when you build, you notice there is just not enough decor blocks. Well, we present to you: Ethetic Blocks! These are some quartz-like decor blocks with lovely patterns that can also be converted into Stairs, Slabs and Walls using the usual, well-known recipe patterns. + +booklet.actuallyadditions.chapter.miner.name=Vertical Digger +booklet.actuallyadditions.chapter.miner.text.1=The Vertical Digger can be used to automatically mine blocks from the world. It has two modes: It can either only mine ores or mine everything. When mining a block, it uses about RF. Mined items get stored in an internal buffer that can be accessed through right-clicking. Its default radius is , but much like Phantomfaces, the Digger's range can be upgraded by placing 3 or less Phantom Boosters above it. +booklet.actuallyadditions.chapter.miner.text.2=(Works with any colored Drill) I dig it + +booklet.actuallyadditions.chapter.fireworkBox.name=Firework Box +booklet.actuallyadditions.chapter.fireworkBox.text.1=The Firework Box is a perfect thing for New Year's! When placed down and supplied with some RF, it will shoot out some randomly generated Fireworks around it. For each shot, it uses RF. 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 Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +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 RF yet, here's a quick explanation. Redstone Flux, or RF for short, is a power system used by many mods. The basic concept is is that lots of machines generate or use it every game tick. That's what RF/t means. To connect a power generating (thus, outputting) machine to one that needs (thus, receives) power, just place it next to it. What's a fourth wall? diff --git a/src/main/resources/assets/actuallyadditions/lang/en_US.lang b/src/main/resources/assets/actuallyadditions/lang/en_US.lang new file mode 100644 index 000000000..b3470d8a5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/lang/en_US.lang @@ -0,0 +1,1080 @@ +#General +itemGroup.actuallyadditions=Actually Additions +achievement.page.actuallyadditions=Actually Additions +actuallyadditions.lolWutHowUDoDis.name=This is bugged. Throw it away. Please. + +#Fluids +fluid.actuallyadditions.oil=Oil +fluid.actuallyadditions.canolaoil=Canola Oil +fluid.actuallyadditions.crystaloil=Crystallized Oil +fluid.actuallyadditions.empoweredoil=Empowered Oil + +#Entities +entity.Villager.actuallyadditions.jammer=Jam Guy + +#Banners +item.banner.actuallyadditionsBook.black=Black Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.red=Red Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.green=Green Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.brown=Brown Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.blue=Blue Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.purple=Purple Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.cyan=Cyan Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.silver=Silver Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.gray=Gray Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.pink=Pink Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.lime=Lime Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.yellow=Yellow Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.lightBlue=LightBlue Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.magenta=Magenta Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.orange=Orange Actually Additions Manual Pattern +item.banner.actuallyadditionsBook.white=White Actually Additions Manual Pattern + +item.banner.actuallyadditionsPhanCon.black=Black Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.red=Red Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.green=Green Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.brown=Brown Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.blue=Blue Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.purple=Purple Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.cyan=Cyan Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.silver=Silver Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.gray=Gray Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.pink=Pink Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.lime=Lime Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.yellow=Yellow Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.lightBlue=LightBlue Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.magenta=Magenta Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.orange=Orange Phantom Connector Pattern +item.banner.actuallyadditionsPhanCon.white=White Phantom Connector Pattern + +item.banner.actuallyadditionsLeafBlo.black=Black Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.red=Red Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.green=Green Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.brown=Brown Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.blue=Blue Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.purple=Purple Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.cyan=Cyan Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.silver=Silver Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.gray=Gray Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.pink=Pink Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.lime=Lime Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.yellow=Yellow Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.lightBlue=LightBlue Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.magenta=Magenta Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.orange=Orange Leaf Blower Pattern +item.banner.actuallyadditionsLeafBlo.white=White Leaf Blower Pattern + +item.banner.actuallyadditionsDrill.black=Black Drill Pattern +item.banner.actuallyadditionsDrill.red=Red Drill Pattern +item.banner.actuallyadditionsDrill.green=Green Drill Pattern +item.banner.actuallyadditionsDrill.brown=Brown Drill Pattern +item.banner.actuallyadditionsDrill.blue=Blue Drill Pattern +item.banner.actuallyadditionsDrill.purple=Purple Drill Pattern +item.banner.actuallyadditionsDrill.cyan=Cyan Drill Pattern +item.banner.actuallyadditionsDrill.silver=Silver Drill Pattern +item.banner.actuallyadditionsDrill.gray=Gray Drill Pattern +item.banner.actuallyadditionsDrill.pink=Pink Drill Pattern +item.banner.actuallyadditionsDrill.lime=Lime Drill Pattern +item.banner.actuallyadditionsDrill.yellow=Yellow Drill Pattern +item.banner.actuallyadditionsDrill.lightBlue=LightBlue Drill Pattern +item.banner.actuallyadditionsDrill.magenta=Magenta Drill Pattern +item.banner.actuallyadditionsDrill.orange=Orange Drill Pattern +item.banner.actuallyadditionsDrill.white=White Drill Pattern + +#NEI Integration +container.nei.actuallyadditions.crushing.name=Crusher +container.nei.actuallyadditions.crushingDouble.name=Double Crusher +container.nei.actuallyadditions.ballOfHair.name=Ball Of Fur Usage +container.nei.actuallyadditions.compost.name=Compost +container.nei.actuallyadditions.furnaceDouble.name=Powered Furnace +container.nei.actuallyadditions.treasureChest.name=Treasure Chest +container.nei.actuallyadditions.treasureChest.info=Items at +container.nei.actuallyadditions.coffee.name=Coffee Maker +container.nei.actuallyadditions.coffee.special=Special Feature +container.nei.actuallyadditions.coffee.maxAmount=Max Amount +container.nei.actuallyadditions.coffee.extra.milk=+01:00, -1 Level +container.nei.actuallyadditions.reconstructor.name=Atomic Reconstructor +container.nei.actuallyadditions.empowerer.name=Empowerer + +container.nei.actuallyadditions.booklet.name=Actually Additions Manual +container.nei.actuallyadditions.booklet.header=The Actually Additions Manual says: +container.nei.actuallyadditions.booklet.noText=Nothing, apparently! But that doesn't matter. Just click the button on the bottom to see the item inside the booklet and look through its pages to find some fancy stuff! + +#Damage Sources +death.actuallyadditions.atomicReconstructor.1=%s got atomically reconstructed. +death.actuallyadditions.atomicReconstructor.2=The Atomic Reconstructor caught %s in its sight. +death.actuallyadditions.atomicReconstructor.3=Atomically reconstructing people like %s doesn't appear to work. +death.actuallyadditions.atomicReconstructor.4=%s shouldn't have ate that Reconstructor! +death.actuallyadditions.atomicReconstructor.5=%s should have used some re-construction foam. + +#Blocks +tile.actuallyadditions.blockCompost.name=Compost +tile.actuallyadditions.blockMiscOreBlackQuartz.name=Black Quartz Ore +tile.actuallyadditions.blockMiscBlackQuartz.name=Block of Black Quartz +tile.actuallyadditions.blockMiscBlackQuartzChiseled.name=Chiseled Block of Black Quartz +tile.actuallyadditions.blockMiscBlackQuartzPillar.name=Pillar of Black Quartz +tile.actuallyadditions.blockFeeder.name=Automatic Feeder +tile.actuallyadditions.blockGiantChest.name=Small Storage Crate +tile.actuallyadditions.blockGiantChestMedium.name=Medium Storage Crate +tile.actuallyadditions.blockGiantChestLarge.name=Large Storage Crate +tile.actuallyadditions.blockGrinder.name=Crusher +tile.actuallyadditions.blockGrinderDouble.name=Double Crusher +tile.actuallyadditions.blockFurnaceDouble.name=Powered Furnace +tile.actuallyadditions.blockFishingNet.name=Fishing Net +tile.actuallyadditions.blockFurnaceSolar.name=Solar Panel +tile.actuallyadditions.blockHeatCollector.name=Heat Collector +tile.actuallyadditions.blockItemRepairer.name=Item Repairer +tile.actuallyadditions.blockMiscWoodCasing.name=Wood Casing +tile.actuallyadditions.blockGreenhouseGlass.name=Greenhouse Glass +tile.actuallyadditions.blockEnergizer.name=Energizer +tile.actuallyadditions.blockEnervator.name=Enervator +tile.actuallyadditions.blockRice.name=Rice Plant +tile.actuallyadditions.blockMiscCharcoal.name=Block of Charcoal +tile.actuallyadditions.blockCoalGenerator.name=Coal Generator +tile.actuallyadditions.blockLampPowerer.name=Lamp Controller +tile.actuallyadditions.blockColoredLampWhite.name=White Lamp +tile.actuallyadditions.blockColoredLampOrange.name=Orange Lamp +tile.actuallyadditions.blockColoredLampMagenta.name=Magenta Lamp +tile.actuallyadditions.blockColoredLampYellow.name=Yellow Lamp +tile.actuallyadditions.blockColoredLampLightBlue.name=Light Blue Lamp +tile.actuallyadditions.blockColoredLampBlue.name=Blue Lamp +tile.actuallyadditions.blockColoredLampGray.name=Gray Lamp +tile.actuallyadditions.blockColoredLampLightGray.name=Light Gray Lamp +tile.actuallyadditions.blockColoredLampGreen.name=Green Lamp +tile.actuallyadditions.blockColoredLampBlack.name=Black Lamp +tile.actuallyadditions.blockColoredLampBrown.name=Brown Lamp +tile.actuallyadditions.blockColoredLampRed.name=Red Lamp +tile.actuallyadditions.blockColoredLampLime.name=Lime Lamp +tile.actuallyadditions.blockColoredLampPink.name=Pink Lamp +tile.actuallyadditions.blockColoredLampCyan.name=Cyan Lamp +tile.actuallyadditions.blockColoredLampPurple.name=Purple Lamp +tile.actuallyadditions.blockPhantomface.name=Phantomface +tile.actuallyadditions.blockPlayerInterface.name=Player Interface +tile.actuallyadditions.blockPhantomEnergyface.name=Phantom Energyface +tile.actuallyadditions.blockPhantomRedstoneface.name=Phantom Redstoneface +tile.actuallyadditions.blockPhantomLiquiface.name=Phantom Liquiface +tile.actuallyadditions.blockPhantomPlacer.name=Phantom Placer +tile.actuallyadditions.blockPhantomBreaker.name=Phantom Breaker +tile.actuallyadditions.blockLavaFactoryController.name=Lava Factory Controller +tile.actuallyadditions.blockMiscLavaFactoryCase.name=Casing +tile.actuallyadditions.blockFluidPlacer.name=Fluid Placer +tile.actuallyadditions.blockFluidCollector.name=Fluid Collector +tile.actuallyadditions.blockPhantomBooster.name=Phantom Booster +tile.actuallyadditions.blockCoffee.name=Coffee Plant +tile.actuallyadditions.blockWildCanola.name=Wild Canola +tile.actuallyadditions.blockWildRice.name=Wild Rice +tile.actuallyadditions.blockWildCoffee.name=Wild Coffee +tile.actuallyadditions.blockWildFlax.name=Wild Flax +tile.actuallyadditions.blockTestifiBucksGreenWall.name=Ethetic Green Block +tile.actuallyadditions.blockTestifiBucksWhiteWall.name=Ethetic Quartz +tile.actuallyadditions.blockTestifiBucksGreenStairs.name=Ethetic Green Stairs +tile.actuallyadditions.blockTestifiBucksWhiteStairs.name=Ethetic Quartz Stairs +tile.actuallyadditions.blockTestifiBucksGreenSlab.name=Ethetic Green Slab +tile.actuallyadditions.blockTestifiBucksWhiteSlab.name=Ethetic Quartz Slab +tile.actuallyadditions.blockCanola.name=Canola Plant +tile.actuallyadditions.blockTreasureChest.name=Treasure Chest +tile.actuallyadditions.blockCanolaPress.name=Canola Press +tile.actuallyadditions.blockFermentingBarrel.name=Fermenting Barrel +tile.actuallyadditions.blockCanolaOil.name=Canola Oil +tile.actuallyadditions.blockOil.name=Oil +tile.actuallyadditions.blockMiscEnderpearl.name=Block of Enderpearl +tile.actuallyadditions.blockOilGenerator.name=Oil Generator +tile.actuallyadditions.blockBreaker.name=Auto-Breaker +tile.actuallyadditions.blockPlacer.name=Auto-Placer +tile.actuallyadditions.blockDropper.name=Automatic Precision Dropper +tile.actuallyadditions.blockMiscEnderCasing.name=Ender Casing +tile.actuallyadditions.blockFlax.name=Flax Plant +tile.actuallyadditions.blockCoffeeMachine.name=Coffee Maker +tile.actuallyadditions.blockXPSolidifier.name=Experience Solidifier +tile.actuallyadditions.blockSmileyCloud.name=Smiley Cloud +tile.actuallyadditions.blockLeafGenerator.name=Leaf-Eating Generator +tile.actuallyadditions.blockDirectionalBreaker.name=Long-Range Breaker +tile.actuallyadditions.blockRangedCollector.name=Ranged Collector +tile.actuallyadditions.blockLaserRelay.name=Energy Laser Relay +tile.actuallyadditions.blockLaserRelayAdvanced.name=Advanced Energy Laser Relay +tile.actuallyadditions.blockLaserRelayExtreme.name=Extreme Energy Laser Relay +tile.actuallyadditions.blockLaserRelayFluids.name=Fluid Laser Relay +tile.actuallyadditions.blockMiscIronCasing.name=Iron Casing +tile.actuallyadditions.blockBlackLotus.name=Black Lotus +tile.actuallyadditions.blockTestifiBucksWhiteFence.name=Ethetic Quartz Wall +tile.actuallyadditions.blockTestifiBucksGreenFence.name=Ethetic Green Wall +tile.actuallyadditions.blockCrystalRed.name=Restonia Crystal Block +tile.actuallyadditions.blockCrystalBlue.name=Palis Crystal Block +tile.actuallyadditions.blockCrystalLightBlue.name=Diamatine Crystal Block +tile.actuallyadditions.blockCrystalGreen.name=Emeradic Crystal Block +tile.actuallyadditions.blockCrystalBlack.name=Void Crystal Block +tile.actuallyadditions.blockCrystalWhite.name=Enori Crystal Block +tile.actuallyadditions.blockCrystalEmpoweredRed.name=Empowered Restonia Crystal Block +tile.actuallyadditions.blockCrystalEmpoweredBlue.name=Empowered Palis Crystal Block +tile.actuallyadditions.blockCrystalEmpoweredLightBlue.name=Empowered Diamatine Crystal Block +tile.actuallyadditions.blockCrystalEmpoweredGreen.name=Empowered Emeradic Crystal Block +tile.actuallyadditions.blockCrystalEmpoweredBlack.name=Empowered Void Crystal Block +tile.actuallyadditions.blockCrystalEmpoweredWhite.name=Empowered Enori Crystal Block +tile.actuallyadditions.blockMiner.name=Vertical Digger +tile.actuallyadditions.blockFireworkBox.name=Firework Box +tile.actuallyadditions.blockQuartzWall.name=Black Quartz Wall +tile.actuallyadditions.blockQuartzStair.name=Black Quartz Stairs +tile.actuallyadditions.blockQuartzSlab.name=Black Quartz Slab +tile.actuallyadditions.blockChiseledQuartzWall.name=Chiseled Black Quartz Wall +tile.actuallyadditions.blockChiseledQuartzStair.name=Chiseled Black Quartz Stairs +tile.actuallyadditions.blockChiseledQuartzSlab.name=Chiseled Black Quartz Slab +tile.actuallyadditions.blockPillarQuartzWall.name=Black Quartz Pillar Wall +tile.actuallyadditions.blockPillarQuartzStair.name=Black Quartz Pillar Stairs +tile.actuallyadditions.blockPillarQuartzSlab.name=Black Quartz Pillar Slab +tile.actuallyadditions.blockLaserRelayItem.name=Item Laser Relay +tile.actuallyadditions.blockLaserRelayItemWhitelist.name=Advanced Item Laser Relay +tile.actuallyadditions.blockItemViewer.name=Item Interface +tile.actuallyadditions.blockImpureIron.name=Impure Iron +tile.actuallyadditions.blockBookletStand.name=Wall-Mount Manual +tile.actuallyadditions.blockDisplayStand.name=Display Stand +tile.actuallyadditions.blockShockSuppressor.name=Shock Absorber +tile.actuallyadditions.blockTinyTorch.name=Tiny Torch +tile.actuallyadditions.blockEmpowerer.name=Empowerer +tile.actuallyadditions.blockDistributorItem.name=Item Distributor +tile.actuallyadditions.blockBioReactor.name=Bio Reactor +tile.actuallyadditions.blockFarmer.name=Farmer + +#ESD +tile.actuallyadditions.blockInputter.name=ESD +tile.actuallyadditions.blockInputterAdvanced.name=Advanced ESD +tile.actuallyadditions.blockInputter.add.1.name=Ellpeck's Slot Device +tile.actuallyadditions.blockInputter.add.2.name=Ethereal System Dude +tile.actuallyadditions.blockInputter.add.3.name=Energy Stuff Distributor +tile.actuallyadditions.blockInputter.add.4.name=Existing Stuff Donator +tile.actuallyadditions.blockInputter.add.5.name=ExtraUtils Stealing Device +tile.actuallyadditions.blockInputter.add.6.name=Experienced Sauce Deriver +tile.actuallyadditions.blockInputter.add.7.name=Excellent Spaghetti Dessert +tile.actuallyadditions.blockInputter.add.8.name=Extraordinary Sample Deliverer +tile.actuallyadditions.blockInputter.add.9.name=Express Sending Doughnut +tile.actuallyadditions.blockInputter.add.10.name=Expelling Sugar Dagger +tile.actuallyadditions.blockInputter.add.11.name=Extra-Long Solidifying Dissociation +tile.actuallyadditions.blockInputter.add.12.name=Energetic Solo Dancer +tile.actuallyadditions.blockInputter.add.13.name=Efficient Sucking Dilettant +tile.actuallyadditions.blockInputter.add.14.name=Extreme Sand Digger +tile.actuallyadditions.blockInputter.add.15.name=Ending Serious Daughter + +#Reconstructor +tile.actuallyadditions.blockAtomicReconstructor.name=Atomic Reconstructor + +tile.actuallyadditions.blockAtomicReconstructor.info.1.1=Molecular +tile.actuallyadditions.blockAtomicReconstructor.info.1.2=Material +tile.actuallyadditions.blockAtomicReconstructor.info.1.3=Quarkal +tile.actuallyadditions.blockAtomicReconstructor.info.1.4=Atomatic +tile.actuallyadditions.blockAtomicReconstructor.info.1.5=Tiny Bit +tile.actuallyadditions.blockAtomicReconstructor.info.1.6=Component +tile.actuallyadditions.blockAtomicReconstructor.info.1.7=Vittle +tile.actuallyadditions.blockAtomicReconstructor.info.1.8=Transmaterial +tile.actuallyadditions.blockAtomicReconstructor.info.1.9=Partial +tile.actuallyadditions.blockAtomicReconstructor.info.1.10=Spatial +tile.actuallyadditions.blockAtomicReconstructor.info.1.11=Stuffy +tile.actuallyadditions.blockAtomicReconstructor.info.1.12=Interdimensional + +tile.actuallyadditions.blockAtomicReconstructor.info.2.1=Recombobulizer +tile.actuallyadditions.blockAtomicReconstructor.info.2.2=Shiftulator +tile.actuallyadditions.blockAtomicReconstructor.info.2.3=Recombinator +tile.actuallyadditions.blockAtomicReconstructor.info.2.4=Modulator +tile.actuallyadditions.blockAtomicReconstructor.info.2.5=Moleculizer +tile.actuallyadditions.blockAtomicReconstructor.info.2.6=Modificulator +tile.actuallyadditions.blockAtomicReconstructor.info.2.7=Changer +tile.actuallyadditions.blockAtomicReconstructor.info.2.8=Atomizer +tile.actuallyadditions.blockAtomicReconstructor.info.2.9=Makerator +tile.actuallyadditions.blockAtomicReconstructor.info.2.10=Swapper +tile.actuallyadditions.blockAtomicReconstructor.info.2.11=Exchanger +tile.actuallyadditions.blockAtomicReconstructor.info.2.12=Replacer +tile.actuallyadditions.blockAtomicReconstructor.info.2.13=Differentiator +tile.actuallyadditions.blockAtomicReconstructor.info.2.14=Receiver + +#Items +item.actuallyadditions.itemDrill.name=Drill +item.actuallyadditions.itemFoodRice.name=Rice +item.actuallyadditions.itemFoodDoughnut.name=Doughnut +item.actuallyadditions.itemMiscRiceDough.name=Rice Dough +item.actuallyadditions.itemFoodRiceBread.name=Rice Bread +item.actuallyadditions.itemRiceSeed.name=Rice Seeds +item.actuallyadditions.itemMiscTinyCoal.name=Tiny Coal +item.actuallyadditions.itemMiscTinyCharcoal.name=Tiny Charcoal +item.actuallyadditions.itemMiscRiceSlime.name=Rice Slimeball +item.actuallyadditions.itemBattery.name=Single Battery +item.actuallyadditions.itemBatteryDouble.name=Double Battery +item.actuallyadditions.itemBatteryTriple.name=Triple Battery +item.actuallyadditions.itemBatteryQuadruple.name=Quadruple Battery +item.actuallyadditions.itemBatteryQuintuple.name=Quintuple Battery +item.actuallyadditions.itemGrowthRing.name=Ring of Growth +item.actuallyadditions.itemWaterRemovalRing.name=Ring of Liquid Banning +item.actuallyadditions.itemSuctionRing.name=Ring of Magnetizing +item.actuallyadditions.itemBucketCanolaOil.name=Canola Oil Bucket +item.actuallyadditions.itemBucketOil.name=Oil Bucket +item.actuallyadditions.itemWingsOfTheBats.name=Wings Of The Bats +item.actuallyadditions.itemMiscBatWing.name=Bat's Wing +item.actuallyadditions.woodenPaxel.name=Wooden AIOT +item.actuallyadditions.stonePaxel.name=Stone AIOT +item.actuallyadditions.ironPaxel.name=Iron AIOT +item.actuallyadditions.goldPaxel.name=Golden AIOT +item.actuallyadditions.diamondPaxel.name=Diamond AIOT +item.actuallyadditions.emeraldPaxel.name=Emerald AIOT +item.actuallyadditions.obsidianPaxel.name=Obsidian AIOT +item.actuallyadditions.quartzPaxel.name=Black Quartz AIOT +item.actuallyadditions.itemPhantomConnector.name=Phantom Connector +item.actuallyadditions.itemMiscCup.name=Empty Cup +item.actuallyadditions.itemCoffee.name=Cup with Coffee +item.actuallyadditions.itemCoffeeSeed.name=Coffee Seeds +item.actuallyadditions.itemCoffeeBeans.name=Coffee Beans +item.actuallyadditions.itemCanolaSeed.name=Canola Seeds +item.actuallyadditions.itemMiscCanola.name=Canola +item.actuallyadditions.itemResonantRice.name=Resonant Rice +item.actuallyadditions.itemDrillUpgradeSpeed.name=Drill Speed Augment I +item.actuallyadditions.itemDrillUpgradeSpeedII.name=Drill Speed Augment II +item.actuallyadditions.itemDrillUpgradeSpeedIII.name=Drill Speed Augment III +item.actuallyadditions.itemDrillUpgradeSilkTouch.name=Drill Silk Touch Augment +item.actuallyadditions.itemDrillUpgradeFortune.name=Drill Fortune Augment I +item.actuallyadditions.itemDrillUpgradeFortuneII.name=Drill Fortune Augment II (Gives Fortune III!) +item.actuallyadditions.itemDrillUpgradeBlockPlacing.name=Drill Block Placing Augment +item.actuallyadditions.itemDrillUpgradeThreeByThree.name=Drill Mining Augment I +item.actuallyadditions.itemDrillUpgradeFiveByFive.name=Drill Mining Augment II +item.actuallyadditions.itemMiscMashedFood.name=Bio-Mash +item.actuallyadditions.itemFertilizer.name=Fertilizer +item.actuallyadditions.itemMiscDough.name=Dough +item.actuallyadditions.itemMiscPaperCone.name=Paper Cone +item.actuallyadditions.itemMiscKnifeBlade.name=Knife Blade +item.actuallyadditions.itemMiscKnifeHandle.name=Knife Handle +item.actuallyadditions.itemMiscBlackQuartz.name=Black Quartz +item.actuallyadditions.itemMiscRing.name=Ring +item.actuallyadditions.itemTeleStaff.name=Teleport Staff +item.actuallyadditions.itemJamCuBaRa.name=CuBaRa-Jam +item.actuallyadditions.itemJamGraKiBa.name=GraKiBa-Jam +item.actuallyadditions.itemJamPlApLe.name=PlApLe-Jam +item.actuallyadditions.itemJamChApCi.name=ChApCi-Jam +item.actuallyadditions.itemJamHoMeKi.name=HoMeKi-Jam +item.actuallyadditions.itemJamHoMeCo.name=HoMeCo-Jam +item.actuallyadditions.itemJamPiCo.name=PiCo-Jam +item.actuallyadditions.itemHairyBall.name=Ball of Fur +item.actuallyadditions.itemLeafBlower.name=Leaf Blower +item.actuallyadditions.itemLeafBlowerAdvanced.name=Advanced Leaf Blower +item.actuallyadditions.itemKnife.name=Knife +item.actuallyadditions.itemPickaxeEmerald.name=Emerald Pickaxe +item.actuallyadditions.itemAxeEmerald.name=Emerald Axe +item.actuallyadditions.itemShovelEmerald.name=Emerald Shovel +item.actuallyadditions.itemHoeEmerald.name=Emerald Hoe +item.actuallyadditions.itemSwordEmerald.name=Emerald Sword +item.actuallyadditions.itemPickaxeQuartz.name=Black Quartz Pickaxe +item.actuallyadditions.itemAxeQuartz.name=Black Quartz Axe +item.actuallyadditions.itemShovelQuartz.name=Black Quartz Shovel +item.actuallyadditions.itemHoeQuartz.name=Black Quartz Hoe +item.actuallyadditions.itemSwordQuartz.name=Black Quartz Sword +item.actuallyadditions.itemPickaxeObsidian.name=Obsidian Pickaxe +item.actuallyadditions.itemAxeObsidian.name=Obsidian Axe +item.actuallyadditions.itemShovelObsidian.name=Obsidian Shovel +item.actuallyadditions.itemHoeObsidian.name=Obsidian Hoe +item.actuallyadditions.itemSwordObsidian.name=Obsidian Sword +item.actuallyadditions.itemCrafterOnAStick.name=Crafting Table On A Stick +item.actuallyadditions.itemFoodBaguette.name=Baguette +item.actuallyadditions.itemFoodPizza.name=Pizza +item.actuallyadditions.itemFoodHamburger.name=Hamburger +item.actuallyadditions.itemFoodBigCookie.name=Big Cookie +item.actuallyadditions.itemFoodSubmarineSandwich.name=Submarine Sandwich +item.actuallyadditions.itemFoodToast.name=Toast +item.actuallyadditions.itemFoodChocolateToast.name=Toast o' Chocolate +item.actuallyadditions.itemFoodChocolate.name=Chocolate +item.actuallyadditions.itemFoodChocolateCake.name=Chocolate Cake +item.actuallyadditions.itemFoodNoodle.name=Noodle +item.actuallyadditions.itemFoodSpaghetti.name=Spaghetti +item.actuallyadditions.itemFoodFrenchFry.name=French Fry +item.actuallyadditions.itemFoodFrenchFries.name=French Fries +item.actuallyadditions.itemFoodFishNChips.name=Fish 'N' Chips +item.actuallyadditions.itemFoodCarrotJuice.name=Carrot Juice +item.actuallyadditions.itemFoodPumpkinStew.name=Pumpkin Stew +item.actuallyadditions.itemFoodCheese.name=Cheese +item.actuallyadditions.itemMiscCoil.name=Basic Coil +item.actuallyadditions.itemMiscCoilAdvanced.name=Advanced Coil +item.actuallyadditions.itemPotionRing.name=Ring of +item.actuallyadditions.itemPotionRingAdvanced.name=Advanced Ring of +item.actuallyadditions.itemSolidifiedExperience.name=Solidified Experience +item.actuallyadditions.itemDustIron.name=Crushed Iron +item.actuallyadditions.itemDustGold.name=Crushed Gold +item.actuallyadditions.itemDustDiamond.name=Crushed Diamond +item.actuallyadditions.itemDustLapis.name=Crushed Lapis +item.actuallyadditions.itemDustEmerald.name=Crushed Emerald +item.actuallyadditions.itemDustQuartz.name=Crushed Quartz +item.actuallyadditions.itemDustCoal.name=Crushed Coal +item.actuallyadditions.itemDustQuartzBlack.name=Crushed Black Quartz +item.actuallyadditions.itemFlaxSeed.name=Flax Seeds +item.actuallyadditions.itemHelmObsidian.name=Obsidian Helmet +item.actuallyadditions.itemChestObsidian.name=Obsidian Chestplate +item.actuallyadditions.itemPantsObsidian.name=Obsidian Pants +item.actuallyadditions.itemBootsObsidian.name=Obsidian Boots +item.actuallyadditions.itemHelmEmerald.name=Emerald Helmet +item.actuallyadditions.itemChestEmerald.name=Emerald Chestplate +item.actuallyadditions.itemPantsEmerald.name=Emerald Pants +item.actuallyadditions.itemBootsEmerald.name=Emerald Boots +item.actuallyadditions.itemHelmQuartz.name=Black Quartz Helmet +item.actuallyadditions.itemChestQuartz.name=Black Quartz Chestplate +item.actuallyadditions.itemPantsQuartz.name=Black Quartz Pants +item.actuallyadditions.itemBootsQuartz.name=Black Quartz Boots +item.actuallyadditions.itemBooklet.name=Actually Additions Manual +item.actuallyadditions.itemRarmorModuleReconstructor.name=Reconstruction Module +item.actuallyadditions.itemLaserWrench.name=Laser Wrench +item.actuallyadditions.itemChestToCrateUpgrade.name=Chest To Storage Crate Upgrade +item.actuallyadditions.itemSmallToMediumCrateUpgrade.name=Small To Medium Storage Crate Upgrade +item.actuallyadditions.itemMediumToLargeCrateUpgrade.name=Medium To Large Storage Crate Upgrade +item.actuallyadditions.itemMiscDrillCore.name=Drill Core +item.actuallyadditions.itemMiscBlackDye.name=Black Dye +item.actuallyadditions.itemCrystalRed.name=Restonia Crystal +item.actuallyadditions.itemCrystalBlue.name=Palis Crystal +item.actuallyadditions.itemCrystalLightBlue.name=Diamatine Crystal +item.actuallyadditions.itemCrystalGreen.name=Emeradic Crystal +item.actuallyadditions.itemCrystalBlack.name=Void Crystal +item.actuallyadditions.itemCrystalWhite.name=Enori Crystal +item.actuallyadditions.itemCrystalEmpoweredRed.name=Empowered Restonia Crystal +item.actuallyadditions.itemCrystalEmpoweredBlue.name=Empowered Palis Crystal +item.actuallyadditions.itemCrystalEmpoweredLightBlue.name=Empowered Diamatine Crystal +item.actuallyadditions.itemCrystalEmpoweredGreen.name=Empowered Emeradic Crystal +item.actuallyadditions.itemCrystalEmpoweredBlack.name=Empowered Void Crystal +item.actuallyadditions.itemCrystalEmpoweredWhite.name=Empowered Enori Crystal +item.actuallyadditions.itemMiscLens.name=Lens +item.actuallyadditions.itemColorLens.name=Lens of Color +item.actuallyadditions.itemExplosionLens.name=Lens of Detonation +item.actuallyadditions.itemDamageLens.name=Lens of Certain Death +item.actuallyadditions.itemDisenchantingLens.name=Lens of Disenchanting +item.actuallyadditions.itemCrateKeeper.name=Storage Crate Keeper +item.actuallyadditions.itemPickaxeCrystalRed.name=Restonia Crystal Pickaxe +item.actuallyadditions.itemAxeCrystalRed.name=Restonia Crystal Axe +item.actuallyadditions.itemShovelCrystalRed.name=Restonia Crystal Shovel +item.actuallyadditions.itemSwordCrystalRed.name=Restonia Crystal Sword +item.actuallyadditions.itemHoeCrystalRed.name=Restonia Crystal Hoe +item.actuallyadditions.itemHelmCrystalRed.name=Restonia Crystal Helmet +item.actuallyadditions.itemChestCrystalRed.name=Restonia Crystal Chestplate +item.actuallyadditions.itemPantsCrystalRed.name=Restonia Crystal Pants +item.actuallyadditions.itemBootsCrystalRed.name=Restonia Crystal Boots +item.actuallyadditions.itemPickaxeCrystalBlue.name=Palis Crystal Pickaxe +item.actuallyadditions.itemAxeCrystalBlue.name=Palis Crystal Axe +item.actuallyadditions.itemShovelCrystalBlue.name=Palis Crystal Shovel +item.actuallyadditions.itemSwordCrystalBlue.name=Palis Crystal Sword +item.actuallyadditions.itemHoeCrystalBlue.name=Palis Crystal Hoe +item.actuallyadditions.itemHelmCrystalBlue.name=Palis Crystal Helmet +item.actuallyadditions.itemChestCrystalBlue.name=Palis Crystal Chestplate +item.actuallyadditions.itemPantsCrystalBlue.name=Palis Crystal Pants +item.actuallyadditions.itemBootsCrystalBlue.name=Palis Crystal Boots +item.actuallyadditions.itemPickaxeCrystalLightBlue.name=Diamatine Crystal Pickaxe +item.actuallyadditions.itemAxeCrystalLightBlue.name=Diamatine Crystal Axe +item.actuallyadditions.itemShovelCrystalLightBlue.name=Diamatine Crystal Shovel +item.actuallyadditions.itemSwordCrystalLightBlue.name=Diamatine Crystal Sword +item.actuallyadditions.itemHoeCrystalLightBlue.name=Diamatine Crystal Hoe +item.actuallyadditions.itemHelmCrystalLightBlue.name=Diamatine Crystal Helmet +item.actuallyadditions.itemChestCrystalLightBlue.name=Diamatine Crystal Chestplate +item.actuallyadditions.itemPantsCrystalLightBlue.name=Diamatine Crystal Pants +item.actuallyadditions.itemBootsCrystalLightBlue.name=Diamatine Crystal Boots +item.actuallyadditions.itemPickaxeCrystalBlack.name=Void Crystal Pickaxe +item.actuallyadditions.itemAxeCrystalBlack.name=Void Crystal Axe +item.actuallyadditions.itemShovelCrystalBlack.name=Void Crystal Shovel +item.actuallyadditions.itemSwordCrystalBlack.name=Void Crystal Sword +item.actuallyadditions.itemHoeCrystalBlack.name=Void Crystal Hoe +item.actuallyadditions.itemHelmCrystalBlack.name=Void Crystal Helmet +item.actuallyadditions.itemChestCrystalBlack.name=Void Crystal Chestplate +item.actuallyadditions.itemPantsCrystalBlack.name=Void Crystal Pants +item.actuallyadditions.itemBootsCrystalBlack.name=Void Crystal Boots +item.actuallyadditions.itemPickaxeCrystalGreen.name=Emeradic Crystal Pickaxe +item.actuallyadditions.itemAxeCrystalGreen.name=Emeradic Crystal Axe +item.actuallyadditions.itemShovelCrystalGreen.name=Emeradic Crystal Shovel +item.actuallyadditions.itemSwordCrystalGreen.name=Emeradic Crystal Sword +item.actuallyadditions.itemHoeCrystalGreen.name=Emeradic Crystal Hoe +item.actuallyadditions.itemHelmCrystalGreen.name=Emeradic Crystal Helmet +item.actuallyadditions.itemChestCrystalGreen.name=Emeradic Crystal Chest +item.actuallyadditions.itemPantsCrystalGreen.name=Emeradic Crystal Pants +item.actuallyadditions.itemBootsCrystalGreen.name=Emeradic Crystal Boots +item.actuallyadditions.itemPickaxeCrystalWhite.name=Enori Crystal Pickaxe +item.actuallyadditions.itemAxeCrystalWhite.name=Enori Crystal Axe +item.actuallyadditions.itemShovelCrystalWhite.name=Enori Crystal Shovel +item.actuallyadditions.itemSwordCrystalWhite.name=Enori Crystal Sword +item.actuallyadditions.itemHoeCrystalWhite.name=Enori Crystal Hoe +item.actuallyadditions.itemHelmCrystalWhite.name=Enori Crystal Helmet +item.actuallyadditions.itemChestCrystalWhite.name=Enori Crystal Chest +item.actuallyadditions.itemPantsCrystalWhite.name=Enori Crystal Pants +item.actuallyadditions.itemBootsCrystalWhite.name=Enori Crystal Boots +item.actuallyadditions.itemPaxelCrystalRed.name=Restonia Crystal AIOT +item.actuallyadditions.itemPaxelCrystalBlue.name=Palis Crystal AIOT +item.actuallyadditions.itemPaxelCrystalLightBlue.name=Diamatine Crystal AIOT +item.actuallyadditions.itemPaxelCrystalBlack.name=Void Crystal AIOT +item.actuallyadditions.itemPaxelCrystalWhite.name=Enori Crystal AIOT +item.actuallyadditions.itemPaxelCrystalGreen.name=Emeradic Crystal AIOT +item.actuallyadditions.itemFoodBacon.name=Bacon +item.actuallyadditions.itemMiscEnderStar.name=Ender Star +item.actuallyadditions.itemSpawnerChanger.name=Spawner Changer +item.actuallyadditions.itemMiscSpawnerShard.name=Spawner Shards +item.actuallyadditions.itemMinecartFireworkBox.name=Firework Box Cart +item.actuallyadditions.itemWaterBowl.name=Bowl of Water +item.actuallyadditions.itemFilter.name=Item Filter +item.actuallyadditions.itemMiscBiomass.name=Biomass +item.actuallyadditions.itemMiscBiocoal.name=Bio Coal +item.actuallyadditions.itemPlayerProbe.name=Player Probe +item.actuallyadditions.itemWorm.name=Worm +item.actuallyadditions.itemBag.name=Traveler's Sack +item.actuallyadditions.itemVoidBag.name=Void Sack +item.actuallyadditions.itemMiscCrystallizedCanolaSeed.name=Crystallized Canola Seed +item.actuallyadditions.itemMiscEmpoweredCanolaSeed.name=Empowered Canola Seed +item.actuallyadditions.itemMiningLens.name=Lens of the Miner +item.actuallyadditions.itemMoreDamageLens.name=Lens of the Killer +item.actuallyadditions.itemFillingWand.name=Handheld Filler + +#Tooltips +tooltip.actuallyadditions.onSuffix.desc=On +tooltip.actuallyadditions.phantom.connected.desc= +tooltip.actuallyadditions.phantom.stored.desc= +tooltip.actuallyadditions.phantom.unbound.desc=The Connection was cleared! +tooltip.actuallyadditions.boundTo.desc=Bound to +tooltip.actuallyadditions.clearStorage.desc=Place in Crafting Grid to clear storage! +tooltip.actuallyadditions.phantom.connectedRange.desc=The Connection is fine and working. +tooltip.actuallyadditions.phantom.connectedNoRange.desc=The Connection is obstructed: It is either not in Range, not in loaded Chunks or not the right type of Block for this Phantom Device. +tooltip.actuallyadditions.phantom.notConnected.desc=This isn't connected to anything! +tooltip.actuallyadditions.phantom.blockInfo.desc=The connected Block is %s at %s, %s, %s that is %s Blocks away. +tooltip.actuallyadditions.factory.notPart.desc=The Controller isn't part of the right Multi-Block! Look at the Controller's Description! +tooltip.actuallyadditions.factory.works.desc=This Lava Factory is complete and can produce Lava! +tooltip.actuallyadditions.oredictName.desc=OreDictionary Entries +tooltip.actuallyadditions.noOredictNameAvail.desc=None +tooltip.actuallyadditions.codeName.desc=Code Name +tooltip.actuallyadditions.baseUnlocName.desc=Item's Unlocalized Name +tooltip.actuallyadditions.meta.desc=Metadata +tooltip.actuallyadditions.nbt.desc=NBT +tooltip.actuallyadditions.unlocName.desc=Meta's Unlocalized Name +tooltip.actuallyadditions.pressShift.desc=Press Shift +tooltip.actuallyadditions.disablingInfo.desc=If you don't want this Information to appear, disable it in the Actually Additions Config! +tooltip.actuallyadditions.ctrlForMoreInfo.desc=Press CTRL for Advanced Info +tooltip.actuallyadditions.extraInfo.desc=Advanced Info +tooltip.actuallyadditions.blockPhantomRange.desc=Range +tooltip.actuallyadditions.laser.stored.desc= +tooltip.actuallyadditions.laser.connected.desc= +tooltip.actuallyadditions.laser.cantConnect.desc=Can't connect: The relays are either part of the same network, the stored relay isn't the same type or doesn't exist anymore or it is too far away! +tooltip.actuallyadditions.itemBooklet.desc=Or "Booklet", if you will +tooltip.actuallyadditions.itemBooklet.sub.1=This book guides you through all of +tooltip.actuallyadditions.itemBooklet.sub.2=the features that Actually Additions +tooltip.actuallyadditions.itemBooklet.sub.3=has to offer. +tooltip.actuallyadditions.itemBooklet.sub.4=Use while holding to open. +tooltip.actuallyadditions.playerProbe.disconnect.1=The player you were probing has broken the connection before you could strap him to the Player Interface! Data will be cleared! +tooltip.actuallyadditions.playerProbe.disconnect.2=The player you were probing has disconnected before you could strap him to the Player Interface! Data will be cleared! +tooltip.actuallyadditions.playerProbe.probing=Probing +tooltip.actuallyadditions.playerProbe.notice=Look out! Someone tried to probe you and strap you to a Player Interface, but they failed! +tooltip.actuallyadditions.battery.discharge=Charging other items in inventory +tooltip.actuallyadditions.battery.noDischarge=Not charging other items in inventory +tooltip.actuallyadditions.battery.changeMode=Sneak-right-click to toggle. +tooltip.actuallyadditions.previouslyDoubleFurnace=Previously "Double Furnace" +tooltip.actuallyadditions.previouslyBag=Previously "Bag" +tooltip.actuallyadditions.previouslyVoidBag=Previously "Void Bag" + +#Gui Information +info.actuallyadditions.gui.animals=Animals +info.actuallyadditions.gui.enoughToBreed=Enough to breed! +info.actuallyadditions.gui.tooMany=Too many to breed! +info.actuallyadditions.gui.notEnough=Not enough to breed! +info.actuallyadditions.gui.disabled=Disabled +info.actuallyadditions.gui.up=Up +info.actuallyadditions.gui.down=Down +info.actuallyadditions.gui.north=North +info.actuallyadditions.gui.east=East +info.actuallyadditions.gui.south=South +info.actuallyadditions.gui.west=West +info.actuallyadditions.gui.all=All +info.actuallyadditions.gui.put=Put +info.actuallyadditions.gui.pull=Pull +info.actuallyadditions.gui.whitelist=Whitelist +info.actuallyadditions.gui.blacklist=Blacklist +info.actuallyadditions.gui.whitelistInfo=To let all items through, an empty blacklist can be used, to let no items through, an empty whitelist can be used. To configure certain items, place them or configured Item Filters in the slots. +info.actuallyadditions.gui.coffee=Coffee +info.actuallyadditions.gui.ok=Ok +info.actuallyadditions.gui.the=the +info.actuallyadditions.gui.smart=Smart Whitelist +info.actuallyadditions.gui.smartInfo=When pressing this, all items from inventories adjacent to this relay will be added to this part of the white- or blacklist. Adding Item Filters to the list before will cause them to also be filled. +info.actuallyadditions.inputter.info.1=This is the first Slot in the connected Inventory to

at. +info.actuallyadditions.inputter.info.2=This is the slot after the last Slot in the connected Inventory to

at. What that means: If you, for example, write 2 in the field to the left and 5 in this one, it will

at Slot 2, 3, and 4. +info.actuallyadditions.noLens=No Lens +info.actuallyadditions.noItem=No Items in Buffer +info.actuallyadditions.booklet.manualName.1.1=Actually Additions +info.actuallyadditions.booklet.manualName.1.2=Actual Additions +info.actuallyadditions.booklet.manualName.1.3=Actually Addiction +info.actuallyadditions.booklet.manualName.1.4=Actual Edition +info.actuallyadditions.booklet.manualName.1.5=Actual Addition +info.actuallyadditions.booklet.manualName.1.6=Actually Addons +info.actuallyadditions.booklet.manualName.1.7=Additional Addons +info.actuallyadditions.booklet.manualName.2=Manual +info.actuallyadditions.booklet.edition=Edition +info.actuallyadditions.deathRecorded=Your death has been recorded. Use a Death Tracker to find the death location! +info.actuallyadditions.placer.sides.1=Placement Sides +info.actuallyadditions.placer.sides.2=Usually when placing down blocks, they are placed towards the side of another block that you are looking at. Because the Phantom Placer can place blocks in mid-air, it doesn't know that. Usually you should just set it to a solid side. +info.actuallyadditions.energy.toRF=Click for Redstone Flux display mode! +info.actuallyadditions.energy.toT=Click for Tesla display mode! +info.actuallyadditions.energy.disclaimer=Note that this is just for looks. + +#Container Names +container.actuallyadditions.inputter.name=ESD +container.actuallyadditions.inputterAdvanced.name=Advanced ESD +container.actuallyadditions.grinder.name=Crusher +container.actuallyadditions.grinderDouble.name=Double Crusher +container.actuallyadditions.furnaceDouble.name=Powered Furnace +container.actuallyadditions.feeder.name=Feeder +container.actuallyadditions.giantChest.name=Small Storage Crate +container.actuallyadditions.giantChestMedium.name=Medium Storage Crate +container.actuallyadditions.giantChestLarge.name=Large Storage Crate +container.actuallyadditions.repairer.name=Repairer +container.actuallyadditions.placer.name=Placer +container.actuallyadditions.breaker.name=Breaker +container.actuallyadditions.dropper.name=Precision Dropper +container.actuallyadditions.crafting.name=Crafting Table On A Stick +container.actuallyadditions.canolaPress.name=Canola Press +container.actuallyadditions.fermentingBarrel.name=Fermenting Barrel +container.actuallyadditions.coalGenerator.name=Coal Generator +container.actuallyadditions.oilGenerator.name=Oil Generator +container.actuallyadditions.phantomPlacer.name=Phantom Placer +container.actuallyadditions.phantomBreaker.name=Phantom Breaker +container.actuallyadditions.phantomface.name=Phantomface +container.actuallyadditions.liquiface.name=Liquiface +container.actuallyadditions.energyface.name=Energyface +container.actuallyadditions.fluidPlacer.name=Fluid Placer +container.actuallyadditions.fluidCollector.name=Fluid Collector +container.actuallyadditions.coffeeMachine.name=Coffee Maker +container.actuallyadditions.drill.name=Drill +container.actuallyadditions.energizer.name=Energizer +container.actuallyadditions.enervator.name=Enervator +container.actuallyadditions.xpSolidifier.name=Experience Solidifier +container.actuallyadditions.cloud.name=Smiley Cloud +container.actuallyadditions.directionalBreaker.name=Long-Range Breaker +container.actuallyadditions.rangedCollector.name=Ranged Collector +container.actuallyadditions.miner.name=Vertical Digger +container.actuallyadditions.laserRelayItemWhitelist.name=Laser Relay +container.actuallyadditions.filter.name=Item Filter +container.actuallyadditions.bag.name=Traveler's Sack +container.actuallyadditions.voidBag.name=Void Sack +container.actuallyadditions.bioReactor.name=Bio Reactor +container.actuallyadditions.farmer.name=Farmer + +#Update Information +info.actuallyadditions.update.generic=[{"text":"There is an Update for "},{"text":"Actually Additions ","color":"dark_green"},{"text":"available!","color":"none"}] +info.actuallyadditions.update.versionCompare=[{"text":"Current Version: "},{"text":"%s","color":"dark_red"},{"text":", newest Version: ","color":"none"},{"text":"%s","color":"dark_green"}] +info.actuallyadditions.update.buttons=[{"text":"["},{"text":"Click for Changelog","color":"green","clickEvent":{"action":"open_url","value":"%s"}},{"text":"] [","color":"none"},{"text":"Click for Download","color":"green","clickEvent":{"action":"open_url","value":"%s"}},{"text":"]","color":"none"}] +info.actuallyadditions.update.buttonOptions=Click: Changelog, Shift-Click: Download! (In Browser) +info.actuallyadditions.update.failed=[{"text":"The Update Check for "},{"text":"Actually Additions ","color":"dark_green"},{"text":"failed! Check Logs for more Info!","color":"none"}] + +#Achievements +achievement.actuallyadditions.openBooklet=Knowledge Bringer! +achievement.actuallyadditions.openBooklet.desc=Open an Actually Additions Manual + +achievement.actuallyadditions.nameSmileyCloud=Your best friend +achievement.actuallyadditions.nameSmileyCloud.desc=Name a Smiley Cloud + +achievement.actuallyadditions.craftPhantomface=Zoom, Zoom, Items! +achievement.actuallyadditions.craftPhantomface.desc=Craft a Phantomface + +achievement.actuallyadditions.openTreasureChest=Underwater Dungeon +achievement.actuallyadditions.openTreasureChest.desc=Open a Treasure Chest + +achievement.actuallyadditions.craftLiquiface=Zoom, Zoom, Fluids! +achievement.actuallyadditions.craftLiquiface.desc=Craft a Phantom Liquiface + +achievement.actuallyadditions.craftEnergyface=Zoom, Zoom, RF! +achievement.actuallyadditions.craftEnergyface.desc=Craft a Phantom Energyface + +achievement.actuallyadditions.craftCoalGen=Cool Generator +achievement.actuallyadditions.craftCoalGen.desc=Craft a Coal Generator + +achievement.actuallyadditions.craftLeafGen=Munchdew? +achievement.actuallyadditions.craftLeafGen.desc=Craft a Leaf-Eating Generator + +achievement.actuallyadditions.craftReconstructor=Bzzzzrrrrt +achievement.actuallyadditions.craftReconstructor.desc=Craft an Atomic Reconstructor + +achievement.actuallyadditions.craftEmpowerer=Infusion Altar +achievement.actuallyadditions.craftEmpowerer.desc=Craft an Empowerer + +achievement.actuallyadditions.makeCrystal=Crystal clear +achievement.actuallyadditions.makeCrystal.desc=Make a Crystal with the Atomic Reconstructor + +achievement.actuallyadditions.craftLaserRelay=Relayed, not delayed +achievement.actuallyadditions.craftLaserRelay.desc=Craft a Laser Relay + +achievement.actuallyadditions.craftLaserRelayItem=Conducting information +achievement.actuallyadditions.craftLaserRelayItem.desc=Craft an Item Laser Relay + +achievement.actuallyadditions.craftItemInterface=Show your face +achievement.actuallyadditions.craftItemInterface.desc=Craft an Item Interface + +achievement.actuallyadditions.craftLaserRelayAdvanced=Energetic expansion +achievement.actuallyadditions.craftLaserRelayAdvanced.desc=Craft an Advanced Laser Relay + +achievement.actuallyadditions.craftLaserRelayExtreme=Mad with power +achievement.actuallyadditions.craftLaserRelayExtreme.desc=Craft an Extreme Laser Relay + +achievement.actuallyadditions.craftCrusher=Doublin' up! +achievement.actuallyadditions.craftCrusher.desc=Craft a Crusher + +achievement.actuallyadditions.craftDoubleCrusher=Double doublin' up! +achievement.actuallyadditions.craftCrusher.desc=Craft a Double Crusher + +achievement.actuallyadditions.pickUpCoffee=Makes you addicted +achievement.actuallyadditions.pickUpCoffee.desc=Harvest some coffee + +achievement.actuallyadditions.craftCoffeeMachine=Addiction in cups +achievement.actuallyadditions.craftCoffeeMachine.desc=Craft a Coffee Maker + +achievement.actuallyadditions.craftFireworkBox=Bang Boom Bang +achievement.actuallyadditions.craftFireworkBox.desc=Craft a Firework Box + +achievement.actuallyadditions.getCrystalsMilestone=Reconstruction Master +achievement.actuallyadditions.getCrystalsMilestone.desc=Create 200 Crystals + +achievement.actuallyadditions.openBookletMilestone=Bookworm! +achievement.actuallyadditions.openBookletMilestone.desc=Open the Manual 50 times + +achievement.actuallyadditions.getUnProbed=Sneaky! +achievement.actuallyadditions.getUnProbed.desc=Be probed by someone but sneak and notice it + +#Booklet Recipe Names +booklet.actuallyadditions.shapelessRecipe=Shapeless Recipe +booklet.actuallyadditions.shapedRecipe=Shaped Recipe +booklet.actuallyadditions.shapelessOreRecipe=Shapeless OreDictionary Recipe +booklet.actuallyadditions.shapedOreRecipe=Shaped OreDictionary Recipe + +#Booklet Entries +booklet.actuallyadditions.indexEntry.gettingStarted.name=Getting Started +booklet.actuallyadditions.indexEntry.misc.name=Miscellaneous +booklet.actuallyadditions.indexEntry.crossover.name=Mod Crossover +booklet.actuallyadditions.indexEntry.functionalNoRF.name=Blocks that don't use RF +booklet.actuallyadditions.indexEntry.allAndSearch.name=A list of everything +booklet.actuallyadditions.indexEntry.functionalRF.name=Blocks that use RF +booklet.actuallyadditions.indexEntry.generatingRF.name=Blocks that generate RF +booklet.actuallyadditions.indexEntry.itemsNoRF.name=Items that don't use RF +booklet.actuallyadditions.indexEntry.itemsRF.name=Items that use RF +booklet.actuallyadditions.indexEntry.reconstruction.name=Reconstruction +booklet.actuallyadditions.indexEntry.laserRelays.name=Laser Transport +booklet.actuallyadditions.indexEntry.updatesAndInfos.name=Updates and Infos + +#Booklet Info +booklet.actuallyadditions.recipeDisabled=The crafting recipe for this item is disabled in the Config File! If you're on a server, ask the server author to enable it in the config. If you're on a client, press the 'Open Config'-Button on the top right and enable the recipe! +booklet.actuallyadditions.unavailable=Parts of this feature are currently disabled or incomplete due to the not fully complete 1.8.9 and 1.9 Port. You may experience something that's missing or doesn't fully work. Please use this item with caution! +booklet.actuallyadditions.clickToSeeRecipe=Click to see more Information +booklet.actuallyadditions.amountOfWordsAndChars=Total: %s words, %s characters + +#Booklet Chapters +booklet.actuallyadditions.chapter.intro.name=A story about ActAdd +booklet.actuallyadditions.chapter.intro.text.1=For too long have the people of Minecraftia toiled under a relentless whip. A whip more hurtful and more injurious than that of any slave-master: inconvenience. Aye, the thousand million inconveniences that make up the grind, that force players to waste hours- nay, days!- chopping wood and farming wheat and other such mundane tasks, just to momentarily escape the remorseless tedium and experience the true joys of Minecraftia, building, caving and adventuring into the beautiful uncharted abundance +booklet.actuallyadditions.chapter.intro.text.2=of the world. Yet no sooner has one immersed oneself in this creative enterprise than the inconveniences return, like millions of furious bees pestering, stinging, swarming all over you until the game ceases to be enjoyable, and you are driven away from it forever. To that end, a certain Ellpeck has created this Actual Addition to the world of Minecraft, that will allow the player to better engage with the core experiences of the game- building and adventuring- by automating and streamlining the monotony that +booklet.actuallyadditions.chapter.intro.text.3=is grinding in Minecraft. Therefore, Ellpeck humbly presents to you this Actually Additions Manual, that shall teach you the ways of this modification and, ultimately, allow you to transcend inconvenience and attain enlightenment. ~by Tulkas + +booklet.actuallyadditions.chapter.craftingIngs.name=Crafting Ingredients +booklet.actuallyadditions.chapter.craftingIngs.text.1=Actually Additions has lots of items that use certain basic crafting items to be crafted. This chapter has all of these basic items grouped up so that you can see all of them at once. + +booklet.actuallyadditions.chapter.quartz.name=Black Quartz +booklet.actuallyadditions.chapter.quartz.text.1=Black Quartz is an Ore that generates in the world between layer and . When broken, it can be smelted in a furnace or crushed in a crusher to get broken down into Black Quartz. +booklet.actuallyadditions.chapter.quartz.text.2=Black Quartz items are used in lots of Crafting Recipes in Actually Additions. They are very important for most of the Items and, thus, should be mined when found in the world. They can be crafted into a couple of different Decorative Blocks shown on the following pages. Every variant can also be crafted into Stairs, Slabs and Walls using the well-known recipes. Nether Quartz, but deadlier + +booklet.actuallyadditions.chapter.cloud.name=Smiley Cloud +booklet.actuallyadditions.chapter.cloud.text.1=The Smiley Cloud is a magical floating cloud which is getting put to life through the piece of Solidified Experience inside it. It hovers up and down in its place all jolly and fun, and when right-clicking, you can give it a name. When giving it certain special names like "Ellpeck" or "Etho", it will have some special items it carries! +booklet.actuallyadditions.chapter.cloud.text.2=Huge potato + +booklet.actuallyadditions.chapter.coalStuff.name=Coal Stuff +booklet.actuallyadditions.chapter.coalStuff.text.1=Sometimes your Coal just burns for too long or too short. For that, you can craft Tiny Coal, Tiny Charcoal and Blocks of Charcoal for using them in a furnace. While the Block of Charcoal burns for as long as a Block of Coal, the Tiny Coal and Tiny Charcoal will burn for one eighth of a piece of coal, meaning it will smelt one item in a normal furnace. + +booklet.actuallyadditions.chapter.lamps.name=Lamps +booklet.actuallyadditions.chapter.lamps.text.1=Lamps are a block providing lots of light, similar to the mystic Glowstone or Torches, but they can be dyed with all of the 16 different colors either by crafting them or by placing them on the ground and right-clicking them with a piece of dye. When right-clicking them with an empty hand, they will turn on and off. +booklet.actuallyadditions.chapter.lamps.text.2=There is a way to toggle them with Redstone, however. If you place a Lamp Controller facing into one and give it a redstone signal, it will turn the lamp in front of it on and off. The thing that makes this very expandable, though, is that it also toggles every lamp adjacent to that lamp and every other lamp that gets touched. That means you can have a huge field of lamps and toggle them all with just one Lamp Controller. + +booklet.actuallyadditions.chapter.treasureChest.name=Treasure Chests +booklet.actuallyadditions.chapter.treasureChest.text.1=A Treasure Chest found underwater. +booklet.actuallyadditions.chapter.treasureChest.text.2=Treasure Chests are a semi-uncommon occurrence in Ocean Biomes. They appear on the bottom of the sea, probably left there by bypassing Ships who threw off or lost some load. These Chests however, hold some valuable items, if you're lucky. Breaking them won't yield you anything, though, you just have to right-click them to receive some amazing goodies. + +booklet.actuallyadditions.chapter.breaker.name=Breakers and Placers +booklet.actuallyadditions.chapter.breaker.text.1=The Breaker breaks blocks in front of it. It can be oriented in every direction. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.breaker.text.2=The Placer places blocks in front of it. It can be oriented in every direction. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.breaker.text.3=The Fluid Placer places liquids you supply it with. It needs 1000mB to place one block. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.breaker.text.4=The Fluid Collector will collect 1000mB of liquids in front of it, that's a filled bucket. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.phantomfaces.name=Phantomfaces +booklet.actuallyadditions.chapter.phantomfaces.text.1=Phantomfaces are a simple way to connect inventories together, they have a very important twist however: Instead of just connecting two inventories, a Phantomface simulates the inventory it is connected to, meaning you can put items into and pull out of the Phantomface itself. A Phantomface has a default range of blocks, but it can be upgraded with a Phantom Booster. Phantomfaces are connected by right-clicking an inventory with a Phantom Connector and then right-clicking the Phantomface. +booklet.actuallyadditions.chapter.phantomfaces.text.2=Important Information:It should be noted that the Phantomface is not supposed to be used as a wireless transport system. 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. It's not a short-range Tesseract. +booklet.actuallyadditions.chapter.phantomfaces.text.3=The default Phantomface works for items, like described on the first page. +booklet.actuallyadditions.chapter.phantomfaces.text.4=The Phantom Liquiface acts exactly like the normal Phantomface, but it works for liquid containing blocks. When given a Redstone Signal, it can be set to Auto-Output. Be careful with this though, as it could cause infinte loops and lag under certain conditions! +booklet.actuallyadditions.chapter.phantomfaces.text.5=The Phantom Energyface acts exactly like the normal Phantomface, but it works for RF, meaning you can connect it to things like Generators and Crushers. +booklet.actuallyadditions.chapter.phantomfaces.text.7=The Phantom Booster, as explained on the first page, ups the range of Phantomfaces by being placed on top of them. The maximum amount above one Phantomface is 3. + +booklet.actuallyadditions.chapter.phantomBreaker.name=Phantom Breakers & Placers +booklet.actuallyadditions.chapter.phantomBreaker.text.1=Phantom Breakers and Placers work similarly to the normal Phantomfaces, except that they are used to break and place blocks from a distance. Their default range is Blocks. To connect them to blocks to break, do as described in the Phantomface Chapter. When connecting them to air spaces, just place a block, store it and then break it again. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.esd.name=ESDs +booklet.actuallyadditions.chapter.esd.text.1=The ESD is a block that works similar to a Hopper but has a lot more functionality. You can choose the sides to input and output and you can precisely configure the range of slots to look at! For more precise information about ESDs, craft one and hover over the elements in their GUI! Its actual name is + +booklet.actuallyadditions.chapter.xpSolidifier.name=Experience Solidifier +booklet.actuallyadditions.chapter.xpSolidifier.text.1=The Experience Solidifer uses the player's experience and turns it into Solidified Experience which can later be used by right-clicking (or sneak-right-clicking to use a full stack!) to get the experience back. Additionally, you can put Solidified Experience into the solidifier, and it will pick up any XP Orbs that are on the ground and turn them into Solidified Experience, provided they weren't created by it. Solidified Experience is also sometimes dropped from mobs. + +booklet.actuallyadditions.chapter.greenhouseGlass.name=Greenhouse Glass +booklet.actuallyadditions.chapter.greenhouseGlass.text.1=Greenhouse Glass is a very effective way to speed up the growth of your plants! 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 significantly speed up the growth of the plant! It obviously has to be daytime, too. Thought that was obvious. +booklet.actuallyadditions.chapter.greenhouseGlass.text.2=Greenhouse Gas + +booklet.actuallyadditions.chapter.fishingNet.name=Fishing Net +booklet.actuallyadditions.chapter.fishingNet.text.1=The Fishing Net is a block that makes fishing a lot easier! Just place it above some water and it will, given a little bit of time, automatically catch fish for you! To store the fish, just place a chest above the Fishing Net or let the items spew out of the top and collect them manually. For the impatient + +booklet.actuallyadditions.chapter.feeder.name=Feeder +booklet.actuallyadditions.chapter.feeder.text.1=The Feeder 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 automatically feed the animals and if there is enough animals near it, it will shut off on its own to prevent lag or animal overflow. Greenpeace approves + +booklet.actuallyadditions.chapter.compost.name=Compost and Fertilizer +booklet.actuallyadditions.chapter.compost.text.1=The Compost is used to make Fertilizer from Bio-Mash. Fertilizer acts just like Bone Meal, but can be crafted in a much simpler manner just by crafting Bio-Mash and then putting 10 of those inside of a Compost and waiting for a bit. When the mash is composted, just take it out by right-clicking again. This, however, also works for some other items, which will be explained when needed. +booklet.actuallyadditions.chapter.compost.text.3=Bio-Mash can be crafted from any type of food or plantable item. + +booklet.actuallyadditions.chapter.crate.name=Storage Crates +booklet.actuallyadditions.chapter.crate.text.1=Storage Crates are big. Really big. They hold tons of items, more than 4 chests worth of them. Not only that, but they can be upgraded in size! View the following pages to get information on that and some other items regarding crates! +booklet.actuallyadditions.chapter.crate.text.4=Placing a Storage Crate Keeper inside the Storage Crate before breaking it will cause it to keep all of its items, however the Keeper will be destroyed in the process. Once upgraded via crafting, they will not lose their contents either. +booklet.actuallyadditions.chapter.crate.text.5=The Chest To Storage Crate Upgrade allows you to convert any chest into a Storage Crate, retaining its items! Just shift-right-click onto the chest to apply it. +booklet.actuallyadditions.chapter.crate.text.6=Similar to the Chest To Storage Crate Upgrade, the Small To Medium Storage Crate Upgrade will convert any Small Storage Crate into a Medium Storage Crate by simply shift-right-clicking it. It will retain its items. +booklet.actuallyadditions.chapter.crate.text.7=Similar to the Chest To Storage Crate Upgrade, the Medium To Large Storage Crate Upgrade will convert any Medium Storage Crate into a Large Storage Crate by simply shift-right-clicking it. It will retain its items. + +booklet.actuallyadditions.chapter.coffeeMachine.name=Coffee Maker +booklet.actuallyadditions.chapter.coffeeMachine.text.1=The Coffee Maker is a block used to make Coffee, a potion-like item that gives the user several buffs. To use the coffee maker, you need a Empty Cup, Coffee Beans, which can be found in the wild, harvested and planted on farmland again, RF/t and mB of Water per cup brewed. On the coffee maker 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, put some of the items shown on the later pages into the slots on the right. The more slots are filled up with one item, the higher the Amplifier of the effect will be. The Maximum Amplifier is the max amount of items to be put into one coffee. Order matters: When using, for example, Milk (to see what it does exactly, go to a later page), you are going to have to plan the items out inside the numbered slots 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 Fire Resistance 1 for 0:20 and Speed 1 for 2:30. +booklet.actuallyadditions.chapter.coffeeMachine.text.6=Milk is an important item when brewing coffee: It adds 2 minutes to all effects of items in slots with lower numbers while removing 1 amplifier. When the amplifier of an effect is 1, however, it will remove the effect. +booklet.actuallyadditions.chapter.coffeeMachine.text.7=The fact that you're reading this means that you either have HarvestCraft installed, or that you're looking at the lang file. This does the same thing as Milk, but for veggie guys. + +booklet.actuallyadditions.chapter.crusher.name=Crusher and Double Crusher +booklet.actuallyadditions.chapter.crusher.text.1=The Crusher turns every ore, ingot and gem into its corresponding dust using RF/t. When you put in Ores however, they will yield 2 pieces of dust. The Double Crusher basically does the same, however it can crush two ores at a time. On the following pages, you can see some additional useful recipes for inside the crusher. He's my crush + +booklet.actuallyadditions.chapter.furnaceDouble.name=Powered Furnace +booklet.actuallyadditions.chapter.furnaceDouble.text.1=The Powered Furnace works like a furnace, however, it uses RF/t and can smelt two items at a time. + +booklet.actuallyadditions.chapter.lavaFactory.name=Lava Factory +booklet.actuallyadditions.chapter.lavaFactory.text.1=The Lava Factory can produce blocks of lava given RF/block. The Block above it has to be surrounded with 4 Casing Blocks, otherwise it won't be able to produce Lava. Right-Clicking on the Lava Factory will show you if it's able to produce Lava in its current setup. Lava, for a fact. ory + +booklet.actuallyadditions.chapter.energizer.name=Energizer and Enervator +booklet.actuallyadditions.chapter.energizer.text.1=The Energizer charges items that hold RF using its energy supply. +booklet.actuallyadditions.chapter.energizer.text.2=The Enervator discharges items that hold RF and stores the energy in its energy supply. + +booklet.actuallyadditions.chapter.repairer.name=Item Repairer +booklet.actuallyadditions.chapter.repairer.text.1=The Item Repairer uses RF/t to repair items that can be repaired in an Anvil without needing any materials! + +booklet.actuallyadditions.chapter.coalGen.name=Coal Generator +booklet.actuallyadditions.chapter.coalGen.text.1=The Coal Generator generates RF/t through the use of everything that can be put into a furnace. 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 Solar Panel produces RF/t when it has direct daylight above it and it is daytime. Any blocks above it that are transparent will decrease its efficiency, however. Panelled walls + +booklet.actuallyadditions.chapter.heatCollector.name=Heat Collector +booklet.actuallyadditions.chapter.heatCollector.text.1=The Heat Collector is a block that produces RF/t. To do that, it needs to be surrounded with at least Lava Blocks directly around it on any side except the top one. But watch out, it sometimes destroys some of these Lava Blocks! + +booklet.actuallyadditions.chapter.canola.name=Canola and Oil +booklet.actuallyadditions.chapter.canola.text.1=Using Canola, you can make a simple, yet effective power generation system from natural resources. To do this, first find some Canola Plants in the wild and plant them on your farm. The Canola you get out of them can be used in a Canola Press to make Canola Oil. This can be used in an Oil Generator. It displays the amount of power it generates in its GUI, however, it can be upgraded further to yield more power than that! +booklet.actuallyadditions.chapter.canola.text.2=For starters, you can use a Fermenting Barrel to convert the Canola Oil into Oil. If you're still not satisfied with the power that generates, place it on the ground and throw in a Crystallized Canola Seed to make Crystallized Oil. If that isn't enough for you either, make a Empowered Canola Seed, toss that into some Crystallized Oil to get Empowered Oil! +booklet.actuallyadditions.chapter.canola.text.5=If you break the Oil Generator, it will keep the liquid inside. If you want to empty it out, just place it in the crafting grid and all of the fluid will be drained. + +booklet.actuallyadditions.chapter.wings.name=Wings Of The Bats +booklet.actuallyadditions.chapter.wings.text.1=Sometimes, bats will drop Wings. These wings can't really be used to fly, but that's just because they're not powerful enough. To make them more powerful, you can craft Wings Of The Bats. When you have these in your inventory, they will allow you to fly like in creative mode. + +booklet.actuallyadditions.chapter.foods.name=Foodstuffs + +booklet.actuallyadditions.chapter.leafBlower.name=Leaf Blowers +booklet.actuallyadditions.chapter.leafBlower.text.1=The Leaf Blower can blow away tall grass, flowers and other stuff around you when you hold right-click. There is an Advanced Leaf Blower, which works like the basic one, except that it operates much faster and also breaks Leaves. + +booklet.actuallyadditions.chapter.aiots.name=All-In-One-Tools (AIOTs) +booklet.actuallyadditions.chapter.aiots.text.1=An All-In-One-Tool is a tool that is Pickaxe, Axe, Shovel, Sword and Hoe in one. They are available in every common material. Additionally to being able to mine stone, wood and softer materials, when not sneaking, they create Farmland on right-click, whereas when sneaking, they create Paths. + +booklet.actuallyadditions.chapter.jams.name=Jams +booklet.actuallyadditions.chapter.jams.text.1=Once, there was a Kitty who really wanted some Jam. So I made some Jam. Seriously, this is Jam. You can find it in Village Houses or buy it from the Jam Villager. Every Jam gives you two different potion effects! +booklet.actuallyadditions.chapter.jams.text.2=A Jam House and its inhabitant +booklet.actuallyadditions.chapter.jams.text.3=So. You're probably wondering what the names of the jams mean. Now, let me tell you: -Honeydew Melon and Kiwi -Honeydew Melon and Coconut -Pineapple and Coconut -Cherry, Apple and Cinnamon -Plum, Apple and Lemon -Grape, Kiwi and Banana -Currant, Banana and Raspberry 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 Potion Rings have two versions: A normal version and an advanced version. The normal version, when you have it in your hand, will give you a Potion Effect 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 Drill works like a Pickaxe and a Shovel. It uses RF per block. It can be charged in an Energizer and upgraded by sneak-right-clicking with it in your hand. There is a lot of upgrades, but here is an explanation of some of them: The Mining Uprgades enlarge the hole which the Drill digs. The Placement Upgrade, after you right-click it in any slot of your hotbar, will make the Drill able to place a block from that slot by right-clicking. You can also put a Battery inside the Drill to give it more charge. +booklet.actuallyadditions.chapter.drill.text.2=It should be noted that, in fact, the Speed, Mining and Fortune Upgrades need their previous tiers to be installed for them to work. This means that, if you want Speed III in the Drill, it needs Speed II and Speed I inside it as well. +booklet.actuallyadditions.chapter.drill.text.4=The Drill can also be dyed in Minecraft's 16 colors. 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 Teleport Staff, when charged in an Energizer, can be right-clicked to teleport you to where you're looking. 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 5 degrees, otherwise the teleport will fail. + +booklet.actuallyadditions.chapter.magnetRing.name=Ring Of Magnetism +booklet.actuallyadditions.chapter.magnetRing.text.1=The Ring Of Magnetism, when it is charged in an Energizer and inside your inventory, uses RF 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 Ring Of Growth, when it is charged in an Energizer and in your hand, uses RF to make plants around you grow much faster. + +booklet.actuallyadditions.chapter.waterRemovalRing.name=Ring Of Liquid Banning +booklet.actuallyadditions.chapter.waterRemovalRing.text.1=The Ring Of Liquid Banning, when it is charged in an Energizer and in your hand, uses RF to remove Lava and Water. + +booklet.actuallyadditions.chapter.batteries.name=Batteries +booklet.actuallyadditions.chapter.batteries.text.1=Batteries are a good way to store RF to move around. They can be charged in an Energizer and discharged in an Enervator. When holding them in hand, they can be sneak-right-clicked to put them into discharge mode. This means that they will charge any other items in your inventory. + +booklet.actuallyadditions.chapter.leafGen.name=Leaf-Eating Generator +booklet.actuallyadditions.chapter.leafGen.text.1=The Leaf Generator can generate RF just by being placed alongside some Leaves. It will destroy the leaves, generating RF per leaf broken in the process. By right-clicking the generator, you can see how much RF it has stored. It has a range of blocks. +booklet.actuallyadditions.chapter.leafGen.text.2=Munchy + +booklet.actuallyadditions.chapter.longRangeBreaker.name=Long-Range Breaker +booklet.actuallyadditions.chapter.longRangeBreaker.text.1=The Long-Range Breaker works like a normal Breaker, but it can break up to blocks in front of it. Per block broken, it uses RF. When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. Breaking the th wall +booklet.actuallyadditions.chapter.longRangeBreaker.text.2=Sequence Breaking + +booklet.actuallyadditions.chapter.dropper.name=Automatic Precision Dropper +booklet.actuallyadditions.chapter.dropper.text.1=The Automatic Precision Dropper works much like a normal dropper, but it will drop items without needing a Redstone Signal. It also won't spit them out all over the ground, but it will drop them straight into the direction you point it at! When right-clicking it with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.rangedCollector.name=Ranged Collector +booklet.actuallyadditions.chapter.rangedCollector.text.1=The Ranged Collector works much like a hopper, in that it collects items around it, having the power, however, to pick up items that are in an area of blocks around it. It has a filter that can be set to white- or blacklist. 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=Balls of Fur dropped by live cats. More information on the next page. +booklet.actuallyadditions.chapter.hairBalls.text.2=Balls of Fur are an item rarely dropped by cats which have been tamed by the player. Cats are very mysterious creatures as they appear to get everything stuck in their fur. Balls of Fur may seem disgusting at first, but when removing all of the hair by right-clicking, they will reveal some valuable items. Or just some String. FUURRRRRR!! + +booklet.actuallyadditions.chapter.laserIntro.name=Intro to Laser Relays +booklet.actuallyadditions.chapter.laserIntro.text.1=Laser Relays exist in different variants, however, they all have the same basic functionality. A Laser Relay can be connected to one ore more other laser relays using a Laser Wrench. This can be achieved by right-clicking the first relay and then right-clicking the second one. There can be an infinite number of interconnected Laser Relays, making what is called a Network or System. Such a network will have no predefined starting or end point, but instead, +booklet.actuallyadditions.chapter.laserIntro.text.2=every Laser Relay has access to interact with all of the other ones in different ways. Connecting two Laser Relays has some restrictions, however. First of all, two connected Laser Relays must be at most blocks apart from each other. Additionally, two Laser Relays of a different type cannot be connected to one another. View the other items in this chapter to find out more about different types of Laser Relays! + +booklet.actuallyadditions.chapter.laserRelays.name=Energy Laser Relays +booklet.actuallyadditions.chapter.laserRelays.text.1=The Energy Laser Relay is a block that can wirelessly transfer RF (or Tesla). When placing a Power Generator or Receiver next to the relay, it can receive Power from any other relay in the network and send power to any other relay as well. During an energy transfer, they have a light Energy Loss, but nothing to worry about. +booklet.actuallyadditions.chapter.laserRelays.text.2=There are three tiers of Energy Laser Relay. They have different maximum amounts of energy to be transferred through them in one tick. The energy caps are, in order, , , and . Additionally, the energy loss is a bit higher every tier. Interconnecting different tiers is possible, however the lowest cap and highest loss of the two relays connected to the blocks involved in the transfer is considered. + +booklet.actuallyadditions.chapter.blackLotus.name=Black Lotus +booklet.actuallyadditions.chapter.blackLotus.text.1=Think of this: You need to craft black wool, black clay or anything else that needs black dye but you are just guilty about killing so many innocent squids? Well, the Black Lotus is exactly the thing you need! Just look around in the wild a bit, and you will find one, then being able to craft some Black Dye that can be used instead of Ink Sacs so that you don't need to kill poor squids and L any longer. +booklet.actuallyadditions.chapter.blackLotus.text.2=Do the lotus pose + +booklet.actuallyadditions.chapter.crystals.name=Crystals and Reconstructor +booklet.actuallyadditions.chapter.crystals.text.1=The Atomic Reconstructor is used to craft Crystals, which are the main crafting ingredient in most items from Actually Additions. Upon being supplied with power, it shoots out a Laser. When the Laser hits a block, it will convert all surrounding items and blocks, provided they can be converted. When shooting a laser, it uses RF, but additional rates vary depending on the conversion. +booklet.actuallyadditions.chapter.crystals.text.2=There are various Lenses 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. See the Reconstruction section in the booklet for more information. When right-clicking the Reconstructor with a Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. +booklet.actuallyadditions.chapter.crystals.text.3=It should be noted that any recipes listed without information about Lenses don't use one. 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 automate this. There is a very simple way to do accomplish this: Place the Atomic Reconstructor down facing into a Precision Dropper (to find it, look it up in the All Items Entry!). Next, place a Ranged Collector in the area that has the converted items set as a whitelist. Now you can just chuck your raw materials into the Dropper to convert them! +booklet.actuallyadditions.chapter.crystals.text.6=Molecular Transformilator + +booklet.actuallyadditions.chapter.bookTutorial.name=Intro to the Manual +booklet.actuallyadditions.chapter.bookTutorial.text.1=The Actually Additions Manual, the book you are looking at right now, contains a variety of useful information about all of the items. Once you get the hang of it, it is very easy to navigate. Here is a quick rundown: While you are in a chapter, like this one, you can use the white buttons at the bottom to turn the page back or forwards. This can also be done by using the scroll wheel. Chapters, however, aren't the only thing that this book consists of. +booklet.actuallyadditions.chapter.bookTutorial.text.2=Were you to go back a level via the buttom on the top left or via right-clicking, you would find yourself inside an entry. Entries contain all chapters that are related to a specific topic. Here, you can also turn pages and click the items on the page. Were you to go back another level (again, via the button on the top left or right-clicking), you would find yourself on the main page of the manual. Turn the page now via the button on the bottom right. +booklet.actuallyadditions.chapter.bookTutorial.text.3=On the main page, you can see (and click on!) a list of all of the entries. The bookmarks are placed at the bottom of the booklet. While you are in a chapter, you can bookmark the page you are currently on for later viewing. The booklet also has a lot of other functions, though. Look around in the GUI to explore them all! Now press the back button on the top left or right-click to leave this chapter. + +booklet.actuallyadditions.chapter.reconstructorLenses.name=Intro to Lenses +booklet.actuallyadditions.chapter.reconstructorLenses.text.1=The Atomic Reconstructor, by default, can only convert some blocks. This can be changed, however, with Lenses. They can be attached to the Reconstructor via right-clicking with them in hand. To remove them, right-click with an empty hand. They all use a different amount of power and will only activate once they have it. Lenses have lots of different features and uses, as you can see in this chapter. However, there is also some other useful recipes too. + +booklet.actuallyadditions.chapter.additionalRecipes.name=Additional Recipes + +booklet.actuallyadditions.chapter.lensColor.name=Lens of Color +booklet.actuallyadditions.chapter.lensColor.text.1=The Lens of Color changes the color of Stained Glass and Panes, Stained Clay, Carpetet, Dye, Lamps, Wool in its sight. Contrary to using no lens, it goes through blocks and only converts blocks it touches. + +booklet.actuallyadditions.chapter.lensDeath.name=Lens of Certain Death +booklet.actuallyadditions.chapter.lensDeath.text.1=The Lens of Certain Death will, deal lots of damage to whatever steps into it, enough, in fact, to kill a player in a single hit. + +booklet.actuallyadditions.chapter.lensDetonation.name=Lens of Detonation +booklet.actuallyadditions.chapter.lensDetonation.text.1=The Lens of Detonation will create a firey explosion around the block the laser hits. Be careful with this. Seriously. (With this lens, the laser also goes 3 times as far!) + +booklet.actuallyadditions.chapter.lensDisenchanting.name=Lens of Disenchanting +booklet.actuallyadditions.chapter.lensDisenchanting.text.1=The Lens of Disenchanting can be used to tranfer a single enchantment from an enchanted item to either a Book or an already Enchanted Book. This can be achieved by throwing the two items in front of the laser, but they have to be together in one blockspace. When they are hit by the laser, the topmost enchantment from the non-book item is removed and added onto the book. However, this uses RF. + +booklet.actuallyadditions.chapter.lensMining.name=Lens of the Miner +booklet.actuallyadditions.chapter.lensMining.text.1=The Lens of the Miner can create ores out of blocks in its sight. When the laser hits a block of stone, it will convert it into different overworld ores, whereas a block of netherrack will be converted into nether ores. Each operation uses RF, however each operation requires additional power depending on the rarity of the ore that is generated. + +booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.name=Some Decor +booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.text.1=Sometimes, when you build, you notice there is just not enough decor blocks. Well, we present to you: Ethetic Blocks! These are some quartz-like decor blocks with lovely patterns that can also be converted into Stairs, Slabs and Walls using the usual, well-known recipe patterns. + +booklet.actuallyadditions.chapter.miner.name=Vertical Digger +booklet.actuallyadditions.chapter.miner.text.1=The Vertical Digger can be used to automatically mine blocks from the world. It has two modes: It can either only mine ores or mine everything. When mining a block, it uses about RF. Mined items get stored in an internal buffer that can be accessed through right-clicking. Its default radius is , but much like Phantomfaces, the Digger's range can be upgraded by placing 3 or less Phantom Boosters above it. +booklet.actuallyadditions.chapter.miner.text.2=(Works with any colored Drill) I dig it + +booklet.actuallyadditions.chapter.fireworkBox.name=Firework Box +booklet.actuallyadditions.chapter.fireworkBox.text.1=The Firework Box is a perfect thing for New Year's! When placed down and supplied with some RF, it will shoot out some randomly generated Fireworks around it. For each shot, it uses RF. 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 Redstone Torch in hand, it will change between a mode where it gets deactivated by Redstone and a mode where it responds to pulses. + +booklet.actuallyadditions.chapter.rf.name=RF? Tesla? +booklet.actuallyadditions.chapter.rf.text.1=For anyone who hasn't used much of a mod that uses RF yet, here's a quick explanation. Redstone Flux is a power system used by many mods. The basic concept is is that machines generate or use it every game tick. That's what RF/t means. To connect machines, just place them next to each other. Also, if you fancy that sort of thing, all machines also work with Tesla in the same way they do with RF. + +booklet.actuallyadditions.chapter.enderStar.name=Ender Star +booklet.actuallyadditions.chapter.enderStar.text.1=The Ender Star can be obtained by both killing a wither and going to the end to collect Dragon's Breath. The latter is obtained by using a bottle on the purple particles that the dragon spits out. The Ender Star is used for multiple crafting recipes. + +booklet.actuallyadditions.chapter.phantomRedstoneface.name=Phantom Redstoneface +booklet.actuallyadditions.chapter.phantomRedstoneface.text.1=If you don't know what Phantomfaces are, check the Phantomfaces Entry first. The Phantom Redstoneface can be used to transmit redstone signals. This one, however, works differently to the other Phantomfaces as it only works in one direction. What this means is that the connected block has to provide redstone power for redstone next to the Redstoneface to become powered. It does not work the other way around. + +booklet.actuallyadditions.chapter.spawnerShard.name=Spawner Shards +booklet.actuallyadditions.chapter.spawnerShard.text.1=The Spawner Shards are a crafting ingredient found by breaking spawners. Once a spawner in the world is broken, it will always drop one Shard. + +booklet.actuallyadditions.chapter.spawnerChanger.name=Spawner Changer +booklet.actuallyadditions.chapter.spawnerChanger.text.1=The Spawner Changer is an item that can be used to manipulate the mobs that spawners spawn. This can be accomplished by first of all picking up the desired mob to spawn with the Changer, killing it in the process. Next, the Changer can be right-clicked on the spawner, causing the spawner to be changed and the changer itself to be destroyed. This process probably won't work with every type of mob though. + +booklet.actuallyadditions.chapter.itemStorage.name=Laser Relay Item Storage +booklet.actuallyadditions.chapter.itemStorage.text.1=The basic mechanics of the Item Laser Relay are much the same as any other Laser Relay. Once connected up into a network (or system), said network will know about all of the inventories adjacent to all of the relays and will be able to interact with them. +booklet.actuallyadditions.chapter.itemStorage.text.2=However, Item Interfaces are the way to actually communicate and interact with the entire system at once, meaning you can pull items out of or put into an Item Interface via automation, be it Hoppers or ESDs or pipes, and they will transfer the items into or out of ALL OF the inventories mentioned previously. This isn't really useful for a single inventory, but very useful if you are planning to build an automated storage. +booklet.actuallyadditions.chapter.itemStorage.text.3=Above, you can see such a system. Putting items into the left chest will cause them to be stored in the one in the middle, and the hopper on the right pulls them out of the chest in the middle. This is more useful with multiple chests. +booklet.actuallyadditions.chapter.itemStorage.text.4=The whole chest part of this is very important, as such a setup as the one seen above will not work. This is because every system needs a storage space, and an Item Interface does not count as that. +booklet.actuallyadditions.chapter.itemStorage.text.5=But how to make a system that transports items from A to B? Well, just place the relay directly onto a chest or hopper and the items will just go there. As you can see, the amount of Item Interfaces in one system doesn't matter. +booklet.actuallyadditions.chapter.itemStorage.text.6=Here, you can see the use of an Advanced Item Laser Relay. They can have a whitelist/blacklist configuration for both connections going into them (inbound, the left side in this case) and out of them (outbound, the right side in this case). +booklet.actuallyadditions.chapter.itemStorage.text.7=You can also attach these advanced relays to Item Interfaces, which will mean that they will only have access to certain items from the system. Here, outbound means out of the system, and inbound means into the system. +booklet.actuallyadditions.chapter.itemStorage.text.8=What you can do is take this to the next level and build a fully-fledged storage system with multiple chests. Pulling out of or inputting into an Item Interface here will pull out of the entire system. +booklet.actuallyadditions.chapter.itemStorage.text.9=To make this system work in more complex situations, the Priority of a Laser Relay can be changed by holding a Compass and right-clicking on it. A higher priority means that the Laser Relay will first receive items and first have them extracted from it. You could say that it is first in line for being dealt with by an Item Interface. By defualt, the Advanced Item Laser Relay has a priority of 10. Priorities can be pretty much infinite and even negative! + +booklet.actuallyadditions.chapter.banners.name=Additional Banners +booklet.actuallyadditions.chapter.banners.text.1=For special items in Actually Additions, there is also special Banner patterns. All of these just require the item next to the banner in the crafting grid with, optionally, a color. You can also combine them with a Shield like normal. The items that have a banner pattern are: The Actually Additions Manual The Phantom Connector The Leaf Blower (not the advanced version) The Drill (only the white one works due to the way banners work) + +booklet.actuallyadditions.chapter.lushCaves.name=Lush Caves +booklet.actuallyadditions.chapter.lushCaves.text.1=If you have ever done any Cave exploration, you will have probably noticed some caves that have trees and grass inside of them. These can be found at any height underground all over the world, and they can be very valuable when needing wood for torches and tools at some point. Sometimes, there might also be some treasure hidden in the trees! If you didn't ever see one before, look on the next page for a picture! + +booklet.actuallyadditions.chapter.waterBowl.name=Bowl of Water +booklet.actuallyadditions.chapter.waterBowl.text.1=The Bowl of Water can be obtained by right-cliking a bowl on water anywhere in the world. When the Bowl of Water is then right-clicked onto a block, the water will be placed, much like a Bucket. This can be used, for example, for early game farms. + +booklet.actuallyadditions.chapter.playerInterface.name=Player Interface +booklet.actuallyadditions.chapter.playerInterface.text.1=The Player Interface works in a similar way to the Phantomface, except it is connected to a player instead of a block, and the connection is established by placing it down. When inputting items, they will move to the player's inventory. Also, when inputting RF, it will charge the items in the player's inventory. It has a default range of blocks, however, it can be expanded by placing up to 3 Phantom Boosters on top of it. + +booklet.actuallyadditions.chapter.displayStand.name=Display Stand +booklet.actuallyadditions.chapter.displayStand.text.1=The Display Stand is a block that can, for one, display any item or block by right-clicking with it onto the display stand. It will then be floating around on top. To take it out of there again, just right-click with an empty hand. The other feature, however, is that some items can be put onto it, having special effects. This, however, will require the stand to get RF. Read more on the next page. +booklet.actuallyadditions.chapter.displayStand.text.2=The Leaf Blower and Advanced Leaf Blower can be placed onto the display stand, resulting in the grass and leaves around it to be blown away. Potion Rings can be placed onto the display stand. The normal version will give the specified potion effect to only one living entity in a small area, while the advanced version will give a potion effect to all living entities in a big area while using up a significant amount of RF. + +booklet.actuallyadditions.chapter.itemFilter.name=Item Filter +booklet.actuallyadditions.chapter.itemFilter.text.1=The Item Filter can be used in Advanced Item Laser Relays, ESDs and Ranged Collectors to enlargen the size of their whitelist. This can be done by right-clicking with the filter in hand and placing items to be filtered inside of it. The filter can then be placed into any whitelist slot in the desired machine. For more information on this, hover over the whitelist buttons in the GUIs of whitelistable machines! + +booklet.actuallyadditions.chapter.videoGuide.name=A Video Guide +booklet.actuallyadditions.chapter.videoGuide.text.1=If you want to have a visual introduction to see what Actually Additions has to offer, you can watch this really awesome video by a friend of mine, Booty Toast (yes, weird name, I know). His video covers most of the main stuff the mod has to offer, however it is a bit outdated and doesn't cover everything. It's still a great introduction to the mod though. +booklet.actuallyadditions.chapter.videoGuide.button.1=Watch Video + +booklet.actuallyadditions.chapter.shockSuppressor.name=Shock Absorber +booklet.actuallyadditions.chapter.shockSuppressor.text.1=The Shock Absorber is a block that, when supplied with RF, it will protect an area of up to blocks around it from any type of Explosion, be it ghasts, TNT or creepers. Every block that is protected will result in a loss of RF. +booklet.actuallyadditions.chapter.shockSuppressor.text.2=Credit where credit is due: Or something like that. Anyways, this thing was thought up and suggested to me by praetoras. Thanks for that brilliant idea! What's a fourth wall..? + +booklet.actuallyadditions.chapter.tinyTorch.name=Tiny Torch +booklet.actuallyadditions.chapter.tinyTorch.text.1=Yea. + +booklet.actuallyadditions.chapter.playerProbe.name=Player Probe +booklet.actuallyadditions.chapter.playerProbe.text.1=The Player Probe can be used to change the player a Player Interface is connected to. If you don't know what the Player Interface does, look it up in here first! To use the Player Probe, simply right-click any player with it and then right-click the interface. But watch out! The Probe will notify the player and disconnect from him whenever he sneaks and will also do so when he leaves the server! Shenanigans + +booklet.actuallyadditions.chapter.worms.name=Worms +booklet.actuallyadditions.chapter.worms.text.1=The Worms are a pretty useful species. They will, once placed down on dirt or grass, help you till the land around them in a 3x3 area and keep it wet. Additionally, they will help the crops grow faster by making the ground nice and soft. Worms can be gotten by simply tilling grass with a hoe. If you want to remove a worm, just break the block it is on. +booklet.actuallyadditions.chapter.worms.text.2=A worm at work + +booklet.actuallyadditions.chapter.bags.name=Traveler's Sack and Void Sack +booklet.actuallyadditions.chapter.bags.text.1=Sacks are an easy way to transport items around, however, they have some additional functions. First of all, in their GUI that is accessed by right-clicking, they can be set to automatically suck up items on the ground. Also, they have a couple of filter slots where you can configure what can actually go into the sacks. Void Sacks have the same functionality as normal ones, however, they remove items from the world instead of storing them. +booklet.actuallyadditions.chapter.bags.text.2=Additionally, Sacks can be, when filled up with a lot of items, right-clicked on a container like a Chest or a Storage Crate to quickly move all of the items in the sack into the chest. + +booklet.actuallyadditions.chapter.empowerer.name=Empowerer +booklet.actuallyadditions.chapter.empowerer.text.1=The Empowerer is a mid-tier block that can be used to empower crystals and other items. To use it, items that should be empowered can be right-clicked onto the Empowerer, and empowering items need to be placed on Display Stands that are two blocks away, like seen in the picture on the next page. To then activate the process, every Display Stand needs to be powered with a lot of RF that is then drained to empower the item on the Empowerer. +booklet.actuallyadditions.chapter.empowerer.text.2=The placement of the Display Stands +booklet.actuallyadditions.chapter.empowerer.text.3=Because every mod needs an Infusion Altar +booklet.actuallyadditions.chapter.empowerer.text.4=The Display Stand can also be used for other things! See the Blocks that use RF section for more info about it! + +booklet.actuallyadditions.chapter.fluidLaser.name=Fluid Laser Relays +booklet.actuallyadditions.chapter.fluidLaser.text.1=The Fluid Laser Relays work much in the same way that normal Laser Relays do, however the thing that makes the Fluid Laser Relay different from the Energy Laser Relay, however, is that it transfers fluids from internal tanks of blocks into other blocks. + +booklet.actuallyadditions.chapter.distributorItem.name=Item Distributor +booklet.actuallyadditions.chapter.distributorItem.text.1=The Item Distributor is a simple way to split up items and make them go in different directions. The distributor will pull items into it from the top by itself, and then split them up and put them out into inventories connected to all of the other sides of it. It tries to do split the items equally, however this works best when inputting one item at a time, which its pulling feature does automatically. + +booklet.actuallyadditions.chapter.bioReactor.name=Bio Reactor +booklet.actuallyadditions.chapter.bioReactor.text.1=The Bio Reactor uses all types of seeds, foodstuffs and plants to generate RF! To do this, just place the items in its GUI. If you try this out, you will notice that it doesn't generate that much power by default. However, the more different kinds of plants, seeds and foodstuffs it has, the more power it will generate! + +booklet.actuallyadditions.chapter.farmer.name=Farmer +booklet.actuallyadditions.chapter.farmer.text.1=The Farmer is a block that can, once placed in the world, plant and harvest crops like Wheat, Potatoes, Canola and more. The left side of its GUI is reserved for seeds, while the right side will contain the harvested goods. It will farm in a 9x9 area in front of it. For every operation, it uses RF. my fam + +booklet.actuallyadditions.chapter.lensMoreDeath.name=Lens of the Killer +booklet.actuallyadditions.chapter.lensMoreDeath.text.1=The Lens of the Killer works much like the Lens of Certain Death, however it will also drop experience and player-kill loot. This means, however, that it will use a lot more power. To pick up the experience it drops, you might want to try an Experience Solidifier. + +booklet.actuallyadditions.chapter.fillingWand.name=Handheld Filler +booklet.actuallyadditions.chapter.fillingWand.text.1=The Handheld Filler is a great way to fill any area with blocks. To do this, first sneak-right-click a block in the world that you want to fill an area with. To actually fill an area, look at the first corner and hold right-click. Let go of right-click at the second corner. The area you mark can be a flat plane or a cube. This process requires some RF for placing the blocks and you need to have the blocks in your inventory. + +booklet.actuallyadditions.chapter.patreon.name=Patreon Support +booklet.actuallyadditions.chapter.patreon.text.1=Do you really like Actually Additions? If you do, you can support me, Ellpeck, the author of the mod! Do you think that's a thing for you? Well, then check out my Patreon page by clicking the button below! As you can see on the next page, you can get things like floaty items above your head as a reward! Thanks a bunch <3 +booklet.actuallyadditions.chapter.patreon.button.1=View the Patreon +booklet.actuallyadditions.chapter.patreon.text.2=3pixel with his Patreon reward + +booklet.actuallyadditions.chapter.changelog.name=Changelog +booklet.actuallyadditions.chapter.changelog.text.1=Interested in everything that changed over the course of all of the versions of Actually Additions? If so, you can click the button below to view a very detailed changelog that contains every addition, every bugfix and all other types of changes! +booklet.actuallyadditions.chapter.changelog.button.1=View Changelog + +booklet.actuallyadditions.chapter.curse.name=The Mod's Website +booklet.actuallyadditions.chapter.curse.text.1=If you want to download any new versions of the mod, view any infos or recommend the mod to someone else, I'd highly suggest checking out its CurseForge page by clicking the button below. +booklet.actuallyadditions.chapter.curse.button.1=View the page + +booklet.actuallyadditions.chapter.website.name=The Author's Website +booklet.actuallyadditions.chapter.website.text.1=On the topic of self-advertisement, if you're interested in any of the other stuff I, Ellpeck, the author of this mod, do, you can go check out my website by clicking the button below. On there, you will find links to all of the social medias I use, an FAQ, and information about Minecraft Mods and other stuff I make! +booklet.actuallyadditions.chapter.website.button.1=View the Website \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/lang/zh_CN.lang b/src/main/resources/assets/actuallyadditions/lang/zh_CN.lang new file mode 100644 index 000000000..0006a9a7a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/lang/zh_CN.lang @@ -0,0 +1,1024 @@ +#General +itemGroup.actuallyadditions=实用拓展 +achievement.page.actuallyadditions=实用拓展 +actuallyadditions.lolWutHowUDoDis.name=这东西出bug了。请扔了它。 + +#Fluids +fluid.actuallyadditions.oil=原油 +fluid.actuallyadditions.canolaoil=菜籽油 + +#Banners +item.banner.actuallyadditionsBook.black=黑色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.red=红色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.green=绿色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.brown=棕色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.blue=蓝色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.purple=紫色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.cyan=青色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.silver=淡灰色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.gray=灰色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.pink=粉色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.lime=黄绿色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.yellow=黄色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.lightBlue=淡蓝色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.magenta=品红色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.orange=橙色实用拓展手册旗帜 +item.banner.actuallyadditionsBook.white=白色实用拓展手册旗帜 + +item.banner.actuallyadditionsPhanCon.black=黑色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.red=红色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.green=绿色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.brown=棕色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.blue=蓝色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.purple=紫色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.cyan=青色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.silver=浅灰色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.gray=灰色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.pink=粉色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.lime=黄绿色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.yellow=黄色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.lightBlue=淡蓝色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.magenta=品红色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.orange=橙色幻灵连接器旗帜 +item.banner.actuallyadditionsPhanCon.white=白色幻灵连接器旗帜 + +item.banner.actuallyadditionsLeafBlo.black=黑色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.red=红色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.green=绿色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.brown=棕色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.blue=蓝色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.purple=紫色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.cyan=青色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.silver=浅灰色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.gray=灰色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.pink=粉色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.lime=黄绿色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.yellow=黄色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.lightBlue=淡蓝色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.magenta=品红色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.orange=橙色吹叶器旗帜 +item.banner.actuallyadditionsLeafBlo.white=白色吹叶器旗帜 + +item.banner.actuallyadditionsDrill.black=黑色手钻旗帜 +item.banner.actuallyadditionsDrill.red=红色手钻旗帜 +item.banner.actuallyadditionsDrill.green=绿色手钻旗帜 +item.banner.actuallyadditionsDrill.brown=棕色手钻旗帜 +item.banner.actuallyadditionsDrill.blue=蓝色手钻旗帜 +item.banner.actuallyadditionsDrill.purple=紫色手钻旗帜 +item.banner.actuallyadditionsDrill.cyan=青色手钻旗帜 +item.banner.actuallyadditionsDrill.silver=浅灰色手钻旗帜 +item.banner.actuallyadditionsDrill.gray=灰色手钻旗帜 +item.banner.actuallyadditionsDrill.pink=粉色手钻旗帜 +item.banner.actuallyadditionsDrill.lime=黄绿色手钻旗帜 +item.banner.actuallyadditionsDrill.yellow=黄色手钻旗帜 +item.banner.actuallyadditionsDrill.lightBlue=淡蓝色手钻旗帜 +item.banner.actuallyadditionsDrill.magenta=品红色手钻旗帜 +item.banner.actuallyadditionsDrill.orange=橙色手钻旗帜 +item.banner.actuallyadditionsDrill.white=白色手钻旗帜 + +#NEIIntegration +container.nei.actuallyadditions.crushing.name=磨粉机 +container.nei.actuallyadditions.crushingDouble.name=两仓磨粉机 +container.nei.actuallyadditions.ballOfHair.name=毛球 +container.nei.actuallyadditions.compost.name=堆肥机 +container.nei.actuallyadditions.furnaceDouble.name=两仓熔炉 +container.nei.actuallyadditions.treasureChest.name=藏宝箱 +container.nei.actuallyadditions.treasureChest.info=可以开出 +container.nei.actuallyadditions.coffee.name=咖啡制造机 +container.nei.actuallyadditions.coffee.special=特殊效果 +container.nei.actuallyadditions.coffee.maxAmount=最大加入量 +container.nei.actuallyadditions.coffee.extra.milk=+2:00,-1Lv +container.nei.actuallyadditions.reconstructor.name=原子再构机 +container.nei.actuallyadditions.empowerer.name=充能台 + +container.nei.actuallyadditions.booklet.name=实用拓展手册 +container.nei.actuallyadditions.booklet.header=实用拓展手册说道: +container.nei.actuallyadditions.booklet.noText=这里空无一物!但是别担心,只需点击底部按钮,即可继续浏览其他条目! + +#DamageSources +death.actuallyadditions.atomicReconstructor.1=%s被原子重组了。 +death.actuallyadditions.atomicReconstructor.2=原子再构机发现了它的目标%s。 +death.actuallyadditions.atomicReconstructor.3=经过原子重组的%s看起来再也站不起来了。 +death.actuallyadditions.atomicReconstructor.4=%s不该抗下那发原子重组炮! +death.actuallyadditions.atomicReconstructor.5=%s应该是吃了一发重组炮。 + +#Blocks +tile.actuallyadditions.blockCompost.name=堆肥机 +tile.actuallyadditions.blockMiscOreBlackQuartz.name=焦黑石英矿 +tile.actuallyadditions.blockMiscBlackQuartz.name=焦黑石英块 +tile.actuallyadditions.blockMiscBlackQuartzChiseled.name=錾制焦黑石英 +tile.actuallyadditions.blockMiscBlackQuartzPillar.name=焦黑石英柱 +tile.actuallyadditions.blockFeeder.name=自动饲育机 +tile.actuallyadditions.blockGiantChest.name=小型板条箱 +tile.actuallyadditions.blockGiantChestMedium.name=中型板条箱 +tile.actuallyadditions.blockGiantChestLarge.name=大型板条箱 +tile.actuallyadditions.blockGrinder.name=磨粉机 +tile.actuallyadditions.blockGrinderDouble.name=两仓磨粉机 +tile.actuallyadditions.blockFurnaceDouble.name=两仓熔炉 +tile.actuallyadditions.blockFishingNet.name=渔网 +tile.actuallyadditions.blockFurnaceSolar.name=太阳能板 +tile.actuallyadditions.blockHeatCollector.name=热能发电机 +tile.actuallyadditions.blockItemRepairer.name=物品修理机 +tile.actuallyadditions.blockMiscWoodCasing.name=木制外壳 +tile.actuallyadditions.blockGreenhouseGlass.name=温室玻璃 +tile.actuallyadditions.blockEnergizer.name=充能站 +tile.actuallyadditions.blockEnervator.name=释能站 +tile.actuallyadditions.blockRice.name=水稻 +tile.actuallyadditions.blockMiscCharcoal.name=木炭块 +tile.actuallyadditions.blockCoalGenerator.name=煤炭发电机 +tile.actuallyadditions.blockLampPowerer.name=灯具控制器 +tile.actuallyadditions.blockColoredLampWhite.name=白色灯具 +tile.actuallyadditions.blockColoredLampOrange.name=橙色灯具 +tile.actuallyadditions.blockColoredLampMagenta.name=品红灯具 +tile.actuallyadditions.blockColoredLampYellow.name=黄色灯具 +tile.actuallyadditions.blockColoredLampLightBlue.name=浅蓝色灯具 +tile.actuallyadditions.blockColoredLampBlue.name=蓝色灯具 +tile.actuallyadditions.blockColoredLampGray.name=灰色灯具 +tile.actuallyadditions.blockColoredLampLightGray.name=浅灰色灯具 +tile.actuallyadditions.blockColoredLampGreen.name=绿色灯具 +tile.actuallyadditions.blockColoredLampBlack.name=黑色灯具 +tile.actuallyadditions.blockColoredLampBrown.name=棕色灯具 +tile.actuallyadditions.blockColoredLampRed.name=红色灯具 +tile.actuallyadditions.blockColoredLampLime.name=黄绿色灯具 +tile.actuallyadditions.blockColoredLampPink.name=粉色灯具 +tile.actuallyadditions.blockColoredLampCyan.name=青色灯具 +tile.actuallyadditions.blockColoredLampPurple.name=紫色灯具 +tile.actuallyadditions.blockPhantomface.name=幻灵接口 +tile.actuallyadditions.blockPlayerInterface.name=玩家接口 +tile.actuallyadditions.blockPhantomEnergyface.name=幻灵能量接口 +tile.actuallyadditions.blockPhantomRedstoneface.name=幻灵红石接口 +tile.actuallyadditions.blockPhantomLiquiface.name=幻灵流体接口 +tile.actuallyadditions.blockPhantomPlacer.name=幻灵方块放置器 +tile.actuallyadditions.blockPhantomBreaker.name=幻灵方块破坏器 +tile.actuallyadditions.blockLavaFactoryController.name=岩浆工厂控制器 +tile.actuallyadditions.blockMiscLavaFactoryCase.name=岩浆工厂外墙 +tile.actuallyadditions.blockFluidPlacer.name=流体成型器 +tile.actuallyadditions.blockFluidCollector.name=流体吸收器 +tile.actuallyadditions.blockPhantomBooster.name=幻灵增幅器 +tile.actuallyadditions.blockCoffee.name=咖啡 +tile.actuallyadditions.blockWildCanola.name=野生油菜 +tile.actuallyadditions.blockWildRice.name=野生水稻 +tile.actuallyadditions.blockWildCoffee.name=野生咖啡 +tile.actuallyadditions.blockWildFlax.name=野生亚麻 +tile.actuallyadditions.blockTestifiBucksGreenWall.name=装饰用绿色石英方块 +tile.actuallyadditions.blockTestifiBucksWhiteWall.name=装饰用石英 +tile.actuallyadditions.blockTestifiBucksGreenStairs.name=装饰用绿色石英楼梯 +tile.actuallyadditions.blockTestifiBucksWhiteStairs.name=装饰用石英楼梯 +tile.actuallyadditions.blockTestifiBucksGreenSlab.name=装饰用绿色石英台阶 +tile.actuallyadditions.blockTestifiBucksWhiteSlab.name=装饰用石英台阶 +tile.actuallyadditions.blockCanola.name=油菜 +tile.actuallyadditions.blockTreasureChest.name=藏宝箱 +tile.actuallyadditions.blockCanolaPress.name=油菜压榨机 +tile.actuallyadditions.blockFermentingBarrel.name=发酵桶 +tile.actuallyadditions.blockCanolaOil.name=菜籽油 +tile.actuallyadditions.blockOil.name=原油 +tile.actuallyadditions.blockMiscEnderpearl.name=末影珍珠块 +tile.actuallyadditions.blockOilGenerator.name=原油发电机 +tile.actuallyadditions.blockBreaker.name=方块破坏器 +tile.actuallyadditions.blockPlacer.name=方块放置器 +tile.actuallyadditions.blockDropper.name=精准自动投掷器 +tile.actuallyadditions.blockMiscEnderCasing.name=末影外壳 +tile.actuallyadditions.blockFlax.name=亚麻 +tile.actuallyadditions.blockCoffeeMachine.name=咖啡制造机 +tile.actuallyadditions.blockXPSolidifier.name=经验固化机 +tile.actuallyadditions.blockSmileyCloud.name=微笑云朵 +tile.actuallyadditions.blockLeafGenerator.name=咀叶发电机 +tile.actuallyadditions.blockDirectionalBreaker.name=长距离方块破坏器 +tile.actuallyadditions.blockRangedCollector.name=物品吸收器 +tile.actuallyadditions.blockLaserRelay.name=能量激光中继器 +tile.actuallyadditions.blockLaserRelayAdvanced.name=高级能量激光中继器 +tile.actuallyadditions.blockLaserRelayExtreme.name=超级能量激光中继器 +tile.actuallyadditions.blockMiscIronCasing.name=铁制外壳 +tile.actuallyadditions.blockBlackLotus.name=黑莲花 +tile.actuallyadditions.blockTestifiBucksWhiteFence.name=装饰用石英围墙 +tile.actuallyadditions.blockTestifiBucksGreenFence.name=装饰用绿色石英围墙 +tile.actuallyadditions.blockCrystalRed.name=红石水晶块 +tile.actuallyadditions.blockCrystalBlue.name=青金石水晶块 +tile.actuallyadditions.blockCrystalLightBlue.name=钻石水晶块 +tile.actuallyadditions.blockCrystalGreen.name=绿宝石水晶块 +tile.actuallyadditions.blockCrystalBlack.name=煤晶块 +tile.actuallyadditions.blockCrystalWhite.name=铁晶块 +tile.actuallyadditions.blockCrystalEmpoweredRed.name=充能红石水晶块 +tile.actuallyadditions.blockCrystalEmpoweredBlue.name=充能青金石水晶块 +tile.actuallyadditions.blockCrystalEmpoweredLightBlue.name=充能钻石水晶块 +tile.actuallyadditions.blockCrystalEmpoweredGreen.name=充能绿宝石水晶块 +tile.actuallyadditions.blockCrystalEmpoweredBlack.name=充能煤晶块 +tile.actuallyadditions.blockCrystalEmpoweredWhite.name=充能铁晶块 +tile.actuallyadditions.blockMiner.name=垂直挖矿机 +tile.actuallyadditions.blockFireworkBox.name=烟花发射器 +tile.actuallyadditions.blockQuartzWall.name=焦黑石英围墙 +tile.actuallyadditions.blockQuartzStair.name=焦黑石英楼梯 +tile.actuallyadditions.blockQuartzSlab.name=焦黑石英台阶 +tile.actuallyadditions.blockChiseledQuartzWall.name=錾制焦黑石英围墙 +tile.actuallyadditions.blockChiseledQuartzStair.name=錾制焦黑石英楼梯 +tile.actuallyadditions.blockChiseledQuartzSlab.name=錾制焦黑石英台阶 +tile.actuallyadditions.blockPillarQuartzWall.name=焦黑石英柱围墙 +tile.actuallyadditions.blockPillarQuartzStair.name=焦黑石英柱楼梯 +tile.actuallyadditions.blockPillarQuartzSlab.name=焦黑石英柱台阶 +tile.actuallyadditions.blockLaserRelayItem.name=物品激光中继器 +tile.actuallyadditions.blockLaserRelayItemWhitelist.name=高级物品激光中继器 +tile.actuallyadditions.blockItemViewer.name=物品传输接口 +tile.actuallyadditions.blockImpureIron.name=不纯净铁 +tile.actuallyadditions.blockBookletStand.name=壁挂式手册 +tile.actuallyadditions.blockDisplayStand.name=物品展示台 +tile.actuallyadditions.blockShockSuppressor.name=震波吸收器 +tile.actuallyadditions.blockTinyTorch.name=微型火把 +tile.actuallyadditions.blockEmpowerer.name=Empowerer + +#ESD #这些词条都是作者在玩梗,请不要翻译 +tile.actuallyadditions.blockInputter.name=ESD +tile.actuallyadditions.blockInputterAdvanced.name=高级ESD +tile.actuallyadditions.blockInputter.add.1.name=Ellpeck's Slot Device +tile.actuallyadditions.blockInputter.add.2.name=Ethereal System Dude +tile.actuallyadditions.blockInputter.add.3.name=Energy Stuf fDistributor +tile.actuallyadditions.blockInputter.add.4.name=Extsing Stuff Donator +tile.actuallyadditions.blockInputter.add.5.name=ExtraUtils Stealing Device +tile.actuallyadditions.blockInputter.add.6.name=Experienced Sauce Deriver +tile.actuallyadditions.blockInputter.add.7.name=Excellent Spaghetti Dessert +tile.actuallyadditions.blockInputter.add.8.name=Extraordinary Sample Deliverer +tile.actuallyadditions.blockInputter.add.9.name=Express Sending Doughnut +tile.actuallyadditions.blockInputter.add.10.name=Expelling Sugar Dagger +tile.actuallyadditions.blockInputter.add.11.name=Extra-Long Solidifying Dissociation +tile.actuallyadditions.blockInputter.add.12.name=Energetic Solo Dancer +tile.actuallyadditions.blockInputter.add.13.name=Efficient Sucking Dilettant +tile.actuallyadditions.blockInputter.add.14.name=Extreme Sand Digger +tile.actuallyadditions.blockInputter.add.15.name=Ending Serious Daughter + +#Reconstructor +tile.actuallyadditions.blockAtomicReconstructor.name=原子再构机 +#这些词条都是作者在玩梗,请不要翻译 +tile.actuallyadditions.blockAtomicReconstructor.info.1.1=Molecular +tile.actuallyadditions.blockAtomicReconstructor.info.1.2=Material +tile.actuallyadditions.blockAtomicReconstructor.info.1.3=Quarkal +tile.actuallyadditions.blockAtomicReconstructor.info.1.4=Atomatic +tile.actuallyadditions.blockAtomicReconstructor.info.1.5=TinyBit +tile.actuallyadditions.blockAtomicReconstructor.info.1.6=Component +tile.actuallyadditions.blockAtomicReconstructor.info.1.7=Vittle +tile.actuallyadditions.blockAtomicReconstructor.info.1.8=Transmaterial +tile.actuallyadditions.blockAtomicReconstructor.info.1.9=Partial +tile.actuallyadditions.blockAtomicReconstructor.info.1.10=Spatial +tile.actuallyadditions.blockAtomicReconstructor.info.1.11=Stuffy +tile.actuallyadditions.blockAtomicReconstructor.info.1.12=Interdimensional +#这些词条都是作者在玩梗,请不要翻译 +tile.actuallyadditions.blockAtomicReconstructor.info.2.1=Recombobulizer +tile.actuallyadditions.blockAtomicReconstructor.info.2.2=Shiftulator +tile.actuallyadditions.blockAtomicReconstructor.info.2.3=Recombinator +tile.actuallyadditions.blockAtomicReconstructor.info.2.4=Modulator +tile.actuallyadditions.blockAtomicReconstructor.info.2.5=Moleculizer +tile.actuallyadditions.blockAtomicReconstructor.info.2.6=Modificulator +tile.actuallyadditions.blockAtomicReconstructor.info.2.7=Changer +tile.actuallyadditions.blockAtomicReconstructor.info.2.8=Atomizer +tile.actuallyadditions.blockAtomicReconstructor.info.2.9=Makerator +tile.actuallyadditions.blockAtomicReconstructor.info.2.10=Swapper +tile.actuallyadditions.blockAtomicReconstructor.info.2.11=Exchanger +tile.actuallyadditions.blockAtomicReconstructor.info.2.12=Replacer +tile.actuallyadditions.blockAtomicReconstructor.info.2.13=Differentiator +tile.actuallyadditions.blockAtomicReconstructor.info.2.14=Receiver + +#Items +item.actuallyadditions.itemDrill.name=手钻 +item.actuallyadditions.itemFoodRice.name=稻米 +item.actuallyadditions.itemFoodDoughnut.name=甜甜圈 +item.actuallyadditions.itemMiscRiceDough.name=大米面团 +item.actuallyadditions.itemFoodRiceBread.name=大米面包 +item.actuallyadditions.itemRiceSeed.name=水稻种子 +item.actuallyadditions.itemMiscTinyCoal.name=小块煤炭 +item.actuallyadditions.itemMiscTinyCharcoal.name=小块木炭 +item.actuallyadditions.itemMiscRiceSlime.name=浆糊球 +item.actuallyadditions.itemBattery.name=一阶电池 +item.actuallyadditions.itemBatteryDouble.name=二阶电池 +item.actuallyadditions.itemBatteryTriple.name=三阶电池 +item.actuallyadditions.itemBatteryQuadruple.name=四阶电池 +item.actuallyadditions.itemBatteryQuintuple.name=五阶电池 +item.actuallyadditions.itemGrowthRing.name=生长指环 +item.actuallyadditions.itemWaterRemovalRing.name=除液指环 +item.actuallyadditions.itemSuctionRing.name=磁力指环 +item.actuallyadditions.itemBucketCanolaOil.name=菜籽油桶 +item.actuallyadditions.itemBucketOil.name=原油桶 +item.actuallyadditions.itemWingsOfTheBats.name=蝙蝠翅膀 +item.actuallyadditions.itemMiscBatWing.name=蝙蝠之翼 +item.actuallyadditions.woodenPaxel.name=木制全能工具 +item.actuallyadditions.stonePaxel.name=石制全能工具 +item.actuallyadditions.ironPaxel.name=铁制全能工具 +item.actuallyadditions.goldPaxel.name=金制全能工具 +item.actuallyadditions.diamondPaxel.name=钻石全能工具 +item.actuallyadditions.emeraldPaxel.name=绿宝石全能工具 +item.actuallyadditions.obsidianPaxel.name=黑曜石全能工具 +item.actuallyadditions.quartzPaxel.name=焦黑石英全能工具 +item.actuallyadditions.paxelTFCopper.name=铜制全能工具 +item.actuallyadditions.paxelTFTin.name=锡制全能工具 +item.actuallyadditions.paxelTFLead.name=铅制全能工具 +item.actuallyadditions.paxelTFSilver.name=银制全能工具 +item.actuallyadditions.paxelTFElectrum.name=琥珀金全能工具 +item.actuallyadditions.paxelTFNickel.name=镍制全能工具 +item.actuallyadditions.paxelTFBronze.name=青铜全能工具 +item.actuallyadditions.paxelTFPlatinum.name=铂制全能工具 +item.actuallyadditions.paxelTFInvar.name=因瓦合金全能工具 +item.actuallyadditions.paxelMTObsidian.name=黑曜石全能工具 +item.actuallyadditions.paxelMTGlowstone.name=萤石全能工具 +item.actuallyadditions.paxelMTLapisLazuli.name=青金石全能工具 +item.actuallyadditions.paxelMTOsmium.name=锇制全能工具 +item.actuallyadditions.paxelMTBronze.name=青铜全能工具 +item.actuallyadditions.paxelMTSteel.name=钢制全能工具 +item.actuallyadditions.paxelSOadamantium.name=亚德曼金属全能工具 +item.actuallyadditions.paxelSOcopper.name=铜制全能工具 +item.actuallyadditions.paxelSOtin.name=锡制全能工具 +item.actuallyadditions.paxelSOonyx.name=黑玛瑙全能工具 +item.actuallyadditions.paxelSOmythril.name=秘银全能工具 +item.actuallyadditions.itemPhantomConnector.name=幻灵连接器 +item.actuallyadditions.itemMiscCup.name=空杯子 +item.actuallyadditions.itemCoffee.name=一杯咖啡 +item.actuallyadditions.itemCoffeeSeed.name=咖啡种子 +item.actuallyadditions.itemCoffeeBeans.name=咖啡豆 +item.actuallyadditions.itemCanolaSeed.name=油菜种子 +item.actuallyadditions.itemMiscCanola.name=油菜 +item.actuallyadditions.itemResonantRice.name=谐振稻米 +item.actuallyadditions.itemDrillUpgradeSpeed.name=钻头急迫升级I +item.actuallyadditions.itemDrillUpgradeSpeedII.name=钻头急迫升级II +item.actuallyadditions.itemDrillUpgradeSpeedIII.name=钻头急迫升级III +item.actuallyadditions.itemDrillUpgradeSilkTouch.name=钻头精准升级 +item.actuallyadditions.itemDrillUpgradeFortune.name=钻头时运升级I +item.actuallyadditions.itemDrillUpgradeFortuneII.name=钻头时运升级II(效果等同时运III) +item.actuallyadditions.itemDrillUpgradeBlockPlacing.name=钻头方块放置升级 +item.actuallyadditions.itemDrillUpgradeThreeByThree.name=钻头范围采掘升级I +item.actuallyadditions.itemDrillUpgradeFiveByFive.name=钻头范围采掘升级II +item.actuallyadditions.itemMiscMashedFood.name=捣碎的食物 +item.actuallyadditions.itemFertilizer.name=肥料 +item.actuallyadditions.itemMiscDough.name=面团 +item.actuallyadditions.itemMiscPaperCone.name=纸杯 +item.actuallyadditions.itemMiscKnifeBlade.name=刀刃 +item.actuallyadditions.itemMiscKnifeHandle.name=刀柄 +item.actuallyadditions.itemMiscBlackQuartz.name=焦黑石英 +item.actuallyadditions.itemMiscRing.name=普通指环 +item.actuallyadditions.itemTeleStaff.name=传送权杖 +item.actuallyadditions.itemJamCuBaRa.name=CuBaRa果酱 +item.actuallyadditions.itemJamGraKiBa.name=GraKiBa果酱 +item.actuallyadditions.itemJamPlApLe.name=PlApLe果酱 +item.actuallyadditions.itemJamChApCi.name=ChApCi果酱 +item.actuallyadditions.itemJamHoMeKi.name=HoMeKi果酱 +item.actuallyadditions.itemJamHoMeCo.name=HoMeCo果酱 +item.actuallyadditions.itemJamPiCo.name=PiCo果酱 +item.actuallyadditions.itemHairyBall.name=毛球 +item.actuallyadditions.itemLeafBlower.name=吹叶器 +item.actuallyadditions.itemLeafBlowerAdvanced.name=高级吹叶器 +item.actuallyadditions.itemKnife.name=小刀 +item.actuallyadditions.itemPickaxeEmerald.name=绿宝石手斧 +item.actuallyadditions.itemAxeEmerald.name=绿宝石斧 +item.actuallyadditions.itemShovelEmerald.name=绿宝石锹 +item.actuallyadditions.itemHoeEmerald.name=绿宝石锄 +item.actuallyadditions.itemSwordEmerald.name=绿宝石剑 +item.actuallyadditions.itemPickaxeQuartz.name=焦黑石英手斧 +item.actuallyadditions.itemAxeQuartz.name=焦黑石英斧 +item.actuallyadditions.itemShovelQuartz.name=焦黑石英锹 +item.actuallyadditions.itemHoeQuartz.name=焦黑石英锄 +item.actuallyadditions.itemSwordQuartz.name=焦黑石英剑 +item.actuallyadditions.itemPickaxeObsidian.name=黑曜石手斧 +item.actuallyadditions.itemAxeObsidian.name=黑曜石斧 +item.actuallyadditions.itemShovelObsidian.name=黑曜石锹 +item.actuallyadditions.itemHoeObsidian.name=黑曜石锄 +item.actuallyadditions.itemSwordObsidian.name=黑曜石剑 +item.actuallyadditions.itemCrafterOnAStick.name=手持工作台 +item.actuallyadditions.itemFoodBaguette.name=法国长面包 +item.actuallyadditions.itemFoodPizza.name=匹萨 +item.actuallyadditions.itemFoodHamburger.name=汉堡包 +item.actuallyadditions.itemFoodBigCookie.name=大块曲奇 +item.actuallyadditions.itemFoodSubmarineSandwich.name=海鲜三明治 +item.actuallyadditions.itemFoodToast.name=吐司面包 +item.actuallyadditions.itemFoodChocolateToast.name=巧克力吐司面包 +item.actuallyadditions.itemFoodChocolate.name=巧克力 +item.actuallyadditions.itemFoodChocolateCake.name=巧克力蛋糕 +item.actuallyadditions.itemFoodNoodle.name=面条 +item.actuallyadditions.itemFoodSpaghetti.name=意大利面 +item.actuallyadditions.itemFoodFrenchFry.name=炸薯条 +item.actuallyadditions.itemFoodFrenchFries.name=大杯炸薯条 +item.actuallyadditions.itemFoodFishNChips.name=海鲜炸薯条 +item.actuallyadditions.itemFoodCarrotJuice.name=萝卜汁 +item.actuallyadditions.itemFoodPumpkinStew.name=南瓜汤 +item.actuallyadditions.itemFoodCheese.name=奶酪 +item.actuallyadditions.itemMiscCoil.name=基础线圈 +item.actuallyadditions.itemMiscCoilAdvanced.name=高级线圈 +item.actuallyadditions.itemPotionRing.name=药水指环 +item.actuallyadditions.itemPotionRingAdvanced.name=高级药水指环 +item.actuallyadditions.itemSolidifiedExperience.name=固化经验 +item.actuallyadditions.itemDustIron.name=铁粉 +item.actuallyadditions.itemDustGold.name=金粉 +item.actuallyadditions.itemDustDiamond.name=钻石粉 +item.actuallyadditions.itemDustLapis.name=青金石粉 +item.actuallyadditions.itemDustEmerald.name=绿宝石粉 +item.actuallyadditions.itemDustQuartz.name=石英粉 +item.actuallyadditions.itemDustCoal.name=煤粉 +item.actuallyadditions.itemDustQuartzBlack.name=焦黑石英粉 +item.actuallyadditions.itemFlaxSeed.name=亚麻种子 +item.actuallyadditions.itemHelmObsidian.name=黑曜石头盔 +item.actuallyadditions.itemChestObsidian.name=黑曜石头盔 +item.actuallyadditions.itemPantsObsidian.name=黑曜石护腿 +item.actuallyadditions.itemBootsObsidian.name=黑曜石护腿 +item.actuallyadditions.itemHelmEmerald.name=绿宝石头盔 +item.actuallyadditions.itemChestEmerald.name=绿宝石胸甲 +item.actuallyadditions.itemPantsEmerald.name=绿宝石护腿 +item.actuallyadditions.itemBootsEmerald.name=绿宝石靴子 +item.actuallyadditions.itemHelmQuartz.name=焦黑石英头盔 +item.actuallyadditions.itemChestQuartz.name=焦黑石英胸甲 +item.actuallyadditions.itemPantsQuartz.name=焦黑石英护腿 +item.actuallyadditions.itemBootsQuartz.name=焦黑石英靴子 +item.actuallyadditions.itemBooklet.name=实用拓展手册 +item.actuallyadditions.itemRarmorModuleReconstructor.name=重组模块 +item.actuallyadditions.itemLaserWrench.name=中继器扳手 +item.actuallyadditions.itemChestToCrateUpgrade.name=板条箱升级徽章 +item.actuallyadditions.itemSmallToMediumCrateUpgrade.name=扩容升级徽章(小转中) +item.actuallyadditions.itemMediumToLargeCrateUpgrade.name=扩容升级徽章(中转大) +item.actuallyadditions.itemMiscDrillCore.name=钻头核心 +item.actuallyadditions.itemMiscBlackDye.name=黑色染料 +item.actuallyadditions.itemCrystalRed.name=红石水晶 +item.actuallyadditions.itemCrystalBlue.name=青金石水晶 +item.actuallyadditions.itemCrystalLightBlue.name=钻石水晶 +item.actuallyadditions.itemCrystalGreen.name=绿宝石水晶 +item.actuallyadditions.itemCrystalBlack.name=煤晶 +item.actuallyadditions.itemCrystalWhite.name=铁晶 +item.actuallyadditions.itemCrystalEmpoweredRed.name=充能红石水晶 +item.actuallyadditions.itemCrystalEmpoweredBlue.name=充能青金石水晶 +item.actuallyadditions.itemCrystalEmpoweredLightBlue.name=充能钻石水晶 +item.actuallyadditions.itemCrystalEmpoweredGreen.name=充能绿宝石水晶 +item.actuallyadditions.itemCrystalEmpoweredBlack.name=充能煤晶 +item.actuallyadditions.itemCrystalEmpoweredWhite.name=充能铁晶 +item.actuallyadditions.itemMiscLens.name=透镜 +item.actuallyadditions.itemColorLens.name=斑斓透镜 +item.actuallyadditions.itemExplosionLens.name=爆破透镜 +item.actuallyadditions.itemDamageLens.name=死亡透镜 +item.actuallyadditions.itemDisenchantingLens.name=祛魔透镜 +item.actuallyadditions.itemCrateKeeper.name=板条箱守护徽章 +item.actuallyadditions.itemPickaxeCrystalRed.name=红石水晶镐 +item.actuallyadditions.itemAxeCrystalRed.name=红石水晶斧 +item.actuallyadditions.itemShovelCrystalRed.name=红石水晶锹 +item.actuallyadditions.itemSwordCrystalRed.name=红石水晶剑 +item.actuallyadditions.itemHoeCrystalRed.name=红石水晶锄 +item.actuallyadditions.itemHelmCrystalRed.name=红石水晶头盔 +item.actuallyadditions.itemChestCrystalRed.name=红石水晶胸甲 +item.actuallyadditions.itemPantsCrystalRed.name=红石水晶护腿 +item.actuallyadditions.itemBootsCrystalRed.name=红石水晶靴子 +item.actuallyadditions.itemPickaxeCrystalBlue.name=青金石水晶镐 +item.actuallyadditions.itemAxeCrystalBlue.name=青金石水晶斧 +item.actuallyadditions.itemShovelCrystalBlue.name=青金石水晶锹 +item.actuallyadditions.itemSwordCrystalBlue.name=青金石水晶剑 +item.actuallyadditions.itemHoeCrystalBlue.name=青金石水晶锄 +item.actuallyadditions.itemHelmCrystalBlue.name=青金石水晶头盔 +item.actuallyadditions.itemChestCrystalBlue.name=青金石水晶胸甲 +item.actuallyadditions.itemPantsCrystalBlue.name=青金石水晶护腿 +item.actuallyadditions.itemBootsCrystalBlue.name=青金石水晶靴子 +item.actuallyadditions.itemPickaxeCrystalLightBlue.name=钻石水晶镐 +item.actuallyadditions.itemAxeCrystalLightBlue.name=钻石水晶斧 +item.actuallyadditions.itemShovelCrystalLightBlue.name=钻石水晶锹 +item.actuallyadditions.itemSwordCrystalLightBlue.name=钻石水晶剑 +item.actuallyadditions.itemHoeCrystalLightBlue.name=钻石水晶锄 +item.actuallyadditions.itemHelmCrystalLightBlue.name=钻石水晶头盔 +item.actuallyadditions.itemChestCrystalLightBlue.name=钻石水晶胸甲 +item.actuallyadditions.itemPantsCrystalLightBlue.name=钻石水晶护腿 +item.actuallyadditions.itemBootsCrystalLightBlue.name=钻石水晶靴子 +item.actuallyadditions.itemPickaxeCrystalBlack.name=煤晶镐 +item.actuallyadditions.itemAxeCrystalBlack.name=煤晶斧 +item.actuallyadditions.itemShovelCrystalBlack.name=煤晶锹 +item.actuallyadditions.itemSwordCrystalBlack.name=煤晶剑 +item.actuallyadditions.itemHoeCrystalBlack.name=煤晶锄 +item.actuallyadditions.itemHelmCrystalBlack.name=煤晶头盔 +item.actuallyadditions.itemChestCrystalBlack.name=煤晶胸甲 +item.actuallyadditions.itemPantsCrystalBlack.name=煤晶护腿 +item.actuallyadditions.itemBootsCrystalBlack.name=煤晶靴子 +item.actuallyadditions.itemPickaxeCrystalGreen.name=绿宝石水晶镐 +item.actuallyadditions.itemAxeCrystalGreen.name=绿宝石水晶斧 +item.actuallyadditions.itemShovelCrystalGreen.name=绿宝石水晶锹 +item.actuallyadditions.itemSwordCrystalGreen.name=绿宝石水晶剑 +item.actuallyadditions.itemHoeCrystalGreen.name=绿宝石水晶锄 +item.actuallyadditions.itemHelmCrystalGreen.name=绿宝石水晶头盔 +item.actuallyadditions.itemChestCrystalGreen.name=绿宝石水晶胸甲 +item.actuallyadditions.itemPantsCrystalGreen.name=绿宝石水晶护腿 +item.actuallyadditions.itemBootsCrystalGreen.name=绿宝石水晶靴子 +item.actuallyadditions.itemPickaxeCrystalWhite.name=铁晶镐 +item.actuallyadditions.itemAxeCrystalWhite.name=铁晶斧 +item.actuallyadditions.itemShovelCrystalWhite.name=铁晶锹 +item.actuallyadditions.itemSwordCrystalWhite.name=铁晶剑 +item.actuallyadditions.itemHoeCrystalWhite.name=铁晶锄 +item.actuallyadditions.itemHelmCrystalWhite.name=铁晶头盔 +item.actuallyadditions.itemChestCrystalWhite.name=铁晶胸甲 +item.actuallyadditions.itemPantsCrystalWhite.name=铁晶护腿 +item.actuallyadditions.itemBootsCrystalWhite.name=铁晶靴子 +item.actuallyadditions.itemPaxelCrystalRed.name=红石水晶全能工具 +item.actuallyadditions.itemPaxelCrystalBlue.name=青金石水晶全能工具 +item.actuallyadditions.itemPaxelCrystalLightBlue.name=钻石水晶全能工具 +item.actuallyadditions.itemPaxelCrystalBlack.name=煤晶全能工具 +item.actuallyadditions.itemPaxelCrystalWhite.name=铁晶全能工具 +item.actuallyadditions.itemPaxelCrystalGreen.name=绿宝石水晶全能工具 +item.actuallyadditions.itemFoodBacon.name=培根 +item.actuallyadditions.itemMiscEnderStar.name=末影之星 +item.actuallyadditions.itemSpawnerChanger.name=刷怪笼控制工具 +item.actuallyadditions.itemMiscSpawnerShard.name=刷怪笼碎片 +item.actuallyadditions.itemMinecartFireworkBox.name=烟火箱车 +item.actuallyadditions.itemWaterBowl.name=装水的碗 +item.actuallyadditions.itemFilter.name=物品过滤器 +item.actuallyadditions.itemMiscBiomass.name=生物质 +item.actuallyadditions.itemMiscBiocoal.name=生物燃料 +item.actuallyadditions.itemPlayerProbe.name=玩家探测器 +item.actuallyadditions.itemWorm.name=蚯蚓 +item.actuallyadditions.itemBag.name=袋子 +item.actuallyadditions.itemVoidBag.name=虚空袋子 + +#Tooltips +tooltip.actuallyadditions.onSuffix.desc=开启 +tooltip.actuallyadditions.phantom.connected.desc=连接成功! +tooltip.actuallyadditions.phantom.stored.desc=存储开始! +tooltip.actuallyadditions.phantom.unbound.desc=连接已清除! +tooltip.actuallyadditions.boundTo.desc=绑定于 +tooltip.actuallyadditions.clearStorage.desc=合成一次以清除存储! +tooltip.actuallyadditions.phantom.connectedRange.desc=连接正常工作。 +tooltip.actuallyadditions.phantom.connectedNoRange.desc=连接受阻:超出范围,连接方块的区块未加载或连接方块的类型不正确. +tooltip.actuallyadditions.phantom.notConnected.desc=它没有连接! +tooltip.actuallyadditions.phantom.blockInfo.desc=连接的方块在%sat%s,%s,%s有%s个方块远. +tooltip.actuallyadditions.factory.notPart.desc=控制器还不是正确的多方块结构的一部分!好好看看控制器的介绍! +tooltip.actuallyadditions.factory.works.desc=该岩浆工厂已成型,可以开始生产岩浆了! +tooltip.actuallyadditions.oredictName.desc=矿物辞典条目: +tooltip.actuallyadditions.noOredictNameAvail.desc=无 +tooltip.actuallyadditions.codeName.desc=代码名字 +tooltip.actuallyadditions.baseUnlocName.desc=英文原名 +tooltip.actuallyadditions.meta.desc=Meta +tooltip.actuallyadditions.nbt.desc=NBT数据 +tooltip.actuallyadditions.unlocName.desc=Meta英文原名 +tooltip.actuallyadditions.pressShift.desc=按Shift +tooltip.actuallyadditions.disablingInfo.desc=如果你不想看到这个信息,可在实用拓展的配置文件里禁用它! +tooltip.actuallyadditions.ctrlForMoreInfo.desc=按住Ctrl查看高级信息 +tooltip.actuallyadditions.extraInfo.desc=高级信息 +tooltip.actuallyadditions.blockPhantomRange.desc=范围 +tooltip.actuallyadditions.laser.stored.desc=连接开始! +tooltip.actuallyadditions.laser.connected.desc=中继器已连接! +tooltip.actuallyadditions.laser.cantConnect.desc=无法连接:中继器已是另一个网络的一部分,或者存储的中继器不在了或距离太远! +tooltip.actuallyadditions.itemBooklet.desc=查看"指导手册",如果你愿意 +tooltip.actuallyadditions.playerProbe.disconnect.1=那位被探测的玩家在你试图把他和玩家接口绑定之前中断了连接!数据将会被清除! +tooltip.actuallyadditions.playerProbe.disconnect.2=那位被探测的玩家在你试图把他和玩家接口绑定之前中断了连接!数据将会被清除! +tooltip.actuallyadditions.playerProbe.probing=探测中 +tooltip.actuallyadditions.playerProbe.notice=注意!有人正在试图探测你并且想把你和玩家接口绑定,但是失败了! +tooltip.actuallyadditions.battery.discharge=会给物品栏中的其他物品充电 +tooltip.actuallyadditions.battery.noDischarge=不会给物品栏中的其他物品充电 +tooltip.actuallyadditions.battery.changeMode=Shift右键转换两种模式 + +#GuiInformation +info.actuallyadditions.gui.animals=动物 +info.actuallyadditions.gui.enoughToBreed=数量足够繁殖! +info.actuallyadditions.gui.tooMany=数量太多了! +info.actuallyadditions.gui.notEnough=不够繁殖起始数量! +info.actuallyadditions.gui.disabled=禁止 +info.actuallyadditions.gui.up=上 +info.actuallyadditions.gui.down=下 +info.actuallyadditions.gui.north=北 +info.actuallyadditions.gui.east=东 +info.actuallyadditions.gui.south=南 +info.actuallyadditions.gui.west=西 +info.actuallyadditions.gui.all=所有 +info.actuallyadditions.gui.put=放入 +info.actuallyadditions.gui.pull=取出 +info.actuallyadditions.gui.whitelist=白名单 +info.actuallyadditions.gui.blacklist=黑名单 +info.actuallyadditions.gui.whitelistInfo=设置为空的黑名单可以使所有物品通过,设置为空的白名单可以禁止所有物品通过。通过放置想过滤的物品来自定义想要的功能。 +info.actuallyadditions.gui.coffee=咖啡 +info.actuallyadditions.gui.ok=Ok +info.actuallyadditions.gui.the= +info.actuallyadditions.gui.smart=智能白名单 +info.actuallyadditions.gui.smartInfo=当按下这个按钮时候,所有来自毗邻物品栏,并且通过中继器的物品都会被添加到黑名单或者白名单中。之前添加的物品过滤也会被添加。 +info.actuallyadditions.inputter.info.1=这是

的起始格。 +info.actuallyadditions.inputter.info.2=这是

的结束格(不含)。解释:如果左边填2,这里填5,那么2、3、4格将会执行

的动作。 +info.actuallyadditions.noLens=没有透镜 +info.actuallyadditions.booklet.manualName.1.1=Actually Additions +info.actuallyadditions.booklet.manualName.1.2=Actual Additions +info.actuallyadditions.booklet.manualName.1.3=Actually Addiction +info.actuallyadditions.booklet.manualName.1.4=Actual Edition +info.actuallyadditions.booklet.manualName.1.5=Actual Addition +info.actuallyadditions.booklet.manualName.1.6=Actually Addons +info.actuallyadditions.booklet.manualName.2=手册 +info.actuallyadditions.booklet.edition=编辑 +info.actuallyadditions.deathRecorded=你的死亡信息已被记录,请使用DeathTracker来获取死亡位置! +info.actuallyadditions.placer.sides.1=放置方向 +info.actuallyadditions.placer.sides.2=通常玩家放置方块时需要依附别的方块才能放置,但是幻灵方块放置器可以直接在悬空放置方块。不过通常情况下你还是不要这么做为好。 +info.actuallyadditions.energy.toRF=点击切换为RF单位! +info.actuallyadditions.energy.toT=点击切换为Tesla单位! + +#ContainerNames +container.actuallyadditions.inputter.name=ESD +container.actuallyadditions.inputterAdvanced.name=高级ESD +container.actuallyadditions.grinder.name=磨粉机 +container.actuallyadditions.grinderDouble.name=两仓磨粉机 +container.actuallyadditions.furnaceDouble.name=两仓熔炉 +container.actuallyadditions.feeder.name=自动饲育机 +container.actuallyadditions.giantChest.name=小型板条箱 +container.actuallyadditions.giantChestMedium.name=中型板条箱 +container.actuallyadditions.giantChestLarge.name=大型板条箱 +container.actuallyadditions.repairer.name=物品修理机 +container.actuallyadditions.placer.name=方块放置器 +container.actuallyadditions.breaker.name=方块破坏器 +container.actuallyadditions.dropper.name=精准自动投掷器 +container.actuallyadditions.crafting.name=手持工作台 +container.actuallyadditions.canolaPress.name=油菜压榨机 +container.actuallyadditions.fermentingBarrel.name=发酵桶 +container.actuallyadditions.coalGenerator.name=煤炭发电机 +container.actuallyadditions.oilGenerator.name=原油发电机 +container.actuallyadditions.phantomPlacer.name=幻灵方块放置器 +container.actuallyadditions.phantomBreaker.name=幻灵方块破坏器 +container.actuallyadditions.phantomface.name=幻灵接口 +container.actuallyadditions.liquiface.name=幻灵流体接口 +container.actuallyadditions.energyface.name=幻灵能量接口 +container.actuallyadditions.fluidPlacer.name=流体成型器 +container.actuallyadditions.fluidCollector.name=流体吸收器 +container.actuallyadditions.coffeeMachine.name=咖啡制造机 +container.actuallyadditions.drill.name=手钻 +container.actuallyadditions.energizer.name=充能站 +container.actuallyadditions.enervator.name=释能站 +container.actuallyadditions.xpSolidifier.name=经验固化机 +container.actuallyadditions.cloud.name=微笑云朵 +container.actuallyadditions.directionalBreaker.name=长距离方块破坏器 +container.actuallyadditions.rangedCollector.name=物品吸收器 +container.actuallyadditions.miner.name=垂直挖矿机 +container.actuallyadditions.laserRelayItemWhitelist.name=激光中继器 +container.actuallyadditions.filter.name=物品过滤器 +container.actuallyadditions.bag.name=袋子 +container.actuallyadditions.voidBag.name=虚空袋子 + +#UpdateInformation +info.actuallyadditions.update.generic=[{"text":"有新的"},{"text":"实用拓展","color":"dark_green"},{"text":"版本可用!","color":"none"}] +info.actuallyadditions.update.versionCompare=[{"text":"当前版本:"},{"text":"%s","color":"dark_red"},{"text":",最新版本:","color":"none"},{"text":"%s","color":"dark_green"}] +info.actuallyadditions.update.buttons=[{"text":"["},{"text":"点击以查看更新日志","color":"green","clickEvent":{"action":"open_url","value":"%s"}},{"text":"][","color":"none"},{"text":"点击以下载","color":"green","clickEvent":{"action":"open_url","value":"%s"}},{"text":"]","color":"none"}] +info.actuallyadditions.update.buttonOptions=单击:更新日志,按住Shift键单击:下载!(在浏览器中) +info.actuallyadditions.update.failed=[{"text":"实用拓展","color":"dark_green"},{"text":"的更新检查失败!查看日志文件以了解更多信息!","color":"none"}] + +#Achievements +achievement.actuallyadditions.openBooklet=知识的海洋 +achievement.actuallyadditions.openBooklet.desc=打开实用拓展指导手册 + +achievement.actuallyadditions.nameSmileyCloud=你最好的朋友 +achievement.actuallyadditions.nameSmileyCloud.desc=命名一个微笑云朵 + +achievement.actuallyadditions.craftPhantomface=放大,再放大,是物品! +achievement.actuallyadditions.craftPhantomface.desc=制造一个幻灵接口 + +achievement.actuallyadditions.openTreasureChest=水下地牢 +achievement.actuallyadditions.openTreasureChest.desc=打开一个藏宝箱 + +achievement.actuallyadditions.craftLiquiface=放大,再放大,是流体! +achievement.actuallyadditions.craftLiquiface.desc=制造一个幻灵流体接口 + +achievement.actuallyadditions.craftEnergyface=放大,再放大,是RF! +achievement.actuallyadditions.craftEnergyface.desc=制造一个幻灵能量接口 + +achievement.actuallyadditions.craftCoalGen=发电机真是太棒了 +achievement.actuallyadditions.craftCoalGen.desc=制造一个煤炭发电机 + +achievement.actuallyadditions.craftLeafGen=咀叶花? +achievement.actuallyadditions.craftLeafGen.desc=制造一个咀叶发电机 + +achievement.actuallyadditions.craftReconstructor=滋滋滋 +achievement.actuallyadditions.craftReconstructor.desc=制造一台原子再构机 + +achievement.actuallyadditions.craftEmpowerer=激活祭坛吧 +achievement.actuallyadditions.craftEmpowerer.desc=制造一个充能台 + +achievement.actuallyadditions.makeCrystal=晶莹剔透 +achievement.actuallyadditions.makeCrystal.desc=使用原子再构机制作一个水晶 + +achievement.actuallyadditions.craftLaserRelay=是中继,不是延迟 +achievement.actuallyadditions.craftLaserRelay.desc=制造一个镭射中继器 + +achievement.actuallyadditions.craftLaserRelayItem=物流信息 +achievement.actuallyadditions.craftLaserRelayItem.desc=制作一个物品中继器 + +achievement.actuallyadditions.craftItemInterface=露出你的脸吧 +achievement.actuallyadditions.craftItemInterface.desc=制作一个物品传输接口 + +achievement.actuallyadditions.craftLaserRelayAdvanced=能量膨胀 +achievement.actuallyadditions.craftLaserRelayAdvanced.desc=制作一个高级能量激光中继器 + +achievement.actuallyadditions.craftLaserRelayExtreme=为能量而疯狂吧 +achievement.actuallyadditions.craftLaserRelayExtreme.desc=制作一个超级能量激光中继器 + +achievement.actuallyadditions.craftCrusher=双倍走起! +achievement.actuallyadditions.craftCrusher.desc=制造一台磨粉机 + +achievement.actuallyadditions.craftDoubleCrusher=双倍的双倍走起! +achievement.actuallyadditions.craftCrusher.desc=制造一台两仓磨粉机 + +achievement.actuallyadditions.pickUpCoffee=让你上瘾! +achievement.actuallyadditions.pickUpCoffee.desc=采集一些咖啡 + +achievement.actuallyadditions.craftCoffeeMachine=可不要贪杯哦 +achievement.actuallyadditions.craftCoffeeMachine.desc=制造一个咖啡制造机 + +achievement.actuallyadditions.craftFireworkBox=砰!砰!砰! +achievement.actuallyadditions.craftFireworkBox.desc=制作一个烟花发射器 + +achievement.actuallyadditions.getCrystalsMilestone=原子再构大师 +achievement.actuallyadditions.getCrystalsMilestone.desc=制作水晶数量达到200个 + +achievement.actuallyadditions.openBookletMilestone=书呆子! +achievement.actuallyadditions.openBookletMilestone.desc=打开手册次数达50次 + +achievement.actuallyadditions.getUnProbed=鬼鬼祟祟! +achievement.actuallyadditions.getUnProbed.desc=被别的玩家用玩家探测器探测到,但是按下了Shift键脱离了探测 + +#BookletRecipeNames +booklet.actuallyadditions.shapelessRecipe=无序合成 +booklet.actuallyadditions.shapedRecipe=有序合成 +booklet.actuallyadditions.shapelessOreRecipe=无序矿典合成 +booklet.actuallyadditions.shapedOreRecipe=有序矿典合成 + +#BookletEntries +booklet.actuallyadditions.indexEntry.gettingStarted.name=如何开始 +booklet.actuallyadditions.indexEntry.misc.name=其他杂项 +booklet.actuallyadditions.indexEntry.crossover.name=模组兼容 +booklet.actuallyadditions.indexEntry.functionalNoRF.name=不耗能方块 +booklet.actuallyadditions.indexEntry.allAndSearch.name=所有物品和搜索 +booklet.actuallyadditions.indexEntry.functionalRF.name=耗能方块 +booklet.actuallyadditions.indexEntry.generatingRF.name=产能方块 +booklet.actuallyadditions.indexEntry.itemsNoRF.name=不耗能物品 +booklet.actuallyadditions.indexEntry.itemsRF.name=耗能物品 +booklet.actuallyadditions.indexEntry.reconstruction.name=再构机的透镜 + +#BookletInfo +booklet.actuallyadditions.recipeDisabled=这个物品的合成表在配置文件里被禁用了!如过你是多人模式,要服主同意才能开启它的配方.如过你是单人模式,点击上面的"OpenConfig"按钮开启合成表! +booklet.actuallyadditions.unavailable=1.8.9和1.9版本属于未完成品,所以部分特性可能无法使用,所以请谨慎使用这个物品! +booklet.actuallyadditions.clickToSeeRecipe=点击查看更多信息 +booklet.actuallyadditions.amountOfWords=总计%s个词 +booklet.actuallyadditions.amountOfChars=总计%s个字 + +#BookletChapters +booklet.actuallyadditions.chapter.intro.name=实用拓展的介绍 +booklet.actuallyadditions.chapter.intro.text.1=长久以来,那些Minecraft的玩家们都生活在那近乎原始的时代中,被“麻烦”奴役着。是的,有成千种麻烦折磨着玩家,强迫他们将几小时,甚至数日的时间都浪费在诸如伐木、耕种、收获这样机械的工作上。他们又有多少时间能用来享受探索那无尽的未知的乐趣呢? +booklet.actuallyadditions.chapter.intro.text.2=但就算是这样,仍然没有改变世界的人出现。就在无数玩家心灰意冷的时候,一位名叫Ellepeck的实业家出现了。他立志于终结那些枯燥乏味的工作,在这样的想法的激励下,他为Minecraft世界带来了各种“真正的扩展”,彻底解放了玩家们的双手,允许玩家们将更多的时间投入到建筑和探险上。 +booklet.actuallyadditions.chapter.intro.text.3=那么,谨由Ellpeck来为您呈现这部划时代的著作——《实用拓展手册》,这不仅仅是本MOD的说明书,还是将一切不可能化为可能的秘密武器。~由Tulkas执笔作序 + +booklet.actuallyadditions.chapter.craftingIngs.name=合成原料 +booklet.actuallyadditions.chapter.craftingIngs.text.1=实用拓展有许多利用基本合成物品来合成的东西。这一章把所有的基本物品分组以便您一下子就能找到它们。 + +booklet.actuallyadditions.chapter.quartz.name=焦黑石英 +booklet.actuallyadditions.chapter.quartz.text.1=焦黑石英是一种生成在层之间的矿物。当被开采后,它可以在在熔炉里烧制成焦黑石英或在磨粉机里面磨焦黑石英粉. +booklet.actuallyadditions.chapter.quartz.text.2=焦黑石英实用拓展的许多的合成配方当中都有使用。它对于大多数物品的合成都非常重要,所以你在挖矿时候应该多挖掘一些这种矿石。它们可以被用来合成许多种不同的装饰方块,这将会在后面几面提到。每种装饰方块都可以用来合成楼梯,半砖和墙,配方与原版相同。下界石英,但是更死气沉沉。 + +booklet.actuallyadditions.chapter.cloud.name=微笑云朵 +booklet.actuallyadditions.chapter.cloud.text.1=微笑云朵是一种有魔力的浮动的云朵,通过它体内的固态经验获得生命。它在它呆的位置上上下下、兴高采烈地浮动着。当你右键点击它时,你可以给它命名在给它某些特殊的名字时,比如说"Ellpeck""AcidBlues",它就会拿出它携带的某些特殊的东西! + +booklet.actuallyadditions.chapter.coalStuff.name=煤炭相关 +booklet.actuallyadditions.chapter.coalStuff.text.1=有时你的煤炭燃烧时间太长或太短了,你知道我的意思吗?为了解决那个问题,你现在可以合成小块煤炭小块木炭以及木炭块来在熔炉中使用。木炭块燃烧时间和煤块一样长,而小块煤炭小块木炭燃烧时间是一块煤的八分之一,这意味着它在普通熔炉中恰好能烧制一个物品。 + +booklet.actuallyadditions.chapter.lamps.name=灯具 +booklet.actuallyadditions.chapter.lamps.text.1=灯具是一种提供大量光的方块,类似于萤石或火把,但是它们可以被染成Minecraft中的16种不同颜色,可以直接合成它们,或是把它们放在地上,手持染料右击染色。当空手右击它们时,它们将会切换光源的开关。如果你想使用红石信号来控制它,需要在它旁边放个灯具控制器。 + +booklet.actuallyadditions.chapter.treasureChest.name=藏宝箱 +booklet.actuallyadditions.chapter.treasureChest.text.1=一个发现于水下的藏宝箱。 +booklet.actuallyadditions.chapter.treasureChest.text.2=藏宝箱海洋生物群系中一种较为罕见的生成物。它们出现在海底,很可能是绕道的船只扔下或丢失的压舱货物。如果你足够幸运,这些箱子里可能会有一些珍贵的物品。你可以右击它们收获这些令人惊异的战利品,然而破坏它们不会得到任何东西。 + +booklet.actuallyadditions.chapter.breaker.name=破坏器和放置器 +booklet.actuallyadditions.chapter.breaker.text.1=方块破坏器能够破坏它前方的方块。它可以朝任意方向摆放。当手拿红石火把右键单击它时,它将在接受红石信号停用接收红石脉冲工作两种模式之间切换。 +booklet.actuallyadditions.chapter.breaker.text.2=方块放置器能够在它前方放置方块。它可以朝向任意方向摆放。当手拿红石火把右键单击它时,它将在接受红石信号停用接收红石脉冲工作两种模式之间切换。 +booklet.actuallyadditions.chapter.breaker.text.3=流体成型器放置你供应给它的液体。每消耗1000mB的液体来放置一个液体方块。当手拿红石火把右键单击它时,它将在接受红石信号停用接收红石脉冲工作两种模式之间之间切换。 +booklet.actuallyadditions.chapter.breaker.text.4=流体吸收器从它前方收集1000mB的液体,即一桶。当手拿红石火把右键单击它时,它将在接受红石信号停用接收红石脉冲工作两种模式之间切换。 + +booklet.actuallyadditions.chapter.phantomfaces.name=幻灵接口 +booklet.actuallyadditions.chapter.phantomfaces.text.1=幻灵接口是一种简单的把物品容器链接到一起的工具,它有个很大的优点:幻灵接口不只是把两个容器连在一起,而且还能模拟它连接到的容器,这意味着你可以通过把东西放入幻灵接口和从其中抽出来与物品容器交互。幻灵接口默认最大识别范围为个方块,你可以使用幻灵增幅器来增大这个范围。要将幻灵接口链接到物品容器,只需要使用幻灵连接器右键点击容器,再右键单击幻灵接口即可。 +booklet.actuallyadditions.chapter.phantomfaces.text.2=重要说明:需要强调的是幻灵接口不应该被当做无线传输设备。举个例子,当你没有足够的位置放置电缆时,或者你希望你的房间看起来美观,而不是堆满一堆方块或者电缆时,这时候才推荐使用幻灵接口。它不应被当做短距传输的超立方体。 +booklet.actuallyadditions.chapter.phantomfaces.text.3=默认情况下幻灵接口可以传输物品,就像第一页写的那样。 +booklet.actuallyadditions.chapter.phantomfaces.text.4=这个幻灵流体接口的行为很像普通的幻灵接口,但是仅对存储流体的容器方块有效。当给予一个红石信号,它可以被设置为自动输出。但是需要小心这个过程,因为它在某种情况下可能导致无限的循环和延迟。 +booklet.actuallyadditions.chapter.phantomfaces.text.5=这个幻灵能量接口的行为很像普通的幻灵接口,但是它仅能传输RF能量,这意味着它不能连接发电机和打粉机。 +booklet.actuallyadditions.chapter.phantomfaces.text.7=这个幻灵增幅器,就像第一页解释的那样,作用是增大幻灵接口的工作范围,只需要放置在幻灵接口的上面就能工作幻灵接口上方增幅器的最大的放置数量为3. + +booklet.actuallyadditions.chapter.phantomBreaker.name=幻灵方块破坏器与放置器 +booklet.actuallyadditions.chapter.phantomBreaker.text.1=幻灵方块破坏器放置器有着和幻灵接口相同的工作原理,不过它们的作用是远距离的破坏以及放置方块。其默认最大识别范围为格方块。欲使其连接并破坏一个方块,你需要按照幻灵接口章节中描述的方法去操作。当它前方是空气方块时,仅仅只会机械地放置方块,然后又破坏掉方块。当手拿红石火把右键单击它时,它会在接受红石信号停用接收红石脉冲工作两种模式之间切换。 + +booklet.actuallyadditions.chapter.esd.name=ESD +booklet.actuallyadditions.chapter.esd.text.1=ESD是一种工作方式类似于漏斗的方块,但是它的功能比漏斗多的多你可以选择从方块的哪一面来输入和输出,而且还可以精确地配置进行输入输出的格子的范围!为了获得关于ESD的更多准确信息,你可以合成它,然后将鼠标悬浮在它的GUI的元素上它的真名是 + +booklet.actuallyadditions.chapter.xpSolidifier.name=经验固化器 +booklet.actuallyadditions.chapter.xpSolidifier.text.1=经验固化器可以把玩家的经验值转变成固态经验,而手拿固态经验右键单击又可以让存储在里面的经验值回到玩家身上。用这种方法存储你的经验值既安全又方便,这样的话,在你死后你的经验值就不会丢失。固态经验有时也会从怪物身上掉落。 + +booklet.actuallyadditions.chapter.greenhouseGlass.name=温室玻璃 +booklet.actuallyadditions.chapter.greenhouseGlass.text.1=温室玻璃是加快你的植物生长的一种非常有效的方式!当它被放置在植物上方的任意位置,只要它与植物之间没有方块阻挡,而且玻璃可以接受到阳光,它就可以显著地加快植物生长当然,一定要是白天才行。想想看,这是显而易见的的。 +booklet.actuallyadditions.chapter.greenhouseGlass.text.2=温室气体 + +booklet.actuallyadditions.chapter.fishingNet.name=渔网 +booklet.actuallyadditions.chapter.fishingNet.text.1=渔网是一个方块,它使钓鱼变得容易得多!把它放置在水的上方,只要你给它一点时间,它就可以自动抓鱼!如果要存储鱼,只需在钓鱼网上方放个箱子,或是让它把物品从顶部喷出,再手动收集他们。专供懒人使用 + +booklet.actuallyadditions.chapter.feeder.name=自动饲育机 +booklet.actuallyadditions.chapter.feeder.text.1=自动饲育机是人工饲喂动物的好帮手。把它放在畜栏中间,并且给它提供一些小麦,种子或胡萝卜(这取决于你想喂什么动物),然后等着就行了。它将会自动饲喂动物,如果周围的动物太多,它也会自动关闭以防止大量动物造成卡顿。绿色和平组织批准使用 + +booklet.actuallyadditions.chapter.compost.name=堆肥机和肥料 +booklet.actuallyadditions.chapter.compost.text.1=堆肥机被用于把捣碎的食物转变成肥料.肥料用法与骨粉相同,但是合成方法比骨粉简单得多。只需合成捣碎的食物然后把10个捣碎的食物放入堆肥然后稍加等待即可。当捣碎的食物发酵后,只需再次右键点击即可拿出。当然,其他物品也是可以用来堆肥的,当被需要的时候都会给予介绍。 +booklet.actuallyadditions.chapter.compost.text.3=捣碎的食物可以通过任意食物或可种植的物品直接合成得到。 + +booklet.actuallyadditions.chapter.crate.name=板条箱 +booklet.actuallyadditions.chapter.crate.text.1=板条箱很大。真的很大。它们可以存储成千上万的物品,存储量比四个箱子还要多。 +booklet.actuallyadditions.chapter.crate.text.4=在破坏板条箱前把板条箱守护徽章放置在板条箱内,可以让板条箱保留内部所有物品,但是这个过程中守护徽章将会被销毁。Also note that using a filled crate for crafting will destroy its contents. +booklet.actuallyadditions.chapter.crate.text.5=板条箱升级徽章允许你把任意箱子转换成板条箱,并保留其中物品!只需按住shift右键单击箱子即可使用。 +booklet.actuallyadditions.chapter.crate.text.6=和板条箱升级徽章一样, 只需要手持扩容升级徽章(小转中)Shift右击任意一个小型板条箱,都可以将其扩容为中型板条箱,里面的物品也会得到保留。 +booklet.actuallyadditions.chapter.crate.text.7=和板条箱升级徽章一样, 只需要手持扩容升级徽章(中转大)Shift右击任意一个中型板条箱,都可以将其扩容为大型板条箱,里面的物品也会得到保留。 + +booklet.actuallyadditions.chapter.coffeeMachine.name=咖啡制造机 +booklet.actuallyadditions.chapter.coffeeMachine.text.1=咖啡机用于制造一种类似于药水,可以给予玩家几种附加效果的咖啡为了使用它,你需要空杯子咖啡豆。在野外可以发现咖啡豆,你可以在耕地上种植它。咖啡机需要RF/t的能源供给,每制作一杯咖啡需要mB的水。如果你想知道每种加入咖啡的物品都有什么用,翻到后几面的咖啡机配方,然后把鼠标悬停在物品的上方即可。 +booklet.actuallyadditions.chapter.coffeeMachine.text.2=为了能让咖啡有实际的药水效果接下来的几页给出了详细说明加入的东西越多,那么提供的药水等级也会越高。药水的最高等级取决于最多能放入的物品数量。放置顺序说明:举个例子,当你想要给你的咖啡加点牛奶(翻到最后一页可以了解它详细的的工作原理)你必须要按照一定的物品栏编号顺序放置物品,才能冲泡出你想要的咖啡。 +booklet.actuallyadditions.chapter.coffeeMachine.text.3=这是一个示例配方,制作一杯拥有抗火Ⅰ, 0:20速度Ⅰ, 2:30效果的咖啡。 +booklet.actuallyadditions.chapter.coffeeMachine.text.6=牛奶对于咖啡来说也很重要:它能为所有的药水效果提供2分钟延时,但会降低一个药水等级。如果原本的药水等级就是1,那么牛奶会移除这个效果。 +booklet.actuallyadditions.chapter.coffeeMachine.text.7=如果你看到了这一页,说明你要么安装了HarvestCraft,要么你在看lang文件。这些东西是为素食主义者准备的牛奶的替代品。 + +booklet.actuallyadditions.chapter.crusher.name=磨粉机与两仓磨粉机 +booklet.actuallyadditions.chapter.crusher.text.1=磨粉机可把每种矿物,锭和宝石转变成对应的粉末,功率为RF/t。当你把矿物放入时,它们会被转变成双倍的粉末两仓磨粉机基本上也是如此,然而它能一次粉碎2个矿石。在接下来几面,你将会看到一些使用到磨粉机的额外的实用配方。He's my crush + +booklet.actuallyadditions.chapter.furnaceDouble.name=两仓熔炉 +booklet.actuallyadditions.chapter.furnaceDouble.text.1=两仓熔炉工作方式和熔炉一样,但是,它可以以RF/t的功率一次烧制2个物品。 + +booklet.actuallyadditions.chapter.lavaFactory.name=岩浆工厂 +booklet.actuallyadditions.chapter.lavaFactory.text.1=岩浆工厂可消耗RF来制造岩浆。每产生一个岩浆方块需要消耗RF岩浆工厂上方的空当四周必须被4个岩浆工厂外墙包围,否则岩浆工厂不会工作。右击岩浆工厂可以显示当前环境下它是否能工作。Lava, for a fact. ory + +booklet.actuallyadditions.chapter.energizer.name=充能站与释能站 +booklet.actuallyadditions.chapter.energizer.text.1=充能站把它储能槽中的能量充入使用RF的物品之中。 +booklet.actuallyadditions.chapter.energizer.text.2=释能站存储有RF的物品中释放出能量,并将能量储存在它的储能槽中。 + +booklet.actuallyadditions.chapter.repairer.name=物品修理机 +booklet.actuallyadditions.chapter.repairer.text.1=物品修理机可使用RF/t的RF能量来修复可以在原版铁砧中修复的物品,不需要消耗任何材料! + +booklet.actuallyadditions.chapter.coalGen.name=煤炭发电机 +booklet.actuallyadditions.chapter.coalGen.text.1=煤炭发电机利用任何可以作为原版熔炉燃料的物品产生功率为RF/t的RF能量。注意,它只会在产生的能量有处可去的时候消耗燃料。 + +booklet.actuallyadditions.chapter.solarPanel.name=太阳能板 +booklet.actuallyadditions.chapter.solarPanel.text.1=太阳能板在白天且阳光直射的情况下产生功率为RF/t的RF能量。可以镶在墙上 + +booklet.actuallyadditions.chapter.heatCollector.name=热能发电机 +booklet.actuallyadditions.chapter.heatCollector.text.1=热能发电机是一个发电功率为RF/t的机器。它需要与至少个岩浆方块直接接触才能产生能量。岩浆与顶部接触视为无效。但是使用它的时候你要留个心眼,它有时会摧毁一些与它接触的岩浆方块! + +booklet.actuallyadditions.chapter.canola.name=油菜相关 +booklet.actuallyadditions.chapter.canola.text.1=那些在野外随处可见的油菜可以制成各种各样的东西!你可以油菜提炼菜籽油原油并以此产出RF首先你需要用油菜压榨机将一定量,油菜提炼为菜籽油。压榨机本身的能耗是RF/t。然后,用发酵桶可将菜籽油转化为原油。最终产出的原油可在原油发电机中当作燃料,产生RF/t。 +booklet.actuallyadditions.chapter.canola.text.2=另外,如果你有很多油菜籽处理不了,你还可以一次性将20个油菜籽放入堆肥机中以生产生物质生物质可在熔炉中烧制成生物燃料,它可以当做燃料就像普通的煤炭那样。 + +booklet.actuallyadditions.chapter.wings.name=蝙蝠之翼 +booklet.actuallyadditions.chapter.wings.text.1=有的时候,蝙蝠会掉落翅膀。由于强度不足以载人,这些翅膀不能真正用于飞行。你可以把这些翅膀制作成蝙蝠之翼使它的强度达到能载人的水平。当你把它置于你的背包中时,它可以让你像创造模式一样悬停飞行。 + +booklet.actuallyadditions.chapter.foods.name=食品 + +booklet.actuallyadditions.chapter.leafBlower.name=吹叶器 +booklet.actuallyadditions.chapter.leafBlower.text.1=手持吹叶器右击可以吹走周围高草、花和其他类似的东西。它有一个进阶版本,高级吹叶器。这种高级吹叶器和基础的吹叶器基本相同,可以吹得更快,还可以破坏树叶。 + +booklet.actuallyadditions.chapter.aiots.name=全能工具(AIOTs) +booklet.actuallyadditions.chapter.aiots.text.1=全能工具是一种集镐、斧、铲、锄和剑于一身的工具。它们可以用任何材料制成,如果你安装了热力基础(ThermalFoundation)或者MekanismTools模组,你甚至可以使用来自这些模组的材料制作全能工具! + +booklet.actuallyadditions.chapter.jams.name=果酱 +booklet.actuallyadditions.chapter.jams.text.1=有一次,有一只小猫特别想要一些果酱。于是我给它做了一些果酱说真的,这就是些普通果酱。你可以在村民家里找到它,或者从果酱商贩村民那里买到。每瓶果酱会给你两种不同的药水附加效果! +booklet.actuallyadditions.chapter.jams.text.2=一个果酱作坊它的居民 +booklet.actuallyadditions.chapter.jams.text.3=所以,你大概很想知道这个果酱的名字是什么意思。现在,让我告诉你:-哈密瓜和猕猴桃-哈密瓜和可可豆-菠萝和可可豆-樱桃、苹果和肉桂-李子、苹果和柠檬-葡萄、猕猴桃和香蕉-醋栗、香蕉和覆盆子现在,你可能会问,哪个是哪个?自己一边儿想去吧。 + +booklet.actuallyadditions.chapter.potionRings.name=药水指环 +booklet.actuallyadditions.chapter.potionRings.text.1=药水指环有两种版本:普通版高级版当你把普通版拿在手上,它会给予你一级的药水附加效果。高级版本放在背包中的任何位置都有效,并且提供二级的药水附加效果。 + +booklet.actuallyadditions.chapter.drill.name=钻头 +booklet.actuallyadditions.chapter.drill.text.1=手钻用起来就像一把镐或者锹一样。它使用RF来破坏方块。它可以在充能站中被充能,你还可以通过把它拿在手上按住Shift右键单击来升级。有大量的升级可用,这里是其中一部分的解释:范围采掘升级增大手钻开掘的范围的大小。方块放置升级,在你手持它右键单击后,它就会记录下它所在的快捷栏格子。在将它放入手钻后,你就可以通过拿着手钻右键单击把那个格子的方块放置在地上。你也可以把电池安装到手钻来升级它的储电量。 +booklet.actuallyadditions.chapter.drill.text.2=需要注意的是,急迫, 范围采集时运需要逐等级安装才能正常工作。这意味着你如果想要给你的手钻急迫Ⅲ的效果,你需要先安装急迫Ⅰ和急迫Ⅱ才可以。 +booklet.actuallyadditions.chapter.drill.text.4=手钻也可以被染料成Minecraft的16种颜色。但是,这只是装饰性的,除了让它看起来不同,对它不会有任何其他的效果。 + +booklet.actuallyadditions.chapter.staff.name=法杖 +booklet.actuallyadditions.chapter.staff.text.1=传送法杖,当在充能站中充能后,只需右击,就可以把你传送到屏幕中央十字准星所指的地方。当你的十字准星对着一个方块时,它会把你传送到那个方块的位置,但是,如果你的十字准星没有指着一个方块,准星所对着的方向的仰角就不能超过,否则传送将会失败。 + +booklet.actuallyadditions.chapter.magnetRing.name=磁力指环 +booklet.actuallyadditions.chapter.magnetRing.text.1=磁力指环,当它在充能站被充电后,只要它在你的背包里,它就可以消耗RF产生磁场,将大范围的物品吸到你身上。 + +booklet.actuallyadditions.chapter.growthRing.name=生长指环 +booklet.actuallyadditions.chapter.growthRing.text.1=生长指环,当在充能站充能后,只要拿在手上,就可以消耗RF来让你周围的植物生长大大加快。 + +booklet.actuallyadditions.chapter.waterRemovalRing.name=除液指环 +booklet.actuallyadditions.chapter.waterRemovalRing.text.1=除液指环,当在充能站中充能后,只要拿在手上,就可以使用RF来移除岩浆。 + +booklet.actuallyadditions.chapter.batteries.name=电池 +booklet.actuallyadditions.chapter.batteries.text.1=电池是个储存并携带RF能量的好方案。它们可以在充能站中充电在释能站中放电。 + +booklet.actuallyadditions.chapter.leafGen.name=咀叶发电机 +booklet.actuallyadditions.chapter.leafGen.text.1=咀叶发电机可以利用周围放置的树叶产生RF能量它会在发电过程中摧毁这些树叶,每块树叶可以发出RF你可以右击它以查看它已经储存了多少RF能量。它可以作用于周围格方块的范围。 +booklet.actuallyadditions.chapter.leafGen.text.2=嘎嘣脆 + +booklet.actuallyadditions.chapter.longRangeBreaker.name=长距离方块破坏器 +booklet.actuallyadditions.chapter.longRangeBreaker.text.1=长距离方块破坏器工作起来就像一个普通的方块破坏器,但是它可以破坏面前至多格的方块每破坏一个方块它会消耗RF当手拿红石火把右键单击它时,它会在接受红石信号时停用接收红石脉冲工作两种模式之间切换。图为正在破坏第层墙壁 +booklet.actuallyadditions.chapter.longRangeBreaker.text.2=Sequence Breaking + +booklet.actuallyadditions.chapter.dropper.name=自动精准投掷器 +booklet.actuallyadditions.chapter.dropper.text.1=自动精准投掷器工作起来就像一个普通的投掷器,但是它不需要接收红石信号脉冲就可以自动地投掷物品。同样,它也可以做到将物品精准地投掷到你所指的方向而不是粗暴地把物品砸在地上。当你手持红石火把右击它的时候,它会在接收红石信号时停止工作每接收一次红石脉冲工作一次这两个模式之间切换。 + +booklet.actuallyadditions.chapter.rangedCollector.name=物品收集器 +booklet.actuallyadditions.chapter.rangedCollector.text.1=物品收集器工作起来就像一个漏斗,但是它有收集周围的掉落物的能力,它能收集周围范围内的掉落物。它内置有物品过滤功能,可以设置白名单或者黑名单但是它一个缺点:它不能自动输出它收集的物品。 + +booklet.actuallyadditions.chapter.hairBalls.name=毛球 +booklet.actuallyadditions.chapter.hairBalls.text.1=毛球会从猫身上掉落。浏览下一页以获取更多信息。 +booklet.actuallyadditions.chapter.hairBalls.text.2=毛球是一件会从被玩家驯服身上掉落的物品。猫是一种很古怪的的生物,因为它们会让任何东西粘在自己的毛发上毛球或许长相令人不堪入目,但当你通过右击移除上面那些杂乱的猫毛后,说不定会找到一些有价值的物品或者只会收获到一些线。FUURRRRRR!! + +booklet.actuallyadditions.chapter.laserRelays.name=能量激光中继器 +booklet.actuallyadditions.chapter.laserRelays.text.1=能量激光中继器是一台能够无线传输RF的设备,这只需要把它用中继器扳手右击连接并生成网络即可。把产能机器或接收能量的机器放置在中继器旁,即可让它从网络中的其它中继器输出或接收能量。两个中继器最大可以相隔格方块。在能量传输过程中会存在轻微的能量损失,但是完全不用担心。 +booklet.actuallyadditions.chapter.laserRelays.text.2=这里有三种能量激光中继器。它们每tick传输的最大能量各不相同。能量上限分别为,和RF。同样的,不同的中继器能量损失也不相同。混合互联不同等级的中继器是可行的,然而能量传输的最低上限最高上限会受到两个中继器的影响。 +booklet.actuallyadditions.chapter.laserRelays.text.7=中继器扳手可以通过Shift右键转换模式。现有的模式有三种始终显示激光束从不显示激光束只有在使用扳手时显示激光束 + +booklet.actuallyadditions.chapter.blackLotus.name=黑莲花 +booklet.actuallyadditions.chapter.blackLotus.text.1=想一想:你需要合成黑色羊毛黑色粘土或者任何其他需要黑色染料的东西,但你觉得杀死那么多无辜的鱿鱼让你愧疚?唔,那么黑莲花正是你需要的东西!只要在野外随便找找,你就能找到一朵,然后就可以用它合成一些黑色染料,用来代替墨囊这样你就不再需要杀掉可怜的鱿鱼了。 +booklet.actuallyadditions.chapter.blackLotus.text.2=不,不是那个,Vaz... + +booklet.actuallyadditions.chapter.crystals.name=水晶和再构机 +booklet.actuallyadditions.chapter.crystals.text.1=原子再构机常用制作水晶,而水晶则是实用拓展模组最基础的原料。当提供能量之后,它就能发出激光,当激光击中一些方块时,它会把周围能够转换的方块都转换了。每发射一束激光消耗RF,但是额外的消耗量取决于转换的方块。 +booklet.actuallyadditions.chapter.crystals.text.2=这里有好几种透镜,它们都可以贴附在原子再构器上,但是并不是所有的透镜的功能都那么讨人喜欢。查看"再构机的透镜透镜"章节查询更多重要信息当使用红石火把右击原子再构机,可以在接收红石信号停止工作接收红石脉冲工作两种模式之间之间切换。. +booklet.actuallyadditions.chapter.crystals.text.3=需要注意的是,下面列出的合成表都没有透镜相关的说明因为合成它们不需要任何透镜我想这应该是显而易见的吧。 +booklet.actuallyadditions.chapter.crystals.text.5=当你合成很多物品时,你也许会想找到一种方式来自动化这个过程这里提供了一个非常简单的方式:原子再构机的对面放置精准自动投掷器(可以在“所有物品和搜索”条目找到它)接下来,在合适的位置放置物品吸收器,并且设置好白名单。接下来你只需要在投掷器里面丢进原料,就能在吸收器里面得到你想要的东西。 +booklet.actuallyadditions.chapter.crystals.text.6=Molecular Transformilator + +booklet.actuallyadditions.chapter.bookTutorial.name=手册简介 +booklet.actuallyadditions.chapter.bookTutorial.text.1=实用拓展手册是非常灵活的。简要概述︰条目与章节条目是一个一般性的主题,而章节几乎总是指向一个特定的物品。当关闭一个章节时,索引将会打开。当关闭索引时,就会打开主页。书签书签在手册的底部,当你点击它时就会存储当前页面,当再次点击它时就会回到这一页面。这对于轻松地浏览本书非常有用。 +booklet.actuallyadditions.chapter.bookTutorial.text.2=右上角的按钮可以打开成就或是设置屏幕。当看的一章与某种成就有联系时,一个对话泡泡将会在成就按钮旁弹出,把鼠标放在它上方就可以看到有关的成就。左上角的按钮可以转到与本模组有关的网页。当更新可用时,左上角还会出现一个下载更新按钮。 +booklet.actuallyadditions.chapter.bookTutorial.text.3=如果你出于某些原因需要重新合成这本书,只需要准备一张和一份油菜种子(它们随机生成在世界里),无序合成就可以得到这本书。 + +booklet.actuallyadditions.chapter.reconstructorLenses.name=透镜简介 +booklet.actuallyadditions.chapter.reconstructorLenses.text.1=原子再构机默认功能仅仅是转换一些方块。当使用透镜之后功能就有所改变。当你手持透镜右击原子再构机就可以贴附上透镜。空手右击可以取下来。他们消耗的能量各不相同。不同的透镜都拥有不同的功能和特性,你可以查看这一章内容来获取更多信息。 除此之外,这些透镜还有一些其他有用的合成。 + +booklet.actuallyadditions.chapter.additionalRecipes.name=附加合成 + +booklet.actuallyadditions.chapter.lensColor.name=斑斓透镜 +booklet.actuallyadditions.chapter.lensColor.text.1=装有斑斓透镜后,发射的激光束可以改变在其正前方所有的彩色玻璃和彩色玻璃板,染色粘土,地毯,染料,羊毛和本模组的灯具的颜色。相反的,如果不使用透镜,激光束也能穿过方块,但是只会转换相接触的方块。 + +booklet.actuallyadditions.chapter.lensDeath.name=死亡透镜 +booklet.actuallyadditions.chapter.lensDeath.text.1=装有死亡透镜后,发射的激光束能对其正前方任何的实体造成大量伤害,而对于玩家来说,只需要轻轻碰一下就能魂归故里。 + +booklet.actuallyadditions.chapter.lensDetonation.name=爆破透镜 +booklet.actuallyadditions.chapter.lensDetonation.text.1=装有爆破透镜后发射的激光束,击中方块后会起火并爆炸。所以请小心使用它。(使用这个透镜后,激光束的发射距离是普通情况下的3倍) + +booklet.actuallyadditions.chapter.lensDisenchanting.name=祛魔透镜 +booklet.actuallyadditions.chapter.lensDisenchanting.text.1=装有祛魔透镜后发射的激光束可以把已经拥有附魔的工具上的单个附魔转移到或者附魔书上面。使用方式很简单,在再构机前方丢出两个物品(需要注意两个物品必须要丢在同一个格子里面当激光束击中它们时,物品上的高等级附魔将会被转移或者添加到普通的书或者附魔书上面使用一次耗能为RF。 + +booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.name=一些装饰品 +booklet.actuallyadditions.chapter.miscDecorStuffsAndThings.text.1=有时候,你在搞建筑时,你会发现你根本没有足够多的装饰方块。那好,我们接下来隆重推出:装饰用石英这些和石英相仿,但有着更好看的花纹的方块还能合成为楼梯台阶,其合成也是一如既往的原版风格。 + +booklet.actuallyadditions.chapter.miner.name=垂直挖矿机 +booklet.actuallyadditions.chapter.miner.text.1=垂直挖矿机可以用来自动挖掘方块它有两种模式:它可以选择只挖掘矿石挖掘任何方块。每挖掘一个方块,它都会消耗RF。挖掘的物品会被存储到内部缓存中,右击即可取出。默认挖掘半径为格,但是就像幻灵接口一样,在其上方放置幻灵增幅器,最大可以扩大它的挖掘半径到3格。 +booklet.actuallyadditions.chapter.miner.text.2=(任意颜色手钻都可以合成)I dig it + +booklet.actuallyadditions.chapter.fireworkBox.name=烟花发射器 +booklet.actuallyadditions.chapter.fireworkBox.text.1=烟花发射器最适合新年佳节!在放置后供应一些RF能量,它就会向附近射出一些随机生成烟花每次喷射都会消耗RF能量。你知道的,原版的烟花合成起来是多么恼人,但它们又那么漂亮。但是这个机器解决了问题。 +booklet.actuallyadditions.chapter.fireworkBox.text.2=手拿红石火把右键单击它后,它会在接受红石信号停用接收红石脉冲工作两种模式之间切换。 + +booklet.actuallyadditions.chapter.rf.name=RF? Tesla? +booklet.actuallyadditions.chapter.rf.text.1=对于那些不经常使用RF的人,我们也准备了一个简要说明。红石通量(RedstoneFlux,RF)是众多MOD使用的一种能源系统。通常所说的RF/t是指机器在每个tick产生或消耗RF能量的数量。要将机器连接在一起,只需要将它们紧挨着放置即可。另外,如果你愿意的话,你还可以使用Tesla作为能源单位,它使用起来和RF没有太大差别。 + +booklet.actuallyadditions.chapter.enderStar.name=末影之星 +booklet.actuallyadditions.chapter.enderStar.text.1=末影之星要通过击杀凋零和前往末地收集龙之吐息获得。龙之吐息就是那些末影龙喷吐出的紫色颗粒,可以用瓶子来收集它们。末影之星许多合成所必需的材料。 + +booklet.actuallyadditions.chapter.phantomRedstoneface.name=幻灵红石接口 +booklet.actuallyadditions.chapter.phantomRedstoneface.text.1=如果你还不知道什么是幻灵接口,请先阅读幻灵接口条目。幻灵红石接口是用来传输红石信号的幻灵接口。但和一般的幻灵接口不一样,它“只在一个方向上工作”。换句话说,它只对相连的方块提供红石信号,它不会对那些周围的其他方块工作。 + +booklet.actuallyadditions.chapter.spawnerShard.name=刷怪笼碎片 +booklet.actuallyadditions.chapter.spawnerShard.text.1=刷怪笼碎片破坏刷怪笼后掉落的一种合成材料。每当刷怪笼被破坏后,总是会掉落一块碎片。 + +booklet.actuallyadditions.chapter.spawnerChanger.name=刷怪笼控制工具 +booklet.actuallyadditions.chapter.spawnerChanger.text.1=刷怪笼控制工具是一件可以操控刷怪笼生成的生物的物品。使用它也很简单,首先先用刷怪笼控制工具“拾起”你想要生成的生物,接下来用刷怪笼控制器右击刷怪笼可以改变生成的生物。注意,并不是每种生物都可这样做。 + +booklet.actuallyadditions.chapter.itemStorage.name=物品激光中继器 +booklet.actuallyadditions.chapter.itemStorage.text.1=激光中继器可以传输RF能量,物品激光中继器可以传输物品。但是这两者运转原理完全不同物品中继器之间的互联和激光中继器是相同的。但是中继器和容器的相连需要物品传输接口首先,你需要在物品传输接口旁边放置任何拥有物品栏的容器(比如箱子和熔炉),之后把物品传输接口 +booklet.actuallyadditions.chapter.itemStorage.text.2=和物品激光中继器相连。之后再用管道和物品传输接口相连。如果你还想做个存储系统,可以使用高级物品激光中继器,只需要Shift右击中继器,你就可以指定哪些物品允许或者不允许通过中继器。物品传输接口也可以这样用。 +booklet.actuallyadditions.chapter.itemStorage.text.3=当你想用物品激光中继器把物品从A点传往B点时,你会发现放置了两个中继器和两个物品传输接口后并不能正常工作,那是因为在这个网络中需要有物品缓存区才能工作,为了避免这种情况的发生,你只需要放置一个漏斗(或者箱子)对着输出端的物品中继器,之后物品就能顺利传输了,因为漏斗也算是一种有效的缓存区。 +booklet.actuallyadditions.chapter.itemStorage.text.4=需要注意的是,高级物品激光中继器拥有比其他中继器更高的优先级,换句话说,物品在传输过程中会优先选择通过它。这在物流系统中非常有用,你可以在一个全是高级物品激光中继器的系统中摆放一个依附箱子物品中继器,当该系统中其他位置全部溢出时,才会有物品进入这个箱子。 + +booklet.actuallyadditions.chapter.banners.name=实用拓展的旗帜 +booklet.actuallyadditions.chapter.banners.text.1=对于实用拓展中的一些特殊的物品,也有其对应的特殊旗帜图案。旗帜的合成都很简单,只需要在旗帜的下方摆上对应的物品就能制作,同样的,不同的颜色也是可行的。你也可以把它们和盾牌相合成。可以制作特殊旗帜的物品有:实用拓展手册幻灵连接器吹叶机(高级吹叶机不能做)手钻(只有白色的可以) + +booklet.actuallyadditions.chapter.lushCaves.name=郁郁葱葱的洞穴 +booklet.actuallyadditions.chapter.lushCaves.text.1=如果你曾经干过一些洞穴探险的事情,你可能注意到一些洞穴里面长满了树和草在主世界地下的任意高度都有可能生成,当你急需木头来做火把或者工具,这些洞穴将会变得非常有用。如果你还没有见过这种东西,翻到下一页查看截图! + +booklet.actuallyadditions.chapter.waterBowl.name=装水的碗 +booklet.actuallyadditions.chapter.waterBowl.text.1=用空碗右击水即可获得装水的碗。和一样,再次右击别的方块可以将水倒出。对于前期的农场来说,这将会是一件实用的工具。 + +booklet.actuallyadditions.chapter.playerInterface.name=玩家接口 +booklet.actuallyadditions.chapter.playerInterface.text.1=玩家接口幻灵接口工作方式相似,但玩家接口连接的是玩家而非方块,并且连接会在玩家放置它之后建立。当向其输入物品时,物品会进入玩家的物品栏。还有,当向其输入RF能量时,它会为玩家物品栏中的物品充能它具有格方块的效应范围,以及,你可以通过在其顶部放置3个幻灵增幅器来扩大范围。 + +booklet.actuallyadditions.chapter.displayStand.name=物品展示台 +booklet.actuallyadditions.chapter.displayStand.text.1=物品展示台是一种可将各种物品或方块展示出来的方块。只需要将待展示方块或物品右击放上去,这个方块或物品就会悬浮在展示台上方。再次右击可将其取下。除此以外,某些物品可令展示台发挥特殊效果,但这个功能需要消耗RF,阅读下一页可获得详细信息。 +booklet.actuallyadditions.chapter.displayStand.text.2=吹叶器以及高级吹叶器在展示架上时可以缓慢清理掉附近的草丛和树叶。药水指环在展示架上时也能发挥效果。普通版本只能将药水效果给予附近的一个生物,但高级版本可在大范围内给予任何生物以指定药水效果,但需要消耗大量RF。 + +booklet.actuallyadditions.chapter.itemFilter.name=物品过滤器 +booklet.actuallyadditions.chapter.itemFilter.text.1=物品过滤器可在高级物品激光中继器ESD物品吸收器中使用,以扩充它们的白名单大小。只需要右击打开过滤器,放入想过滤的物品,这个过滤器就被标记好了。之后它就可以放置在任何需要过滤名单的机器里面使用了。鼠标悬停在GUI里面的白名单按钮上! + +booklet.actuallyadditions.chapter.videoGuide.name=视频教程 +booklet.actuallyadditions.chapter.videoGuide.text.1=如果你还是不知道如何入门实用拓展模组,或者只是想简单了解下这个MOD,那么恭喜你,这里有我的一个朋友BootyToast制作的精彩视频(的确这个人的名字有点奇怪)。他的教程基本涵盖了主要的内容,虽然有一点过期了,很多新增内容没有介绍,但是仍不失为一个很棒的入门视频 。 +booklet.actuallyadditions.chapter.videoGuide.page.1.button=立即浏览 + +booklet.actuallyadditions.chapter.shockSuppressor.name=震波吸收器 +booklet.actuallyadditions.chapter.shockSuppressor.text.1=震波吸收器在供应RF能量后,能够保护周围至少个方块的区域免受各类爆炸的破坏,无论是恶魂,TNT还是爬行者发生的爆炸。保护一个方块需要消耗RF。 +booklet.actuallyadditions.chapter.shockSuppressor.text.2=鸣谢:这个不错的创意来自玩家praetoras。感谢他的建议。What's a fourth wall..? + +booklet.actuallyadditions.chapter.tinyTorch.name=微型火把 +booklet.actuallyadditions.chapter.tinyTorch.text.1=真棒! + +booklet.actuallyadditions.chapter.playerProbe.name=玩家探测器 +booklet.actuallyadditions.chapter.playerProbe.text.1=玩家探测器被用于改变玩家接口所相连的玩家,如果你不知道玩家接口是什么,请先看它的相关内容!玩家探测器的使用方式很简单,只需要用它右击玩家,接下来右击玩家接口就可以建立连接。需要注意的是,连接时候会给予提示信息,并且玩家可以通过摁住Shift键来取消连接,同样的,当玩家离开服务器也会取消连接!恶作剧的好东西 + +booklet.actuallyadditions.chapter.worms.name=蚯蚓 +booklet.actuallyadditions.chapter.worms.text.1=蚯蚓真是一个有用的物种。把它们放置在泥土或者草方块上面就可以自动耕种周围3×3的范围,并且还能保持其湿润除此之外,它还能促进作物更快的生长蚯蚓可以在用锄头耕种草方块时随机掉落。 +booklet.actuallyadditions.chapter.worms.text.2=正在工作的蚯蚓 + +booklet.actuallyadditions.chapter.bags.name=袋子和虚空袋子 +booklet.actuallyadditions.chapter.bags.text.1=袋子是一种简单的存储物品的工具,除此之外它还有一些附加功能。首先,手持袋子右键打开GUI,可以设置模式为自动吸取周围掉落物。其次,它还可以设置过滤名单虚空袋子和普通的用法类似,它主要是用来销毁物品的。 +booklet.actuallyadditions.chapter.bags.text.2=另外,当袋子里装有很多物品时,你只需要手持袋子右击存储的容器,比如箱子或者板条箱,就可以快速的把袋子中所有的物品放进箱子里面。 + +booklet.actuallyadditions.chapter.empowerer.name=充能台 +booklet.actuallyadditions.chapter.empowerer.text.1=充能台是一个用来充能水晶和其他物品的东西。首先,把需要充能的物品右击放置在充能台上面,之后在充能台四个方向相距两格的位置摆放上物品展示台,最后再在物品展示台上摆放上四个焦黑石英。下一页给出了一张说明图要激活这个仪式,那么每一个物品展示台都需要供应大量的RF能量,之后它们才能正常运转来给物品充能。 +booklet.actuallyadditions.chapter.empowerer.text.2=物品展示台的布局 +booklet.actuallyadditions.chapter.empowerer.text.3=我想所有MOD都得来个注魔祭坛 +booklet.actuallyadditions.chapter.empowerer.text.4=物品展示台也可以用来做很多其他的事情!翻到耗能方块查询更多信息! diff --git a/src/main/resources/assets/actuallyadditions/loot_tables/jamHouse.json b/src/main/resources/assets/actuallyadditions/loot_tables/jamHouse.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/loot_tables/jamHouse.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/loot_tables/lushCaves.json b/src/main/resources/assets/actuallyadditions/loot_tables/lushCaves.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/loot_tables/lushCaves.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockAtomicReconstructor.json b/src/main/resources/assets/actuallyadditions/models/block/blockAtomicReconstructor.json new file mode 100644 index 000000000..7249f2fd3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockAtomicReconstructor.json @@ -0,0 +1,179 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockAtomicReconstructorFront", + "1": "actuallyadditions:blocks/blockAtomicReconstructor", + "2": "actuallyadditions:blocks/blockAtomicReconstructorTop" + }, + "elements": [ + { + "name": "Base", + "from": [ 1.0, 1.0, 0.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 1.0, 16.0, 15.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 16.0 ] } + } + }, + { + "name": "OutlineBottom", + "from": [ 0.0, 0.0, 15.0 ], + "to": [ 16.0, 1.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "OutlineBottom2", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 16.0, 1.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "OutlineBottom3", + "from": [ 15.0, 0.0, 1.0 ], + "to": [ 16.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "OutlineBottom4", + "from": [ 0.0, 0.0, 1.0 ], + "to": [ 1.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "OutlineTop", + "from": [ 0.0, 15.0, 15.0 ], + "to": [ 16.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "OutlineTop2", + "from": [ 0.0, 15.0, 0.0 ], + "to": [ 16.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "OutlineTop3", + "from": [ 15.0, 15.0, 1.0 ], + "to": [ 16.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "OutlineTop4", + "from": [ 0.0, 15.0, 1.0 ], + "to": [ 1.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "OutlineCorner", + "from": [ 0.0, 1.0, 0.0 ], + "to": [ 1.0, 15.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 2.0, 1.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "OutlineCorner2", + "from": [ 15.0, 1.0, 0.0 ], + "to": [ 16.0, 15.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 1.0, 16.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "OutlineCorner3", + "from": [ 15.0, 1.0, 15.0 ], + "to": [ 16.0, 15.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 1.0, 16.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "OutlineCorner4", + "from": [ 0.0, 1.0, 15.0 ], + "to": [ 1.0, 15.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 1.0, 16.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 2.0, 1.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 1.0, 16.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockBookletStand.json b/src/main/resources/assets/actuallyadditions/models/block/blockBookletStand.json new file mode 100644 index 000000000..276aec831 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockBookletStand.json @@ -0,0 +1,49 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/models/modelBookletStand", + "tex": "actuallyadditions:blocks/models/modelBookletStand" + }, + "elements": [ + { + "from": [0.01,3,0], + "to": [0.01,14,16], + "faces": { + "west": { + "uv": [9,0,13,2.5], + "texture": "#tex" + }, + "east": { + "uv": [9,0,13,2.5], + "texture": "#tex" + } + } + }, + { + "from": [0.01,4,1], + "to": [1.01,13,15], + "faces": { + "up": { + "uv": [0.25,4.75,3.75,5], + "texture": "#tex" + }, + "down": { + "uv": [0.25,4.75,3.75,5], + "texture": "#tex" + }, + "east": { + "uv": [0.25,5,4,7], + "texture": "#tex" + }, + "north": { + "uv": [0,5,0.25,7], + "texture": "#tex" + }, + "south": { + "uv": [0,5,0.25,7], + "texture": "#tex" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockCanolaPress.json b/src/main/resources/assets/actuallyadditions/models/block/blockCanolaPress.json new file mode 100644 index 000000000..1eb04b1ab --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockCanolaPress.json @@ -0,0 +1,165 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockCanolaPress", + "1": "actuallyadditions:blocks/blockCanolaPressTop" + }, + "elements": [ + { + "name": "Cube", + "from": [ 13.0, 0.0, 0.0 ], + "to": [ 16.0, 16.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 3.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 3.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 3.0, 16.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 3.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 3.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 13.0 ], + "to": [ 3.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 3.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 3.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 13.0, 0.0, 13.0 ], + "to": [ 16.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 0.0, 16.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 3.0, 3.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 3.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 7.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 9.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 9.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 9.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 9.0, 15.0, 15.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 9.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 7.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 7.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 7.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 7.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 7.0, 2.0 ], + "to": [ 14.0, 9.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 2.0, 7.0, 14.0, 9.0 ] }, + "east": { "texture": "#0", "uv": [ 2.0, 7.0, 14.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 2.0, 7.0, 14.0, 9.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 7.0, 14.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 2.0, 2.0, 14.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 2.0, 2.0, 14.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 13.0, 0.0, 3.0 ], + "to": [ 15.0, 1.0, 13.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 6.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 3.0, 15.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 3.0, 15.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 3.0, 16.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 14.0, 3.0, 16.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 14.0, 3.0, 16.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 2.0 ], + "to": [ 13.0, 1.0, 14.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 0.0, 13.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 3.0, 16.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 3.0, 1.0, 13.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 3.0, 1.0, 13.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 3.0 ], + "to": [ 3.0, 1.0, 13.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 6.0, 0.0, 9.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 3.0, 15.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 3.0, 15.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 0.0, 3.0, 2.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 0.0, 3.0, 2.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 1.0 ], + "to": [ 13.0, 1.0, 2.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 3.0, 0.0, 4.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 14.0 ], + "to": [ 13.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 3.0, 0.0, 4.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 3.0, 0.0, 13.0, 1.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallInventory.json b/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallInventory.json new file mode 100644 index 000000000..1cb504a30 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallInventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartzChiseled" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallPost.json b/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallPost.json new file mode 100644 index 000000000..0fcadaea6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallPost.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_post", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartzChiseled" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallSide.json b/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallSide.json new file mode 100644 index 000000000..48e5c7195 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockChiseledQuartzWallSide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_side", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartzChiseled" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockCoalGenerator.json b/src/main/resources/assets/actuallyadditions/models/block/blockCoalGenerator.json new file mode 100644 index 000000000..8de6a6d34 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockCoalGenerator.json @@ -0,0 +1,375 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockCoalGeneratorTop", + "1": "actuallyadditions:blocks/blockCoalGenerator", + "2": "actuallyadditions:blocks/blockCoalGeneratorBottom", + "3": "actuallyadditions:blocks/blockCoalGeneratorSide" + }, + "elements": [ + { + "name": "Cube", + "from": [ 15.0, 15.0, 1.0 ], + "to": [ 16.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 15.0, 15.0 ], + "to": [ 16.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 15.0, 1.0 ], + "to": [ 1.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 15.0, 0.0 ], + "to": [ 16.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 15.0 ], + "to": [ 1.0, 15.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 1.0, 15.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 0.0 ], + "to": [ 16.0, 15.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 15.0 ], + "to": [ 16.0, 15.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#-1", "uv": [ 0.0, 0.0, 14.0, 14.0 ] }, + "south": { "texture": "#-1", "uv": [ 0.0, 0.0, 14.0, 14.0 ] }, + "west": { "texture": "#-1", "uv": [ 0.0, 0.0, 14.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.5, 0.0, 1.0 ], + "to": [ 1.5, 15.5, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "west": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 2.0, 15.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 2.0, 1.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 14.5, 0.0, 1.0 ], + "to": [ 15.5, 15.5, 15.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "east": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "west": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 14.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 1.0, 1.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 14.5 ], + "to": [ 15.0, 15.5, 15.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "south": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 14.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 13.0, 0.5 ], + "to": [ 15.0, 15.5, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 0.5, 15.0, 3.0 ] }, + "east": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.5 ] }, + "south": { "texture": "#1", "uv": [ 0.0, 0.0, 14.0, 2.5 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.5 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 2.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 2.0 ] } + } + }, + { + "name": "Cube", + "from": [ 10.0, 14.5, 1.5 ], + "to": [ 14.5, 15.5, 14.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 4.5, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 2.5, 5.0, 15.5, 6.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 4.5, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 1.5, 5.0, 14.5, 6.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 1.5, 14.5, 14.5 ] }, + "down": { "texture": "#0", "uv": [ 10.0, 1.5, 14.5, 14.5 ] } + } + }, + { + "name": "Cube", + "from": [ 1.5, 14.5, 1.5 ], + "to": [ 6.0, 15.5, 14.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "east": { "texture": "#0", "uv": [ 1.5, 5.0, 14.5, 6.0 ] }, + "south": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "west": { "texture": "#0", "uv": [ 1.5, 5.0, 14.5, 6.0 ] }, + "up": { "texture": "#0", "uv": [ 1.5, 1.5, 6.0, 14.5 ] }, + "down": { "texture": "#0", "uv": [ 1.5, 1.5, 6.0, 14.5 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 14.5, 1.5 ], + "to": [ 10.0, 15.5, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 6.0, 5.0, 10.0, 6.0 ] }, + "east": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "south": { "texture": "#0", "uv": [ 6.0, 5.0, 10.0, 6.0 ] }, + "west": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "up": { "texture": "#0", "uv": [ 6.0, 1.5, 10.0, 6.0 ] }, + "down": { "texture": "#0", "uv": [ 6.0, 1.5, 10.0, 6.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 14.5, 10.0 ], + "to": [ 10.0, 15.5, 14.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 6.0, 10.0, 10.0, 11.0 ] }, + "east": { "texture": "#0", "uv": [ 6.0, 10.0, 10.5, 11.0 ] }, + "south": { "texture": "#0", "uv": [ 6.0, 10.0, 10.0, 11.0 ] }, + "west": { "texture": "#0", "uv": [ 6.0, 10.0, 10.5, 11.0 ] }, + "up": { "texture": "#0", "uv": [ 6.0, 10.0, 10.0, 14.5 ] }, + "down": { "texture": "#0", "uv": [ 6.5, 10.0, 10.5, 14.5 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 0.5 ], + "to": [ 15.0, 3.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 13.0, 15.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 8.0, 3.0, 11.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 13.0, 15.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 5.0, 3.0, 8.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 15.0, 15.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 4.0, 12.0, 0.5 ], + "to": [ 6.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 3.0, 12.0, 4.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 3.0, 11.0, 4.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 3.0, 12.0, 4.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 3.0, 11.0, 4.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 6.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 10.0, 3.0, 12.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 4.0, 0.5 ], + "to": [ 15.0, 8.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 8.0, 15.0, 12.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 8.0, 3.0, 12.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 8.0, 15.0, 12.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 5.0, 3.0, 9.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 8.0, 15.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 15.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 12.0, 8.0, 0.5 ], + "to": [ 15.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 3.0, 4.0, 8.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 8.0, 3.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 3.0, 4.0, 8.0 ] }, + "west": { "texture": "#1", "uv": [ 3.0, 3.0, 4.0, 8.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 8.0, 4.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 0.5 ], + "to": [ 4.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 3.0, 15.0, 8.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 3.0, 13.0, 8.0 ] }, + "south": { "texture": "#1", "uv": [ 12.0, 3.0, 15.0, 8.0 ] }, + "west": { "texture": "#1", "uv": [ 14.0, 3.0, 15.0, 8.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 7.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 9.0, 3.0, 0.5 ], + "to": [ 10.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 12.0, 3.0, 0.5 ], + "to": [ 15.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 12.0, 4.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 3.0, 12.0, 4.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 12.0, 4.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 3.0, 12.0, 4.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 7.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 10.0, 12.0, 0.5 ], + "to": [ 12.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 4.0, 3.0, 6.0, 4.0 ] }, + "east": { "texture": "#1", "uv": [ 5.0, 3.0, 6.0, 4.0 ] }, + "south": { "texture": "#1", "uv": [ 4.0, 3.0, 6.0, 4.0 ] }, + "west": { "texture": "#1", "uv": [ 5.0, 3.0, 6.0, 4.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 6.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 4.0, 3.0, 6.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 3.0, 0.5 ], + "to": [ 4.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 12.0, 15.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 12.0, 13.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 12.0, 12.0, 15.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 14.0, 3.0, 15.0, 4.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 7.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 3.0, 0.5 ], + "to": [ 7.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.5, 0.0, 1.5 ], + "to": [ 14.5, 1.0, 14.5 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.5, 1.5, 14.5, 14.5 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockCoffeeMachine.json b/src/main/resources/assets/actuallyadditions/models/block/blockCoffeeMachine.json new file mode 100644 index 000000000..64fc6e863 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockCoffeeMachine.json @@ -0,0 +1,460 @@ +{ + "__createdwith": "opl's Model Creator", + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/models/modelCoffeeMachine", + "coffeeMachine": "actuallyadditions:blocks/models/modelCoffeeMachine" + }, + "elements": [ + { + "from": [3,0,1], + "to": [13,1,15], + "faces": { + "up": { + "uv": [2.1052632,0.26315784,2.7368422,1.5263159], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [2.999999,0.6842098,5.631579,2.68421], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [4.105262,1.3684217,5.052636,2.6315799], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [2.9473686,0.68421054,6.4210534,1.5263159], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [0,1.3400855,6.8,2.6], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [4.2105265,0.84210527,4.5263147,1.5263158], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [3,1,1], + "to": [13,10,7], + "faces": { + "up": { + "uv": [0.0,0.0,10.0,6.0], + "texture": "missingtexture" + }, + "down": { + "uv": [0.0,0.0,10.0,6.0], + "texture": "missingtexture" + }, + "west": { + "uv": [1.3684201,0.47368407,4.105262,1.5263153], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [1.5789478,0.31578958,5.157894,2.8421037], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [2,0,6,3], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [2,0,4,2], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [3,9,1], + "to": [13,11,12], + "faces": { + "up": { + "uv": [9.094739,1.0421052,10.568425,2.094737], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [2.3157897,0.21052635,6.000002,2.9999995], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [8.2,2.6,11.2,3], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [7.6,2.6,9,3], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [7.2,2.6,9,3], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [8.6,2.6,10,3], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [4,11,1], + "to": [12,14,9], + "faces": { + "up": { + "uv": [1.6,3,3.2,4.6], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [0.0,0.0,8.0,8.0], + "texture": "missingtexture" + }, + "west": { + "uv": [10.315789,1,10.4,1.6842105], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [9.684211,1.4736842,10.736842,1.8947369], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [9.326308,1.1271291,10.957892,1.4631579], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [10.2,0.6,10.8,1.2], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [7,8,9.5], + "to": [9,9,11.5], + "faces": { + "up": { + "uv": [0.0,0.0,2.0,2.0], + "texture": "missingtexture" + }, + "down": { + "uv": [9.684211,1.2631578,10.526316,1.8947369], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [9.7263155,1.2736838,10.357892,1.4842103], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [9.7263155,1.0526314,10.357892,2.1052628], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [10.105263,0.84210527,10.526316,1.8947369], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [10.105263,1.0526316,10.526316,1.6842105], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [6,1,9], + "to": [10,2,13], + "faces": { + "up": { + "uv": [7.368421,3.5789473,8,4.2], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [0.0,0.0,4.0,4.0], + "texture": "missingtexture" + }, + "west": { + "uv": [6.947369,3.3684208,7.7894735,4.157895], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [7.3684196,3.2105274,7.999996,4], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [7.578948,3.5789473,8.210525,4.2105265], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [6.968419,3.210528,8.021048,4], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [6,2,8], + "to": [10,7,9], + "faces": { + "up": { + "uv": [7.105263,3.6315806,8.15789,4.2105265], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [7.38947,3.3789477,7.810521,4.1684194], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [7.368421,3.6315784,8,4], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [7.2105265,3.4210534,7.8,4], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [6.915793,3.221051,7.8,4], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [7.526315,3.421054,8,4], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [6,2,13], + "to": [10,7,14], + "faces": { + "up": { + "uv": [7.5789475,3.7894738,8,4], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [6.999999,3.6,7.631578,3.9684215], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [7.368421,3.5789473,8,4], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [7.7894735,3.368421,8,3.7894738], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [7.157894,3.4210515,7.8,4], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [7.2,3.8,8,4], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [5,2,9], + "to": [6,7,13], + "faces": { + "up": { + "uv": [7.2105265,3.157895,7.999999,3.9999993], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [6.7894745,3.578949,7.842106,4], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [6.7684236,3.789474,8.242098,4.000001], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [7.7368455,3.578947,8,4.2], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [7.526315,3.368423,8,4], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [7.5789504,3.3684218,8,4], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [10,2,9], + "to": [11,7,13], + "faces": { + "up": { + "uv": [7.1578946,3.5789473,7.7894735,4], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [7.368421,3.7894738,7.5789475,4], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [7.1578946,3.4210515,7.6,3.8], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [6.9789453,3.2210534,8.031565,4.0105267], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [7.3684235,3.421053,8.210532,3.9999993], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [7.421055,3.210527,7.999999,4], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [4,2,10], + "to": [5,3,12], + "faces": { + "up": { + "uv": [6.778949,3.1894736,7.4105287,3.821053], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [7.2105265,3.210527,7.7894735,4.1578965], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [6.9473686,3.5789473,7.5789475,4], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [0.0,0.0,2.0,1.0], + "texture": "missingtexture" + }, + "north": { + "uv": [7.0000014,3.4210515,7.8,4], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [7.3684244,3.3684216,7.8,4], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [4,5,10], + "to": [5,6,12], + "faces": { + "up": { + "uv": [7.5789456,3.7894752,8.210522,4.2105274], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [7.5789475,3.7894738,8,4], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [6.8947353,3.5789483,7.5263157,3.9999993], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [0.0,0.0,2.0,1.0], + "texture": "missingtexture" + }, + "north": { + "uv": [7.2105207,3.2105284,8.210525,4.2105293], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [7.5789475,3.7894752,8.210524,4.2105284], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [3,3,10], + "to": [4,5,12], + "faces": { + "up": { + "uv": [7.421055,3.4736857,8.000004,4.000002], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [7.368421,3.5789473,8,3.7894738], + "texture": "#coffeeMachine" + }, + "west": { + "uv": [7.5789475,3.5789473,8,3.7894738], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [7.4736843,3.4736855,8.2105255,4.2105255], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [6.9684157,3.178948,7.3894744,4.021053], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [6.978949,3.5999997,7.610526,4.0210524], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [6,10.2,10.8], + "to": [7,11.2,11.8], + "faces": { + "up": { + "uv": [10.315789,2.4,10.4,2.6], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [0.0,0.0,1.0,1.0], + "texture": "missingtexture" + }, + "west": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [9.4,2.4,9.6,2.6], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + } + } + }, + { + "from": [9,10.2,10.8], + "to": [10,11.2,11.8], + "faces": { + "up": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + }, + "down": { + "uv": [0.0,0.0,1.0,1.0], + "texture": "missingtexture" + }, + "west": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + }, + "east": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + }, + "north": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + }, + "south": { + "uv": [9.4,2.2,9.8,2.6], + "texture": "#coffeeMachine" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockCompost.json b/src/main/resources/assets/actuallyadditions/models/block/blockCompost.json new file mode 100644 index 000000000..66fa0bc77 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockCompost.json @@ -0,0 +1,520 @@ +{ + "__createdBy": "canitzp", + "ambientocclusion": false, + "textures": { + "particle": "blocks/planks_oak", + "compost": "actuallyadditions:blocks/models/modelCompost" + }, + "elements": [ + { + "from": [1,1,1], + "to": [3,11,3], + "faces": { + "up": { + "uv": [7.8,0,8.4,0.6], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,2.0,2.0], + "texture": "#compost" + }, + "west": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "east": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "north": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "south": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + } + } + }, + { + "from": [13,1,1], + "to": [15,11,3], + "faces": { + "up": { + "uv": [7.8,0,8.4,0.6], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,2.0,2.0], + "texture": "#compost" + }, + "west": { + "uv": [0,0.4,1.2,3.625], + "texture": "#compost" + }, + "east": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "north": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "south": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + } + } + }, + { + "from": [13,1,13], + "to": [15,11,15], + "faces": { + "up": { + "uv": [7.8,0,8.4,0.6], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,2.0,2.0], + "texture": "#compost" + }, + "west": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "east": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "north": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "south": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + } + } + }, + { + "from": [1,1,13], + "to": [3,11,15], + "faces": { + "up": { + "uv": [7.8,0,8.4,0.6], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,2.0,2.0], + "texture": "#compost" + }, + "west": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "east": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "north": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + }, + "south": { + "uv": [0,0.2,1.2,3.625], + "texture": "#compost" + } + } + }, + { + "from": [1,1,3], + "to": [2,3,13], + "faces": { + "up": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,1.0,10.0], + "texture": "#compost" + }, + "west": { + "uv": [0,0.6,8.4,1.6], + "texture": "#compost" + }, + "east": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "north": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "south": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + } + } + }, + { + "from": [3,1,1], + "to": [13,3,2], + "faces": { + "up": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,10.0,1.0], + "texture": "#compost" + }, + "west": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "east": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "north": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "south": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + } + } + }, + { + "from": [14,1,3], + "to": [15,3,13], + "faces": { + "up": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,1.0,10.0], + "texture": "#compost" + }, + "west": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "east": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "north": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "south": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + } + } + }, + { + "from": [3,1,14], + "to": [13,3,15], + "faces": { + "up": { + "uv": [0,0.25,8.4,0.6], + "texture": "#compost" + }, + "down": { + "uv": [0.0,0.0,10.0,1.0], + "texture": "#compost" + }, + "west": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "east": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "north": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "south": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + } + } + }, + { + "from": [3,4,1], + "to": [13,6,2], + "faces": { + "up": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "down": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "west": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "east": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "north": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "south": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + } + } + }, + { + "from": [1,0,1], + "to": [15,1,15], + "faces": { + "up": { + "uv": [0.25,0.125,6,5.8], + "texture": "#compost" + }, + "down": { + "uv": [0,0.2,6,5.8], + "texture": "#compost" + }, + "west": { + "uv": [0,0.25,8.4,0.6], + "texture": "#compost" + }, + "east": { + "uv": [0,0.25,8.4,0.6], + "texture": "#compost" + }, + "north": { + "uv": [0,0.25,8.4,0.6], + "texture": "#compost" + }, + "south": { + "uv": [0,0.25,8.4,0.6], + "texture": "#compost" + } + } + }, + { + "from": [1,4,3], + "to": [2,6,13], + "faces": { + "up": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "down": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "west": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "east": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "north": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "south": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + } + } + }, + { + "from": [3,4,14], + "to": [13,6,15], + "faces": { + "up": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "down": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "west": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "east": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "north": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "south": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + } + } + }, + { + "from": [14,4,3], + "to": [15,6,13], + "faces": { + "up": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "down": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "west": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "east": { + "uv": [0,1.375,7.5,2.125], + "texture": "#compost" + }, + "north": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "south": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + } + } + }, + { + "from": [1,7,3], + "to": [2,9,13], + "faces": { + "up": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "down": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "west": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + }, + "east": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + }, + "north": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "south": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + } + } + }, + { + "from": [3,7,1], + "to": [13,9,2], + "faces": { + "up": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "down": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "west": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "east": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "north": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + }, + "south": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + } + } + }, + { + "from": [3,7,14], + "to": [13,9,15], + "faces": { + "up": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "down": { + "uv": [0,0.8,8.4,1.2], + "texture": "#compost" + }, + "west": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "east": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "north": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + }, + "south": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + } + } + }, + { + "from": [14,7,3], + "to": [15,9,13], + "faces": { + "up": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "down": { + "uv": [0,0.125,0.5,3.625], + "texture": "#compost" + }, + "west": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + }, + "east": { + "uv": [0,1.375,7.5,2], + "texture": "#compost" + }, + "north": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + }, + "south": { + "uv": [0.0,0.0,1.0,2.0], + "texture": "#compost" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockDisplayStand.json b/src/main/resources/assets/actuallyadditions/models/block/blockDisplayStand.json new file mode 100644 index 000000000..0e24231ab --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockDisplayStand.json @@ -0,0 +1,275 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockDisplayStand", + "1": "actuallyadditions:blocks/blockGiantChestTop", + "2": "actuallyadditions:blocks/blockDisplayStandSide", + "3": "actuallyadditions:blocks/blockDisplayStand" + }, + "elements": [ + { + "name": "Cube", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 16.0, 1.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 16.0, 16.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 1.0, 16.0, 0.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 7.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 5.0, 15.0, 11.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 5.0, 15.0, 11.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 5.0, 15.0, 11.0 ] }, + "west": { "texture": "#1", "uv": [ 1.0, 5.0, 15.0, 11.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 1.0, 3.0 ], + "to": [ 16.0, 2.0, 13.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 10.0, 16.0, 11.0 ] }, + "east": { "texture": "#2", "uv": [ 3.0, 10.0, 13.0, 11.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 10.0, 16.0, 11.0 ] }, + "west": { "texture": "#2", "uv": [ 3.0, 10.0, 13.0, 11.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 8.0, 4.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 8.0, 4.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 1.0, 0.0 ], + "to": [ 13.0, 2.0, 16.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 3.0, 10.0, 13.0, 11.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "south": { "texture": "#2", "uv": [ 3.0, 9.0, 13.0, 10.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 8.0, 4.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 8.0, 4.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 2.0, 5.0 ], + "to": [ 16.0, 3.0, 11.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 11.0, 16.0, 12.0 ] }, + "east": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 11.0, 16.0, 12.0 ] }, + "west": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 8.0, 4.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 10.0, 4.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 5.0, 2.0, 0.0 ], + "to": [ 11.0, 3.0, 16.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 11.0, 16.0, 12.0 ] }, + "south": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 13.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 11.0, 16.0, 12.0 ] }, + "up": { "texture": "#2", "uv": [ 12.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 8.0, 4.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 5.0, 5.0, 0.0 ], + "to": [ 11.0, 6.0, 16.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 11.0, 16.0, 12.0 ] }, + "south": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 11.0, 16.0, 12.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 8.0, 16.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 12.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 5.0, 5.0 ], + "to": [ 16.0, 6.0, 11.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "east": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 8.0, 16.0, 9.0 ] }, + "west": { "texture": "#2", "uv": [ 5.0, 11.0, 11.0, 12.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 8.0, 16.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 6.0, 0.0 ], + "to": [ 13.0, 7.0, 16.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 3.0, 9.0, 13.0, 10.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "south": { "texture": "#2", "uv": [ 3.0, 9.0, 13.0, 10.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "down": { "texture": "#2", "uv": [ 2.0, 10.0, 15.0, 11.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 3.0 ], + "to": [ 16.0, 7.0, 13.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "east": { "texture": "#2", "uv": [ 3.0, 9.0, 13.0, 10.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "west": { "texture": "#2", "uv": [ 3.0, 9.0, 13.0, 10.0 ] }, + "up": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 9.0, 16.0, 10.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 0.0 ], + "to": [ 16.0, 8.0, 16.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "up": { "texture": "#3", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 0.0, 16.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 6.0 ], + "to": [ 10.0, 9.0, 10.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 7.0 ], "rotation": 180 }, + "east": { "texture": "#3", "uv": [ 6.0, 9.0, 10.0, 10.0 ] }, + "south": { "texture": "#3", "uv": [ 6.0, 9.0, 10.0, 10.0 ] }, + "west": { "texture": "#3", "uv": [ 6.0, 6.0, 7.0, 10.0 ], "rotation": 270 }, + "up": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 10.0 ] }, + "down": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 10.0 ] } + } + }, + { + "name": "Cube", + "from": [ 4.0, 8.0, 6.0 ], + "to": [ 6.0, 9.0, 10.0 ], + "rotation": { "origin": [ 6.0, 9.0, 8.0 ], "axis": "z", "angle": 45.0 }, + "faces": { + "north": { "texture": "#3", "uv": [ 6.0, 6.0, 7.0, 7.0 ] }, + "east": { "texture": "#3", "uv": [ 6.0, 6.0, 8.0, 10.0 ], "rotation": 270 }, + "south": { "texture": "#3", "uv": [ 6.0, 9.0, 7.0, 10.0 ] }, + "west": { "texture": "#3", "uv": [ 6.0, 6.0, 8.0, 10.0 ], "rotation": 270 }, + "up": { "texture": "#3", "uv": [ 6.0, 6.0, 8.0, 10.0 ] }, + "down": { "texture": "#3", "uv": [ 6.0, 6.0, 8.0, 10.0 ] } + } + }, + { + "name": "Cube", + "from": [ 10.0, 8.0, 6.0 ], + "to": [ 12.0, 9.0, 10.0 ], + "rotation": { "origin": [ 10.0, 9.0, 8.0 ], "axis": "z", "angle": -45.0 }, + "faces": { + "north": { "texture": "#3", "uv": [ 9.0, 6.0, 10.0, 7.0 ] }, + "east": { "texture": "#3", "uv": [ 9.0, 6.0, 11.0, 10.0 ], "rotation": 90 }, + "south": { "texture": "#3", "uv": [ 9.0, 9.0, 10.0, 10.0 ] }, + "west": { "texture": "#3", "uv": [ 9.0, 6.0, 11.0, 10.0 ], "rotation": 90 }, + "up": { "texture": "#3", "uv": [ 9.0, 6.0, 11.0, 10.0 ] }, + "down": { "texture": "#3", "uv": [ 9.0, 6.0, 11.0, 10.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 10.0 ], + "to": [ 10.0, 9.0, 12.0 ], + "rotation": { "origin": [ 8.0, 9.0, 10.0 ], "axis": "x", "angle": 45.0 }, + "faces": { + "north": { "texture": "#3", "uv": [ 6.0, 9.0, 10.0, 11.0 ] }, + "east": { "texture": "#3", "uv": [ 6.0, 9.0, 7.0, 10.0 ] }, + "south": { "texture": "#3", "uv": [ 6.0, 9.0, 10.0, 11.0 ] }, + "west": { "texture": "#3", "uv": [ 9.0, 9.0, 10.0, 10.0 ] }, + "up": { "texture": "#3", "uv": [ 6.0, 9.0, 10.0, 11.0 ] }, + "down": { "texture": "#3", "uv": [ 6.0, 9.0, 10.0, 11.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 4.0 ], + "to": [ 10.0, 9.0, 6.0 ], + "rotation": { "origin": [ 8.0, 9.0, 6.0 ], "axis": "x", "angle": -45.0 }, + "faces": { + "north": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#3", "uv": [ 6.0, 6.0, 7.0, 7.0 ] }, + "south": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#3", "uv": [ 9.0, 6.0, 10.0, 7.0 ] }, + "up": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 8.0 ] }, + "down": { "texture": "#3", "uv": [ 6.0, 6.0, 10.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 0.0 ], + "to": [ 1.0, 9.0, 1.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "up": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 6.0, 0.0 ], + "to": [ 16.0, 9.0, 1.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "up": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 6.0, 15.0 ], + "to": [ 16.0, 9.0, 16.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "up": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 15.0 ], + "to": [ 1.0, 9.0, 16.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 3.0 ] }, + "up": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json b/src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json new file mode 100644 index 000000000..03b58132a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockEmpowerer.json @@ -0,0 +1,300 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockCoalGeneratorSide", + "1": "actuallyadditions:blocks/blockMiscIronCasing", + "2": "actuallyadditions:blocks/blockEmpowerer" + }, + "elements": [ + { + "name": "Cube", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 16.0, 1.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 15.0, 16.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 15.0, 16.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 1.0, 2.0 ], + "to": [ 14.0, 2.0, 14.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] }, + "down": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 1.0, 4.0 ], + "to": [ 15.0, 2.0, 12.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ], "rotation": 270 }, + "east": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 0.0, 2.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 4.0, 1.0, 5.0, 0.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 4.0, 1.0, 1.0 ], + "to": [ 12.0, 2.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 0.0, 2.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 1.0, 1.0, 0.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 2.0, 2.0 ], + "to": [ 14.0, 3.0, 14.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 2.0, 1.0, 14.0, 2.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 1.0, 14.0, 2.0 ] }, + "south": { "texture": "#1", "uv": [ 2.0, 14.0, 14.0, 15.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 14.0, 12.0, 15.0 ] }, + "up": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] }, + "down": { "texture": "#1", "uv": [ 2.0, 2.0, 14.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 3.0, 6.0 ], + "to": [ 10.0, 6.0, 10.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "east": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "south": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 3.0 ] }, + "up": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 4.0 ] }, + "down": { "texture": "#1", "uv": [ 0.0, 0.0, 4.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 2.0, 6.0, 0.0 ], + "to": [ 14.0, 7.0, 16.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 16.0 ] }, + "down": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 2.0 ], + "to": [ 16.0, 7.0, 14.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 0.0, 2.0, 16.0, 14.0 ] }, + "down": { "texture": "#1", "uv": [ 0.0, 2.0, 16.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 7.0, 1.0 ], + "to": [ 15.0, 8.0, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 0.0 ], + "to": [ 16.0, 8.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 15.0 ], + "to": [ 16.0, 8.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 1.0 ], + "to": [ 1.0, 8.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 7.0, 1.0 ], + "to": [ 16.0, 8.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 8.0, 5.0 ], + "to": [ 5.0, 9.0, 11.0 ], + "rotation": { "origin": [ 5.0, 9.0, 8.0 ], "axis": "z", "angle": 45.0 }, + "faces": { + "north": { "texture": "#1", "uv": [ 5.0, 0.0, 6.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 7.0, 11.0, 8.0 ] }, + "west": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 5.0, 7.0, 6.0, 13.0 ], "rotation": 180 }, + "down": { "texture": "#1", "uv": [ 5.0, 3.0, 11.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 11.0, 8.0, 5.0 ], + "to": [ 13.0, 9.0, 11.0 ], + "rotation": { "origin": [ 11.0, 9.0, 8.0 ], "axis": "z", "angle": -45.0 }, + "faces": { + "north": { "texture": "#1", "uv": [ 4.0, 8.0, 5.0, 9.0 ] }, + "east": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 11.0, 7.0, 12.0, 8.0 ] }, + "west": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 5.0, 5.0, 11.0 ], "rotation": 180 }, + "down": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 5.0, 8.0, 3.0 ], + "to": [ 11.0, 9.0, 5.0 ], + "rotation": { "origin": [ 8.0, 9.0, 5.0 ], "axis": "x", "angle": -45.0 }, + "faces": { + "north": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 5.0, 0.0, 6.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 5.0, 8.0, 11.0 ], + "to": [ 11.0, 9.0, 13.0 ], + "rotation": { "origin": [ 8.0, 9.0, 11.0 ], "axis": "x", "angle": 45.0 }, + "faces": { + "north": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 5.0, 0.0, 6.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 5.0, 8.0, 5.0 ], + "to": [ 11.0, 9.0, 11.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 4.0, 6.0, 5.0, 12.0 ], "rotation": 90 }, + "south": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 1.0 ], "rotation": 180 }, + "west": { "texture": "#1", "uv": [ 5.0, 3.0, 6.0, 9.0 ], "rotation": 90 }, + "up": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 6.0 ] }, + "down": { "texture": "#1", "uv": [ 5.0, 0.0, 11.0, 6.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 0.0 ], + "to": [ 1.0, 9.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 6.0, 0.0 ], + "to": [ 16.0, 9.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 6.0, 15.0 ], + "to": [ 16.0, 9.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 6.0, 15.0 ], + "to": [ 1.0, 9.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 1.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockFermentingBarrel.json b/src/main/resources/assets/actuallyadditions/models/block/blockFermentingBarrel.json new file mode 100644 index 000000000..39eb51e7b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockFermentingBarrel.json @@ -0,0 +1,347 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockFermentingBarrel", + "1": "actuallyadditions:blocks/blockFermentingBarrelTop" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 2.0, 15.0 ], + "to": [ 16.0, 4.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 14.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 12.0, 16.0, 14.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 14.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 12.0, 1.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 13.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 16.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 15.0 ], + "to": [ 16.0, 9.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 7.0, 16.0, 9.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 7.0, 16.0, 9.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 7.0, 1.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 7.0, 16.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 8.0, 16.0, 9.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 12.0, 15.0 ], + "to": [ 16.0, 14.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 2.0, 16.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 2.0, 16.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 2.0, 16.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 2.0, 1.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 2.0, 16.0, 3.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 3.0, 16.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 12.0, 0.0 ], + "to": [ 16.0, 14.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 2.0, 16.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 2.0, 1.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 2.0, 16.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 2.0, 16.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 2.0, 16.0, 3.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 3.0, 16.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 2.0, 0.0 ], + "to": [ 16.0, 4.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 14.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 12.0, 1.0, 14.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 14.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 12.0, 16.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 13.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 16.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 0.0 ], + "to": [ 16.0, 9.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 7.0, 16.0, 9.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 7.0, 1.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 7.0, 16.0, 9.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 7.0, 16.0, 8.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 8.0, 16.0, 9.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 2.0, 0.0 ], + "to": [ 16.0, 4.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 14.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 12.0, 1.0, 14.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 14.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 12.0, 16.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 12.0, 16.0, 13.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 13.0, 16.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 2.0, 1.0 ], + "to": [ 1.0, 4.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 12.0, 2.0, 14.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 12.0, 15.0, 14.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 12.0, 15.0, 14.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 12.0, 15.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 12.0, 15.0, 13.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 13.0, 15.0, 14.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 0.0, 7.0, 1.0 ], + "to": [ 1.0, 9.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 7.0, 2.0, 9.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 7.0, 15.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 7.0, 15.0, 9.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 7.0, 15.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 7.0, 15.0, 8.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 8.0, 15.0, 9.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 0.0, 12.0, 1.0 ], + "to": [ 1.0, 14.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 2.0, 2.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 2.0, 15.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 2.0, 15.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 2.0, 15.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 2.0, 15.0, 3.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 3.0, 15.0, 4.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 12.0, 1.0 ], + "to": [ 16.0, 14.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 2.0, 2.0, 4.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 2.0, 15.0, 4.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 2.0, 15.0, 4.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 2.0, 15.0, 4.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 2.0, 15.0, 3.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 3.0, 15.0, 4.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 7.0, 1.0 ], + "to": [ 16.0, 9.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 7.0, 2.0, 9.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 7.0, 15.0, 9.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 7.0, 15.0, 9.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 7.0, 15.0, 9.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 7.0, 15.0, 8.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 8.0, 15.0, 9.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 2.0, 1.0 ], + "to": [ 16.0, 4.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 12.0, 2.0, 14.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 12.0, 15.0, 14.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 12.0, 15.0, 14.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 12.0, 15.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 12.0, 15.0, 13.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 13.0, 15.0, 14.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 7.0, 0.0, 0.5 ], + "to": [ 9.0, 16.0, 1.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 12.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 7.0, 15.0, 9.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 11.0, 0.0, 14.5 ], + "to": [ 14.0, 16.0, 15.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 0.0, 3.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 2.0, 15.0, 5.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 14.5, 0.0, 11.0 ], + "to": [ 15.5, 16.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 0.0, 14.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 11.0, 0.0, 12.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 2.0, 15.0, 5.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 2.0, 0.0, 14.5 ], + "to": [ 5.0, 16.0, 15.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 0.0, 14.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 11.0, 0.0, 12.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 11.0, 15.0, 14.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 14.5, 0.0, 7.0 ], + "to": [ 15.5, 16.0, 9.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 12.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 7.0, 15.0, 9.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 14.5, 0.0, 2.0 ], + "to": [ 15.5, 16.0, 5.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 2.0, 0.0, 3.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 2.0, 15.0, 5.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 2.0, 0.0, 0.5 ], + "to": [ 5.0, 16.0, 1.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 11.0, 0.0, 12.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 0.0, 14.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 11.0, 15.0, 14.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 7.0, 0.0, 14.5 ], + "to": [ 9.0, 16.0, 15.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 0.0, 15.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 7.0, 15.0, 9.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 11.0, 0.0, 0.5 ], + "to": [ 14.0, 16.0, 1.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 2.0, 0.0, 3.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 2.0, 15.0, 5.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 0.5, 0.0, 11.0 ], + "to": [ 1.5, 16.0, 14.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 11.0, 0.0, 12.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 0.0, 14.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 11.0, 15.0, 14.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 0.5, 0.0, 7.0 ], + "to": [ 1.5, 16.0, 9.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 0.0, 8.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 6.0, 0.0, 8.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 8.0, 0.0, 9.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 7.0, 0.0, 9.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 7.0, 15.0, 9.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 0.5, 0.0, 2.0 ], + "to": [ 1.5, 16.0, 5.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 2.0, 0.0, 3.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 11.0, 0.0, 14.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 4.0, 0.0, 5.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 2.0, 0.0, 5.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 2.0, 15.0, 5.0, 16.0 ], "rotation": 270 } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockFishingNet.json b/src/main/resources/assets/actuallyadditions/models/block/blockFishingNet.json new file mode 100644 index 000000000..676b4db0e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockFishingNet.json @@ -0,0 +1,850 @@ +{ + "__createdBy": "canitzp", + "ambientocclusion": false, + "textures": { + "particle": "blocks/planks_oak", + "fishingNet": "actuallyadditions:blocks/models/modelFishingNet" + }, + "elements": [ + { + "from": [1,0.1,1.25], + "to": [15,0.6,1.8000001], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,2.25], + "to": [15,0.6,2.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,3.25], + "to": [15,0.6,3.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,4.25], + "to": [15,0.6,4.85], + "faces": { + "up": { + "uv": [0.3333335,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,5.25], + "to": [15,0.6,5.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,6.25], + "to": [15,0.6,6.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,7.25], + "to": [15,0.6,7.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,8.25], + "to": [15,0.6,8.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,9.25], + "to": [15,0.6,9.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,10.25], + "to": [15,0.6,10.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,11.25], + "to": [15,0.6,11.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,12.25], + "to": [15,0.6,12.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,13.25], + "to": [15,0.6,13.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1,0.1,14.25], + "to": [15,0.7,14.85], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,14.0,0.6], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + } + } + }, + { + "from": [1.2,0,1], + "to": [1.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [2.2,0,1], + "to": [2.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [3.2,0,1], + "to": [3.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [4.2,0,1], + "to": [4.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [5.2,0,1], + "to": [5.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [6.2,0,1], + "to": [6.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [7.2,0,1], + "to": [7.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [8.2,0,1], + "to": [8.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [9.2,0,1], + "to": [9.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [10.2,0,1], + "to": [10.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [11.2,0,1], + "to": [11.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [12.2,0,1], + "to": [12.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [13.2,0,1], + "to": [13.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + }, + { + "from": [14.2,0,1], + "to": [14.8,0.5,15], + "faces": { + "up": { + "uv": [0.33333334,0,11,0.6666667], + "texture": "#fishingNet" + }, + "down": { + "uv": [0.0,0.0,0.6,14.0], + "texture": "#fishingNet" + }, + "west": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "east": { + "uv": [0.0,0.0,14.0,0.5], + "texture": "#fishingNet" + }, + "north": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + }, + "south": { + "uv": [0.0,0.0,0.6,0.5], + "texture": "#fishingNet" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockFurnaceSolar.json b/src/main/resources/assets/actuallyadditions/models/block/blockFurnaceSolar.json new file mode 100644 index 000000000..dd764ffa5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockFurnaceSolar.json @@ -0,0 +1,40 @@ +{ + "__createdBy": "canitzp", + "ambientocclusion": false, + "textures": { + "particle": "blocks/iron_block", + "furnaceSolar": "actuallyadditions:blocks/models/modelFurnaceSolar" + }, + "elements": [ + { + "from": [0,0,0], + "to": [16,6,16], + "faces": { + "up": { + "uv": [4,0,8,4], + "texture": "#furnaceSolar" + }, + "down": { + "uv": [8,0,12,4], + "texture": "#furnaceSolar" + }, + "west": { + "uv": [4,4,8,4.75], + "texture": "#furnaceSolar" + }, + "east": { + "uv": [0,4,4,4.75], + "texture": "#furnaceSolar" + }, + "north": { + "uv": [0,4,4,4.75], + "texture": "#furnaceSolar" + }, + "south": { + "uv": [0,4,4,4.75], + "texture": "#furnaceSolar" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json new file mode 100644 index 000000000..01db7ad1a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChest.json @@ -0,0 +1,100 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockGiantChestTop", + "1": "actuallyadditions:blocks/blockGiantChestLarge" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 10.0 ], + "to": [ 1.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 3.0 ], + "to": [ 16.0, 16.0, 6.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 10.0, 0.0, 15.0 ], + "to": [ 13.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 0.0 ], + "to": [ 6.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 15.0, 1.0 ], + "to": [ 15.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json new file mode 100644 index 000000000..0ac3e5b3d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestLarge.json @@ -0,0 +1,256 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockGiantChestLarge", + "1": "actuallyadditions:blocks/blockGiantChestTop" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 10.0 ], + "to": [ 1.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 1.0 ], + "to": [ 1.0, 10.0, 10.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 6.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 6.0 ], + "to": [ 16.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 0.0 ], + "to": [ 15.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 15.0 ], + "to": [ 10.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 6.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 13.0 ], + "to": [ 1.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 1.0 ], + "to": [ 16.0, 10.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 13.0, 8.0, 15.0 ], + "to": [ 15.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 0.0 ], + "to": [ 3.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 3.0 ], + "to": [ 16.0, 16.0, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 10.0, 0.0, 15.0 ], + "to": [ 13.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 0.0 ], + "to": [ 6.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 15.0, 1.0 ], + "to": [ 15.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#1", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 0.0 ], + "to": [ 1.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 15.0 ], + "to": [ 1.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 15.0 ], + "to": [ 16.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 0.0 ], + "to": [ 16.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json new file mode 100644 index 000000000..6378f43d8 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockGiantChestMedium.json @@ -0,0 +1,257 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockGiantChestMedium", + "1": "actuallyadditions:blocks/blockGiantChestMedium", + "2": "actuallyadditions:blocks/blockGiantChestTop" + }, + "elements": [ + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 10.0 ], + "to": [ 1.0, 16.0, 13.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "east": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#0", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 1.0 ], + "to": [ 1.0, 10.0, 10.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 7.0, 6.0, 8.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 6.0 ], + "to": [ 16.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 1.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 6.0, 8.0, 0.0 ], + "to": [ 15.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 1.0, 6.0, 2.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 10.0, 6.0, 9.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 15.0 ], + "to": [ 10.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 9.0, 6.0, 10.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 2.0, 6.0, 1.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 6.0, 10.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 1.0, 7.0, 10.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 13.0 ], + "to": [ 1.0, 10.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 90 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 270 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 1.0 ], + "to": [ 16.0, 10.0, 3.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 270 }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 13.0, 8.0, 15.0 ], + "to": [ 15.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 13.0, 6.0, 14.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 0.0 ], + "to": [ 3.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 14.0, 6.0, 15.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 13.0, 7.0, 15.0, 8.0 ], "rotation": 180 }, + "down": { "texture": "#0", "uv": [ 13.0, 6.0, 15.0, 7.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 3.0 ], + "to": [ 16.0, 16.0, 6.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 270 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 90 } + } + }, + { + "name": "Cube", + "from": [ 10.0, 0.0, 15.0 ], + "to": [ 13.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ] }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 3.0, 0.0, 0.0 ], + "to": [ 6.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 0.0, 11.0, 16.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 12.0, 0.0, 13.0, 16.0 ] }, + "up": { "texture": "#1", "uv": [ 10.0, 0.0, 13.0, 1.0 ], "rotation": 180 }, + "down": { "texture": "#1", "uv": [ 10.0, 15.0, 13.0, 16.0 ], "rotation": 180 } + } + }, + { + "name": "Cube", + "from": [ 1.0, 15.0, 1.0 ], + "to": [ 15.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 1.0 ], + "to": [ 15.0, 1.0, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 0.0 ], + "to": [ 1.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 8.0, 15.0 ], + "to": [ 1.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 15.0 ], + "to": [ 16.0, 10.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 8.0, 0.0 ], + "to": [ 16.0, 10.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "east": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "south": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "west": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 8.0 ] }, + "up": { "texture": "#0", "uv": [ 15.0, 6.0, 16.0, 7.0 ] }, + "down": { "texture": "#0", "uv": [ 15.0, 7.0, 16.0, 8.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockLaserRelay.json b/src/main/resources/assets/actuallyadditions/models/block/blockLaserRelay.json new file mode 100644 index 000000000..469c823d9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockLaserRelay.json @@ -0,0 +1,447 @@ +{ + "__createdBy": "canitzp", + "ambientocclusion": true, + "textures": { + "laserRelay": "#particle" + }, + "elements": [ + { + "from": [2,0,3], + "to": [14,1,13], + "faces": { + "up": { + "uv": [0,0,12,10], + "texture": "#laserRelay" + }, + "down": { + "uv": [0,0,12,10], + "texture": "#laserRelay" + }, + "west": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "east": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "north": { + "uv": [0,0,12,1], + "texture": "#laserRelay" + }, + "south": { + "uv": [0,0,12,1], + "texture": "#laserRelay" + } + } + }, + { + "from": [3,0,2], + "to": [13,1,3], + "faces": { + "up": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "down": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "west": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + }, + "east": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + }, + "north": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "south": { + "uv": [0.0,0.0,10.0,1.0], + "texture": "#laserRelay" + } + } + }, + { + "from": [3,0,13], + "to": [13,1,14], + "faces": { + "up": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "down": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "west": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + }, + "east": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + }, + "north": { + "texture": "#laserRelay" + }, + "south": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + } + } + }, + { + "from": [4,1,3], + "to": [12,2,13], + "faces": { + "up": { + "uv": [0,0,8,10], + "texture": "#laserRelay" + }, + "down": { + "texture": "#laserRelay" + }, + "west": { + "texture": "#laserRelay" + }, + "east": { + "texture": "#laserRelay" + }, + "north": { + "uv": [0,0,8,1], + "texture": "#laserRelay" + }, + "south": { + "uv": [0,0,8,1], + "texture": "#laserRelay" + } + } + }, + { + "from": [3,1,3], + "to": [4,2,13], + "faces": { + "up": { + "uv": [0,0,1,10], + "texture": "#laserRelay" + }, + "down": { + "texture": "#laserRelay" + }, + "west": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "east": { + "texture": "#laserRelay" + }, + "north": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + }, + "south": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + } + } + }, + { + "from": [12,1,3], + "to": [13,2,13], + "faces": { + "up": { + "uv": [0,0,1,10], + "texture": "#laserRelay" + }, + "down": { + "texture": "#laserRelay" + }, + "west": { + "texture": "#laserRelay" + }, + "east": { + "uv": [0,0,10,1], + "texture": "#laserRelay" + }, + "north": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + }, + "south": { + "uv": [0,0,1,1], + "texture": "#laserRelay" + } + } + }, + { + "from": [4,2,4], + "to": [12,3,12], + "faces": { + "up": { + "uv": [2.5,12.5,8,16], + "texture": "#laserRelay" + }, + "down": { + "texture": "#laserRelay" + }, + "west": { + "uv": [0,12.5,8,13.5], + "texture": "#laserRelay" + }, + "east": { + "uv": [0,12.5,8,13.5], + "texture": "#laserRelay" + }, + "north": { + "uv": [0,12.5,8,13.5], + "texture": "#laserRelay" + }, + "south": { + "uv": [0,12.5,8,13.5], + "texture": "#laserRelay" + } + } + }, + { + "from": [6,3,6], + "to": [7,5,7], + "faces": { + "up": { + "uv": [15,15,16,16], + "texture": "#laserRelay" + }, + "down": { + "uv": [6.0,9.0,7.0,10.0], + "texture": "#laserRelay" + }, + "west": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "east": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "north": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "south": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + } + } + }, + { + "from": [9,3,9], + "to": [10,5,10], + "faces": { + "up": { + "uv": [15,15,16,16], + "texture": "#laserRelay" + }, + "down": { + "uv": [9.0,6.0,10.0,7.0], + "texture": "#laserRelay" + }, + "west": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "east": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "north": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "south": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + } + } + }, + { + "from": [6,3,9], + "to": [7,5,10], + "faces": { + "up": { + "uv": [15,15,16,16], + "texture": "#laserRelay" + }, + "down": { + "uv": [6.0,6.0,7.0,7.0], + "texture": "#laserRelay" + }, + "west": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "east": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "north": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "south": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + } + } + }, + { + "from": [9,3,6], + "to": [10,5,7], + "faces": { + "up": { + "uv": [15,15,16,16], + "texture": "#laserRelay" + }, + "down": { + "uv": [9.0,9.0,10.0,10.0], + "texture": "#laserRelay" + }, + "west": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "east": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "north": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + }, + "south": { + "uv": [15,14,16,16], + "texture": "#laserRelay" + } + } + }, + { + "from": [7,3,7], + "to": [9,6,9], + "faces": { + "up": { + "texture": "#laserRelay" + }, + "down": { + "texture": "#laserRelay" + }, + "west": { + "uv": [0,0,2,3], + "texture": "#laserRelay" + }, + "east": { + "uv": [0,0,2,3], + "texture": "#laserRelay" + }, + "north": { + "uv": [0,0,2,3], + "texture": "#laserRelay" + }, + "south": { + "uv": [0,0,2,3], + "texture": "#laserRelay" + } + } + }, + { + "from": [7,6,7], + "to": [9,10,9], + "faces": { + "up": { + "uv": [14,0,16,2], + "texture": "#laserRelay" + }, + "down": { + "texture": "#laserRelay" + }, + "west": { + "uv": [14,0,16,4], + "texture": "#laserRelay" + }, + "east": { + "uv": [14,0,16,4], + "texture": "#laserRelay" + }, + "north": { + "uv": [14,0,16,4], + "texture": "#laserRelay" + }, + "south": { + "uv": [14,0,16,4], + "texture": "#laserRelay" + } + } + }, + { + "from": [6,7,7], + "to": [10,9,9], + "faces": { + "up": { + "uv": [12,0,16,2], + "texture": "#laserRelay" + }, + "down": { + "uv": [12,0,16,2], + "texture": "#laserRelay" + }, + "west": { + "uv": [14,0,16,2], + "texture": "#laserRelay" + }, + "east": { + "uv": [14,0,16,2], + "texture": "#laserRelay" + }, + "north": { + "uv": [12,0,16,2], + "texture": "#laserRelay" + }, + "south": { + "uv": [12,0,16,2], + "texture": "#laserRelay" + } + } + }, + { + "from": [7,7,6], + "to": [9,9,10], + "faces": { + "up": { + "uv": [14,0,16,4], + "texture": "#laserRelay" + }, + "down": { + "uv": [14,0,16,4], + "texture": "#laserRelay" + }, + "west": { + "uv": [12,0,16,2], + "texture": "#laserRelay" + }, + "east": { + "uv": [12,0,16,2], + "texture": "#laserRelay" + }, + "north": { + "uv": [14,0,16,2], + "texture": "#laserRelay" + }, + "south": { + "uv": [14,0,16,2], + "texture": "#laserRelay" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockOilGenerator.json b/src/main/resources/assets/actuallyadditions/models/block/blockOilGenerator.json new file mode 100644 index 000000000..40d7fa193 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockOilGenerator.json @@ -0,0 +1,375 @@ +{ + "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", + "textures": { + "0": "actuallyadditions:blocks/blockOilGeneratorTop", + "1": "actuallyadditions:blocks/blockOilGenerator", + "2": "actuallyadditions:blocks/blockCoalGeneratorBottom", + "3": "actuallyadditions:blocks/blockCoalGeneratorSide" + }, + "elements": [ + { + "name": "Cube", + "from": [ 15.0, 15.0, 1.0 ], + "to": [ 16.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 15.0, 15.0 ], + "to": [ 16.0, 16.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 15.0, 1.0 ], + "to": [ 1.0, 16.0, 15.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 14.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 15.0, 0.0 ], + "to": [ 16.0, 16.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 15.0 ], + "to": [ 1.0, 15.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.0, 0.0, 0.0 ], + "to": [ 1.0, 15.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 0.0 ], + "to": [ 16.0, 15.0, 1.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 15.0, 0.0, 15.0 ], + "to": [ 16.0, 15.0, 16.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 15.0 ] }, + "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, + "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 1.0, 1.0 ], + "to": [ 15.0, 15.0, 15.0 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "east": { "texture": "#-1", "uv": [ 0.0, 0.0, 14.0, 14.0 ] }, + "south": { "texture": "#-1", "uv": [ 0.0, 0.0, 14.0, 14.0 ] }, + "west": { "texture": "#-1", "uv": [ 0.0, 0.0, 14.0, 14.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 0.5, 0.0, 1.0 ], + "to": [ 1.5, 15.5, 15.0 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "east": { "texture": "#2", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "west": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 2.0, 15.0 ] }, + "down": { "texture": "#3", "uv": [ 0.0, 2.0, 1.0, 16.0 ] } + } + }, + { + "name": "Cube", + "from": [ 14.5, 0.0, 1.0 ], + "to": [ 15.5, 15.5, 15.0 ], + "faces": { + "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "east": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "west": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "up": { "texture": "#0", "uv": [ 14.0, 1.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 0.0, 1.0, 1.0, 15.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 14.5 ], + "to": [ 15.0, 15.5, 15.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "south": { "texture": "#3", "uv": [ 1.0, 0.5, 15.0, 16.0 ] }, + "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 15.5 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 14.0, 15.0, 15.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 13.0, 0.5 ], + "to": [ 15.0, 15.5, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 0.5, 15.0, 3.0 ] }, + "east": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.5 ] }, + "south": { "texture": "#1", "uv": [ 0.0, 0.0, 14.0, 2.5 ] }, + "west": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.5 ] }, + "up": { "texture": "#0", "uv": [ 1.0, 1.0, 15.0, 2.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 1.0, 15.0, 2.0 ] } + } + }, + { + "name": "Cube", + "from": [ 10.0, 14.5, 1.5 ], + "to": [ 14.5, 15.5, 14.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 0.0, 0.0, 4.5, 1.0 ] }, + "east": { "texture": "#0", "uv": [ 2.5, 5.0, 15.5, 6.0 ] }, + "south": { "texture": "#0", "uv": [ 0.0, 0.0, 4.5, 1.0 ] }, + "west": { "texture": "#0", "uv": [ 1.5, 5.0, 14.5, 6.0 ] }, + "up": { "texture": "#0", "uv": [ 10.0, 1.5, 14.5, 14.5 ] }, + "down": { "texture": "#0", "uv": [ 10.0, 1.5, 14.5, 14.5 ] } + } + }, + { + "name": "Cube", + "from": [ 1.5, 14.5, 1.5 ], + "to": [ 6.0, 15.5, 14.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "east": { "texture": "#0", "uv": [ 1.5, 5.0, 14.5, 6.0 ] }, + "south": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "west": { "texture": "#0", "uv": [ 1.5, 5.0, 14.5, 6.0 ] }, + "up": { "texture": "#0", "uv": [ 1.5, 1.5, 6.0, 14.5 ] }, + "down": { "texture": "#0", "uv": [ 1.5, 1.5, 6.0, 14.5 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 14.5, 1.5 ], + "to": [ 10.0, 15.5, 6.0 ], + "faces": { + "north": { "texture": "#0", "uv": [ 6.0, 5.0, 10.0, 6.0 ] }, + "east": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "south": { "texture": "#0", "uv": [ 6.0, 5.0, 10.0, 6.0 ] }, + "west": { "texture": "#0", "uv": [ 6.0, 5.0, 10.5, 6.0 ] }, + "up": { "texture": "#0", "uv": [ 6.0, 1.5, 10.0, 6.0 ] }, + "down": { "texture": "#0", "uv": [ 6.0, 1.5, 10.0, 6.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 14.5, 10.0 ], + "to": [ 10.0, 15.5, 14.5 ], + "faces": { + "north": { "texture": "#0", "uv": [ 6.0, 10.0, 10.0, 11.0 ] }, + "east": { "texture": "#0", "uv": [ 6.0, 10.0, 10.5, 11.0 ] }, + "south": { "texture": "#0", "uv": [ 6.0, 10.0, 10.0, 11.0 ] }, + "west": { "texture": "#0", "uv": [ 6.0, 10.0, 10.5, 11.0 ] }, + "up": { "texture": "#0", "uv": [ 6.0, 10.0, 10.0, 14.5 ] }, + "down": { "texture": "#0", "uv": [ 6.5, 10.0, 10.5, 14.5 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 0.0, 0.5 ], + "to": [ 15.0, 3.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 13.0, 15.0, 16.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 8.0, 3.0, 11.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 13.0, 15.0, 16.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 5.0, 3.0, 8.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 15.0, 15.0, 16.0 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 0.0, 15.0, 1.0 ] } + } + }, + { + "name": "Cube", + "from": [ 4.0, 12.0, 0.5 ], + "to": [ 6.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 10.0, 3.0, 12.0, 4.0 ] }, + "east": { "texture": "#1", "uv": [ 10.0, 3.0, 11.0, 4.0 ] }, + "south": { "texture": "#1", "uv": [ 10.0, 3.0, 12.0, 4.0 ] }, + "west": { "texture": "#1", "uv": [ 10.0, 3.0, 11.0, 4.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 6.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 10.0, 3.0, 12.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 4.0, 0.5 ], + "to": [ 15.0, 8.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 8.0, 15.0, 12.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 8.0, 3.0, 12.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 8.0, 15.0, 12.0 ] }, + "west": { "texture": "#1", "uv": [ 2.0, 5.0, 3.0, 9.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 8.0, 15.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 15.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 12.0, 8.0, 0.5 ], + "to": [ 15.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 3.0, 4.0, 8.0 ] }, + "east": { "texture": "#1", "uv": [ 2.0, 8.0, 3.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 3.0, 4.0, 8.0 ] }, + "west": { "texture": "#1", "uv": [ 3.0, 3.0, 4.0, 8.0 ] }, + "up": { "texture": "#1", "uv": [ 1.0, 8.0, 4.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 8.0, 0.5 ], + "to": [ 4.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 3.0, 15.0, 8.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 3.0, 13.0, 8.0 ] }, + "south": { "texture": "#1", "uv": [ 12.0, 3.0, 15.0, 8.0 ] }, + "west": { "texture": "#1", "uv": [ 14.0, 3.0, 15.0, 8.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 7.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 9.0, 3.0, 0.5 ], + "to": [ 10.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 6.0, 12.0, 7.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 12.0, 3.0, 0.5 ], + "to": [ 15.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 1.0, 12.0, 4.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 3.0, 12.0, 4.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 1.0, 12.0, 4.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 3.0, 12.0, 4.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 7.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 10.0, 12.0, 0.5 ], + "to": [ 12.0, 13.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 4.0, 3.0, 6.0, 4.0 ] }, + "east": { "texture": "#1", "uv": [ 5.0, 3.0, 6.0, 4.0 ] }, + "south": { "texture": "#1", "uv": [ 4.0, 3.0, 6.0, 4.0 ] }, + "west": { "texture": "#1", "uv": [ 5.0, 3.0, 6.0, 4.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 6.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 4.0, 3.0, 6.0, 4.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.0, 3.0, 0.5 ], + "to": [ 4.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 12.0, 12.0, 15.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 12.0, 12.0, 13.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 12.0, 12.0, 15.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 14.0, 3.0, 15.0, 4.0 ] }, + "up": { "texture": "#1", "uv": [ 4.0, 8.0, 7.0, 9.0 ] }, + "down": { "texture": "#1", "uv": [ 1.0, 11.0, 4.0, 12.0 ] } + } + }, + { + "name": "Cube", + "from": [ 6.0, 3.0, 0.5 ], + "to": [ 7.0, 4.0, 1.5 ], + "faces": { + "north": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "east": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "south": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "west": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "up": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] }, + "down": { "texture": "#1", "uv": [ 9.0, 12.0, 10.0, 13.0 ] } + } + }, + { + "name": "Cube", + "from": [ 1.5, 0.0, 1.5 ], + "to": [ 14.5, 1.0, 14.5 ], + "faces": { + "north": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "east": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "south": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "west": { "texture": "#2", "uv": [ 0.0, 0.0, 13.0, 1.0 ] }, + "up": { "texture": "#2", "uv": [ 1.5, 1.5, 14.5, 14.5 ] }, + "down": { "texture": "#2", "uv": [ 1.0, 1.0, 15.0, 15.0 ] } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockPhantomBooster.json b/src/main/resources/assets/actuallyadditions/models/block/blockPhantomBooster.json new file mode 100644 index 000000000..3031ebb9d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockPhantomBooster.json @@ -0,0 +1,460 @@ +{ + "__createdBy": "canitzp", + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/models/modelPhantomBooster", + "phantomBooster": "actuallyadditions:blocks/models/modelPhantomBooster" + }, + "elements": [ + { + "from": [6,0,6], + "to": [10,16,10], + "faces": { + "up": { + "uv": [4,0,8,4], + "texture": "#phantomBooster" + }, + "down": { + "uv": [4,0,8,4], + "texture": "#phantomBooster" + }, + "west": { + "uv": [0,0,4,16], + "texture": "#phantomBooster" + }, + "east": { + "uv": [0,0,4,16], + "texture": "#phantomBooster" + }, + "north": { + "uv": [0,0,4,16], + "texture": "#phantomBooster" + }, + "south": { + "uv": [0,0,4,16], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,1,5], + "to": [11,2,11], + "faces": { + "up": { + "uv": [10,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,2,4], + "to": [11,4,5], + "faces": { + "up": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "west": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,2,11], + "to": [11,4,12], + "faces": { + "up": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "west": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [4,2,5], + "to": [5,4,11], + "faces": { + "up": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [11,2,5], + "to": [12,4,11], + "faces": { + "up": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,4,3], + "to": [11,12,4], + "faces": { + "up": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "west": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + }, + "east": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,4,12], + "to": [11,12,13], + "faces": { + "up": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "west": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + }, + "east": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + } + } + }, + { + "from": [3,4,5], + "to": [4,12,11], + "faces": { + "up": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + }, + "north": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + }, + "south": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + } + } + }, + { + "from": [12,4,5], + "to": [13,12,11], + "faces": { + "up": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,8], + "texture": "#phantomBooster" + }, + "north": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + }, + "south": { + "uv": [15,0,16,8], + "texture": "#phantomBooster" + } + } + }, + { + "from": [11,12,5], + "to": [12,14,11], + "faces": { + "up": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [4,12,5], + "to": [5,14,11], + "faces": { + "up": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [15,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,12,11], + "to": [11,14,12], + "faces": { + "up": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "west": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,12,4], + "to": [11,14,5], + "faces": { + "up": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "west": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "east": { + "uv": [15,0,16,2], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,2], + "texture": "#phantomBooster" + } + } + }, + { + "from": [5,14,5], + "to": [11,15,11], + "faces": { + "up": { + "uv": [10,0,16,6], + "texture": "#phantomBooster" + }, + "down": { + "uv": [10,0,16,6], + "texture": "#phantomBooster" + }, + "west": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "east": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "north": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + }, + "south": { + "uv": [10,0,16,1], + "texture": "#phantomBooster" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallInventory.json b/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallInventory.json new file mode 100644 index 000000000..9968403f8 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallInventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartzPillar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallPost.json b/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallPost.json new file mode 100644 index 000000000..a82929d56 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallPost.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_post", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartzPillar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallSide.json b/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallSide.json new file mode 100644 index 000000000..b9d06b9c6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockPillarQuartzWallSide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_side", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartzPillar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallInventory.json b/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallInventory.json new file mode 100644 index 000000000..c51b0152a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallInventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartz" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallPost.json b/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallPost.json new file mode 100644 index 000000000..9eab47d78 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallPost.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_post", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartz" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallSide.json b/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallSide.json new file mode 100644 index 000000000..b30814a7e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockQuartzWallSide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_side", + "textures": { + "wall": "actuallyadditions:blocks/blockMiscBlackQuartz" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockSmileyCloud.json b/src/main/resources/assets/actuallyadditions/models/block/blockSmileyCloud.json new file mode 100644 index 000000000..6d2b06fc5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockSmileyCloud.json @@ -0,0 +1,411 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/models/modelSmileyCloud", + "smileycloud": "actuallyadditions:blocks/models/modelSmileyCloud" + }, + "elements": [ + { + "from": [2,0,3], + "to": [14,10,13], + "faces": { + "up": { + "uv": [5,0.75,8,3.25], + "texture": "#smileycloud" + }, + "down": { + "uv": [3.5,1.5,6.5,4], + "texture": "#smileycloud" + }, + "west": { + "uv": [0,2.5,2.5,5], + "texture": "#smileycloud" + }, + "east": { + "uv": [8.5,2.5,11,5], + "texture": "#smileycloud" + }, + "north": { + "uv": [2.75,0.25,5.75,2.75], + "texture": "#smileycloud" + }, + "south": { + "uv": [5.25,0.25,8.25,2.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [1,1,4], + "to": [15,9,12], + "faces": { + "up": { + "uv": [6.5,2,7,4], + "texture": "#smileycloud" + }, + "down": { + "uv": [1.25,2.75,1.75,4.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [13.75,2,15.75,4], + "texture": "#smileycloud" + }, + "east": { + "uv": [11.25,2,13.25,4], + "texture": "#smileycloud" + }, + "north": { + "uv": [13.75,2.75,14.25,4.75], + "texture": "#smileycloud" + }, + "south": { + "uv": [6.25,1.5,6.75,3.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [0,2,5], + "to": [16,8,11], + "faces": { + "up": { + "uv": [12.75,2.25,13.25,3.75], + "texture": "#smileycloud" + }, + "down": { + "uv": [13.5,2.5,14,4], + "texture": "#smileycloud" + }, + "west": { + "uv": [13.25,4.25,14.75,5.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [11.5,4,13,5.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [13.75,3,14.25,4.5], + "texture": "#smileycloud" + }, + "south": { + "uv": [6.25,1.75,6.75,3.25], + "texture": "#smileycloud" + } + } + }, + { + "from": [3,9,4], + "to": [13,11,12], + "faces": { + "up": { + "uv": [0.25,2.75,2.75,4.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [4,3,6,3.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [0.75,10,2.75,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [8.75,7.5,11.25,8], + "texture": "#smileycloud" + }, + "south": { + "uv": [7,5.75,9.5,6.25], + "texture": "#smileycloud" + } + } + }, + { + "from": [4,10,5], + "to": [12,12,11], + "faces": { + "up": { + "uv": [8.75,7,10.75,8.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [8,5.5,9.5,6], + "texture": "#smileycloud" + }, + "east": { + "uv": [7,5.5,8.5,6], + "texture": "#smileycloud" + }, + "north": { + "uv": [12,5,14.25,5.5], + "texture": "#smileycloud" + }, + "south": { + "uv": [3,3.25,5,3.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [3,1,12], + "to": [13,9,14], + "faces": { + "up": { + "uv": [11.75,3.75,14.25,4.25], + "texture": "#smileycloud" + }, + "down": { + "uv": [7.75,3.25,10.25,3.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [13.25,2.5,13.75,4.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [6.75,2,7.25,4], + "texture": "#smileycloud" + }, + "south": { + "uv": [3.75,1,6.25,3], + "texture": "#smileycloud" + } + } + }, + { + "from": [4,2,13], + "to": [12,8,15], + "faces": { + "up": { + "uv": [2,6.25,4,6.75], + "texture": "#smileycloud" + }, + "down": { + "uv": [9.5,7.75,11.5,8.25], + "texture": "#smileycloud" + }, + "west": { + "uv": [14.75,2.25,15.25,3.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [13.25,2.5,13.75,4], + "texture": "#smileycloud" + }, + "south": { + "uv": [3,5.5,5,7], + "texture": "#smileycloud" + } + } + }, + { + "from": [5,3,14], + "to": [11,7,16], + "faces": { + "up": { + "uv": [7.25,5.5,8.75,6], + "texture": "#smileycloud" + }, + "down": { + "uv": [12.75,3,14.25,3.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [8.25,7.25,8.75,8.25], + "texture": "#smileycloud" + }, + "east": { + "uv": [10.75,7,11.25,8], + "texture": "#smileycloud" + }, + "south": { + "uv": [12.5,2.75,14,3.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [5,3,2.5], + "to": [11,4,4.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.5,10.25,4.75,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.75,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [11,4,2.5], + "to": [12,5,4.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.5,10.25,4.75,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.5,10.25,4.75,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [4,4,2.5], + "to": [5,5,4.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [9,7,2.75], + "to": [11,9,3.75], + "faces": { + "up": { + "uv": [7.75,9.25,8.25,9.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [7.75,9.5,8.25,9.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [7.75,9.25,8,9.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [7.75,9.25,8,9.75], + "texture": "#smileycloud" + }, + "north": { + "uv": [7.75,9.25,8.25,9.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [5,7,2.75], + "to": [7,9,3.75], + "faces": { + "up": { + "uv": [7.75,9.5,8.25,9.75], + "texture": "#smileycloud" + }, + "down": { + "uv": [7.75,9.5,8.25,9.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [8,9.25,8.25,9.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [7.75,9.25,8,9.75], + "texture": "#smileycloud" + }, + "north": { + "uv": [7.75,9.25,8.25,9.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [9.5,7.5,2.5], + "to": [10.5,8.5,3.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [5.5,7.5,2.5], + "to": [6.5,8.5,3.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockSmileyCloudFluffy.json b/src/main/resources/assets/actuallyadditions/models/block/blockSmileyCloudFluffy.json new file mode 100644 index 000000000..b665bf730 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockSmileyCloudFluffy.json @@ -0,0 +1,411 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/models/modelPinkFluffyUnicloud", + "smileycloud": "actuallyadditions:blocks/models/modelPinkFluffyUnicloud" + }, + "elements": [ + { + "from": [2,0,3], + "to": [14,10,13], + "faces": { + "up": { + "uv": [5,0.75,8,3.25], + "texture": "#smileycloud" + }, + "down": { + "uv": [3.5,1.5,6.5,4], + "texture": "#smileycloud" + }, + "west": { + "uv": [0,2.5,2.5,5], + "texture": "#smileycloud" + }, + "east": { + "uv": [8.5,2.5,11,5], + "texture": "#smileycloud" + }, + "north": { + "uv": [2.75,0.25,5.75,2.75], + "texture": "#smileycloud" + }, + "south": { + "uv": [5.25,0.25,8.25,2.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [1,1,4], + "to": [15,9,12], + "faces": { + "up": { + "uv": [6.5,2,7,4], + "texture": "#smileycloud" + }, + "down": { + "uv": [1.25,2.75,1.75,4.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [13.75,2,15.75,4], + "texture": "#smileycloud" + }, + "east": { + "uv": [11.25,2,13.25,4], + "texture": "#smileycloud" + }, + "north": { + "uv": [13.75,2.75,14.25,4.75], + "texture": "#smileycloud" + }, + "south": { + "uv": [6.25,1.5,6.75,3.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [0,2,5], + "to": [16,8,11], + "faces": { + "up": { + "uv": [12.75,2.25,13.25,3.75], + "texture": "#smileycloud" + }, + "down": { + "uv": [13.5,2.5,14,4], + "texture": "#smileycloud" + }, + "west": { + "uv": [13.25,4.25,14.75,5.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [11.5,4,13,5.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [13.75,3,14.25,4.5], + "texture": "#smileycloud" + }, + "south": { + "uv": [6.25,1.75,6.75,3.25], + "texture": "#smileycloud" + } + } + }, + { + "from": [3,9,4], + "to": [13,11,12], + "faces": { + "up": { + "uv": [0.25,2.75,2.75,4.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [4,3,6,3.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [0.75,10,2.75,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [8.75,7.5,11.25,8], + "texture": "#smileycloud" + }, + "south": { + "uv": [7,5.75,9.5,6.25], + "texture": "#smileycloud" + } + } + }, + { + "from": [4,10,5], + "to": [12,12,11], + "faces": { + "up": { + "uv": [8.75,7,10.75,8.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [8,5.5,9.5,6], + "texture": "#smileycloud" + }, + "east": { + "uv": [7,5.5,8.5,6], + "texture": "#smileycloud" + }, + "north": { + "uv": [12,5,14.25,5.5], + "texture": "#smileycloud" + }, + "south": { + "uv": [3,3.25,5,3.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [3,1,12], + "to": [13,9,14], + "faces": { + "up": { + "uv": [11.75,3.75,14.25,4.25], + "texture": "#smileycloud" + }, + "down": { + "uv": [7.75,3.25,10.25,3.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [13.25,2.5,13.75,4.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [6.75,2,7.25,4], + "texture": "#smileycloud" + }, + "south": { + "uv": [3.75,1,6.25,3], + "texture": "#smileycloud" + } + } + }, + { + "from": [4,2,13], + "to": [12,8,15], + "faces": { + "up": { + "uv": [2,6.25,4,6.75], + "texture": "#smileycloud" + }, + "down": { + "uv": [9.5,7.75,11.5,8.25], + "texture": "#smileycloud" + }, + "west": { + "uv": [14.75,2.25,15.25,3.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [13.25,2.5,13.75,4], + "texture": "#smileycloud" + }, + "south": { + "uv": [3,5.5,5,7], + "texture": "#smileycloud" + } + } + }, + { + "from": [5,3,14], + "to": [11,7,16], + "faces": { + "up": { + "uv": [7.25,5.5,8.75,6], + "texture": "#smileycloud" + }, + "down": { + "uv": [12.75,3,14.25,3.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [8.25,7.25,8.75,8.25], + "texture": "#smileycloud" + }, + "east": { + "uv": [10.75,7,11.25,8], + "texture": "#smileycloud" + }, + "south": { + "uv": [12.5,2.75,14,3.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [5,3,2.5], + "to": [11,4,4.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.5,10.25,4.75,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.75,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [11,4,2.5], + "to": [12,5,4.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.5,10.25,4.75,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.5,10.25,4.75,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [4,4,2.5], + "to": [5,5,4.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [9,7,2.75], + "to": [11,9,3.75], + "faces": { + "up": { + "uv": [7.75,9.25,8.25,9.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [7.75,9.5,8.25,9.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [7.75,9.25,8,9.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [7.75,9.25,8,9.75], + "texture": "#smileycloud" + }, + "north": { + "uv": [7.75,9.25,8.25,9.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [5,7,2.75], + "to": [7,9,3.75], + "faces": { + "up": { + "uv": [7.75,9.5,8.25,9.75], + "texture": "#smileycloud" + }, + "down": { + "uv": [7.75,9.5,8.25,9.75], + "texture": "#smileycloud" + }, + "west": { + "uv": [8,9.25,8.25,9.75], + "texture": "#smileycloud" + }, + "east": { + "uv": [7.75,9.25,8,9.75], + "texture": "#smileycloud" + }, + "north": { + "uv": [7.75,9.25,8.25,9.75], + "texture": "#smileycloud" + } + } + }, + { + "from": [9.5,7.5,2.5], + "to": [10.5,8.5,3.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + }, + { + "from": [5.5,7.5,2.5], + "to": [6.5,8.5,3.5], + "faces": { + "up": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "down": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "west": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "east": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + }, + "north": { + "uv": [4.25,10.25,4.5,10.5], + "texture": "#smileycloud" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFenceInventory.json b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFenceInventory.json new file mode 100644 index 000000000..5024ce629 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFenceInventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "actuallyadditions:blocks/blockTestifiBucksGreenWall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFencePost.json b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFencePost.json new file mode 100644 index 000000000..5470b62d1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFencePost.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_post", + "textures": { + "wall": "actuallyadditions:blocks/blockTestifiBucksGreenWall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFenceSide.json b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFenceSide.json new file mode 100644 index 000000000..976609a77 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksGreenFenceSide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_side", + "textures": { + "wall": "actuallyadditions:blocks/blockTestifiBucksGreenWall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFenceInventory.json b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFenceInventory.json new file mode 100644 index 000000000..d6e873ba2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFenceInventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "actuallyadditions:blocks/blockTestifiBucksWhiteWall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFencePost.json b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFencePost.json new file mode 100644 index 000000000..7f819af28 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFencePost.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_post", + "textures": { + "wall": "actuallyadditions:blocks/blockTestifiBucksWhiteWall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFenceSide.json b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFenceSide.json new file mode 100644 index 000000000..453cebf2e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTestifiBucksWhiteFenceSide.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_side", + "textures": { + "wall": "actuallyadditions:blocks/blockTestifiBucksWhiteWall" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTinyTorch.json b/src/main/resources/assets/actuallyadditions/models/block/blockTinyTorch.json new file mode 100644 index 000000000..a12fd8055 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTinyTorch.json @@ -0,0 +1,33 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/blockTinyTorch", + "torch": "actuallyadditions:blocks/blockTinyTorch" + }, + "elements": [ + { "from": [ 7, 0, 7 ], + "to": [ 9, 5, 9 ], + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 11, 9, 13 ], "texture": "#torch" } + } + }, + { "from": [ 7, 0, 0 ], + "to": [ 9, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" } + } + }, + { "from": [ 0, 0, 7 ], + "to": [ 16, 16, 9 ], + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/models/block/blockTinyTorchWall.json b/src/main/resources/assets/actuallyadditions/models/block/blockTinyTorchWall.json new file mode 100644 index 000000000..08da03738 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/block/blockTinyTorchWall.json @@ -0,0 +1,36 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "actuallyadditions:blocks/blockTinyTorch", + "torch": "actuallyadditions:blocks/blockTinyTorch" + }, + "elements": [ + { "from": [ -1, 3.5, 7 ], + "to": [ 1, 8.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "down": { "uv": [ 7, 13, 9, 15 ], "texture": "#torch" }, + "up": { "uv": [ 7, 11, 9, 13 ], "texture": "#torch" } + } + }, + { "from": [ -1, 3.5, 0 ], + "to": [ 1, 19.5, 16 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" } + } + }, + { "from": [ -8, 3.5, 7 ], + "to": [ 8, 19.5, 9 ], + "rotation": { "origin": [ 0, 3.5, 8 ], "axis": "z", "angle": -22.5 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#torch" } + } + } + ] +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/blockChiseledQuartzWall.json b/src/main/resources/assets/actuallyadditions/models/item/blockChiseledQuartzWall.json new file mode 100644 index 000000000..3b8270803 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/blockChiseledQuartzWall.json @@ -0,0 +1,3 @@ +{ + "parent": "actuallyadditions:block/blockChiseledQuartzWallInventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/item/blockPillarQuartzWall.json b/src/main/resources/assets/actuallyadditions/models/item/blockPillarQuartzWall.json new file mode 100644 index 000000000..f8282b53d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/blockPillarQuartzWall.json @@ -0,0 +1,3 @@ +{ + "parent": "actuallyadditions:block/blockPillarQuartzWallInventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/item/blockQuartzWall.json b/src/main/resources/assets/actuallyadditions/models/item/blockQuartzWall.json new file mode 100644 index 000000000..22b4b32ed --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/blockQuartzWall.json @@ -0,0 +1,3 @@ +{ + "parent": "actuallyadditions:block/blockQuartzWallInventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/item/blockTestifiBucksGreenFence.json b/src/main/resources/assets/actuallyadditions/models/item/blockTestifiBucksGreenFence.json new file mode 100644 index 000000000..d1d956e1f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/blockTestifiBucksGreenFence.json @@ -0,0 +1,3 @@ +{ + "parent": "actuallyadditions:block/blockTestifiBucksGreenFenceInventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/item/blockTestifiBucksWhiteFence.json b/src/main/resources/assets/actuallyadditions/models/item/blockTestifiBucksWhiteFence.json new file mode 100644 index 000000000..0e11467ab --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/blockTestifiBucksWhiteFence.json @@ -0,0 +1,3 @@ +{ + "parent": "actuallyadditions:block/blockTestifiBucksWhiteFenceInventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/models/item/blockTinyTorch.json b/src/main/resources/assets/actuallyadditions/models/item/blockTinyTorch.json new file mode 100644 index 000000000..c7d979fb1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/blockTinyTorch.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:blocks/blockTinyTorch" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/handheldItem.json b/src/main/resources/assets/actuallyadditions/models/item/handheldItem.json new file mode 100644 index 000000000..55dfddf00 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/handheldItem.json @@ -0,0 +1,3 @@ +{ + "parent": "item/handheld" +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalBlack.json new file mode 100644 index 000000000..adcaaa61a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalBlue.json new file mode 100644 index 000000000..6d0363e7b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalGreen.json new file mode 100644 index 000000000..237f54816 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalLightBlue.json new file mode 100644 index 000000000..99b3ffb40 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalRed.json new file mode 100644 index 000000000..7b0723390 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalWhite.json new file mode 100644 index 000000000..ab8c1e29b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeEmerald.json new file mode 100644 index 000000000..fd173dc59 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeObsidian.json new file mode 100644 index 000000000..a7acbc54d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemAxeQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemAxeQuartz.json new file mode 100644 index 000000000..f418070eb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemAxeQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemAxeQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBag.json b/src/main/resources/assets/actuallyadditions/models/item/itemBag.json new file mode 100644 index 000000000..6393a79e6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBag.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBag" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBattery.json b/src/main/resources/assets/actuallyadditions/models/item/itemBattery.json new file mode 100644 index 000000000..c7067c797 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBattery.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBattery" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBatteryDouble.json b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryDouble.json new file mode 100644 index 000000000..d13864d1f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryDouble.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBatteryDouble" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBatteryQuadruple.json b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryQuadruple.json new file mode 100644 index 000000000..fd290ee2b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryQuadruple.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBatteryQuadruple" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBatteryQuintuple.json b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryQuintuple.json new file mode 100644 index 000000000..3dcd3d1fd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryQuintuple.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBatteryQuintuple" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBatteryTriple.json b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryTriple.json new file mode 100644 index 000000000..ecf91b783 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBatteryTriple.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBatteryTriple" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBooklet.json b/src/main/resources/assets/actuallyadditions/models/item/itemBooklet.json new file mode 100644 index 000000000..2a9d2d30c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBooklet.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBooklet" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalBlack.json new file mode 100644 index 000000000..83258c6ac --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalBlue.json new file mode 100644 index 000000000..ac8058fc6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalGreen.json new file mode 100644 index 000000000..7d789aec7 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalLightBlue.json new file mode 100644 index 000000000..91e26ea84 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalRed.json new file mode 100644 index 000000000..68f530b99 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalWhite.json new file mode 100644 index 000000000..c7db5b181 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsEmerald.json new file mode 100644 index 000000000..e15326ca2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsObsidian.json new file mode 100644 index 000000000..010ca1edd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBootsQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemBootsQuartz.json new file mode 100644 index 000000000..4add5bce6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBootsQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBootsQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBucketCanolaOil.json b/src/main/resources/assets/actuallyadditions/models/item/itemBucketCanolaOil.json new file mode 100644 index 000000000..2f21f870d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBucketCanolaOil.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBucketCanolaOil" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemBucketOil.json b/src/main/resources/assets/actuallyadditions/models/item/itemBucketOil.json new file mode 100644 index 000000000..77f538821 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemBucketOil.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemBucketOil" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCanolaSeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemCanolaSeed.json new file mode 100644 index 000000000..91a6ee2f7 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCanolaSeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCanolaSeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalBlack.json new file mode 100644 index 000000000..9e722bef1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalBlue.json new file mode 100644 index 000000000..682814458 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalGreen.json new file mode 100644 index 000000000..41e969945 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalLightBlue.json new file mode 100644 index 000000000..34dbd6d89 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalRed.json new file mode 100644 index 000000000..443b6d2a0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalWhite.json new file mode 100644 index 000000000..75dfc56a4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestEmerald.json new file mode 100644 index 000000000..7a6a30671 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestObsidian.json new file mode 100644 index 000000000..7d5879a26 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestQuartz.json new file mode 100644 index 000000000..fbdf78a10 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemChestToCrateUpgrade.json b/src/main/resources/assets/actuallyadditions/models/item/itemChestToCrateUpgrade.json new file mode 100644 index 000000000..124dc17ee --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemChestToCrateUpgrade.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemChestToCrateUpgrade" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCoffee.json b/src/main/resources/assets/actuallyadditions/models/item/itemCoffee.json new file mode 100644 index 000000000..2cbcda8ca --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCoffee.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCoffee" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCoffeeBeans.json b/src/main/resources/assets/actuallyadditions/models/item/itemCoffeeBeans.json new file mode 100644 index 000000000..21874940e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCoffeeBeans.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCoffeeBeans" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCoffeeSeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemCoffeeSeed.json new file mode 100644 index 000000000..214854028 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCoffeeSeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCoffeeSeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemColorLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemColorLens.json new file mode 100644 index 000000000..cf5e89623 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemColorLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemColorLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrafterOnAStick.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrafterOnAStick.json new file mode 100644 index 000000000..7809fa335 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrafterOnAStick.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrafterOnAStick" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrateKeeper.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrateKeeper.json new file mode 100644 index 000000000..8308dba1f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrateKeeper.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrateKeeper" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalBlack.json new file mode 100644 index 000000000..e908f2af2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalBlue.json new file mode 100644 index 000000000..b7809090b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredBlack.json new file mode 100644 index 000000000..104eeb158 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalEmpoweredBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredBlue.json new file mode 100644 index 000000000..4a3f16778 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalEmpoweredBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredGreen.json new file mode 100644 index 000000000..4a05639f8 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalEmpoweredGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredLightBlue.json new file mode 100644 index 000000000..c3845d01b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalEmpoweredLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredRed.json new file mode 100644 index 000000000..de85ac8b5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalEmpoweredRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredWhite.json new file mode 100644 index 000000000..3d0f61900 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalEmpoweredWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalEmpoweredWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalGreen.json new file mode 100644 index 000000000..f2f6b2855 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalLightBlue.json new file mode 100644 index 000000000..f21e0d5d9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalRed.json new file mode 100644 index 000000000..3e47ab4dc --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalWhite.json new file mode 100644 index 000000000..a35bc0f6c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDamageLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemDamageLens.json new file mode 100644 index 000000000..3cf3e830d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDamageLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDamageLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDisenchantingLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemDisenchantingLens.json new file mode 100644 index 000000000..0976dd96b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDisenchantingLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDisenchantingLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillBlack.json new file mode 100644 index 000000000..4b516a0d2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillBlue.json new file mode 100644 index 000000000..61ddad537 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillBrown.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillBrown.json new file mode 100644 index 000000000..3fec2531c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillBrown.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillBrown" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillCyan.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillCyan.json new file mode 100644 index 000000000..94a181a4d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillCyan.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillCyan" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillGray.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillGray.json new file mode 100644 index 000000000..cfa602871 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillGray.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillGray" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillGreen.json new file mode 100644 index 000000000..984be3b3f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillLightBlue.json new file mode 100644 index 000000000..ec97eed09 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillLightGray.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillLightGray.json new file mode 100644 index 000000000..88b452961 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillLightGray.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillLightGray" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillLime.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillLime.json new file mode 100644 index 000000000..cc1642732 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillLime.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillLime" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillMagenta.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillMagenta.json new file mode 100644 index 000000000..4e67eed5d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillMagenta.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillMagenta" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillOrange.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillOrange.json new file mode 100644 index 000000000..6a5ccefee --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillOrange.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillOrange" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillPink.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillPink.json new file mode 100644 index 000000000..1136e1d81 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillPink.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillPink" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillPurple.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillPurple.json new file mode 100644 index 000000000..c55bacbc4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillPurple.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillPurple" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillRed.json new file mode 100644 index 000000000..5e999b492 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeBlockPlacing.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeBlockPlacing.json new file mode 100644 index 000000000..f698ed519 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeBlockPlacing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeBlockPlacing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFiveByFive.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFiveByFive.json new file mode 100644 index 000000000..1c25ff937 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFiveByFive.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeFiveByFive" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFortune.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFortune.json new file mode 100644 index 000000000..e35afc905 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFortune.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeFortune" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFortuneII.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFortuneII.json new file mode 100644 index 000000000..fa55e177d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeFortuneII.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeFortuneII" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSilkTouch.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSilkTouch.json new file mode 100644 index 000000000..ed35e7c71 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSilkTouch.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeSilkTouch" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeed.json new file mode 100644 index 000000000..8dcc1bc00 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeSpeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeedII.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeedII.json new file mode 100644 index 000000000..8b6de13cb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeedII.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeSpeedII" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeedIII.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeedIII.json new file mode 100644 index 000000000..c884700f0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeSpeedIII.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeSpeedIII" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeThreeByThree.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeThreeByThree.json new file mode 100644 index 000000000..5c0e64d32 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillUpgradeThreeByThree.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillUpgradeThreeByThree" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillWhite.json new file mode 100644 index 000000000..47873c0c6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDrillYellow.json b/src/main/resources/assets/actuallyadditions/models/item/itemDrillYellow.json new file mode 100644 index 000000000..4762e03c4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDrillYellow.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemDrillYellow" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemDust.json b/src/main/resources/assets/actuallyadditions/models/item/itemDust.json new file mode 100644 index 000000000..1845ef3a4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemDust.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemDust" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemExplosionLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemExplosionLens.json new file mode 100644 index 000000000..a1d4eff1a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemExplosionLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemExplosionLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFertilizer.json b/src/main/resources/assets/actuallyadditions/models/item/itemFertilizer.json new file mode 100644 index 000000000..ede15f37a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFertilizer.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFertilizer" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFillingWand.json b/src/main/resources/assets/actuallyadditions/models/item/itemFillingWand.json new file mode 100644 index 000000000..83235ef31 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFillingWand.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFillingWand" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFilter.json b/src/main/resources/assets/actuallyadditions/models/item/itemFilter.json new file mode 100644 index 000000000..2f3a59911 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFilter.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFilter" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFlaxSeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemFlaxSeed.json new file mode 100644 index 000000000..582d4985f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFlaxSeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFlaxSeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodBacon.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodBacon.json new file mode 100644 index 000000000..68db47723 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodBacon.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodBacon" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodBaguette.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodBaguette.json new file mode 100644 index 000000000..1dcedd339 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodBaguette.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodBaguette" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodBigCookie.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodBigCookie.json new file mode 100644 index 000000000..c79571eef --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodBigCookie.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodBigCookie" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodCarrotJuice.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodCarrotJuice.json new file mode 100644 index 000000000..67a35870f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodCarrotJuice.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodCarrotJuice" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodCheese.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodCheese.json new file mode 100644 index 000000000..9a11d2b2c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodCheese.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodCheese" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolate.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolate.json new file mode 100644 index 000000000..e64434fb3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolate.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodChocolate" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolateCake.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolateCake.json new file mode 100644 index 000000000..a7eca8eb5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolateCake.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodChocolateCake" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolateToast.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolateToast.json new file mode 100644 index 000000000..37b956e5e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodChocolateToast.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodChocolateToast" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodDoughnut.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodDoughnut.json new file mode 100644 index 000000000..45e4ad998 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodDoughnut.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodDoughnut" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodFishNChips.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodFishNChips.json new file mode 100644 index 000000000..b7bbe0b22 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodFishNChips.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodFishNChips" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodFrenchFries.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodFrenchFries.json new file mode 100644 index 000000000..64273194a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodFrenchFries.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodFrenchFries" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodFrenchFry.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodFrenchFry.json new file mode 100644 index 000000000..d8cd6c69a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodFrenchFry.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodFrenchFry" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodHamburger.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodHamburger.json new file mode 100644 index 000000000..d03a25d11 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodHamburger.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodHamburger" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodNoodle.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodNoodle.json new file mode 100644 index 000000000..90b72c2d3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodNoodle.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodNoodle" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodPizza.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodPizza.json new file mode 100644 index 000000000..7af7813cc --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodPizza.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodPizza" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodPumpkinStew.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodPumpkinStew.json new file mode 100644 index 000000000..a9035f536 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodPumpkinStew.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodPumpkinStew" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodRice.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodRice.json new file mode 100644 index 000000000..c1ca47eca --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodRice.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodRice" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodRiceBread.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodRiceBread.json new file mode 100644 index 000000000..267e9c805 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodRiceBread.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodRiceBread" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodSpaghetti.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodSpaghetti.json new file mode 100644 index 000000000..c3d6193f6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodSpaghetti.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodSpaghetti" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodSubmarineSandwich.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodSubmarineSandwich.json new file mode 100644 index 000000000..045cadcdb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodSubmarineSandwich.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodSubmarineSandwich" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemFoodToast.json b/src/main/resources/assets/actuallyadditions/models/item/itemFoodToast.json new file mode 100644 index 000000000..e103fa788 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemFoodToast.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemFoodToast" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemGrowthRing.json b/src/main/resources/assets/actuallyadditions/models/item/itemGrowthRing.json new file mode 100644 index 000000000..a497e5ec4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemGrowthRing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemGrowthRing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHairyBall.json b/src/main/resources/assets/actuallyadditions/models/item/itemHairyBall.json new file mode 100644 index 000000000..646b0c71a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHairyBall.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHairyBall" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalBlack.json new file mode 100644 index 000000000..bf26205e1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalBlue.json new file mode 100644 index 000000000..50ac82b4e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalGreen.json new file mode 100644 index 000000000..3a97208df --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalLightBlue.json new file mode 100644 index 000000000..e2b12aa16 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalRed.json new file mode 100644 index 000000000..f30bcc650 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalWhite.json new file mode 100644 index 000000000..7e504dcc5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmEmerald.json new file mode 100644 index 000000000..7c018afa3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmObsidian.json new file mode 100644 index 000000000..7472acbee --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHelmQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemHelmQuartz.json new file mode 100644 index 000000000..0c3bd38df --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHelmQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemHelmQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalBlack.json new file mode 100644 index 000000000..83d951e4c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalBlue.json new file mode 100644 index 000000000..47ef30fbb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalGreen.json new file mode 100644 index 000000000..93b7e633f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalLightBlue.json new file mode 100644 index 000000000..1449933aa --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalRed.json new file mode 100644 index 000000000..ea15741c8 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalWhite.json new file mode 100644 index 000000000..8006c03a5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeEmerald.json new file mode 100644 index 000000000..45cb9e370 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeObsidian.json new file mode 100644 index 000000000..3d3272e39 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemHoeQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemHoeQuartz.json new file mode 100644 index 000000000..e0fb71b3f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemHoeQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemHoeQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemJam.json b/src/main/resources/assets/actuallyadditions/models/item/itemJam.json new file mode 100644 index 000000000..c8239f49d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemJam.json @@ -0,0 +1,7 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemJam", + "layer1": "actuallyadditions:items/itemJamOverlay" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemKnife.json b/src/main/resources/assets/actuallyadditions/models/item/itemKnife.json new file mode 100644 index 000000000..022c5cf1d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemKnife.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemKnife" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemLaserWrench.json b/src/main/resources/assets/actuallyadditions/models/item/itemLaserWrench.json new file mode 100644 index 000000000..edf75b25a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemLaserWrench.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemLaserWrench" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemLeafBlower.json b/src/main/resources/assets/actuallyadditions/models/item/itemLeafBlower.json new file mode 100644 index 000000000..5ac9eea2a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemLeafBlower.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemLeafBlower" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemLeafBlowerAdvanced.json b/src/main/resources/assets/actuallyadditions/models/item/itemLeafBlowerAdvanced.json new file mode 100644 index 000000000..5555f3a08 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemLeafBlowerAdvanced.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemLeafBlowerAdvanced" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMediumToLargeCrateUpgrade.json b/src/main/resources/assets/actuallyadditions/models/item/itemMediumToLargeCrateUpgrade.json new file mode 100644 index 000000000..7653206ae --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMediumToLargeCrateUpgrade.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMediumToLargeCrateUpgrade" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiningLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiningLens.json new file mode 100644 index 000000000..5c57eedf9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiningLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiningLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscBatWing.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBatWing.json new file mode 100644 index 000000000..5fa974da3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBatWing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscBatWing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscBiocoal.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBiocoal.json new file mode 100644 index 000000000..9b517f39a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBiocoal.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscBiocoal" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscBiomass.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBiomass.json new file mode 100644 index 000000000..14bf007f0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBiomass.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscBiomass" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscBlackDye.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBlackDye.json new file mode 100644 index 000000000..f5667ffcb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBlackDye.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscBlackDye" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscBlackQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBlackQuartz.json new file mode 100644 index 000000000..1bc416f0b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscBlackQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscBlackQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscCanola.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCanola.json new file mode 100644 index 000000000..ea2e3e484 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCanola.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscCanola" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscCoil.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCoil.json new file mode 100644 index 000000000..b4e3e5884 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCoil.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscCoil" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscCoilAdvanced.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCoilAdvanced.json new file mode 100644 index 000000000..09bd1dfac --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCoilAdvanced.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscCoilAdvanced" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscCrystallizedCanolaSeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCrystallizedCanolaSeed.json new file mode 100644 index 000000000..5bb3c1847 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCrystallizedCanolaSeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscCrystallizedCanolaSeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscCup.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCup.json new file mode 100644 index 000000000..ce9757e13 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscCup.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscCup" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscDough.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscDough.json new file mode 100644 index 000000000..092e8d5a6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscDough.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscDough" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscDrillCore.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscDrillCore.json new file mode 100644 index 000000000..8ce6af6d0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscDrillCore.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscDrillCore" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscEmpoweredCanolaSeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscEmpoweredCanolaSeed.json new file mode 100644 index 000000000..a0d72b913 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscEmpoweredCanolaSeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscEmpoweredCanolaSeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscEnderStar.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscEnderStar.json new file mode 100644 index 000000000..5f7b02daa --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscEnderStar.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscEnderStar" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscKnifeBlade.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscKnifeBlade.json new file mode 100644 index 000000000..9f7d18846 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscKnifeBlade.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscKnifeBlade" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscKnifeHandle.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscKnifeHandle.json new file mode 100644 index 000000000..2b47e71a3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscKnifeHandle.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscKnifeHandle" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscLens.json new file mode 100644 index 000000000..f76c7da1e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscMashedFood.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscMashedFood.json new file mode 100644 index 000000000..c92c840a4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscMashedFood.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscMashedFood" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscPaperCone.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscPaperCone.json new file mode 100644 index 000000000..6095682c5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscPaperCone.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscPaperCone" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscRiceDough.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscRiceDough.json new file mode 100644 index 000000000..1a3a900e2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscRiceDough.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscRiceDough" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscRiceSlime.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscRiceSlime.json new file mode 100644 index 000000000..7f85c37c0 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscRiceSlime.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscRiceSlime" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscRing.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscRing.json new file mode 100644 index 000000000..e66312b24 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscRing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscRing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscSpawnerShard.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscSpawnerShard.json new file mode 100644 index 000000000..9373701b2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscSpawnerShard.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscSpawnerShard" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscTinyCharcoal.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscTinyCharcoal.json new file mode 100644 index 000000000..02143f751 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscTinyCharcoal.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscTinyCharcoal" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscTinyCoal.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscTinyCoal.json new file mode 100644 index 000000000..82f5f999a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscTinyCoal.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscTinyCoal" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMiscYoutubeIcon.json b/src/main/resources/assets/actuallyadditions/models/item/itemMiscYoutubeIcon.json new file mode 100644 index 000000000..0c1d55470 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMiscYoutubeIcon.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMiscYoutubeIcon" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemMoreDamageLens.json b/src/main/resources/assets/actuallyadditions/models/item/itemMoreDamageLens.json new file mode 100644 index 000000000..cb7e6d63d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemMoreDamageLens.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemMoreDamageLens" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalBlack.json new file mode 100644 index 000000000..3f137ac77 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalBlue.json new file mode 100644 index 000000000..9d551397d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalGreen.json new file mode 100644 index 000000000..4b3afa373 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalLightBlue.json new file mode 100644 index 000000000..4e3b4e17d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalRed.json new file mode 100644 index 000000000..a40f58d9e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalWhite.json new file mode 100644 index 000000000..07c5e306e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsEmerald.json new file mode 100644 index 000000000..8f6f95ad2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsObsidian.json new file mode 100644 index 000000000..38e5c7fdc --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPantsQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemPantsQuartz.json new file mode 100644 index 000000000..c47d5c293 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPantsQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPantsQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPaxel.json b/src/main/resources/assets/actuallyadditions/models/item/itemPaxel.json new file mode 100644 index 000000000..0ced934f9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPaxel.json @@ -0,0 +1,7 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPaxel", + "layer1": "actuallyadditions:items/itemPaxelOverlay" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPhantomConnector.json b/src/main/resources/assets/actuallyadditions/models/item/itemPhantomConnector.json new file mode 100644 index 000000000..6c8c40553 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPhantomConnector.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPhantomConnector" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalBlack.json new file mode 100644 index 000000000..090bb22b5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalBlue.json new file mode 100644 index 000000000..be7690eb3 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalGreen.json new file mode 100644 index 000000000..b7ae20085 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalLightBlue.json new file mode 100644 index 000000000..416dad6aa --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalRed.json new file mode 100644 index 000000000..c712355fd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalWhite.json new file mode 100644 index 000000000..1d069bcdd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeEmerald.json new file mode 100644 index 000000000..131a9f504 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeObsidian.json new file mode 100644 index 000000000..a0f8762fd --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeQuartz.json new file mode 100644 index 000000000..6b0be8834 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPickaxeQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemPickaxeQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPlayerProbe.json b/src/main/resources/assets/actuallyadditions/models/item/itemPlayerProbe.json new file mode 100644 index 000000000..8a934a352 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPlayerProbe.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPlayerProbe" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPotionRing.json b/src/main/resources/assets/actuallyadditions/models/item/itemPotionRing.json new file mode 100644 index 000000000..f8a56de4e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPotionRing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPotionRing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemPotionRingAdvanced.json b/src/main/resources/assets/actuallyadditions/models/item/itemPotionRingAdvanced.json new file mode 100644 index 000000000..d16ea43da --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemPotionRingAdvanced.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemPotionRingAdvanced" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemRarmorModuleReconstructor.json b/src/main/resources/assets/actuallyadditions/models/item/itemRarmorModuleReconstructor.json new file mode 100644 index 000000000..117a5e75c --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemRarmorModuleReconstructor.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemRarmorModuleReconstructor" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemResonantRice.json b/src/main/resources/assets/actuallyadditions/models/item/itemResonantRice.json new file mode 100644 index 000000000..66ac696a6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemResonantRice.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemResonantRice" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemRiceSeed.json b/src/main/resources/assets/actuallyadditions/models/item/itemRiceSeed.json new file mode 100644 index 000000000..243266e7a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemRiceSeed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemRiceSeed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalBlack.json new file mode 100644 index 000000000..4ed41174e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalBlue.json new file mode 100644 index 000000000..ca07d6e06 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalGreen.json new file mode 100644 index 000000000..c952a11d9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalLightBlue.json new file mode 100644 index 000000000..616865d0e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalRed.json new file mode 100644 index 000000000..433aa3563 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalWhite.json new file mode 100644 index 000000000..9b7a2038e --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelEmerald.json new file mode 100644 index 000000000..edc09f533 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelObsidian.json new file mode 100644 index 000000000..b8b8b60ad --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemShovelQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemShovelQuartz.json new file mode 100644 index 000000000..93f9bdaf2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemShovelQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemShovelQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSmallToMediumCrateUpgrade.json b/src/main/resources/assets/actuallyadditions/models/item/itemSmallToMediumCrateUpgrade.json new file mode 100644 index 000000000..d3596a957 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSmallToMediumCrateUpgrade.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemSmallToMediumCrateUpgrade" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSolidifiedExperience.json b/src/main/resources/assets/actuallyadditions/models/item/itemSolidifiedExperience.json new file mode 100644 index 000000000..addd00e9b --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSolidifiedExperience.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemSolidifiedExperience" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSpawnerChanger.json b/src/main/resources/assets/actuallyadditions/models/item/itemSpawnerChanger.json new file mode 100644 index 000000000..af917ee18 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSpawnerChanger.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSpawnerChanger" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSuctionRing.json b/src/main/resources/assets/actuallyadditions/models/item/itemSuctionRing.json new file mode 100644 index 000000000..789e6d073 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSuctionRing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemSuctionRing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalBlack.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalBlack.json new file mode 100644 index 000000000..6e3926eea --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalBlack.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordCrystalBlack" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalBlue.json new file mode 100644 index 000000000..9dfb59363 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordCrystalBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalGreen.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalGreen.json new file mode 100644 index 000000000..c03b3cce2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalGreen.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordCrystalGreen" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalLightBlue.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalLightBlue.json new file mode 100644 index 000000000..529249c2f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalLightBlue.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordCrystalLightBlue" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalRed.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalRed.json new file mode 100644 index 000000000..b7580c11f --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalRed.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordCrystalRed" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalWhite.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalWhite.json new file mode 100644 index 000000000..26ab9abe2 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordCrystalWhite.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordCrystalWhite" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordEmerald.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordEmerald.json new file mode 100644 index 000000000..0678b4ee1 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordEmerald.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordEmerald" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordObsidian.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordObsidian.json new file mode 100644 index 000000000..c9aeb07fb --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordObsidian.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordObsidian" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemSwordQuartz.json b/src/main/resources/assets/actuallyadditions/models/item/itemSwordQuartz.json new file mode 100644 index 000000000..06a8019c4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemSwordQuartz.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemSwordQuartz" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemTeleStaff.json b/src/main/resources/assets/actuallyadditions/models/item/itemTeleStaff.json new file mode 100644 index 000000000..fd78c0699 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemTeleStaff.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/handheldItem", + "textures": { + "layer0": "actuallyadditions:items/itemTeleStaff" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemVoidBag.json b/src/main/resources/assets/actuallyadditions/models/item/itemVoidBag.json new file mode 100644 index 000000000..c0106eab4 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemVoidBag.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemVoidBag" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemWaterBowl.json b/src/main/resources/assets/actuallyadditions/models/item/itemWaterBowl.json new file mode 100644 index 000000000..f4cb0246d --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemWaterBowl.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemWaterBowl" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemWaterRemovalRing.json b/src/main/resources/assets/actuallyadditions/models/item/itemWaterRemovalRing.json new file mode 100644 index 000000000..88ac40726 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemWaterRemovalRing.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemWaterRemovalRing" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemWingsOfTheBats.json b/src/main/resources/assets/actuallyadditions/models/item/itemWingsOfTheBats.json new file mode 100644 index 000000000..8f6baad6a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemWingsOfTheBats.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemWingsOfTheBats" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/itemWorm.json b/src/main/resources/assets/actuallyadditions/models/item/itemWorm.json new file mode 100644 index 000000000..0199a3f17 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/itemWorm.json @@ -0,0 +1,6 @@ +{ + "parent": "actuallyadditions:item/standardItem", + "textures": { + "layer0": "actuallyadditions:items/itemWorm" + } +} diff --git a/src/main/resources/assets/actuallyadditions/models/item/standardItem.json b/src/main/resources/assets/actuallyadditions/models/item/standardItem.json new file mode 100644 index 000000000..b449e1f77 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/models/item/standardItem.json @@ -0,0 +1,3 @@ +{ + "parent": "item/generated" +} diff --git a/src/main/resources/assets/actuallyadditions/sounds.json b/src/main/resources/assets/actuallyadditions/sounds.json new file mode 100644 index 000000000..aedb30d28 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/sounds.json @@ -0,0 +1,6 @@ +{ + "duhDuhDuhDuuuh": { "category": "record", "sounds":["actuallyadditions:duhDuhDuhDuuuh"] }, + "coffeeMachine": { "category": "block", "sounds":["actuallyadditions:coffeeMachine"] }, + "reconstructor": { "category": "block", "sounds":["actuallyadditions:reconstructor"] }, + "crusher": { "category": "block", "sounds":["actuallyadditions:crusher"] } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/sounds/coffeeMachine.ogg b/src/main/resources/assets/actuallyadditions/sounds/coffeeMachine.ogg new file mode 100644 index 000000000..5aafe437c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/sounds/coffeeMachine.ogg differ diff --git a/src/main/resources/assets/actuallyadditions/sounds/crusher.ogg b/src/main/resources/assets/actuallyadditions/sounds/crusher.ogg new file mode 100644 index 000000000..2d6e74641 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/sounds/crusher.ogg differ diff --git a/src/main/resources/assets/actuallyadditions/sounds/duhDuhDuhDuuuh.ogg b/src/main/resources/assets/actuallyadditions/sounds/duhDuhDuhDuuuh.ogg new file mode 100644 index 000000000..9b4586a52 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/sounds/duhDuhDuhDuuuh.ogg differ diff --git a/src/main/resources/assets/actuallyadditions/sounds/reconstructor.ogg b/src/main/resources/assets/actuallyadditions/sounds/reconstructor.ogg new file mode 100644 index 000000000..7c1c326fe Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/sounds/reconstructor.ogg differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructor.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructor.png new file mode 100644 index 000000000..956e549f1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructorFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructorFront.png new file mode 100644 index 000000000..df767e34d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructorFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructorTop.png new file mode 100644 index 000000000..763dda090 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockAtomicReconstructorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockBioReactor.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBioReactor.png new file mode 100644 index 000000000..12c4b1897 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBioReactor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockBlackLotus.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBlackLotus.png new file mode 100644 index 000000000..b36495c93 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBlackLotus.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreaker.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreaker.png new file mode 100644 index 000000000..32e7c0c00 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreaker.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreakerFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreakerFront.png new file mode 100644 index 000000000..0a424f231 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreakerFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreakerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreakerTop.png new file mode 100644 index 000000000..4a14851f2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockBreakerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilFlowing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilFlowing.png new file mode 100644 index 000000000..f5982ec90 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilFlowing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilFlowing.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilFlowing.png.mcmeta new file mode 100644 index 000000000..4f0718ac9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilFlowing.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilStill.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilStill.png new file mode 100644 index 000000000..59569bc40 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilStill.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilStill.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilStill.png.mcmeta new file mode 100644 index 000000000..0645f48c6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaOilStill.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 2 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaPress.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaPress.png new file mode 100644 index 000000000..23480c6e9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaPress.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaPressTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaPressTop.png new file mode 100644 index 000000000..7e6a9eed3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaPressTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage1.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage1.png new file mode 100644 index 000000000..e0b7862a0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage2.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage2.png new file mode 100644 index 000000000..67c69118c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage3.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage3.png new file mode 100644 index 000000000..d51b6a7af Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage3.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage4.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage4.png new file mode 100644 index 000000000..163a73904 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCanolaStage4.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGenerator.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGenerator.png new file mode 100644 index 000000000..b9452c4ef Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGenerator.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorBottom.png new file mode 100644 index 000000000..9304fe92d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorSide.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorSide.png new file mode 100644 index 000000000..2fda7ed50 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorSide.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorTop.png new file mode 100644 index 000000000..23f533588 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoalGeneratorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage1.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage1.png new file mode 100644 index 000000000..52a8b8b82 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage2.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage2.png new file mode 100644 index 000000000..90274425f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage3.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage3.png new file mode 100644 index 000000000..ba3d2bf7c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage3.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage4.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage4.png new file mode 100644 index 000000000..60fb42c24 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage4.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage5.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage5.png new file mode 100644 index 000000000..794403d4d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage5.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage6.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage6.png new file mode 100644 index 000000000..da8d1cfc1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCoffeeStage6.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBlack.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBlack.png new file mode 100644 index 000000000..ef4b1bec3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBlue.png new file mode 100644 index 000000000..dbc5f98ca Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBrown.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBrown.png new file mode 100644 index 000000000..6ffca11b4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampBrown.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampCyan.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampCyan.png new file mode 100644 index 000000000..08a1e55b6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampCyan.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampGray.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampGray.png new file mode 100644 index 000000000..c25d65952 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampGray.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampGreen.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampGreen.png new file mode 100644 index 000000000..c750e12ad Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLightBlue.png new file mode 100644 index 000000000..5ae1e56c1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLightGray.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLightGray.png new file mode 100644 index 000000000..6bd5c42c5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLightGray.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLime.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLime.png new file mode 100644 index 000000000..181106df0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampLime.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampMagenta.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampMagenta.png new file mode 100644 index 000000000..c405604af Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampMagenta.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBlack.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBlack.png new file mode 100644 index 000000000..fad394f46 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBlue.png new file mode 100644 index 000000000..a4d7eb831 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBrown.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBrown.png new file mode 100644 index 000000000..b9f8e8d87 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnBrown.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnCyan.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnCyan.png new file mode 100644 index 000000000..e7855bae6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnCyan.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnGray.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnGray.png new file mode 100644 index 000000000..bb1d29c27 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnGray.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnGreen.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnGreen.png new file mode 100644 index 000000000..082644337 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLightBlue.png new file mode 100644 index 000000000..7ebc45f62 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLightGray.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLightGray.png new file mode 100644 index 000000000..6fc66dd6f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLightGray.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLime.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLime.png new file mode 100644 index 000000000..8db47f2ac Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnLime.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnMagenta.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnMagenta.png new file mode 100644 index 000000000..187ced228 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnMagenta.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnOrange.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnOrange.png new file mode 100644 index 000000000..77e382cfd Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnOrange.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnPink.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnPink.png new file mode 100644 index 000000000..7e823abf8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnPink.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnPurple.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnPurple.png new file mode 100644 index 000000000..28e1cba11 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnPurple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnRed.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnRed.png new file mode 100644 index 000000000..69fef9d62 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnWhite.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnWhite.png new file mode 100644 index 000000000..eaf3c0c7b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnYellow.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnYellow.png new file mode 100644 index 000000000..d89463658 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOnYellow.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOrange.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOrange.png new file mode 100644 index 000000000..29990eb36 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampOrange.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampPink.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampPink.png new file mode 100644 index 000000000..aa0420108 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampPink.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampPurple.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampPurple.png new file mode 100644 index 000000000..00d90cd81 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampPurple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampRed.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampRed.png new file mode 100644 index 000000000..aa185ecd3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampWhite.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampWhite.png new file mode 100644 index 000000000..5ec34449d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampYellow.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampYellow.png new file mode 100644 index 000000000..380d3dc2d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockColoredLampYellow.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCraftyCrate.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCraftyCrate.png new file mode 100644 index 000000000..6bf675189 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCraftyCrate.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCraftyCrateTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCraftyCrateTop.png new file mode 100644 index 000000000..20eb5211e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCraftyCrateTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalBlack.png new file mode 100644 index 000000000..d14b1400d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalBlue.png new file mode 100644 index 000000000..24e9ab0e7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlack.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlack.png new file mode 100644 index 000000000..b75db1634 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlack.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlack.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlack.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlue.png new file mode 100644 index 000000000..c8055cf1d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlue.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlue.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredBlue.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredGreen.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredGreen.png new file mode 100644 index 000000000..4716e4072 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredGreen.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredGreen.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredGreen.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredLightBlue.png new file mode 100644 index 000000000..bd1356e13 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredLightBlue.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredLightBlue.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredLightBlue.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredRed.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredRed.png new file mode 100644 index 000000000..a1a2d2f23 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredRed.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredRed.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredRed.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredWhite.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredWhite.png new file mode 100644 index 000000000..656c5d994 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredWhite.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredWhite.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalEmpoweredWhite.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalGreen.png new file mode 100644 index 000000000..6d7ae57a6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalLightBlue.png new file mode 100644 index 000000000..f870b2386 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilFlowing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilFlowing.png new file mode 100644 index 000000000..05a2dbb15 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilFlowing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilFlowing.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilFlowing.png.mcmeta new file mode 100644 index 000000000..4f0718ac9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilFlowing.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilStill.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilStill.png new file mode 100644 index 000000000..03e4b20d3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilStill.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilStill.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilStill.png.mcmeta new file mode 100644 index 000000000..0645f48c6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalOilStill.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 2 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalRed.png new file mode 100644 index 000000000..a4ea4dd4c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalWhite.png new file mode 100644 index 000000000..3c7a30a1e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreaker.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreaker.png new file mode 100644 index 000000000..71e39bd04 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreaker.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreakerFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreakerFront.png new file mode 100644 index 000000000..aa62804a5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreakerFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreakerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreakerTop.png new file mode 100644 index 000000000..fca2046a7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDirectionalBreakerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDisplayStand.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDisplayStand.png new file mode 100644 index 000000000..e8359681b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDisplayStand.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDisplayStandSide.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDisplayStandSide.png new file mode 100644 index 000000000..c2cf32d38 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDisplayStandSide.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropper.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropper.png new file mode 100644 index 000000000..9b932f7fc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropper.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropperFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropperFront.png new file mode 100644 index 000000000..65f74c1a9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropperFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropperTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropperTop.png new file mode 100644 index 000000000..988148d2f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockDropperTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilFlowing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilFlowing.png new file mode 100644 index 000000000..22a5fa4a0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilFlowing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilFlowing.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilFlowing.png.mcmeta new file mode 100644 index 000000000..4f0718ac9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilFlowing.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilStill.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilStill.png new file mode 100644 index 000000000..bdbae38ea Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilStill.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilStill.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilStill.png.mcmeta new file mode 100644 index 000000000..0645f48c6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpoweredOilStill.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 2 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png new file mode 100644 index 000000000..b98c8c80a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png.mcmeta new file mode 100644 index 000000000..806e4e237 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEmpowerer.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": + { + "frametime": 2 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizer.png new file mode 100644 index 000000000..f3ce925cf Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizerSide.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizerSide.png new file mode 100644 index 000000000..6957ab987 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizerSide.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizerTop.png new file mode 100644 index 000000000..9c2f40d93 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnergizerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervator.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervator.png new file mode 100644 index 000000000..f3ce925cf Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervator.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervatorSide.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervatorSide.png new file mode 100644 index 000000000..ad28d611e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervatorSide.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervatorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervatorTop.png new file mode 100644 index 000000000..9c2f40d93 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockEnervatorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmer.png new file mode 100644 index 000000000..6e8f33296 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmerFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmerFront.png new file mode 100644 index 000000000..c6f964800 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmerFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmerTop.png new file mode 100644 index 000000000..1b0b4d804 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFarmerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFeeder.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFeeder.png new file mode 100644 index 000000000..44ef1d178 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFeeder.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFeederTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFeederTop.png new file mode 100644 index 000000000..3ac8e8b34 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFeederTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFermentingBarrel.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFermentingBarrel.png new file mode 100644 index 000000000..6a00a607a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFermentingBarrel.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFermentingBarrelTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFermentingBarrelTop.png new file mode 100644 index 000000000..4bae6e0c6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFermentingBarrelTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFireworkBox.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFireworkBox.png new file mode 100644 index 000000000..2d3ccfbde Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFireworkBox.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFireworkBoxTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFireworkBoxTop.png new file mode 100644 index 000000000..90b92fa8e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFireworkBoxTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage1.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage1.png new file mode 100644 index 000000000..6543c9466 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage2.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage2.png new file mode 100644 index 000000000..9a48e693b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage3.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage3.png new file mode 100644 index 000000000..0b4544dd1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage3.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage4.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage4.png new file mode 100644 index 000000000..a9aff1f14 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage4.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage5.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage5.png new file mode 100644 index 000000000..54abf3f7e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage5.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage6.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage6.png new file mode 100644 index 000000000..d89928166 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFlaxStage6.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollector.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollector.png new file mode 100644 index 000000000..cb01ff29b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollector.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollectorFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollectorFront.png new file mode 100644 index 000000000..7f6620984 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollectorFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollectorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollectorTop.png new file mode 100644 index 000000000..f841bd399 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidCollectorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacer.png new file mode 100644 index 000000000..0c7d8460c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacerFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacerFront.png new file mode 100644 index 000000000..b712af11d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacerFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacerTop.png new file mode 100644 index 000000000..4bb8ad36c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFluidPlacerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDouble.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDouble.png new file mode 100644 index 000000000..2a62d0272 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDouble.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleFront.png new file mode 100644 index 000000000..e1c80e914 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleOn.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleOn.png new file mode 100644 index 000000000..2458702cf Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleOn.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleTop.png new file mode 100644 index 000000000..a51984ecc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockFurnaceDoubleTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChest.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChest.png new file mode 100644 index 000000000..c5c372697 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChest.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestLarge.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestLarge.png new file mode 100644 index 000000000..577586a0a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestLarge.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestMedium.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestMedium.png new file mode 100644 index 000000000..8fe94e309 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestMedium.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestTop.png new file mode 100644 index 000000000..0055e8ac8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGiantChestTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGreenhouseGlass.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGreenhouseGlass.png new file mode 100644 index 000000000..11b4a7fc2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGreenhouseGlass.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinder.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinder.png new file mode 100644 index 000000000..93b96d088 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinder.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderBottom.png new file mode 100644 index 000000000..f1f506162 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderDouble.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderDouble.png new file mode 100644 index 000000000..180537391 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderDouble.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderOn.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderOn.png new file mode 100644 index 000000000..7fec4e2c4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderOn.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderOn.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderOn.png.mcmeta new file mode 100644 index 000000000..4786bb0fe --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderOn.png.mcmeta @@ -0,0 +1,11 @@ +{ + "animation": { + "frametime": 1, + "frames": [ + 0, + 1, + 2, + + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderTop.png new file mode 100644 index 000000000..2b348481a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockGrinderTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorBottom.png new file mode 100644 index 000000000..4473aff92 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorSide.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorSide.png new file mode 100644 index 000000000..54c117a61 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorSide.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorTop.png new file mode 100644 index 000000000..068d3a908 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockHeatCollectorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockInputter.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockInputter.png new file mode 100644 index 000000000..d96783c2a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockInputter.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockInputterAdvanced.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockInputterAdvanced.png new file mode 100644 index 000000000..1e3199c6d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockInputterAdvanced.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemDistributor.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemDistributor.png new file mode 100644 index 000000000..6c3045e60 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemDistributor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairer.png new file mode 100644 index 000000000..b47747773 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairerBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairerBottom.png new file mode 100644 index 000000000..2950e49c2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairerBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairerTop.png new file mode 100644 index 000000000..3aa50fbfa Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemRepairerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemViewer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemViewer.png new file mode 100644 index 000000000..7d050c569 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockItemViewer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLampPowerer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLampPowerer.png new file mode 100644 index 000000000..94a11b868 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLampPowerer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLampPowererFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLampPowererFront.png new file mode 100644 index 000000000..291b65c85 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLampPowererFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLavaFactoryController.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLavaFactoryController.png new file mode 100644 index 000000000..808eecb19 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLavaFactoryController.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLavaFactoryControllerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLavaFactoryControllerTop.png new file mode 100644 index 000000000..b8719b608 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLavaFactoryControllerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGenerator.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGenerator.png new file mode 100644 index 000000000..b08433a6d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGenerator.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGeneratorBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGeneratorBottom.png new file mode 100644 index 000000000..d2e6cb58c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGeneratorBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGeneratorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGeneratorTop.png new file mode 100644 index 000000000..cdc7684ef Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockLeafGeneratorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiner.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiner.png new file mode 100644 index 000000000..8e1a53740 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiner.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMinerFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMinerFront.png new file mode 100644 index 000000000..187a42d75 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMinerFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMinerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMinerTop.png new file mode 100644 index 000000000..283b945ee Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMinerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartz.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartz.png new file mode 100644 index 000000000..bd2ad36f8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartzChiseled.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartzChiseled.png new file mode 100644 index 000000000..8b6b869a2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartzChiseled.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartzPillar.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartzPillar.png new file mode 100644 index 000000000..9dfd48544 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscBlackQuartzPillar.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscCharcoal.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscCharcoal.png new file mode 100644 index 000000000..31c637308 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscCharcoal.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscEnderCasing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscEnderCasing.png new file mode 100644 index 000000000..9b6ca8cd3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscEnderCasing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscEnderpearl.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscEnderpearl.png new file mode 100644 index 000000000..87acd223d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscEnderpearl.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasing.png new file mode 100644 index 000000000..c8d32c603 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasingSnow.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasingSnow.png new file mode 100644 index 000000000..c69e414c5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasingSnow.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasingSnowTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasingSnowTop.png new file mode 100644 index 000000000..0faab5fa7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscIronCasingSnowTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscLavaFactoryCase.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscLavaFactoryCase.png new file mode 100644 index 000000000..808eecb19 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscLavaFactoryCase.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscOreBlackQuartz.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscOreBlackQuartz.png new file mode 100644 index 000000000..c17cd4b7c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscOreBlackQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscWoodCasing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscWoodCasing.png new file mode 100644 index 000000000..54dc99a5d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockMiscWoodCasing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilFlowing.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilFlowing.png new file mode 100644 index 000000000..d40c0a2f2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilFlowing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilFlowing.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilFlowing.png.mcmeta new file mode 100644 index 000000000..4f0718ac9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilFlowing.png.mcmeta @@ -0,0 +1,3 @@ +{ + "animation": {} +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGenerator.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGenerator.png new file mode 100644 index 000000000..3b569f3df Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGenerator.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGenerator.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGenerator.png.mcmeta new file mode 100644 index 000000000..b5b91e18a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGenerator.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": + { + "frametime": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorBottom.png new file mode 100644 index 000000000..0e7631484 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorTop.png new file mode 100644 index 000000000..24606d2a8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorTop.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorTop.png.mcmeta new file mode 100644 index 000000000..b5b91e18a --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilGeneratorTop.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": + { + "frametime": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilStill.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilStill.png new file mode 100644 index 000000000..b00fa0ae4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilStill.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilStill.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilStill.png.mcmeta new file mode 100644 index 000000000..0645f48c6 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/blocks/blockOilStill.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 2 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomBreaker.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomBreaker.png new file mode 100644 index 000000000..8a28eb99e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomBreaker.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomEnergyface.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomEnergyface.png new file mode 100644 index 000000000..e960e02d0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomEnergyface.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomLiquiface.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomLiquiface.png new file mode 100644 index 000000000..e8aba089c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomLiquiface.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomPlacer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomPlacer.png new file mode 100644 index 000000000..374c256a0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomPlacer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomRedstoneface.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomRedstoneface.png new file mode 100644 index 000000000..31cf7d4d3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomRedstoneface.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomface.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomface.png new file mode 100644 index 000000000..b11ae7923 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomface.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomfacePumpkin.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomfacePumpkin.png new file mode 100644 index 000000000..1fe54f675 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPhantomfacePumpkin.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacer.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacer.png new file mode 100644 index 000000000..794d43519 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacerFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacerFront.png new file mode 100644 index 000000000..5a7d39d88 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacerFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacerTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacerTop.png new file mode 100644 index 000000000..ff4fa8d83 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlacerTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlayerInterface.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlayerInterface.png new file mode 100644 index 000000000..bb4c30f25 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockPlayerInterface.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRangedCollector.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRangedCollector.png new file mode 100644 index 000000000..05e91d501 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRangedCollector.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage1.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage1.png new file mode 100644 index 000000000..aa5312e75 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage2.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage2.png new file mode 100644 index 000000000..42f2c1181 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage3.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage3.png new file mode 100644 index 000000000..da2986f47 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage3.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage4.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage4.png new file mode 100644 index 000000000..69085b702 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage4.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage5.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage5.png new file mode 100644 index 000000000..16b768803 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage5.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage6.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage6.png new file mode 100644 index 000000000..e75005dd1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockRiceStage6.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockShockAbsorber.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockShockAbsorber.png new file mode 100644 index 000000000..0c1896883 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockShockAbsorber.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTestifiBucksGreenWall.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTestifiBucksGreenWall.png new file mode 100644 index 000000000..8888a3cde Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTestifiBucksGreenWall.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTestifiBucksWhiteWall.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTestifiBucksWhiteWall.png new file mode 100644 index 000000000..8d329e28f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTestifiBucksWhiteWall.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTinyTorch.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTinyTorch.png new file mode 100644 index 000000000..8cb48e1c9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTinyTorch.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChest.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChest.png new file mode 100644 index 000000000..3d7d3cb77 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChest.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestBottom.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestBottom.png new file mode 100644 index 000000000..84b069061 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestBottom.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestFront.png new file mode 100644 index 000000000..29bf0013c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestTop.png new file mode 100644 index 000000000..828fffa8f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockTreasureChestTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifier.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifier.png new file mode 100644 index 000000000..b7a29e4a5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifier.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifierFront.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifierFront.png new file mode 100644 index 000000000..0bbc60333 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifierFront.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifierTop.png b/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifierTop.png new file mode 100644 index 000000000..bc2cb8a32 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/blockXPSolidifierTop.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelBookletStand.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelBookletStand.png new file mode 100644 index 000000000..822ab5dfa Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelBookletStand.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelCoffeeMachine.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelCoffeeMachine.png new file mode 100644 index 000000000..c8dcd6915 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelCoffeeMachine.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelCompost.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelCompost.png new file mode 100644 index 000000000..611d72ba8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelCompost.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelFishingNet.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelFishingNet.png new file mode 100644 index 000000000..60f68d1e6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelFishingNet.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelFurnaceSolar.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelFurnaceSolar.png new file mode 100644 index 000000000..9350d4579 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelFurnaceSolar.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelay.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelay.png new file mode 100644 index 000000000..5135405f6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelay.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayAdvanced.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayAdvanced.png new file mode 100644 index 000000000..0769b2ec6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayAdvanced.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayExtreme.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayExtreme.png new file mode 100644 index 000000000..7f172d085 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayExtreme.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayFluids.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayFluids.png new file mode 100644 index 000000000..0a393ce6d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayFluids.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayItem.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayItem.png new file mode 100644 index 000000000..65e790f49 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayItem.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayItemWhitelist.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayItemWhitelist.png new file mode 100644 index 000000000..44ca83380 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelLaserRelayItemWhitelist.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelPhantomBooster.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelPhantomBooster.png new file mode 100644 index 000000000..714dbcea7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelPhantomBooster.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelPinkFluffyUnicloud.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelPinkFluffyUnicloud.png new file mode 100644 index 000000000..f666706e4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelPinkFluffyUnicloud.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelSmileyCloud.png b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelSmileyCloud.png new file mode 100644 index 000000000..2bfc199b4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/blocks/models/modelSmileyCloud.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/entity/villager/jamVillager.png b/src/main/resources/assets/actuallyadditions/textures/entity/villager/jamVillager.png new file mode 100644 index 000000000..23025f6a7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/entity/villager/jamVillager.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/entity/villager/jamVillagerZombie.png b/src/main/resources/assets/actuallyadditions/textures/entity/villager/jamVillagerZombie.png new file mode 100644 index 000000000..d78969276 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/entity/villager/jamVillagerZombie.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/guiBooklet.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/guiBooklet.png new file mode 100644 index 000000000..b5d463e0d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/guiBooklet.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/guiBookletGadgets.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/guiBookletGadgets.png new file mode 100644 index 000000000..bd63be8a6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/guiBookletGadgets.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageAtomicReconstructor.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageAtomicReconstructor.png new file mode 100644 index 000000000..94869530a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageAtomicReconstructor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageCoffeeMachine.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageCoffeeMachine.png new file mode 100644 index 000000000..e807ff62f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageCoffeeMachine.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageEmpowerer.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageEmpowerer.png new file mode 100644 index 000000000..d69447fc1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageEmpowerer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageFurBalls.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageFurBalls.png new file mode 100644 index 000000000..a7ef115ba Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageFurBalls.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayBasic.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayBasic.png new file mode 100644 index 000000000..8a25b6f45 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayBasic.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayFail.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayFail.png new file mode 100644 index 000000000..63763782b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayFail.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelaySystem.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelaySystem.png new file mode 100644 index 000000000..556196a98 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelaySystem.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayTransfer.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayTransfer.png new file mode 100644 index 000000000..356c04709 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayTransfer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayWhitelistChest.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayWhitelistChest.png new file mode 100644 index 000000000..878fab852 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayWhitelistChest.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayWhitelistInterface.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayWhitelistInterface.png new file mode 100644 index 000000000..46b8f196d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageItemLaserRelayWhitelistInterface.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageJamHouse.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageJamHouse.png new file mode 100644 index 000000000..34f825b28 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageJamHouse.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLaserRelay.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLaserRelay.png new file mode 100644 index 000000000..707780752 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLaserRelay.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLavaFactory.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLavaFactory.png new file mode 100644 index 000000000..a75bb45f6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLavaFactory.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLushCaves.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLushCaves.png new file mode 100644 index 000000000..c5d536847 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageLushCaves.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pagePatreon.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pagePatreon.png new file mode 100644 index 000000000..506475516 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pagePatreon.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageTreasureChest.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageTreasureChest.png new file mode 100644 index 000000000..85488b791 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageTreasureChest.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageWorms.png b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageWorms.png new file mode 100644 index 000000000..f6f1f8786 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/booklet/pageWorms.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiBag.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiBag.png new file mode 100644 index 000000000..57bc5c0fa Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiBag.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiBioReactor.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiBioReactor.png new file mode 100644 index 000000000..a1889d681 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiBioReactor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiBreaker.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiBreaker.png new file mode 100644 index 000000000..8bdee9186 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiBreaker.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiCanolaPress.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiCanolaPress.png new file mode 100644 index 000000000..0390bd765 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiCanolaPress.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiCoalGenerator.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiCoalGenerator.png new file mode 100644 index 000000000..c900e4925 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiCoalGenerator.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiCoffeeMachine.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiCoffeeMachine.png new file mode 100644 index 000000000..83261bfa9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiCoffeeMachine.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiDirectionalBreaker.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiDirectionalBreaker.png new file mode 100644 index 000000000..8389a6e1f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiDirectionalBreaker.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiDrill.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiDrill.png new file mode 100644 index 000000000..39f5c51ae Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiDrill.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiEnergizer.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiEnergizer.png new file mode 100644 index 000000000..238b0c4af Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiEnergizer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiFarmer.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiFarmer.png new file mode 100644 index 000000000..eb0ce9f98 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiFarmer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiFeeder.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiFeeder.png new file mode 100644 index 000000000..14e45a569 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiFeeder.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiFermentingBarrel.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiFermentingBarrel.png new file mode 100644 index 000000000..e5a1c6d73 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiFermentingBarrel.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiFilter.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiFilter.png new file mode 100644 index 000000000..664ff5067 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiFilter.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiFluidCollector.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiFluidCollector.png new file mode 100644 index 000000000..575b1ab58 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiFluidCollector.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiFurnaceDouble.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiFurnaceDouble.png new file mode 100644 index 000000000..a28a87e23 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiFurnaceDouble.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiGiantChest.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiGiantChest.png new file mode 100644 index 000000000..7352d7f52 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiGiantChest.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiGrinder.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiGrinder.png new file mode 100644 index 000000000..7d82c2f22 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiGrinder.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiGrinderDouble.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiGrinderDouble.png new file mode 100644 index 000000000..69221c795 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiGrinderDouble.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiInputter.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiInputter.png new file mode 100644 index 000000000..a5aadf9a0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiInputter.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiInputterAdvanced.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiInputterAdvanced.png new file mode 100644 index 000000000..7f42011c4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiInputterAdvanced.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiInventory.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiInventory.png new file mode 100644 index 000000000..88eb3156b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiInventory.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiItemDisplay.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiItemDisplay.png new file mode 100644 index 000000000..f0ed62437 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiItemDisplay.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiLaserRelayItemWhitelist.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiLaserRelayItemWhitelist.png new file mode 100644 index 000000000..bed3eee85 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiLaserRelayItemWhitelist.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiNEIAtomicReconstructor.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEIAtomicReconstructor.png new file mode 100644 index 000000000..1eb1eeea0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEIAtomicReconstructor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiNEICoffeeMachine.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEICoffeeMachine.png new file mode 100644 index 000000000..45b997d4a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEICoffeeMachine.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiNEIEmpowerer.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEIEmpowerer.png new file mode 100644 index 000000000..04599d205 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEIEmpowerer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiNEISimple.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEISimple.png new file mode 100644 index 000000000..8f0ac2bc8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiNEISimple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiOilGenerator.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiOilGenerator.png new file mode 100644 index 000000000..447f4f5f3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiOilGenerator.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiOreMagnet.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiOreMagnet.png new file mode 100644 index 000000000..07af6c20d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiOreMagnet.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiRangedCollector.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiRangedCollector.png new file mode 100644 index 000000000..65e7179fc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiRangedCollector.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiRepairer.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiRepairer.png new file mode 100644 index 000000000..2a47bc819 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiRepairer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiSmileyCloud.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiSmileyCloud.png new file mode 100644 index 000000000..d1c0f3ae8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiSmileyCloud.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiVoidBag.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiVoidBag.png new file mode 100644 index 000000000..9a3f8d4ce Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiVoidBag.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/gui/guiXPSolidifier.png b/src/main/resources/assets/actuallyadditions/textures/gui/guiXPSolidifier.png new file mode 100644 index 000000000..505fc681a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/gui/guiXPSolidifier.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalBlack.png new file mode 100644 index 000000000..7047a6509 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalBlue.png new file mode 100644 index 000000000..2b37d64cc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalGreen.png new file mode 100644 index 000000000..f7186d9de Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalLightBlue.png new file mode 100644 index 000000000..1d56f245e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalRed.png new file mode 100644 index 000000000..65ea3a759 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalWhite.png new file mode 100644 index 000000000..3e5ff61c1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeEmerald.png new file mode 100644 index 000000000..2851f3894 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeLight.png new file mode 100644 index 000000000..daddcae4e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeObsidian.png new file mode 100644 index 000000000..0aa59e73b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemAxeQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeQuartz.png new file mode 100644 index 000000000..ade0458ad Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemAxeQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBag.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBag.png new file mode 100644 index 000000000..de8d773e7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBag.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBattery.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBattery.png new file mode 100644 index 000000000..80885c9fb Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBattery.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryDouble.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryDouble.png new file mode 100644 index 000000000..d4b1ae9f1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryDouble.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryQuadruple.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryQuadruple.png new file mode 100644 index 000000000..24b55c5c0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryQuadruple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryQuintuple.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryQuintuple.png new file mode 100644 index 000000000..54ecbdb16 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryQuintuple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryTriple.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryTriple.png new file mode 100644 index 000000000..739fc4f15 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBatteryTriple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBooklet.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBooklet.png new file mode 100644 index 000000000..c7ad74669 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBooklet.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalBlack.png new file mode 100644 index 000000000..af2409bf9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalBlue.png new file mode 100644 index 000000000..a00b3382f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalGreen.png new file mode 100644 index 000000000..13a5161a9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalLightBlue.png new file mode 100644 index 000000000..1eb56b81d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalRed.png new file mode 100644 index 000000000..282191115 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalWhite.png new file mode 100644 index 000000000..d812b21a5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsEmerald.png new file mode 100644 index 000000000..370a51680 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsLight.png new file mode 100644 index 000000000..fb05fea1b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsObsidian.png new file mode 100644 index 000000000..149688094 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBootsQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsQuartz.png new file mode 100644 index 000000000..febe1beab Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBootsQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBucketCanolaOil.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBucketCanolaOil.png new file mode 100644 index 000000000..2e06004fe Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBucketCanolaOil.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemBucketOil.png b/src/main/resources/assets/actuallyadditions/textures/items/itemBucketOil.png new file mode 100644 index 000000000..487a0e50f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemBucketOil.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCanolaSeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCanolaSeed.png new file mode 100644 index 000000000..f5773f314 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCanolaSeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalBlack.png new file mode 100644 index 000000000..6961677c2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalBlue.png new file mode 100644 index 000000000..2e325d0df Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalGreen.png new file mode 100644 index 000000000..561bb7fe7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalLightBlue.png new file mode 100644 index 000000000..c99928475 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalRed.png new file mode 100644 index 000000000..a6648c607 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalWhite.png new file mode 100644 index 000000000..b7c2c29be Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestEmerald.png new file mode 100644 index 000000000..0148ee2b2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestLight.png new file mode 100644 index 000000000..1ce794395 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestObsidian.png new file mode 100644 index 000000000..d72ed6dff Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestQuartz.png new file mode 100644 index 000000000..b1d3c6829 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemChestToCrateUpgrade.png b/src/main/resources/assets/actuallyadditions/textures/items/itemChestToCrateUpgrade.png new file mode 100644 index 000000000..05be2487f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemChestToCrateUpgrade.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCoffee.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCoffee.png new file mode 100644 index 000000000..63cefb7fa Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCoffee.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCoffeeBeans.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCoffeeBeans.png new file mode 100644 index 000000000..94fdee80c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCoffeeBeans.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCoffeeSeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCoffeeSeed.png new file mode 100644 index 000000000..8afdc027c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCoffeeSeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemColorLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemColorLens.png new file mode 100644 index 000000000..2c95b5d07 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemColorLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrafterOnAStick.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrafterOnAStick.png new file mode 100644 index 000000000..94891d6c5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrafterOnAStick.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrateKeeper.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrateKeeper.png new file mode 100644 index 000000000..14cb9578e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrateKeeper.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrateToCraftyUpgrade.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrateToCraftyUpgrade.png new file mode 100644 index 000000000..eef081fde Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrateToCraftyUpgrade.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalBlack.png new file mode 100644 index 000000000..2be0e7714 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalBlue.png new file mode 100644 index 000000000..2d5765aae Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlack.png new file mode 100644 index 000000000..2e7062e69 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlack.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlack.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlack.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlue.png new file mode 100644 index 000000000..5905ec754 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlue.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlue.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredBlue.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredGreen.png new file mode 100644 index 000000000..06e9031ae Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredGreen.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredGreen.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredGreen.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredLightBlue.png new file mode 100644 index 000000000..65ecd8a5c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredLightBlue.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredLightBlue.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredLightBlue.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredRed.png new file mode 100644 index 000000000..c9eb63a37 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredRed.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredRed.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredRed.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredWhite.png new file mode 100644 index 000000000..e7b4fb518 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredWhite.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredWhite.png.mcmeta new file mode 100644 index 000000000..b81aa6365 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalEmpoweredWhite.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": + { + "frametime": 20, + "interpolate": true + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalGreen.png new file mode 100644 index 000000000..b221a6df8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalLightBlue.png new file mode 100644 index 000000000..5807504c0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalRed.png new file mode 100644 index 000000000..cd78338bc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalWhite.png new file mode 100644 index 000000000..4a4a206f1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDamageLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDamageLens.png new file mode 100644 index 000000000..ebe2a9186 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDamageLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDisenchantingLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDisenchantingLens.png new file mode 100644 index 000000000..1a04f81ff Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDisenchantingLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBlack.png new file mode 100644 index 000000000..5c7e3778b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBlue.png new file mode 100644 index 000000000..9685f0925 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBrown.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBrown.png new file mode 100644 index 000000000..8f19ce4a1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillBrown.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillCyan.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillCyan.png new file mode 100644 index 000000000..e7e3a8e3f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillCyan.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillGray.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillGray.png new file mode 100644 index 000000000..185d12503 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillGray.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillGreen.png new file mode 100644 index 000000000..a7a3234cc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLightBlue.png new file mode 100644 index 000000000..916975744 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLightGray.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLightGray.png new file mode 100644 index 000000000..c10696d2f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLightGray.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLime.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLime.png new file mode 100644 index 000000000..246189430 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillLime.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillMagenta.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillMagenta.png new file mode 100644 index 000000000..dad6d3591 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillMagenta.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillOrange.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillOrange.png new file mode 100644 index 000000000..2a943d30e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillOrange.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillPink.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillPink.png new file mode 100644 index 000000000..0baacf992 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillPink.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillPurple.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillPurple.png new file mode 100644 index 000000000..0cb927c24 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillPurple.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillRed.png new file mode 100644 index 000000000..b95d49a11 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeBlockPlacing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeBlockPlacing.png new file mode 100644 index 000000000..f8463239b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeBlockPlacing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFiveByFive.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFiveByFive.png new file mode 100644 index 000000000..57d639ed6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFiveByFive.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFortune.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFortune.png new file mode 100644 index 000000000..730c29e3e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFortune.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFortuneII.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFortuneII.png new file mode 100644 index 000000000..9af6ab2f3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeFortuneII.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSilkTouch.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSilkTouch.png new file mode 100644 index 000000000..b51e2fe40 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSilkTouch.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeed.png new file mode 100644 index 000000000..bec1aad73 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeedII.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeedII.png new file mode 100644 index 000000000..7cb333259 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeedII.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeedIII.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeedIII.png new file mode 100644 index 000000000..75839d23a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeSpeedIII.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeThreeByThree.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeThreeByThree.png new file mode 100644 index 000000000..6e2fa2a96 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillUpgradeThreeByThree.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillWhite.png new file mode 100644 index 000000000..300f36e9e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDrillYellow.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillYellow.png new file mode 100644 index 000000000..30a6cac8a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDrillYellow.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemDust.png b/src/main/resources/assets/actuallyadditions/textures/items/itemDust.png new file mode 100644 index 000000000..768f1f830 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemDust.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemExplosionLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemExplosionLens.png new file mode 100644 index 000000000..e38e4e46f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemExplosionLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFertilizer.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFertilizer.png new file mode 100644 index 000000000..68ea559df Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFertilizer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFillingWand.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFillingWand.png new file mode 100644 index 000000000..1352e79ee Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFillingWand.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFilter.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFilter.png new file mode 100644 index 000000000..fedfddc1c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFilter.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFlaxSeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFlaxSeed.png new file mode 100644 index 000000000..f0feb7fa0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFlaxSeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBacon.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBacon.png new file mode 100644 index 000000000..5822fc51a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBacon.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBaguette.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBaguette.png new file mode 100644 index 000000000..cf6fb5aa2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBaguette.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBigCookie.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBigCookie.png new file mode 100644 index 000000000..602966bc2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodBigCookie.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodCarrotJuice.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodCarrotJuice.png new file mode 100644 index 000000000..677bda4ae Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodCarrotJuice.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodCheese.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodCheese.png new file mode 100644 index 000000000..68e490b82 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodCheese.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolate.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolate.png new file mode 100644 index 000000000..8f0419c6a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolate.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolateCake.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolateCake.png new file mode 100644 index 000000000..b02269b06 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolateCake.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolateToast.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolateToast.png new file mode 100644 index 000000000..2d10d1738 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodChocolateToast.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodDoughnut.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodDoughnut.png new file mode 100644 index 000000000..55388c80e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodDoughnut.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFishNChips.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFishNChips.png new file mode 100644 index 000000000..3fb07bae9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFishNChips.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFrenchFries.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFrenchFries.png new file mode 100644 index 000000000..85f0d00c8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFrenchFries.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFrenchFry.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFrenchFry.png new file mode 100644 index 000000000..fc27dca53 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodFrenchFry.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodHamburger.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodHamburger.png new file mode 100644 index 000000000..092e0702b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodHamburger.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodNoodle.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodNoodle.png new file mode 100644 index 000000000..fc1c1bb34 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodNoodle.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodPizza.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodPizza.png new file mode 100644 index 000000000..16807d009 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodPizza.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodPumpkinStew.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodPumpkinStew.png new file mode 100644 index 000000000..94667f9c3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodPumpkinStew.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodRice.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodRice.png new file mode 100644 index 000000000..e927b9e97 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodRice.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodRiceBread.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodRiceBread.png new file mode 100644 index 000000000..fdbf09679 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodRiceBread.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodSpaghetti.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodSpaghetti.png new file mode 100644 index 000000000..7d4140431 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodSpaghetti.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodSubmarineSandwich.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodSubmarineSandwich.png new file mode 100644 index 000000000..df4e1508a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodSubmarineSandwich.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemFoodToast.png b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodToast.png new file mode 100644 index 000000000..7b896b290 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemFoodToast.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemGrowthRing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemGrowthRing.png new file mode 100644 index 000000000..d0d465e1e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemGrowthRing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHairyBall.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHairyBall.png new file mode 100644 index 000000000..f8d9492a7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHairyBall.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalBlack.png new file mode 100644 index 000000000..795c0ffe4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalBlue.png new file mode 100644 index 000000000..22880abae Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalGreen.png new file mode 100644 index 000000000..2dabf385c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalLightBlue.png new file mode 100644 index 000000000..c47285fbd Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalRed.png new file mode 100644 index 000000000..47765679f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalWhite.png new file mode 100644 index 000000000..7adcf33c5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmEmerald.png new file mode 100644 index 000000000..29ef83374 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmLight.png new file mode 100644 index 000000000..9f48a42a2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmObsidian.png new file mode 100644 index 000000000..3b6735ba8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHelmQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmQuartz.png new file mode 100644 index 000000000..57ab7f798 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHelmQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalBlack.png new file mode 100644 index 000000000..fc7892fa1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalBlue.png new file mode 100644 index 000000000..e14aaf575 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalGreen.png new file mode 100644 index 000000000..027956567 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalLightBlue.png new file mode 100644 index 000000000..5db0f9f8f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalRed.png new file mode 100644 index 000000000..70cb0de26 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalWhite.png new file mode 100644 index 000000000..b188c1297 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeEmerald.png new file mode 100644 index 000000000..f1ea5b795 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeObsidian.png new file mode 100644 index 000000000..a3c9887c9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemHoeQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeQuartz.png new file mode 100644 index 000000000..7dce10d41 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemHoeQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemJam.png b/src/main/resources/assets/actuallyadditions/textures/items/itemJam.png new file mode 100644 index 000000000..c809c3362 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemJam.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemJamOverlay.png b/src/main/resources/assets/actuallyadditions/textures/items/itemJamOverlay.png new file mode 100644 index 000000000..d6ce4d94f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemJamOverlay.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemJuicer.png b/src/main/resources/assets/actuallyadditions/textures/items/itemJuicer.png new file mode 100644 index 000000000..03b3a17a6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemJuicer.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemKnife.png b/src/main/resources/assets/actuallyadditions/textures/items/itemKnife.png new file mode 100644 index 000000000..c51cdd9ab Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemKnife.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemLaserWrench.png b/src/main/resources/assets/actuallyadditions/textures/items/itemLaserWrench.png new file mode 100644 index 000000000..fbbc11393 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemLaserWrench.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemLeafBlower.png b/src/main/resources/assets/actuallyadditions/textures/items/itemLeafBlower.png new file mode 100644 index 000000000..ad59792f7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemLeafBlower.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemLeafBlowerAdvanced.png b/src/main/resources/assets/actuallyadditions/textures/items/itemLeafBlowerAdvanced.png new file mode 100644 index 000000000..5b9b6eb7d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemLeafBlowerAdvanced.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemLightWand.png b/src/main/resources/assets/actuallyadditions/textures/items/itemLightWand.png new file mode 100644 index 000000000..184b73063 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemLightWand.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemManual.png b/src/main/resources/assets/actuallyadditions/textures/items/itemManual.png new file mode 100644 index 000000000..761d22fb1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemManual.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMediumToLargeCrateUpgrade.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMediumToLargeCrateUpgrade.png new file mode 100644 index 000000000..e09586119 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMediumToLargeCrateUpgrade.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMinecartFireworkBox.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMinecartFireworkBox.png new file mode 100644 index 000000000..cf0e4c108 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMinecartFireworkBox.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiningLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiningLens.png new file mode 100644 index 000000000..148f41e2d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiningLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBatWing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBatWing.png new file mode 100644 index 000000000..2a86a9574 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBatWing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBiocoal.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBiocoal.png new file mode 100644 index 000000000..336081bcd Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBiocoal.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBiomass.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBiomass.png new file mode 100644 index 000000000..74740b44c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBiomass.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBlackDye.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBlackDye.png new file mode 100644 index 000000000..a4cd0e1f3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBlackDye.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBlackQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBlackQuartz.png new file mode 100644 index 000000000..d87546eee Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscBlackQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCanola.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCanola.png new file mode 100644 index 000000000..b02f176eb Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCanola.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCoil.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCoil.png new file mode 100644 index 000000000..c56f57da8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCoil.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCoilAdvanced.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCoilAdvanced.png new file mode 100644 index 000000000..593cbf2dc Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCoilAdvanced.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCrystallizedCanolaSeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCrystallizedCanolaSeed.png new file mode 100644 index 000000000..1e3408d11 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCrystallizedCanolaSeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCup.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCup.png new file mode 100644 index 000000000..7fc88085d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscCup.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscDough.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscDough.png new file mode 100644 index 000000000..9ad6d0e04 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscDough.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscDrillCore.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscDrillCore.png new file mode 100644 index 000000000..9cae4b99b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscDrillCore.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscEmpoweredCanolaSeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscEmpoweredCanolaSeed.png new file mode 100644 index 000000000..437ddd955 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscEmpoweredCanolaSeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscEnderStar.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscEnderStar.png new file mode 100644 index 000000000..7da40518b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscEnderStar.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscKnifeBlade.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscKnifeBlade.png new file mode 100644 index 000000000..eb6cdb88c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscKnifeBlade.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscKnifeHandle.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscKnifeHandle.png new file mode 100644 index 000000000..69f35db62 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscKnifeHandle.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscLens.png new file mode 100644 index 000000000..ab7855613 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscMashedFood.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscMashedFood.png new file mode 100644 index 000000000..f908b5014 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscMashedFood.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscPaperCone.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscPaperCone.png new file mode 100644 index 000000000..dc15878e9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscPaperCone.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRiceDough.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRiceDough.png new file mode 100644 index 000000000..d25613c55 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRiceDough.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRiceSlime.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRiceSlime.png new file mode 100644 index 000000000..63769bd18 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRiceSlime.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRing.png new file mode 100644 index 000000000..4d27341ed Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscRing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscSpawnerShard.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscSpawnerShard.png new file mode 100644 index 000000000..2829b0490 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscSpawnerShard.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscTinyCharcoal.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscTinyCharcoal.png new file mode 100644 index 000000000..6d10d84c5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscTinyCharcoal.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscTinyCoal.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscTinyCoal.png new file mode 100644 index 000000000..101113cff Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscTinyCoal.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMiscYoutubeIcon.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscYoutubeIcon.png new file mode 100644 index 000000000..ea9c8ab15 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMiscYoutubeIcon.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemMoreDamageLens.png b/src/main/resources/assets/actuallyadditions/textures/items/itemMoreDamageLens.png new file mode 100644 index 000000000..087b3d55b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemMoreDamageLens.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalBlack.png new file mode 100644 index 000000000..a01581667 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalBlue.png new file mode 100644 index 000000000..9ac59b90d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalGreen.png new file mode 100644 index 000000000..f0fecc06b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalLightBlue.png new file mode 100644 index 000000000..86f272f4a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalRed.png new file mode 100644 index 000000000..ed7603ffe Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalWhite.png new file mode 100644 index 000000000..341a5b073 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsEmerald.png new file mode 100644 index 000000000..8e6213f7a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsLight.png new file mode 100644 index 000000000..e13844acd Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsObsidian.png new file mode 100644 index 000000000..70f440a05 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPantsQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsQuartz.png new file mode 100644 index 000000000..8ea4efa6c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPantsQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPaxel.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPaxel.png new file mode 100644 index 000000000..56f2ff5fb Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPaxel.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPaxelOverlay.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPaxelOverlay.png new file mode 100644 index 000000000..2c68cb14a Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPaxelOverlay.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPhantomConnector.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPhantomConnector.png new file mode 100644 index 000000000..dd07fae4f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPhantomConnector.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalBlack.png new file mode 100644 index 000000000..9b1a7e816 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalBlue.png new file mode 100644 index 000000000..006092d9b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalGreen.png new file mode 100644 index 000000000..8d0304195 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalLightBlue.png new file mode 100644 index 000000000..3e4e282a0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalRed.png new file mode 100644 index 000000000..02683028d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalWhite.png new file mode 100644 index 000000000..8173514f8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeEmerald.png new file mode 100644 index 000000000..7e1bb9635 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeLight.png new file mode 100644 index 000000000..bb1e76548 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeObsidian.png new file mode 100644 index 000000000..d4bfc9271 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeQuartz.png new file mode 100644 index 000000000..e059307b6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPickaxeQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPlayerProbe.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPlayerProbe.png new file mode 100644 index 000000000..60dfe1b79 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPlayerProbe.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPotionRing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPotionRing.png new file mode 100644 index 000000000..fb6271b76 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPotionRing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemPotionRingAdvanced.png b/src/main/resources/assets/actuallyadditions/textures/items/itemPotionRingAdvanced.png new file mode 100644 index 000000000..cc344ca4b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemPotionRingAdvanced.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemRarmorModuleReconstructor.png b/src/main/resources/assets/actuallyadditions/textures/items/itemRarmorModuleReconstructor.png new file mode 100644 index 000000000..6044c6497 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemRarmorModuleReconstructor.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemResonantRice.png b/src/main/resources/assets/actuallyadditions/textures/items/itemResonantRice.png new file mode 100644 index 000000000..9c1dd1183 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemResonantRice.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemRiceSeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemRiceSeed.png new file mode 100644 index 000000000..2e13afcc4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemRiceSeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShearsLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShearsLight.png new file mode 100644 index 000000000..42e0c942f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShearsLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalBlack.png new file mode 100644 index 000000000..822116df8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalBlue.png new file mode 100644 index 000000000..51b3c281b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalGreen.png new file mode 100644 index 000000000..31af13266 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalLightBlue.png new file mode 100644 index 000000000..1b3b7f25c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalRed.png new file mode 100644 index 000000000..b7986fae4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalWhite.png new file mode 100644 index 000000000..76626d246 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelEmerald.png new file mode 100644 index 000000000..c6284f2fe Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelLight.png new file mode 100644 index 000000000..0a99b3de2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelObsidian.png new file mode 100644 index 000000000..d10a7dde2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemShovelQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelQuartz.png new file mode 100644 index 000000000..55a0bf62e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemShovelQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSmallToMediumCrateUpgrade.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSmallToMediumCrateUpgrade.png new file mode 100644 index 000000000..a8ca2f11d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSmallToMediumCrateUpgrade.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSolidifiedExperience.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSolidifiedExperience.png new file mode 100644 index 000000000..7a0eb094f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSolidifiedExperience.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSpawnerChanger.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSpawnerChanger.png new file mode 100644 index 000000000..9175733e1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSpawnerChanger.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSuctionRing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSuctionRing.png new file mode 100644 index 000000000..9fa27489b Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSuctionRing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSuctionRing.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemSuctionRing.png.mcmeta new file mode 100644 index 000000000..0b9b446c5 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemSuctionRing.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": + { + "frametime": 1 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalBlack.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalBlack.png new file mode 100644 index 000000000..7ea86da19 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalBlack.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalBlue.png new file mode 100644 index 000000000..4e53f82c4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalGreen.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalGreen.png new file mode 100644 index 000000000..701955ba9 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalGreen.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalLightBlue.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalLightBlue.png new file mode 100644 index 000000000..a58d580c8 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalLightBlue.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalRed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalRed.png new file mode 100644 index 000000000..8642a47bd Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalRed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalWhite.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalWhite.png new file mode 100644 index 000000000..eb256dab1 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordCrystalWhite.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordEmerald.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordEmerald.png new file mode 100644 index 000000000..c6e62d13e Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordEmerald.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordLight.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordLight.png new file mode 100644 index 000000000..400018640 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordLight.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordObsidian.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordObsidian.png new file mode 100644 index 000000000..f9899f4b6 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordObsidian.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemSwordQuartz.png b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordQuartz.png new file mode 100644 index 000000000..4ae95a417 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemSwordQuartz.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemTablet.png b/src/main/resources/assets/actuallyadditions/textures/items/itemTablet.png new file mode 100644 index 000000000..0fd436517 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemTablet.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemTeleStaff.png b/src/main/resources/assets/actuallyadditions/textures/items/itemTeleStaff.png new file mode 100644 index 000000000..96b0dd24d Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemTeleStaff.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemUpgradeSpeed.png b/src/main/resources/assets/actuallyadditions/textures/items/itemUpgradeSpeed.png new file mode 100644 index 000000000..59c1c5361 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemUpgradeSpeed.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemVoidBag.png b/src/main/resources/assets/actuallyadditions/textures/items/itemVoidBag.png new file mode 100644 index 000000000..645175ce2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemVoidBag.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemWaterBowl.png b/src/main/resources/assets/actuallyadditions/textures/items/itemWaterBowl.png new file mode 100644 index 000000000..3df0edd4f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemWaterBowl.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemWaterRemovalRing.png b/src/main/resources/assets/actuallyadditions/textures/items/itemWaterRemovalRing.png new file mode 100644 index 000000000..be56c7ce3 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemWaterRemovalRing.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemWingsOfTheBats.png b/src/main/resources/assets/actuallyadditions/textures/items/itemWingsOfTheBats.png new file mode 100644 index 000000000..3e746b7cd Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemWingsOfTheBats.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemWorm.png b/src/main/resources/assets/actuallyadditions/textures/items/itemWorm.png new file mode 100644 index 000000000..df4918cff Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/items/itemWorm.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/items/itemWorm.png.mcmeta b/src/main/resources/assets/actuallyadditions/textures/items/itemWorm.png.mcmeta new file mode 100644 index 000000000..84934a9d9 --- /dev/null +++ b/src/main/resources/assets/actuallyadditions/textures/items/itemWorm.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": + { + "frametime": 3 + } +} diff --git a/src/main/resources/assets/actuallyadditions/textures/logo.png b/src/main/resources/assets/actuallyadditions/textures/logo.png new file mode 100644 index 000000000..7da66346c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/logo.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlack_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlack_layer_1.png new file mode 100644 index 000000000..836cc77e2 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlack_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlack_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlack_layer_2.png new file mode 100644 index 000000000..9b60a4f0c Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlack_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlue_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlue_layer_1.png new file mode 100644 index 000000000..e2e859561 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlue_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlue_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlue_layer_2.png new file mode 100644 index 000000000..059e9cac5 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalBlue_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalGreen_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalGreen_layer_1.png new file mode 100644 index 000000000..7af43d6b4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalGreen_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalGreen_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalGreen_layer_2.png new file mode 100644 index 000000000..30121ae74 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalGreen_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalLightBlue_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalLightBlue_layer_1.png new file mode 100644 index 000000000..43909f0de Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalLightBlue_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalLightBlue_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalLightBlue_layer_2.png new file mode 100644 index 000000000..d09ec5cc7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalLightBlue_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalRed_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalRed_layer_1.png new file mode 100644 index 000000000..171d399df Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalRed_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalRed_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalRed_layer_2.png new file mode 100644 index 000000000..8f0817740 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalRed_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalWhite_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalWhite_layer_1.png new file mode 100644 index 000000000..9241b6fee Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalWhite_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalWhite_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalWhite_layer_2.png new file mode 100644 index 000000000..7e524e842 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorCrystalWhite_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorEmerald_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorEmerald_layer_1.png new file mode 100644 index 000000000..44f0c2f84 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorEmerald_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorEmerald_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorEmerald_layer_2.png new file mode 100644 index 000000000..fb134eab7 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorEmerald_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorLight_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorLight_layer_1.png new file mode 100644 index 000000000..922228173 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorLight_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorLight_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorLight_layer_2.png new file mode 100644 index 000000000..20bcf1f51 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorLight_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorObsidian_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorObsidian_layer_1.png new file mode 100644 index 000000000..8873bb9d0 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorObsidian_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorObsidian_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorObsidian_layer_2.png new file mode 100644 index 000000000..594fd17c4 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorObsidian_layer_2.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorQuartz_layer_1.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorQuartz_layer_1.png new file mode 100644 index 000000000..77f6a1976 Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorQuartz_layer_1.png differ diff --git a/src/main/resources/assets/actuallyadditions/textures/models/armor/armorQuartz_layer_2.png b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorQuartz_layer_2.png new file mode 100644 index 000000000..c5a94d98f Binary files /dev/null and b/src/main/resources/assets/actuallyadditions/textures/models/armor/armorQuartz_layer_2.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsBook.png b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsBook.png new file mode 100644 index 000000000..08b38684e Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsBook.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsDrill.png b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsDrill.png new file mode 100644 index 000000000..858ba1746 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsDrill.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsLeafBlo.png b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsLeafBlo.png new file mode 100644 index 000000000..8d38b0f0e Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsLeafBlo.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsPhanCon.png b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsPhanCon.png new file mode 100644 index 000000000..91e2936e8 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/banner/actuallyadditionsPhanCon.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsBook.png b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsBook.png new file mode 100644 index 000000000..8704547c4 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsBook.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsDrill.png b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsDrill.png new file mode 100644 index 000000000..f7743ffea Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsDrill.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsLeafBlo.png b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsLeafBlo.png new file mode 100644 index 000000000..7b52a66ae Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsLeafBlo.png differ diff --git a/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsPhanCon.png b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsPhanCon.png new file mode 100644 index 000000000..151dd0ade Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/entity/shield/actuallyadditionsPhanCon.png differ diff --git a/src/main/resources/assets/minecraft/textures/gui/container/creative_inventory/tab_actuallyadditions.png b/src/main/resources/assets/minecraft/textures/gui/container/creative_inventory/tab_actuallyadditions.png new file mode 100644 index 000000000..b6a1e7d58 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/gui/container/creative_inventory/tab_actuallyadditions.png differ diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info new file mode 100644 index 000000000..fc2d9f429 --- /dev/null +++ b/src/main/resources/mcmod.info @@ -0,0 +1,19 @@ +[ +{ + "modid": "actuallyadditions", + "name": "Actually Additions", + "description": "Do you want Automation? Wireless Transport? Better Machines? A cup o' Coffee? Chests? Better Hoppers? Leaf Blowers? Faster Growth? Plants? Well, Actually Additions has all that and a lot more!", + "version": "${version}", + "mcversion": "${mcversion}", + "url": "http://github.com/Ellpeck/ActuallyAdditions", + "updateUrl": "", + "authorList": [ "Ellpeck" ], + "credits": "Author: Ellpeck; Textures and Models: BootyToast, GlenthorLP, canitzp", + "logoFile": "assets/actuallyadditions/textures/logo.png", + "screenshots": [ + ], + "parent":"", + "dependencies": [ + ] +} +] \ No newline at end of file