Removed unused/unimplemented API stuff.

Removed unused assets.
This commit is contained in:
Flanks255 2024-12-18 17:47:15 -06:00
parent af8f1f18b6
commit 60ec534700
1185 changed files with 1 additions and 10846 deletions

View file

@ -8,6 +8,7 @@
* The Drill's now display a list of installed augments in tooltips.
* The Drill Placer upgrade now displays the selected slot in its tooltip, and on the drill when installed.
* Fixed the drills attack speed.
* Fixed some lens of the miner probability overlaps.
# 1.3.11+mc1.21.1
* Fixed Farmer not playing well with non-vanilla farmland.

View file

@ -18,16 +18,8 @@ import de.ellpeck.actuallyadditions.api.internal.IMethodHandler;
import de.ellpeck.actuallyadditions.api.laser.ILaserRelayConnectionHandler;
import de.ellpeck.actuallyadditions.api.lens.Lens;
import de.ellpeck.actuallyadditions.api.lens.LensConversion;
import de.ellpeck.actuallyadditions.api.recipe.CoffeeIngredient;
import de.ellpeck.actuallyadditions.api.recipe.WeightedOre;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.crafting.*;
import de.ellpeck.actuallyadditions.mod.items.lens.*;
import net.minecraft.core.NonNullList;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.crafting.Ingredient;
import net.minecraft.world.item.crafting.RecipeHolder;
import java.util.ArrayList;
@ -59,10 +51,6 @@ public final class ActuallyAdditionsAPI {
public static final List<IBookletChapter> ALL_CHAPTERS = new ArrayList<>();
//This is added to automatically, you don't need to add anything to this list
public static final List<IBookletPage> BOOKLET_PAGES_WITH_ITEM_OR_FLUID_DATA = new ArrayList<>();
@Deprecated
public static final List<WeightedOre> STONE_ORES = new ArrayList<>();
@Deprecated
public static final List<WeightedOre> NETHERRACK_ORES = new ArrayList<>();
/**
* Use this to handle things that aren't based in the API itself
@ -106,129 +94,6 @@ public final class ActuallyAdditionsAPI {
public static final Lens lensDisenchanting = new LensDisenchanting();
public static final Lens lensMining = new LensMining();
/**
* Adds an ore with a specific weight to the list of ores that the lens of the miner will generate inside of stone.
* Higher weight means higher occurence.
*
* @param oreName The ore's name
* @param weight The ore's weight
*/
public static void addMiningLensStoneOre(String oreName, int weight) {
STONE_ORES.add(new WeightedOre(oreName, weight));
}
/**
* Adds an ore with a specific weight to the list of ores that the lens of the miner will generate inside of netherrack.
* Higher weight means higher occurence.
*
* @param oreName The ore's name
* @param weight The ore's weight
*/
public static void addMiningLensNetherOre(String oreName, int weight) {
NETHERRACK_ORES.add(new WeightedOre(oreName, weight));
}
/**
* Adds a Recipe to the Crusher Recipe Registry
*
* @param input The input as an ItemStack
* @param outputOne The first stack as an ItemStack
* @param outputTwo The second stack as an ItemStack (can be ItemStack.EMPTY if there should be none)
* @param outputTwoChance The chance of the second stack (0 won't occur at all, 100 will all the time)
*/
public static void addCrusherRecipe(ItemStack input, ItemStack outputOne, ItemStack outputTwo, int outputTwoChance) {
ResourceLocation id = ActuallyAdditions.modLoc(BuiltInRegistries.ITEM.getKey(input.getItem()).getPath() + "_crushing");
CRUSHER_RECIPES.add(new RecipeHolder<>(id, new CrushingRecipe(Ingredient.of(input), outputOne, 1.0f, outputTwo.isEmpty()
? ItemStack.EMPTY
: outputTwo, outputTwoChance)));
}
/**
* Adds a Recipe to the Crusher Recipe Registry
*
* @param input The input as an Ingredient
* @param outputOne The first stack as an ItemStack
* @param outputTwo The second stack as an ItemStack (can be ItemStack.EMPTY if there should be none)
* @param outputTwoChance The chance of the second stack (0 won't occur at all, 100 will all the time)
*/
public static void addCrusherRecipe(Ingredient input, ItemStack outputOne, ItemStack outputTwo, int outputTwoChance) {
ResourceLocation id = ActuallyAdditions.modLoc(BuiltInRegistries.ITEM.getKey(input.getItems()[0].getItem()).getPath() + "_crushing");
CRUSHER_RECIPES.add(new RecipeHolder<>(id, new CrushingRecipe(input, outputOne, 1.0f, outputTwo.isEmpty()
? ItemStack.EMPTY
: outputTwo, outputTwoChance)));
}
/**
* Adds multiple Recipes to the Crusher Recipe Registry
* Use this if you want to add OreDictionary recipes easier
*
* @param inputs The inputs as an ItemStack List, stacksizes are ignored
* @param outputOnes The first outputs as an ItemStack List, stacksizes are ignored
* @param outputOneAmounts The amount of the first stack, will be equal for all entries in the list
* @param outputTwos The second outputs as a List (can be null or empty if there should be none)
* @param outputTwoAmounts The amount of the second stack, will be equal for all entries in the list
* @param outputTwoChance The chance of the second stack (0 won't occur at all, 100 will all the time)
*/
public static boolean addCrusherRecipes(List<ItemStack> inputs, List<ItemStack> outputOnes, int outputOneAmounts, List<ItemStack> outputTwos, int outputTwoAmounts, int outputTwoChance) {
return methodHandler.addCrusherRecipes(inputs, outputOnes, outputOneAmounts, outputTwos, outputTwoAmounts, outputTwoChance);
}
//Same thing as above, but with ItemStack outputs.
@Deprecated //Use Ingredient
public static boolean addCrusherRecipes(List<ItemStack> inputs, ItemStack outputOne, int outputOneAmount, ItemStack outputTwo, int outputTwoAmount, int outputTwoChance) {
return methodHandler.addCrusherRecipes(inputs, outputOne, outputOneAmount, outputTwo, outputTwoAmount, outputTwoChance);
}
public static void addEmpowererRecipe(ResourceLocation id, Ingredient input, ItemStack output, Ingredient modifier1, Ingredient modifier2, Ingredient modifier3, Ingredient modifier4, int energyPerStand, int time, int particleColor) {
EmpowererRecipe recipe = new EmpowererRecipe(output, input, NonNullList.of(modifier1, modifier2, modifier3, modifier4), energyPerStand, time, particleColor);
EMPOWERER_RECIPES.add(new RecipeHolder<>(id, recipe));
}
/**
* Adds a recipe to the Atomic Reconstructor conversion lenses
* StackSizes can only be 1 and greater ones will be ignored
*
* @param input The input as an ItemStack
* @param output The stack as an ItemStack
* @param energyUse The amount of RF used per conversion
* @param type The type of lens used for the conversion. To use the default type, use method below.
* Note how this always has to be the same instance of the lens type that the item also has for it to work!
*/
@Deprecated
public static void addReconstructorLensConversionRecipe(ItemStack input, ItemStack output, int energyUse, LensConversion type) {
//RECONSTRUCTOR_LENS_CONVERSION_RECIPES.add(new LensConversionRecipe(input, stack, energyUse, type));
}
@Deprecated
public static void addReconstructorLensConversionRecipe(ItemStack input, ItemStack output, int energyUse) {
//addReconstructorLensConversionRecipe(input, stack, energyUse, lensDefaultConversion);
}
/**
* Adds a recipe to the Atomic Reconstructor conversion lenses
* StackSizes can only be 1 and greater ones will be ignored
*
* @param input The input as an ItemStack
* @param output The stack as an ItemStack
* @param energyUse The amount of RF used per conversion
* @param type The type of lens used for the conversion. To use the default type, use method below.
* Note how this always has to be the same instance of the lens type that the item also has for it to work!
*/
public static void addReconstructorLensConversionRecipe(Ingredient input, ItemStack output, int energyUse, LensConversion type) {
//RECONSTRUCTOR_LENS_CONVERSION_RECIPES.add(new LensConversionRecipe(input, stack, energyUse, type));
}
public static void addReconstructorLensConversionRecipe(Ingredient input, ItemStack output, int energyUse) {
//addReconstructorLensConversionRecipe(input, stack, energyUse, lensDefaultConversion);
}
/**
* Adds an ingredient to the Coffee Machine ingredient list
*
* @param ingredient The ingredient to add
*/
public static void addCoffeeMachineIngredient(CoffeeIngredient ingredient) {
// COFFEE_MACHINE_INGREDIENTS.add(ingredient);
}
/**
* Adds a booklet entry to the list of entries

View file

@ -17,8 +17,6 @@ import net.minecraft.world.effect.MobEffectInstance;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.block.state.BlockState;
import java.util.List;
/**
* This is the internal method handler.
* Use ActuallyAdditionsAPI.methodHandler for calling
@ -43,12 +41,6 @@ public interface IMethodHandler {
boolean invokeReconstructor(IAtomicReconstructor tile);
boolean addCrusherRecipes(List<ItemStack> inputs, List<ItemStack> outputOnes, int outputOneAmounts, List<ItemStack> outputTwos, int outputTwoAmounts, int outputTwoChance);
@Deprecated
//Use Ingredient input on AA API class
boolean addCrusherRecipes(List<ItemStack> inputs, ItemStack outputOne, int outputOneAmount, ItemStack outputTwo, int outputTwoAmount, int outputTwoChance);
// IBookletPage generateTextPage(int id);
//
// IBookletPage generatePicturePage(int id, ResourceLocation resLoc, int textStartY);

View file

@ -28,50 +28,6 @@ import java.util.List;
import java.util.Optional;
public class LensMining extends Lens {
@Deprecated
public static void init() {
//These need to be moved to datagen conditionals if the appropriate mod is loaded.
ActuallyAdditionsAPI.addMiningLensStoneOre("oreCopper", 2000);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreNetherCopper", 2000);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreTin", 1800);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreNetherTin", 1800);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreLead", 1500);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreNetherLead", 1500);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreSilver", 1000);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreNetherSilver", 1000);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreNickel", 100);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreNetherNickel", 100);
ActuallyAdditionsAPI.addMiningLensStoneOre("orePlatinum", 20);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreNetherPlatinum", 20);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreAluminum", 1200);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreAluminium", 1200);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreOsmium", 1500);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreZinc", 1000);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreYellorite", 1200);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreUranium", 400);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreCertusQuartz", 800);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreApatite", 700);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreQuartzBlack", 3000);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreRuby", 40);
ActuallyAdditionsAPI.addMiningLensStoneOre("orePeridot", 40);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreTopaz", 40);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreTanzanite", 40);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreMalachite", 40);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreSapphire", 40);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreAmber", 150);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreResonating", 50);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreSulfur", 3000);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreSaltpeter", 250);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreFirestone", 30);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreSalt", 2900);
ActuallyAdditionsAPI.addMiningLensStoneOre("oreDraconium", 5);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreCobalt", 50);
ActuallyAdditionsAPI.addMiningLensNetherOre("oreArdite", 50);
}
@Override
public boolean invoke(BlockState hitState, BlockPos hitPos, IAtomicReconstructor tile) {
final int energyUse = CommonConfig.Machines.MINER_LENS_ENERGY.get();

View file

@ -302,62 +302,6 @@ public class MethodHandler implements IMethodHandler {
return false;
}
@Override
public boolean addCrusherRecipes(List<ItemStack> inputs, List<ItemStack> outputOnes, int outputOneAmounts, List<ItemStack> outputTwos, int outputTwoAmounts, int outputTwoChance) {
boolean hasWorkedOnce = false;
/* for (ItemStack input : inputs) {
if (StackUtil.isValid(input) && CrusherRecipeRegistry.getRecipeFromInput(input) == null) {
for (ItemStack outputOne : outputOnes) {
if (StackUtil.isValid(outputOne) && !CrusherRecipeRegistry.hasBlacklistedOutput(outputOne, ConfigStringListValues.CRUSHER_OUTPUT_BLACKLIST.getValue())) {
ItemStack outputOneCopy = outputOne.copy();
outputOneCopy.setCount(outputOneAmounts);
if (outputTwos.isEmpty()) {
ActuallyAdditionsAPI.addCrusherRecipe(input, outputOneCopy, StackUtil.getEmpty(), 0);
hasWorkedOnce = true;
} else {
for (ItemStack outputTwo : outputTwos) {
if (StackUtil.isValid(outputTwo) && !CrusherRecipeRegistry.hasBlacklistedOutput(outputTwo, ConfigStringListValues.CRUSHER_OUTPUT_BLACKLIST.getValue())) {
ItemStack outputTwoCopy = outputTwo.copy();
outputTwoCopy.setCount(outputTwoAmounts);
ActuallyAdditionsAPI.addCrusherRecipe(input, outputOneCopy, outputTwoCopy, outputTwoChance);
hasWorkedOnce = true;
}
}
}
}
}
}
}*/ //TODO
return hasWorkedOnce;
}
@Override
public boolean addCrusherRecipes(List<ItemStack> inputs, ItemStack outputOne, int outputOneAmount, ItemStack outputTwo, int outputTwoAmount, int outputTwoChance) {
boolean hasWorkedOnce = false;
/* for (ItemStack input : inputs) {
if (StackUtil.isValid(input) && CrusherRecipeRegistry.getRecipeFromInput(input) == null) {
if (StackUtil.isValid(outputOne) && !CrusherRecipeRegistry.hasBlacklistedOutput(outputOne, ConfigStringListValues.CRUSHER_OUTPUT_BLACKLIST.getValue())) {
ItemStack outputOneCopy = outputOne.copy();
outputOneCopy.setCount(outputOneAmount);
if (!StackUtil.isValid(outputTwo)) {
ActuallyAdditionsAPI.addCrusherRecipe(input, outputOneCopy, StackUtil.getEmpty(), 0);
hasWorkedOnce = true;
} else if (StackUtil.isValid(outputTwo) && !CrusherRecipeRegistry.hasBlacklistedOutput(outputTwo, ConfigStringListValues.CRUSHER_OUTPUT_BLACKLIST.getValue())) {
ItemStack outputTwoCopy = outputTwo.copy();
outputTwoCopy.setCount(outputTwoAmount);
ActuallyAdditionsAPI.addCrusherRecipe(input, outputOneCopy, outputTwoCopy, outputTwoChance);
hasWorkedOnce = true;
}
}
}
}*/
return hasWorkedOnce;
}
// @Override
// public IBookletPage generateTextPage(int id) {
// return this.generateTextPage(id, 0);

View file

@ -1,26 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_atomic_reconstructor",
"textures": {
"particle": "actuallyadditions:blocks/block_atomic_reconstructor",
"down": "#particle",
"south": "#particle",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:half_slab",
"textures": {
"bottom": "actuallyadditions:blocks/block_battery_box",
"top": "#bottom",
"side": "#bottom"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_bio_reactor"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cross",
"textures": {
"cross": "actuallyadditions:blocks/block_black_lotus"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{
"model": "builtin/generated",
"textures": {
"layer0": "actuallyadditions:blocks/block_black_lotus"
},
"transform": "forge:default-item"
}]
}
}

View file

@ -1,17 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_booklet_stand",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"meta": {
"0": { "y" : 270 },
"1": { "y" : 90 },
"2": { "y" : 180 },
"3": { "y" : 0 }
}
}
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_breaker",
"down": "#particle",
"up": "actuallyadditions:blocks/block_breaker_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_breaker_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,23 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:crop",
"textures": {
"crop": "actuallyadditions:blocks/block_canola_stage_1"
}
},
"variants": {
"normal": [{}],
"inventory": [{}],
"age": {
"0": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_1" } },
"1": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_2" } },
"2": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_2" } },
"3": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_2" } },
"4": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_3" } },
"5": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_3" } },
"6": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_3" } },
"7": { "textures": { "crop": "actuallyadditions:blocks/block_canola_stage_4" } }
}
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_canola_press",
"textures": {
"particle": "actuallyadditions:blocks/block_canola_press"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:half_slab",
"textures": {
"bottom": "actuallyadditions:blocks/block_misc_black_quartz_chiseled",
"top": "#bottom",
"side": "#bottom"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"half": {
"bottom": {},
"top": { "model": "minecraft:upper_slab" }
}
}
}

View file

@ -1,54 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"textures": {
"bottom": "actuallyadditions:blocks/block_misc_black_quartz_chiseled",
"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 }
}
}

View file

@ -1,19 +0,0 @@
{
"multipart": [
{ "when": { "up": "true" },
"apply": { "model": "actuallyadditions:block_chiseled_quartz_wall_post" }
},
{ "when": { "north": "true" },
"apply": { "model": "actuallyadditions:block_chiseled_quartz_wall_side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "actuallyadditions:block_chiseled_quartz_wall_side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "actuallyadditions:block_chiseled_quartz_wall_side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "actuallyadditions:block_chiseled_quartz_wall_side", "y": 270, "uvlock": true }
}
]
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_coal_generator",
"textures": {
"particle": "actuallyadditions:blocks/block_coal_generator"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,23 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:crop",
"textures": {
"crop": "actuallyadditions:blocks/block_coffee_stage_1"
}
},
"variants": {
"normal": [{}],
"inventory": [{}],
"age": {
"0": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_1" } },
"1": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_2" } },
"2": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_2" } },
"3": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_3" } },
"4": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_4" } },
"5": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_4" } },
"6": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_5" } },
"7": { "textures": { "crop": "actuallyadditions:blocks/block_coffee_stage_6" } }
}
}
}

View file

@ -1,17 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_coffee_machine",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"south": { "y" : 180 },
"west": { "y" : 0 },
"north": { "y" : 90 },
"east": { "y" : 270 }
}
}
}

View file

@ -1,29 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"type": {
"white": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_white" } },
"orange": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_orange" } },
"magenta": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_magenta" } },
"light_blue": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_light_blue" } },
"yellow": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_yellow" } },
"lime": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_lime" } },
"pink": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_pink" } },
"gray": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_gray" } },
"light_gray": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_light_gray" } },
"cyan": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_cyan" } },
"purple": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_purple" } },
"blue": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_blue" } },
"brown": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_brown" } },
"green": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_green" } },
"red": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_red" } },
"black": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_black" } }
}
}
}

View file

@ -1,29 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"type": {
"white": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_white" } },
"orange": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_orange" } },
"magenta": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_magenta" } },
"light_blue": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_light_blue" } },
"yellow": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_yellow" } },
"lime": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_lime" } },
"pink": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_pink" } },
"gray": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_gray" } },
"light_gray": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_light_gray" } },
"cyan": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_cyan" } },
"purple": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_purple" } },
"blue": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_blue" } },
"brown": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_brown" } },
"green": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_green" } },
"red": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_red" } },
"black": { "textures" : { "all" : "actuallyadditions:blocks/block_colored_lamp_on_black" } }
}
}
}

View file

@ -1,11 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_compost",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,19 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"type": {
"red": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_red" } },
"blue": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_blue" } },
"light_blue": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_light_blue" } },
"black": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_black" } },
"green": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_green" } },
"white": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_white" } }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_crystal_cluster",
"textures": {
"particle": "actuallyadditions:blocks/block_crystal_cluster"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_crystal_cluster",
"textures": {
"particle": "actuallyadditions:blocks/block_crystal_cluster"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_crystal_cluster",
"textures": {
"particle": "actuallyadditions:blocks/block_crystal_cluster"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_crystal_cluster",
"textures": {
"particle": "actuallyadditions:blocks/block_crystal_cluster"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_crystal_cluster",
"textures": {
"particle": "actuallyadditions:blocks/block_crystal_cluster"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_crystal_cluster",
"textures": {
"particle": "actuallyadditions:blocks/block_crystal_cluster"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,19 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"type": {
"red": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_empowered_red" } },
"blue": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_empowered_blue" } },
"light_blue": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_empowered_light_blue" } },
"black": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_empowered_black" } },
"green": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_empowered_green" } },
"white": { "textures" : { "all" : "actuallyadditions:blocks/block_crystal_empowered_white" } }
}
}
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_directional_breaker",
"down": "#particle",
"up": "actuallyadditions:blocks/block_directional_breaker_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_directional_breaker_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_display_stand",
"textures": {
"particle": "actuallyadditions:blocks/block_giant_chest_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_item_distributor"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_dropper",
"down": "#particle",
"up": "actuallyadditions:blocks/block_dropper_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_dropper_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_empowerer",
"textures": {
"particle": "actuallyadditions:blocks/block_empowerer"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_energizer_side",
"bottom": "actuallyadditions:blocks/block_energizer",
"top": "actuallyadditions:blocks/block_energizer_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_enervator_side",
"bottom": "actuallyadditions:blocks/block_enervator",
"top": "actuallyadditions:blocks/block_enervator_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,26 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_farmer",
"down": "#particle",
"up": "actuallyadditions:blocks/block_farmer_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_farmer_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_feeder",
"bottom": "#top",
"top": "actuallyadditions:blocks/block_feeder_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_fermenting_barrel",
"textures": {
"particle": "actuallyadditions:blocks/block_fermenting_barrel"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_firework_box",
"bottom": "#side",
"top": "actuallyadditions:blocks/block_firework_box_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,11 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_fishing_net",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,23 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:crop",
"textures": {
"crop": "actuallyadditions:blocks/block_flax_stage_1"
}
},
"variants": {
"normal": [{}],
"inventory": [{}],
"age": {
"0": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_1" } },
"1": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_2" } },
"2": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_2" } },
"3": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_3" } },
"4": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_4" } },
"5": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_4" } },
"6": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_5" } },
"7": { "textures": { "crop": "actuallyadditions:blocks/block_flax_stage_6" } }
}
}
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_fluid_collector",
"down": "#particle",
"up": "actuallyadditions:blocks/block_fluid_collector_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_fluid_collector_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_fluid_placer",
"down": "#particle",
"up": "actuallyadditions:blocks/block_fluid_placer_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_fluid_placer_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,30 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_furnace_double",
"down": "#particle",
"up": "actuallyadditions:blocks/block_furnace_double_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_furnace_double_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
},
"on": {
"true": { "textures": {"north": "actuallyadditions:blocks/block_furnace_double_on"} },
"false": {}
}
}
}

View file

@ -1,11 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_furnace_solar",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_giant_chest",
"textures": {
"particle": "actuallyadditions:blocks/block_giant_chest"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_giant_chest_large",
"textures": {
"particle": "actuallyadditions:blocks/block_giant_chest"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_giant_chest_medium",
"textures": {
"particle": "actuallyadditions:blocks/block_giant_chest"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_greenhouse_glass"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_grinder",
"bottom": "actuallyadditions:blocks/block_grinder_bottom",
"top": "actuallyadditions:blocks/block_grinder_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"on": {
"true": { "textures": {"top": "actuallyadditions:blocks/block_grinder_on"} },
"false": {}
}
}
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_grinder_double",
"bottom": "actuallyadditions:blocks/block_grinder_bottom",
"top": "actuallyadditions:blocks/block_grinder_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"on": {
"true": { "textures": {"top": "actuallyadditions:blocks/block_grinder_on"} },
"false": {}
}
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_heat_collector_side",
"bottom": "actuallyadditions:blocks/block_heat_collector_bottom",
"top": "actuallyadditions:blocks/block_heat_collector_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_inputter"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_inputter_advanced"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_item_repairer",
"bottom": "actuallyadditions:blocks/block_item_repairer_bottom",
"top": "actuallyadditions:blocks/block_item_repairer_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_item_viewer"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,19 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:item_viewer_hopping_down",
"textures": {
"all": "actuallyadditions:blocks/block_item_viewer"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing=down": { "model": "actuallyadditions:item_viewer_hopping_down" },
"facing=north": { "model": "actuallyadditions:item_viewer_hopping_side" },
"facing=south": { "model": "actuallyadditions:item_viewer_hopping_side", "y": 180 },
"facing=west": { "model": "actuallyadditions:item_viewer_hopping_side", "y": 270 },
"facing=east": { "model": "actuallyadditions:item_viewer_hopping_side", "y": 90 }
}
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_lamp_powerer",
"down": "#particle",
"up": "#particle",
"south": "#particle",
"north": "actuallyadditions:blocks/block_lamp_powerer_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_laser_relay",
"textures": {
"particle": "actuallyadditions:blocks/models/model_laser_relay"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_laser_relay",
"textures": {
"particle": "actuallyadditions:blocks/models/model_laser_relay_advanced"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_laser_relay",
"textures": {
"particle": "actuallyadditions:blocks/models/model_laser_relay_extreme"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_laser_relay",
"textures": {
"particle": "actuallyadditions:blocks/models/model_laser_relay_fluids"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_laser_relay",
"textures": {
"particle": "actuallyadditions:blocks/models/model_laser_relay_item"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,22 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_laser_relay",
"textures": {
"particle": "actuallyadditions:blocks/models/model_laser_relay_item_whitelist"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x": 180 },
"up": {},
"north": { "x": 90 },
"south": { "x": 270 },
"west": { "x": 90, "y": 270 },
"east": { "x": 270, "y": 270 }
}
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_lava_factory_controller",
"bottom": "#side",
"top": "actuallyadditions:blocks/block_lava_factory_controller_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_leaf_generator"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,16 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_bottom_top",
"textures": {
"side": "actuallyadditions:blocks/block_miner",
"bottom": "actuallyadditions:blocks/block_miner_front",
"top": "actuallyadditions:blocks/block_miner_top"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,23 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"type": {
"black_quartz_pillar": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_black_quartz_pillar" } },
"black_quartz_chiseled": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_black_quartz_chiseled" } },
"black_quartz": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_black_quartz" } },
"ore_black_quartz": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_ore_black_quartz" } },
"wood_casing": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_wood_casing" } },
"charcoal": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_charcoal" } },
"enderpearl": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_enderpearl" } },
"lava_factory_case": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_lava_factory_case" } },
"ender_casing": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_ender_casing" } },
"iron_casing": { "textures" : { "all" : "actuallyadditions:blocks/block_misc_iron_casing" } }
}
}
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_oil_generator",
"textures": {
"particle": "actuallyadditions:blocks/block_oil_generator"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,11 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_phantom_booster",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_phantom_breaker"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_phantom_energyface"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_phantom_liquiface"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_phantom_placer"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_phantom_redstoneface"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_phantomface"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:half_slab",
"textures": {
"bottom": "actuallyadditions:blocks/block_misc_black_quartz_pillar",
"top": "#bottom",
"side": "#bottom"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"half": {
"bottom": {},
"top": { "model": "minecraft:upper_slab" }
}
}
}

View file

@ -1,54 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"textures": {
"bottom": "actuallyadditions:blocks/block_misc_black_quartz_pillar",
"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 }
}
}

View file

@ -1,19 +0,0 @@
{
"multipart": [
{ "when": { "up": "true" },
"apply": { "model": "actuallyadditions:block_pillar_quartz_wall_post" }
},
{ "when": { "north": "true" },
"apply": { "model": "actuallyadditions:block_pillar_quartz_wall_side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "actuallyadditions:block_pillar_quartz_wall_side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "actuallyadditions:block_pillar_quartz_wall_side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "actuallyadditions:block_pillar_quartz_wall_side", "y": 270, "uvlock": true }
}
]
}

View file

@ -1,28 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_placer",
"down": "#particle",
"up": "actuallyadditions:blocks/block_placer_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_placer_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"down": { "x" : 90 },
"up": { "x" : 270 },
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_player_interface"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:half_slab",
"textures": {
"bottom": "actuallyadditions:blocks/block_misc_black_quartz",
"top": "#bottom",
"side": "#bottom"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"half": {
"bottom": {},
"top": { "model": "minecraft:upper_slab" }
}
}
}

View file

@ -1,54 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"textures": {
"bottom": "actuallyadditions:blocks/block_misc_black_quartz",
"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 }
}
}

View file

@ -1,19 +0,0 @@
{
"multipart": [
{ "when": { "up": "true" },
"apply": { "model": "actuallyadditions:block_quartz_wall_post" }
},
{ "when": { "north": "true" },
"apply": { "model": "actuallyadditions:block_quartz_wall_side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "actuallyadditions:block_quartz_wall_side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "actuallyadditions:block_quartz_wall_side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "actuallyadditions:block_quartz_wall_side", "y": 270, "uvlock": true }
}
]
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_ranged_collector"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,23 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:crop",
"textures": {
"crop": "actuallyadditions:blocks/block_rice_stage_1"
}
},
"variants": {
"normal": [{}],
"inventory": [{}],
"age": {
"0": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_1" } },
"1": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_2" } },
"2": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_2" } },
"3": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_3" } },
"4": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_4" } },
"5": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_4" } },
"6": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_5" } },
"7": { "textures": { "crop": "actuallyadditions:blocks/block_rice_stage_6" } }
}
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_shock_absorber"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,17 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "actuallyadditions:block_smiley_cloud",
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

View file

@ -1,19 +0,0 @@
{
"multipart": [
{ "when": { "up": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_green_fence_post" }
},
{ "when": { "north": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_green_fence_side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_green_fence_side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_green_fence_side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_green_fence_side", "y": 270, "uvlock": true }
}
]
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:half_slab",
"textures": {
"bottom": "actuallyadditions:blocks/block_testifi_bucks_green_wall",
"top": "#bottom",
"side": "#bottom"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"half": {
"bottom": {},
"top": { "model": "minecraft:upper_slab" }
}
}
}

View file

@ -1,54 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"textures": {
"bottom": "actuallyadditions:blocks/block_testifi_bucks_green_wall",
"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 }
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_testifi_bucks_green_wall"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,19 +0,0 @@
{
"multipart": [
{ "when": { "up": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_white_fence_post" }
},
{ "when": { "north": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_white_fence_side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_white_fence_side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_white_fence_side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "actuallyadditions:block_testifi_bucks_white_fence_side", "y": 270, "uvlock": true }
}
]
}

View file

@ -1,20 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:half_slab",
"textures": {
"bottom": "actuallyadditions:blocks/block_testifi_bucks_white_wall",
"top": "#bottom",
"side": "#bottom"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"half": {
"bottom": {},
"top": { "model": "minecraft:upper_slab" }
}
}
}

View file

@ -1,54 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"textures": {
"bottom": "actuallyadditions:blocks/block_testifi_bucks_white_wall",
"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 }
}
}

View file

@ -1,14 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube_all",
"textures": {
"all": "actuallyadditions:blocks/block_testifi_bucks_white_wall"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}

View file

@ -1,9 +0,0 @@
{
"variants": {
"facing=up": { "model": "actuallyadditions:block_tiny_torch" },
"facing=east": { "model": "actuallyadditions:block_tiny_torch_wall" },
"facing=south": { "model": "actuallyadditions:block_tiny_torch_wall", "y": 90 },
"facing=west": { "model": "actuallyadditions:block_tiny_torch_wall", "y": 180 },
"facing=north": { "model": "actuallyadditions:block_tiny_torch_wall", "y": 270 }
}
}

View file

@ -1,26 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"model": "minecraft:cube",
"textures": {
"particle": "actuallyadditions:blocks/block_treasure_chest",
"down": "actuallyadditions:blocks/block_treasure_chest_bottom",
"up": "actuallyadditions:blocks/block_treasure_chest_top",
"south": "#particle",
"north": "actuallyadditions:blocks/block_treasure_chest_front",
"east": "#particle",
"west": "#particle"
},
"transform": "forge:default-block"
},
"variants": {
"normal": [{}],
"inventory": [{}],
"facing": {
"north": { "y" : 0 },
"south": { "y" : 180 },
"west": { "y" : 270 },
"east": { "y" : 90 }
}
}
}

Some files were not shown because too many files have changed in this diff Show more