code formatting

This commit is contained in:
Ell 2021-01-14 23:15:02 +01:00
parent 5350566f9c
commit f7f61a1f56
622 changed files with 7509 additions and 7220 deletions

View file

@ -1,5 +1,16 @@
There are a few bugs that cannot be fixed on my side, but get reported numerous times anyway. If your bug is any one of the following, please **do not** report it here.
- Fast Leaf Decay Crashes: See [#82](https://github.com/Ellpeck/NaturesAura/issues/82), [#87](https://github.com/Ellpeck/NaturesAura/issues/87), [#98](https://github.com/Ellpeck/NaturesAura/issues/98) or [#102](https://github.com/Ellpeck/NaturesAura/issues/102).
- Rapid Leaf Decay Crashes: See [#149](https://github.com/Ellpeck/NaturesAura/issues/149).
There are a few bugs that cannot be fixed on my side, but get reported numerous
times anyway. If your bug is any one of the following, please **do not** report
it here.
- Fast Leaf Decay Crashes:
See [#82](https://github.com/Ellpeck/NaturesAura/issues/82)
, [#87](https://github.com/Ellpeck/NaturesAura/issues/87)
, [#98](https://github.com/Ellpeck/NaturesAura/issues/98)
or [#102](https://github.com/Ellpeck/NaturesAura/issues/102).
- Rapid Leaf Decay Crashes:
See [#149](https://github.com/Ellpeck/NaturesAura/issues/149).
- Book of Natural Aura model doesn't load: Update Patchouli.
- Book of Natural Aura text spills over the page: You probably have Emojiful installed. See [Emojiful#8](https://github.com/InnovativeOnlineIndustries/Emojiful/issues/8).
- Book of Natural Aura text spills over the page: You probably have Emojiful
installed.
See [Emojiful#8](https://github.com/InnovativeOnlineIndustries/Emojiful/issues/8)
.

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,14 @@
# NaturesAura
Nature's Aura is a mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.
Nature's Aura is a mod about collecting, using and replenishing the Aura
naturally present in the world to create useful devices and unique mechanics.
## Maven
To add this project as a dependency (for using the [API](https://github.com/Ellpeck/NaturesAura/tree/main/src/main/java/de/ellpeck/naturesaura/api), for example), put this into your `build.gradle` file:
To add this project as a dependency (for using
the [API](https://github.com/Ellpeck/NaturesAura/tree/main/src/main/java/de/ellpeck/naturesaura/api)
, for example), put this into your `build.gradle` file:
```
repositories {
maven {
@ -14,4 +20,8 @@ dependencies {
compile "de.ellpeck.naturesaura:NaturesAura:VERSION"
}
```
Replace VERSION with the version you want to use. You can find a list of versions by going to the [maven artifact](https://maven.ellpeck.de/de/ellpeck/naturesaura/NaturesAura/).
Replace VERSION with the version you want to use. You can find a list of
versions by going to
the [maven artifact](https://maven.ellpeck.de/de/ellpeck/naturesaura/NaturesAura/)
.

View file

@ -3,10 +3,8 @@ package de.ellpeck.naturesaura.api.aura.type;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import net.minecraft.util.RegistryKey;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.DimensionType;
import net.minecraft.world.IWorld;
import net.minecraft.world.World;
import net.minecraftforge.registries.ForgeRegistries;
import java.util.HashSet;
import java.util.Set;

View file

@ -2,7 +2,6 @@ package de.ellpeck.naturesaura.api.misc;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.world.DimensionType;
import net.minecraft.world.World;
import net.minecraftforge.common.capabilities.ICapabilityProvider;
import net.minecraftforge.common.util.INBTSerializable;

View file

@ -2,7 +2,6 @@ package de.ellpeck.naturesaura.api.multiblock;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IWorld;
import net.minecraft.world.World;
import java.util.Map;

View file

@ -4,9 +4,7 @@ import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.tags.ITag;
import net.minecraft.tags.Tag;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IWorld;
import net.minecraft.world.World;
public class Matcher {

View file

@ -4,7 +4,9 @@ import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.blocks.tiles.TileEntityAncientLeaves;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.*;
import net.minecraft.block.*;
import net.minecraft.block.BlockState;
import net.minecraft.block.LeavesBlock;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.material.MaterialColor;
import net.minecraft.client.renderer.color.IBlockColor;

View file

@ -4,12 +4,13 @@ import de.ellpeck.naturesaura.blocks.tiles.TileEntityAuraBloom;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.data.ItemModelGenerator;
import de.ellpeck.naturesaura.reg.*;
import net.minecraft.block.*;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.BushBlock;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.entity.Entity;
import net.minecraft.tags.BlockTags;
import net.minecraft.tags.ITag;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.util.math.BlockPos;
@ -22,7 +23,6 @@ import net.minecraft.world.World;
import javax.annotation.Nullable;
import java.util.Arrays;
import java.util.function.Predicate;
import java.util.function.Supplier;
public class BlockAuraBloom extends BushBlock implements IModItem, ICustomBlockState, ICustomItemModel, ICustomRenderType {

View file

@ -4,7 +4,6 @@ import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.blocks.tiles.ModTileEntities;
import de.ellpeck.naturesaura.blocks.tiles.TileEntityAuraTimer;
import de.ellpeck.naturesaura.blocks.tiles.render.RenderAuraTimer;
import de.ellpeck.naturesaura.blocks.tiles.render.RenderProjectileGenerator;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.ICustomRenderType;
@ -28,7 +27,6 @@ import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.util.math.shapes.ISelectionContext;
import net.minecraft.util.math.shapes.VoxelShape;
import net.minecraft.world.IBlockReader;
import net.minecraft.world.IWorldReader;
import net.minecraft.world.World;
import net.minecraft.world.server.ServerWorld;
import net.minecraftforge.api.distmarker.Dist;

View file

@ -4,9 +4,6 @@ import de.ellpeck.naturesaura.blocks.tiles.TileEntityChorusGenerator;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import net.minecraft.block.Blocks;
import net.minecraft.tileentity.TileEntity;
import java.util.function.Supplier;
public class BlockChorusGenerator extends BlockContainerImpl implements ICustomBlockState {
public BlockChorusGenerator() {

View file

@ -21,7 +21,6 @@ import net.minecraft.util.Direction;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockReader;
import net.minecraft.world.IWorld;
import net.minecraft.world.IWorldReader;
import net.minecraft.world.World;
import net.minecraft.world.server.ServerWorld;

View file

@ -3,7 +3,9 @@ package de.ellpeck.naturesaura.blocks;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.ICustomRenderType;
import net.minecraft.block.*;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.util.math.BlockPos;

View file

@ -8,7 +8,10 @@ import de.ellpeck.naturesaura.packet.PacketClient;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticles;
import de.ellpeck.naturesaura.reg.*;
import net.minecraft.block.*;
import net.minecraft.block.AbstractRailBlock;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.minecart.AbstractMinecartEntity;

View file

@ -9,7 +9,9 @@ import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.items.ModItems;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.ITESRProvider;
import net.minecraft.block.*;
import net.minecraft.block.AnvilBlock;
import net.minecraft.block.BlockState;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.tileentity.TileEntityRenderer;
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;

View file

@ -6,7 +6,10 @@ import de.ellpeck.naturesaura.reg.IColorProvidingBlock;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.ICustomItemModel;
import de.ellpeck.naturesaura.reg.ICustomRenderType;
import net.minecraft.block.*;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.block.RedstoneWireBlock;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.client.renderer.color.IBlockColor;
import net.minecraft.item.BlockItemUseContext;

View file

@ -4,7 +4,10 @@ import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.*;
import net.minecraft.block.*;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.LeavesBlock;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.block.material.MaterialColor;
import net.minecraft.client.renderer.color.IBlockColor;

View file

@ -9,7 +9,6 @@ import net.minecraft.block.BlockState;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.item.BlockItemUseContext;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.shapes.ISelectionContext;
import net.minecraft.util.math.shapes.VoxelShape;

View file

@ -2,7 +2,9 @@ package de.ellpeck.naturesaura.blocks;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import net.minecraft.block.*;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.block.IGrowable;
import net.minecraft.util.Direction;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockReader;

View file

@ -14,9 +14,7 @@ import net.minecraft.world.World;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.LivingDamageEvent;
import net.minecraftforge.event.entity.living.LivingDeathEvent;
import net.minecraftforge.eventbus.api.EventPriority;
import net.minecraftforge.eventbus.api.SubscribeEvent;
public class BlockSlimeSplitGenerator extends BlockContainerImpl implements IVisualizable, ICustomBlockState {

View file

@ -4,9 +4,6 @@ import de.ellpeck.naturesaura.blocks.tiles.TileEntityWeatherChanger;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import net.minecraft.block.Blocks;
import net.minecraft.tileentity.TileEntity;
import java.util.function.Supplier;
public class BlockWeatherChanger extends BlockContainerImpl implements ICustomBlockState {
public BlockWeatherChanger() {

View file

@ -1,13 +1,13 @@
package de.ellpeck.naturesaura.blocks;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import de.ellpeck.naturesaura.recipes.TreeRitualRecipe;
import de.ellpeck.naturesaura.blocks.multi.Multiblocks;
import de.ellpeck.naturesaura.blocks.tiles.ModTileEntities;
import de.ellpeck.naturesaura.blocks.tiles.TileEntityWoodStand;
import de.ellpeck.naturesaura.blocks.tiles.render.RenderWoodStand;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import de.ellpeck.naturesaura.recipes.TreeRitualRecipe;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.ITESRProvider;
import net.minecraft.block.BlockState;

View file

@ -1,10 +1,6 @@
package de.ellpeck.naturesaura.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.material.MaterialColor;
import net.minecraft.world.gen.feature.Feature;
import net.minecraft.world.gen.feature.NoFeatureConfig;
@SuppressWarnings("FieldNamingConvention")
public final class ModBlocks {

View file

@ -8,7 +8,6 @@ import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IWorld;
import net.minecraft.world.World;
import java.util.HashMap;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.blocks.multi;
import de.ellpeck.naturesaura.ModConfig;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.multiblock.IMultiblock;

View file

@ -4,7 +4,6 @@ import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.container.IAuraContainer;
import de.ellpeck.naturesaura.api.aura.container.NaturalAuraContainer;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.Direction;
public class TileEntityAncientLeaves extends TileEntityImpl {

View file

@ -4,10 +4,10 @@ import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
import de.ellpeck.naturesaura.recipes.AnimalSpawnerRecipe;
import de.ellpeck.naturesaura.blocks.multi.Multiblocks;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticles;
import de.ellpeck.naturesaura.recipes.AnimalSpawnerRecipe;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.ItemEntity;

View file

@ -12,8 +12,6 @@ import net.minecraft.item.ItemStack;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.state.properties.BlockStateProperties;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.tileentity.TileEntityType;
import net.minecraft.util.Direction;
import net.minecraftforge.items.IItemHandlerModifiable;
import java.util.Map;

View file

@ -1,7 +1,6 @@
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.chunk.AuraChunk;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticles;
import net.minecraft.block.BlockState;
@ -10,13 +9,15 @@ import net.minecraft.nbt.CompoundNBT;
import net.minecraft.nbt.ListNBT;
import net.minecraft.nbt.NBTUtil;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.tileentity.TileEntityType;
import net.minecraft.util.Direction;
import net.minecraft.util.SoundCategory;
import net.minecraft.util.SoundEvents;
import net.minecraft.util.math.BlockPos;
import java.util.*;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.List;
public class TileEntityChorusGenerator extends TileEntityImpl implements ITickableTileEntity {

View file

@ -12,7 +12,6 @@ import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.util.Direction;
import net.minecraft.util.EntityPredicates;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;

View file

@ -5,18 +5,17 @@ import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.api.aura.container.BasicAuraContainer;
import de.ellpeck.naturesaura.api.aura.container.IAuraContainer;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
import de.ellpeck.naturesaura.recipes.AltarRecipe;
import de.ellpeck.naturesaura.blocks.multi.Multiblocks;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticleStream;
import de.ellpeck.naturesaura.packet.PacketParticles;
import de.ellpeck.naturesaura.recipes.AltarRecipe;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import net.minecraft.block.BlockState;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.util.Direction;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundCategory;
import net.minecraft.util.SoundEvents;

View file

@ -1,25 +1,23 @@
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import de.ellpeck.naturesaura.recipes.OfferingRecipe;
import de.ellpeck.naturesaura.blocks.multi.Multiblocks;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticles;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import de.ellpeck.naturesaura.recipes.OfferingRecipe;
import net.minecraft.block.Blocks;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.effect.LightningBoltEntity;
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.nbt.INBT;
import net.minecraft.nbt.ListNBT;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.util.Direction;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraft.world.World;
import net.minecraft.world.server.ServerWorld;
import net.minecraftforge.items.IItemHandlerModifiable;
import net.minecraftforge.items.ItemStackHandler;
@ -86,6 +84,11 @@ public class TileEntityOfferingTable extends TileEntityImpl implements ITickable
for (int i = 0; i < recipeCount; i++)
this.itemsToSpawn.add(recipe.output.copy());
if (Multiblocks.OFFERING_TABLE.forEach(this.pos, 'R', (pos, m) -> this.world.getBlockState(pos).getBlock() == Blocks.WITHER_ROSE)) {
for (int i = this.world.rand.nextInt(5) + 3; i >= 0; i--)
this.itemsToSpawn.add(new ItemStack(Items.BLACK_DYE));
}
LightningBoltEntity lightningboltentity = EntityType.LIGHTNING_BOLT.create(this.world);
lightningboltentity.setEffectOnly(true);
lightningboltentity.moveForced(Vector3d.copyCenteredHorizontally(this.pos));

View file

@ -1,7 +1,6 @@
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.chunk.AuraChunk;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticles;
import net.minecraft.entity.monster.MagmaCubeEntity;

View file

@ -3,15 +3,11 @@ package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
import de.ellpeck.naturesaura.api.misc.WeatherType;
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.tileentity.TileEntityType;
import net.minecraft.util.EntityPredicates;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;

View file

@ -1,11 +1,10 @@
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.recipes.TreeRitualRecipe;
import de.ellpeck.naturesaura.blocks.multi.Multiblocks;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticleStream;
import de.ellpeck.naturesaura.packet.PacketParticles;
import de.ellpeck.naturesaura.recipes.TreeRitualRecipe;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.block.LeavesBlock;
@ -16,7 +15,6 @@ import net.minecraft.nbt.CompoundNBT;
import net.minecraft.tags.BlockTags;
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Direction;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundCategory;
import net.minecraft.util.SoundEvents;

View file

@ -1,8 +1,6 @@
package de.ellpeck.naturesaura.blocks.tiles.render;
import com.mojang.blaze3d.matrix.MatrixStack;
import com.mojang.blaze3d.platform.GlStateManager;
import com.mojang.blaze3d.systems.RenderSystem;
import com.mojang.blaze3d.vertex.IVertexBuilder;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;

View file

@ -4,7 +4,6 @@ import com.mojang.blaze3d.matrix.MatrixStack;
import de.ellpeck.naturesaura.blocks.tiles.TileEntityWoodStand;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.IRenderTypeBuffer;
import net.minecraft.client.renderer.RenderTypeLookup;
import net.minecraft.client.renderer.model.ItemCameraTransforms;
import net.minecraft.client.renderer.tileentity.TileEntityRenderer;
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;

View file

@ -15,9 +15,11 @@ import net.minecraft.item.BlockItemUseContext;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemUseContext;
import net.minecraft.tags.ITag;
import net.minecraft.tags.Tag;
import net.minecraft.util.*;
import net.minecraft.util.math.*;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraft.world.World;
import net.minecraft.world.chunk.Chunk;

View file

@ -9,7 +9,6 @@ import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.tags.ITag;
import net.minecraft.tags.ItemTags;
import net.minecraft.tags.Tag;
import net.minecraft.util.Direction;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.common.MinecraftForge;
@ -17,13 +16,11 @@ import net.minecraftforge.common.capabilities.Capability;
import net.minecraftforge.common.capabilities.ICapabilityProvider;
import net.minecraftforge.common.util.LazyOptional;
import net.minecraftforge.event.AttachCapabilitiesEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.InterModComms;
import net.minecraftforge.fml.event.lifecycle.InterModEnqueueEvent;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
import top.theillusivec4.curios.api.CuriosCapability;
import top.theillusivec4.curios.api.SlotTypeMessage;
import top.theillusivec4.curios.api.SlotTypePreset;
import top.theillusivec4.curios.api.type.capability.ICurio;
import javax.annotation.Nonnull;

View file

@ -6,7 +6,6 @@ import de.ellpeck.naturesaura.enchant.ModEnchantments;
import net.minecraftforge.event.TickEvent;
import net.minecraftforge.fml.DeferredWorkQueue;
import quarris.enchantability.api.EnchantabilityApi;
import quarris.enchantability.api.EnchantabilityApi.IInternals;
import java.util.Collections;

View file

@ -2,10 +2,8 @@ package de.ellpeck.naturesaura.compat.jei;
import com.google.common.collect.ImmutableList;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.recipes.AltarRecipe;
import de.ellpeck.naturesaura.blocks.ModBlocks;
import de.ellpeck.naturesaura.items.ItemAuraBottle;
import de.ellpeck.naturesaura.items.ModItems;
import de.ellpeck.naturesaura.recipes.AltarRecipe;
import mezz.jei.api.constants.VanillaTypes;
import mezz.jei.api.gui.IRecipeLayout;
import mezz.jei.api.gui.drawable.IDrawable;

View file

@ -8,23 +8,18 @@ import de.ellpeck.naturesaura.api.multiblock.Matcher;
import de.ellpeck.naturesaura.compat.ICompat;
import de.ellpeck.naturesaura.data.ItemTagProvider;
import de.ellpeck.naturesaura.events.ClientEvents;
import de.ellpeck.naturesaura.recipes.ModRecipe;
import de.ellpeck.naturesaura.recipes.ModRecipes;
import de.ellpeck.naturesaura.renderers.SupporterFancyHandler;
import de.ellpeck.naturesaura.renderers.SupporterFancyHandler.FancyInfo;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.AbstractGui;
import net.minecraft.client.renderer.RenderHelper;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.item.crafting.IRecipeType;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.item.crafting.RecipeManager;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.StringTextComponent;
import net.minecraft.util.text.Style;
import net.minecraft.util.text.TextFormatting;
import net.minecraft.world.World;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.common.MinecraftForge;
@ -37,7 +32,8 @@ import vazkii.patchouli.api.PatchouliAPI;
import java.time.LocalDateTime;
import java.time.Month;
import java.util.*;
import java.util.Arrays;
import java.util.Collections;
import java.util.stream.Collectors;
public class PatchouliCompat implements ICompat {

View file

@ -1,14 +1,10 @@
package de.ellpeck.naturesaura.compat.patchouli;
import de.ellpeck.naturesaura.recipes.AltarRecipe;
import de.ellpeck.naturesaura.items.ItemAuraBottle;
import de.ellpeck.naturesaura.items.ModItems;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.Ingredient;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import vazkii.patchouli.api.PatchouliAPI;
public class ProcessorAltar implements IComponentProcessor {

View file

@ -1,13 +1,11 @@
package de.ellpeck.naturesaura.compat.patchouli;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.recipes.AnimalSpawnerRecipe;
import net.minecraft.item.ItemStack;
import net.minecraft.item.SpawnEggItem;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import vazkii.patchouli.api.PatchouliAPI;
public class ProcessorAnimalSpawner implements IComponentProcessor {

View file

@ -1,11 +1,9 @@
package de.ellpeck.naturesaura.compat.patchouli;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.recipes.OfferingRecipe;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import vazkii.patchouli.api.PatchouliAPI;
public class ProcessorOffering implements IComponentProcessor {

View file

@ -1,11 +1,9 @@
package de.ellpeck.naturesaura.compat.patchouli;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.recipes.TreeRitualRecipe;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import vazkii.patchouli.api.PatchouliAPI;
public class ProcessorTreeRitual implements IComponentProcessor {

View file

@ -9,7 +9,6 @@ import net.minecraft.item.Item;
import net.minecraft.tags.BlockTags;
import net.minecraft.tags.ITag;
import net.minecraft.tags.ItemTags;
import net.minecraft.tags.Tag;
import net.minecraftforge.common.Tags;
import net.minecraftforge.common.data.ExistingFileHelper;

View file

@ -17,7 +17,6 @@ import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraft.world.World;
import net.minecraftforge.common.ForgeHooks;
import net.minecraftforge.fml.network.NetworkHooks;
public class EntityStructureFinder extends EyeOfEnderEntity {

View file

@ -13,7 +13,6 @@ import net.minecraft.client.renderer.texture.AtlasTexture;
import net.minecraft.client.renderer.texture.OverlayTexture;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraft.util.math.vector.Vector3f;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;

View file

@ -10,17 +10,13 @@ import net.minecraft.block.material.Material;
import net.minecraft.util.Direction.Axis;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.MutableBoundingBox;
import net.minecraft.world.ISeedReader;
import net.minecraft.world.IWorldWriter;
import net.minecraft.world.gen.ChunkGenerator;
import net.minecraft.world.gen.IWorldGenerationReader;
import net.minecraft.world.gen.feature.BaseTreeFeatureConfig;
import net.minecraft.world.gen.feature.Feature;
import net.minecraft.world.gen.feature.TreeFeature;
import java.util.Random;
import java.util.Set;
public class WorldGenAncientTree extends Feature<BaseTreeFeatureConfig> {

View file

@ -8,8 +8,6 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.ISeedReader;
import net.minecraft.world.IWorld;
import net.minecraft.world.World;
import net.minecraft.world.gen.ChunkGenerator;
import net.minecraft.world.gen.Heightmap;
import net.minecraft.world.gen.feature.Feature;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;

View file

@ -2,7 +2,6 @@ package de.ellpeck.naturesaura.items;
import com.mojang.blaze3d.matrix.MatrixStack;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.container.IAuraContainer;
import de.ellpeck.naturesaura.api.aura.container.ItemAuraContainer;

View file

@ -1,14 +1,10 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.misc.IWorldData;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.ElytraItem;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.util.text.*;
import net.minecraft.world.World;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.common.MinecraftForge;
@ -17,7 +13,6 @@ import net.minecraftforge.event.entity.player.ItemTooltipEvent;
import net.minecraftforge.event.entity.player.PlayerEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import java.lang.ref.WeakReference;
import java.util.List;
public class ItemBreakPrevention extends ItemImpl {

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import net.minecraft.block.BlockState;
import net.minecraft.entity.EntitySpawnPlacementRegistry;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.data.ItemModelGenerator;
import de.ellpeck.naturesaura.misc.ColoredBlockHelper;

View file

@ -1,7 +1,6 @@
package de.ellpeck.naturesaura.items;
import com.mojang.blaze3d.matrix.MatrixStack;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.render.ITrinketItem;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.IRenderTypeBuffer;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import net.minecraft.item.ItemStack;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.blocks.BlockGoldenLeaves;
import de.ellpeck.naturesaura.reg.IColorProvidingItem;
import net.minecraft.client.renderer.color.IItemColor;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.entities.EntityMoverMinecart;
import de.ellpeck.naturesaura.entities.ModEntities;
import net.minecraft.block.AbstractRailBlock;

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.multiblock.IMultiblock;
import net.minecraft.entity.player.PlayerEntity;

View file

@ -1,21 +1,15 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.entity.Entity;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.MobSpawnerTileEntity;
import net.minecraft.util.ActionResult;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.Hand;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.items.CapabilityItemHandler;
public class ItemNetheriteFinder extends ItemImpl {
public ItemNetheriteFinder() {

View file

@ -1,7 +1,6 @@
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.packet.PacketHandler;
import de.ellpeck.naturesaura.packet.PacketParticles;
@ -10,11 +9,9 @@ import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.passive.TameableEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.entity.player.SpawnLocationHelper;
import net.minecraft.item.ItemStack;
import net.minecraft.particles.ParticleTypes;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.Hand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraft.util.text.TextFormatting;

View file

@ -10,7 +10,10 @@ import net.minecraft.entity.Entity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemUseContext;
import net.minecraft.util.*;
import net.minecraft.util.ActionResult;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.Hand;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.text.TranslationTextComponent;
import net.minecraft.world.World;

View file

@ -1,7 +1,6 @@
package de.ellpeck.naturesaura.items;
import com.mojang.blaze3d.matrix.MatrixStack;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.render.ITrinketItem;
import de.ellpeck.naturesaura.items.tools.ItemArmor;

View file

@ -11,7 +11,6 @@ import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraft.world.gen.feature.structure.Structure;
import net.minecraft.world.server.ServerWorld;
import net.minecraft.world.storage.ServerWorldInfo;
public class ItemStructureFinder extends ItemImpl {
private final Structure structureName;

View file

@ -16,7 +16,6 @@ import net.minecraft.item.*;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.potion.EffectInstance;
import net.minecraft.potion.Effects;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.common.capabilities.ICapabilityProvider;
import net.minecraftforge.event.TickEvent;
import net.minecraftforge.event.entity.living.LivingAttackEvent;
@ -25,7 +24,10 @@ import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.registries.ForgeRegistries;
import javax.annotation.Nullable;
import java.util.*;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
public class ItemArmor extends ArmorItem implements IModItem {

View file

@ -9,20 +9,14 @@ import de.ellpeck.naturesaura.reg.IModItem;
import de.ellpeck.naturesaura.reg.ModRegistry;
import net.minecraft.block.BlockState;
import net.minecraft.block.BushBlock;
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.*;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.Direction;
import net.minecraft.util.SoundCategory;
import net.minecraft.util.SoundEvents;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.util.math.RayTraceResult;
import net.minecraft.world.World;
import net.minecraftforge.common.IPlantable;
import net.minecraftforge.common.capabilities.ICapabilityProvider;
import javax.annotation.Nullable;

View file

@ -5,7 +5,6 @@ import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IWorld;
import net.minecraft.world.World;
import net.minecraftforge.fml.network.NetworkRegistry;
import net.minecraftforge.fml.network.PacketDistributor;

View file

@ -8,8 +8,6 @@ import de.ellpeck.naturesaura.entities.EntityStructureFinder;
import net.minecraft.block.BlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.WorldRenderer;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.network.PacketBuffer;
import net.minecraft.particles.ItemParticleData;
import net.minecraft.particles.ParticleTypes;

View file

@ -6,14 +6,12 @@ import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
import de.ellpeck.naturesaura.items.ItemAuraBottle;
import de.ellpeck.naturesaura.items.ModItems;
import net.minecraft.data.IFinishedRecipe;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraft.item.crafting.IRecipeType;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.network.PacketBuffer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.TextFormatting;
import net.minecraft.util.text.TranslationTextComponent;
import net.minecraftforge.common.crafting.CraftingHelper;
import net.minecraftforge.registries.ForgeRegistryEntry;

View file

@ -1,11 +1,9 @@
package de.ellpeck.naturesaura.recipes;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.MobEntity;
import net.minecraft.entity.SpawnReason;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipeSerializer;
@ -14,10 +12,8 @@ import net.minecraft.item.crafting.Ingredient;
import net.minecraft.network.PacketBuffer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.World;
import net.minecraft.world.server.ServerWorld;
import net.minecraft.world.storage.ServerWorldInfo;
import net.minecraftforge.registries.ForgeRegistries;
import net.minecraftforge.registries.ForgeRegistryEntry;

View file

@ -1,10 +1,7 @@
package de.ellpeck.naturesaura.recipes;
import com.google.gson.JsonObject;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraft.item.crafting.IRecipeType;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import net.minecraftforge.items.wrapper.RecipeWrapper;

View file

@ -8,7 +8,6 @@ import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.misc.WeatherType;
import de.ellpeck.naturesaura.api.misc.WeightedOre;
import net.minecraft.block.Blocks;
import net.minecraft.client.resources.ReloadListener;
import net.minecraft.entity.EntityType;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
@ -20,11 +19,8 @@ import net.minecraft.nbt.INBT;
import net.minecraft.nbt.NBTDynamicOps;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.registry.Registry;
import net.minecraftforge.common.Tags;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.registries.IForgeRegistry;
import java.util.Arrays;
import java.util.List;
public final class ModRecipes {

View file

@ -1,6 +1,5 @@
package de.ellpeck.naturesaura.recipes;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import net.minecraft.item.ItemStack;

View file

@ -1,7 +1,6 @@
package de.ellpeck.naturesaura.reg;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.ModConfig;
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.misc.IWorldData;
import de.ellpeck.naturesaura.blocks.*;

View file

@ -20,8 +20,6 @@ import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.items.IItemHandler;
import top.theillusivec4.curios.api.CuriosApi;
import top.theillusivec4.curios.api.type.capability.ICuriosItemHandler;
import top.theillusivec4.curios.api.type.inventory.ICurioStacksHandler;
import java.util.HashSet;
import java.util.Set;

View file

@ -4,20 +4,20 @@
# Note that there are a couple of TOML lists in this file.
# Find more information on toml format here: https://github.com/toml-lang/toml
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
modLoader = "javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="[28,)" #mandatory (28 is current forge version)
loaderVersion = "[28,)" #mandatory (28 is current forge version)
# A URL to refer people to when problems occur with this mod
issueTrackerURL="https://github.com/Ellpeck/NaturesAura" #optional
license="GPLv3"
issueTrackerURL = "https://github.com/Ellpeck/NaturesAura" #optional
license = "GPLv3"
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
# The modid of the mod
modId="naturesaura" #mandatory
modId = "naturesaura" #mandatory
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
version="${file.jarVersion}"
# A display name for the mod
displayName="Nature's Aura" #mandatory
version = "${file.jarVersion}"
# A display name for the mod
displayName = "Nature's Aura" #mandatory
# A URL to query for updates for this mod. See the JSON update specification <here>
#updateJSONURL="http://myurl.me/" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
@ -27,22 +27,22 @@ displayName="Nature's Aura" #mandatory
# A text field displayed in the mod UI
#credits="" #optional
# A text field displayed in the mod UI
authors="Ellpeck" #optional
authors = "Ellpeck" #optional
# The description text for the mod (multi line!) (#mandatory)
description='''
description = '''
Nature's Aura is a Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.naturesaura]] #optional
# the modid of the dependency
modId="patchouli" #mandatory
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[1.16.2-44,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
side="BOTH"
# the modid of the dependency
modId = "patchouli" #mandatory
# Does this dependency have to exist - if not, ordering below must be specified
mandatory = true #mandatory
# The version range of the dependency
versionRange = "[1.16.2-44,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering = "NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
side = "BOTH"
# Here's another dependency
#[[dependencies.naturesaura]]
# modId="minecraft"

View file

@ -12,12 +12,30 @@
"from": [3, 0, 3],
"to": [13, 1, 13],
"faces": {
"north": {"uv": [0, 0, 10, 1], "texture": "#0"},
"east": {"uv": [0, 0, 10, 1], "texture": "#0"},
"south": {"uv": [0, 0, 10, 1], "texture": "#0"},
"west": {"uv": [0, 0, 10, 1], "texture": "#0"},
"up": {"uv": [0, 0, 10, 10], "texture": "#0"},
"down": {"uv": [0, 0, 10, 10], "texture": "#0"}
"north": {
"uv": [0, 0, 10, 1],
"texture": "#0"
},
"east": {
"uv": [0, 0, 10, 1],
"texture": "#0"
},
"south": {
"uv": [0, 0, 10, 1],
"texture": "#0"
},
"west": {
"uv": [0, 0, 10, 1],
"texture": "#0"
},
"up": {
"uv": [0, 0, 10, 10],
"texture": "#0"
},
"down": {
"uv": [0, 0, 10, 10],
"texture": "#0"
}
}
},
{
@ -25,12 +43,30 @@
"from": [4, 1, 4],
"to": [12, 2, 12],
"faces": {
"north": {"uv": [0, 0, 8, 1], "texture": "#0"},
"east": {"uv": [0, 0, 8, 1], "texture": "#0"},
"south": {"uv": [0, 0, 8, 1], "texture": "#0"},
"west": {"uv": [0, 0, 8, 1], "texture": "#0"},
"up": {"uv": [0, 0, 8, 8], "texture": "#0"},
"down": {"uv": [0, 0, 8, 8], "texture": "#0"}
"north": {
"uv": [0, 0, 8, 1],
"texture": "#0"
},
"east": {
"uv": [0, 0, 8, 1],
"texture": "#0"
},
"south": {
"uv": [0, 0, 8, 1],
"texture": "#0"
},
"west": {
"uv": [0, 0, 8, 1],
"texture": "#0"
},
"up": {
"uv": [0, 0, 8, 8],
"texture": "#0"
},
"down": {
"uv": [0, 0, 8, 8],
"texture": "#0"
}
}
},
{
@ -38,12 +74,30 @@
"from": [6, 2, 6],
"to": [10, 7, 10],
"faces": {
"north": {"uv": [0, 0, 4, 5], "texture": "#0"},
"east": {"uv": [0, 0, 4, 5], "texture": "#0"},
"south": {"uv": [0, 0, 4, 5], "texture": "#0"},
"west": {"uv": [0, 0, 4, 5], "texture": "#0"},
"up": {"uv": [0, 0, 4, 4], "texture": "#0"},
"down": {"uv": [0, 0, 4, 4], "texture": "#0"}
"north": {
"uv": [0, 0, 4, 5],
"texture": "#0"
},
"east": {
"uv": [0, 0, 4, 5],
"texture": "#0"
},
"south": {
"uv": [0, 0, 4, 5],
"texture": "#0"
},
"west": {
"uv": [0, 0, 4, 5],
"texture": "#0"
},
"up": {
"uv": [0, 0, 4, 4],
"texture": "#0"
},
"down": {
"uv": [0, 0, 4, 4],
"texture": "#0"
}
}
},
{
@ -51,12 +105,30 @@
"from": [5, 7, 5],
"to": [11, 13, 11],
"faces": {
"north": {"uv": [0, 0, 6, 6], "texture": "#1"},
"east": {"uv": [0, 0, 6, 6], "texture": "#1"},
"south": {"uv": [0, 0, 6, 6], "texture": "#1"},
"west": {"uv": [0, 0, 6, 6], "texture": "#1"},
"up": {"uv": [6, 0, 12, 6], "texture": "#1"},
"down": {"uv": [6, 0, 12, 6], "texture": "#1"}
"north": {
"uv": [0, 0, 6, 6],
"texture": "#1"
},
"east": {
"uv": [0, 0, 6, 6],
"texture": "#1"
},
"south": {
"uv": [0, 0, 6, 6],
"texture": "#1"
},
"west": {
"uv": [0, 0, 6, 6],
"texture": "#1"
},
"up": {
"uv": [6, 0, 12, 6],
"texture": "#1"
},
"down": {
"uv": [6, 0, 12, 6],
"texture": "#1"
}
}
}
]

View file

@ -13,124 +13,287 @@
"from": [0, 0, 0],
"to": [16, 1, 16],
"faces": {
"north": {"uv": [0, 0, 16, 1], "texture": "#0"},
"east": {"uv": [0, 0, 16, 1], "texture": "#0"},
"south": {"uv": [0, 0, 16, 1], "texture": "#0"},
"west": {"uv": [0, 0, 16, 1], "texture": "#0"},
"up": {"uv": [0, 0, 16, 16], "texture": "#0"},
"down": {"uv": [0, 0, 16, 16], "texture": "#0"}
"north": {
"uv": [0, 0, 16, 1],
"texture": "#0"
},
"east": {
"uv": [0, 0, 16, 1],
"texture": "#0"
},
"south": {
"uv": [0, 0, 16, 1],
"texture": "#0"
},
"west": {
"uv": [0, 0, 16, 1],
"texture": "#0"
},
"up": {
"uv": [0, 0, 16, 16],
"texture": "#0"
},
"down": {
"uv": [0, 0, 16, 16],
"texture": "#0"
}
}
},
{
"from": [2, 14, 2],
"to": [14, 15, 14],
"faces": {
"up": {"uv": [2, 2, 14, 14], "texture": "#1"},
"down": {"uv": [2, 2, 14, 14], "texture": "#1"}
"up": {
"uv": [2, 2, 14, 14],
"texture": "#1"
},
"down": {
"uv": [2, 2, 14, 14],
"texture": "#1"
}
}
},
{
"from": [2, 1, 1],
"to": [14, 15, 2],
"faces": {
"north": {"uv": [2, 1, 14, 15], "texture": "#1"},
"east": {"uv": [2, 1, 3, 15], "texture": "#1"},
"west": {"uv": [2, 1, 3, 15], "texture": "#1"},
"up": {"uv": [2, 1, 14, 2], "texture": "#1"}
"north": {
"uv": [2, 1, 14, 15],
"texture": "#1"
},
"east": {
"uv": [2, 1, 3, 15],
"texture": "#1"
},
"west": {
"uv": [2, 1, 3, 15],
"texture": "#1"
},
"up": {
"uv": [2, 1, 14, 2],
"texture": "#1"
}
}
},
{
"from": [2, 1, 14],
"to": [14, 15, 15],
"faces": {
"east": {"uv": [2, 1, 3, 15], "texture": "#1"},
"south": {"uv": [2, 1, 14, 15], "texture": "#1"},
"west": {"uv": [2, 1, 3, 15], "texture": "#1"},
"up": {"uv": [2, 1, 14, 2], "texture": "#1"}
"east": {
"uv": [2, 1, 3, 15],
"texture": "#1"
},
"south": {
"uv": [2, 1, 14, 15],
"texture": "#1"
},
"west": {
"uv": [2, 1, 3, 15],
"texture": "#1"
},
"up": {
"uv": [2, 1, 14, 2],
"texture": "#1"
}
}
},
{
"from": [1, 1, 1],
"to": [2, 15, 15],
"faces": {
"north": {"uv": [1, 1, 2, 15], "texture": "#1"},
"south": {"uv": [1, 1, 2, 15], "texture": "#1"},
"west": {"uv": [1, 1, 15, 15], "texture": "#1"},
"up": {"uv": [1, 1, 2, 15], "texture": "#1"}
"north": {
"uv": [1, 1, 2, 15],
"texture": "#1"
},
"south": {
"uv": [1, 1, 2, 15],
"texture": "#1"
},
"west": {
"uv": [1, 1, 15, 15],
"texture": "#1"
},
"up": {
"uv": [1, 1, 2, 15],
"texture": "#1"
}
}
},
{
"from": [14, 1, 1],
"to": [15, 15, 15],
"faces": {
"north": {"uv": [1, 1, 2, 15], "texture": "#1"},
"east": {"uv": [1, 1, 15, 15], "texture": "#1"},
"south": {"uv": [1, 1, 2, 15], "texture": "#1"},
"up": {"uv": [1, 1, 2, 15], "texture": "#1"}
"north": {
"uv": [1, 1, 2, 15],
"texture": "#1"
},
"east": {
"uv": [1, 1, 15, 15],
"texture": "#1"
},
"south": {
"uv": [1, 1, 2, 15],
"texture": "#1"
},
"up": {
"uv": [1, 1, 2, 15],
"texture": "#1"
}
}
},
{
"from": [4, 1, 4],
"to": [12, 2, 12],
"faces": {
"north": {"uv": [0, 0, 8, 1], "texture": "#2"},
"east": {"uv": [0, 0, 8, 1], "texture": "#2"},
"south": {"uv": [0, 0, 8, 1], "texture": "#2"},
"west": {"uv": [0, 0, 8, 1], "texture": "#2"},
"up": {"uv": [1, 1, 9, 9], "texture": "#2"},
"down": {"uv": [1, 1, 9, 9], "texture": "#2"}
"north": {
"uv": [0, 0, 8, 1],
"texture": "#2"
},
"east": {
"uv": [0, 0, 8, 1],
"texture": "#2"
},
"south": {
"uv": [0, 0, 8, 1],
"texture": "#2"
},
"west": {
"uv": [0, 0, 8, 1],
"texture": "#2"
},
"up": {
"uv": [1, 1, 9, 9],
"texture": "#2"
},
"down": {
"uv": [1, 1, 9, 9],
"texture": "#2"
}
}
},
{
"from": [3, 2, 4],
"to": [4, 9, 12],
"faces": {
"north": {"uv": [0, 0, 1, 7], "texture": "#2"},
"east": {"uv": [1, 1, 9, 8], "texture": "#2"},
"south": {"uv": [0, 0, 1, 7], "texture": "#2"},
"west": {"uv": [1, 1, 9, 8], "texture": "#2"},
"up": {"uv": [0, 0, 1, 8], "texture": "#2"},
"down": {"uv": [0, 0, 1, 8], "texture": "#2"}
"north": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"east": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"south": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"west": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"up": {
"uv": [0, 0, 1, 8],
"texture": "#2"
},
"down": {
"uv": [0, 0, 1, 8],
"texture": "#2"
}
}
},
{
"from": [12, 2, 4],
"to": [13, 9, 12],
"faces": {
"north": {"uv": [0, 0, 1, 7], "texture": "#2"},
"east": {"uv": [1, 1, 9, 8], "texture": "#2"},
"south": {"uv": [0, 0, 1, 7], "texture": "#2"},
"west": {"uv": [1, 1, 9, 8], "texture": "#2"},
"up": {"uv": [0, 0, 1, 8], "texture": "#2"},
"down": {"uv": [0, 0, 1, 8], "texture": "#2"}
"north": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"east": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"south": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"west": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"up": {
"uv": [0, 0, 1, 8],
"texture": "#2"
},
"down": {
"uv": [0, 0, 1, 8],
"texture": "#2"
}
}
},
{
"from": [4, 2, 3],
"to": [12, 9, 4],
"faces": {
"north": {"uv": [1, 1, 9, 8], "texture": "#2"},
"east": {"uv": [0, 0, 1, 7], "texture": "#2"},
"south": {"uv": [1, 1, 9, 8], "texture": "#2"},
"west": {"uv": [0, 0, 1, 7], "texture": "#2"},
"up": {"uv": [0, 0, 8, 1], "texture": "#2"},
"down": {"uv": [0, 0, 8, 1], "texture": "#2"}
"north": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"east": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"south": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"west": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"up": {
"uv": [0, 0, 8, 1],
"texture": "#2"
},
"down": {
"uv": [0, 0, 8, 1],
"texture": "#2"
}
}
},
{
"from": [4, 2, 12],
"to": [12, 9, 13],
"faces": {
"north": {"uv": [1, 1, 9, 8], "texture": "#2"},
"east": {"uv": [0, 0, 1, 7], "texture": "#2"},
"south": {"uv": [1, 1, 9, 8], "texture": "#2"},
"west": {"uv": [0, 0, 1, 7], "texture": "#2"},
"up": {"uv": [0, 0, 8, 1], "texture": "#2"},
"down": {"uv": [0, 0, 8, 1], "texture": "#2"}
"north": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"east": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"south": {
"uv": [1, 1, 9, 8],
"texture": "#2"
},
"west": {
"uv": [0, 0, 1, 7],
"texture": "#2"
},
"up": {
"uv": [0, 0, 8, 1],
"texture": "#2"
},
"down": {
"uv": [0, 0, 8, 1],
"texture": "#2"
}
}
}
],
"groups": [0,
"groups": [
0,
{
"name": "glass",
"origin": [8, 8, 8],

View file

@ -13,12 +13,30 @@
"from": [0, 0, 0],
"to": [16, 3, 16],
"faces": {
"north": {"uv": [0, 6, 16, 9], "texture": "#0"},
"east": {"uv": [0, 6, 16, 9], "texture": "#0"},
"south": {"uv": [0, 6, 16, 9], "texture": "#0"},
"west": {"uv": [0, 6, 16, 9], "texture": "#0"},
"up": {"uv": [0, 0, 16, 16], "texture": "#1"},
"down": {"uv": [0, 0, 16, 16], "texture": "#1"}
"north": {
"uv": [0, 6, 16, 9],
"texture": "#0"
},
"east": {
"uv": [0, 6, 16, 9],
"texture": "#0"
},
"south": {
"uv": [0, 6, 16, 9],
"texture": "#0"
},
"west": {
"uv": [0, 6, 16, 9],
"texture": "#0"
},
"up": {
"uv": [0, 0, 16, 16],
"texture": "#1"
},
"down": {
"uv": [0, 0, 16, 16],
"texture": "#1"
}
}
},
{
@ -26,12 +44,30 @@
"from": [1, 3, 1],
"to": [15, 5, 15],
"faces": {
"north": {"uv": [1, 13, 15, 15], "texture": "#0"},
"east": {"uv": [1, 13, 15, 15], "texture": "#0"},
"south": {"uv": [1, 13, 15, 15], "texture": "#0"},
"west": {"uv": [1, 13, 15, 15], "texture": "#0"},
"up": {"uv": [1, 1, 15, 15], "texture": "#1"},
"down": {"uv": [1, 1, 15, 15], "texture": "#1"}
"north": {
"uv": [1, 13, 15, 15],
"texture": "#0"
},
"east": {
"uv": [1, 13, 15, 15],
"texture": "#0"
},
"south": {
"uv": [1, 13, 15, 15],
"texture": "#0"
},
"west": {
"uv": [1, 13, 15, 15],
"texture": "#0"
},
"up": {
"uv": [1, 1, 15, 15],
"texture": "#1"
},
"down": {
"uv": [1, 1, 15, 15],
"texture": "#1"
}
}
},
{
@ -39,12 +75,30 @@
"from": [1, 5, 3],
"to": [15, 9, 13],
"faces": {
"north": {"uv": [1, 11, 15, 15], "texture": "#2"},
"east": {"uv": [3, 11, 13, 15], "texture": "#0"},
"south": {"uv": [1, 11, 15, 15], "texture": "#2"},
"west": {"uv": [3, 11, 13, 15], "texture": "#0"},
"up": {"uv": [1, 3, 15, 13], "texture": "#1"},
"down": {"uv": [1, 3, 15, 13], "texture": "#1"}
"north": {
"uv": [1, 11, 15, 15],
"texture": "#2"
},
"east": {
"uv": [3, 11, 13, 15],
"texture": "#0"
},
"south": {
"uv": [1, 11, 15, 15],
"texture": "#2"
},
"west": {
"uv": [3, 11, 13, 15],
"texture": "#0"
},
"up": {
"uv": [1, 3, 15, 13],
"texture": "#1"
},
"down": {
"uv": [1, 3, 15, 13],
"texture": "#1"
}
}
},
{
@ -52,12 +106,30 @@
"from": [1, 9, 3],
"to": [15, 16, 5],
"faces": {
"north": {"uv": [1, 4, 15, 11], "texture": "#2"},
"east": {"uv": [1, 4, 3, 11], "texture": "#0"},
"south": {"uv": [1, 4, 15, 11], "texture": "#0"},
"west": {"uv": [1, 4, 3, 11], "texture": "#0"},
"up": {"uv": [1, 2, 15, 4], "texture": "#1"},
"down": {"uv": [1, 2, 15, 4], "texture": "#1"}
"north": {
"uv": [1, 4, 15, 11],
"texture": "#2"
},
"east": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"south": {
"uv": [1, 4, 15, 11],
"texture": "#0"
},
"west": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"up": {
"uv": [1, 2, 15, 4],
"texture": "#1"
},
"down": {
"uv": [1, 2, 15, 4],
"texture": "#1"
}
}
},
{
@ -65,12 +137,30 @@
"from": [1, 9, 11],
"to": [15, 16, 13],
"faces": {
"north": {"uv": [1, 4, 15, 11], "texture": "#0"},
"east": {"uv": [1, 4, 3, 11], "texture": "#0"},
"south": {"uv": [1, 4, 15, 11], "texture": "#2"},
"west": {"uv": [1, 4, 3, 11], "texture": "#0"},
"up": {"uv": [1, 2, 15, 4], "texture": "#1"},
"down": {"uv": [1, 2, 15, 4], "texture": "#1"}
"north": {
"uv": [1, 4, 15, 11],
"texture": "#0"
},
"east": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"south": {
"uv": [1, 4, 15, 11],
"texture": "#2"
},
"west": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"up": {
"uv": [1, 2, 15, 4],
"texture": "#1"
},
"down": {
"uv": [1, 2, 15, 4],
"texture": "#1"
}
}
},
{
@ -78,12 +168,30 @@
"from": [1, 9, 5],
"to": [3, 16, 11],
"faces": {
"north": {"uv": [1, 4, 3, 11], "texture": "#0"},
"east": {"uv": [1, 4, 7, 11], "texture": "#0"},
"south": {"uv": [1, 4, 3, 11], "texture": "#0"},
"west": {"uv": [1, 4, 7, 11], "texture": "#0"},
"up": {"uv": [1, 2, 3, 8], "texture": "#1"},
"down": {"uv": [1, 2, 3, 8], "texture": "#1"}
"north": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"east": {
"uv": [1, 4, 7, 11],
"texture": "#0"
},
"south": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"west": {
"uv": [1, 4, 7, 11],
"texture": "#0"
},
"up": {
"uv": [1, 2, 3, 8],
"texture": "#1"
},
"down": {
"uv": [1, 2, 3, 8],
"texture": "#1"
}
}
},
{
@ -91,12 +199,30 @@
"from": [13, 9, 5],
"to": [15, 16, 11],
"faces": {
"north": {"uv": [1, 4, 3, 11], "texture": "#0"},
"east": {"uv": [1, 4, 7, 11], "texture": "#0"},
"south": {"uv": [1, 4, 3, 11], "texture": "#0"},
"west": {"uv": [1, 4, 7, 11], "texture": "#0"},
"up": {"uv": [1, 2, 3, 8], "texture": "#1"},
"down": {"uv": [1, 2, 3, 8], "texture": "#1"}
"north": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"east": {
"uv": [1, 4, 7, 11],
"texture": "#0"
},
"south": {
"uv": [1, 4, 3, 11],
"texture": "#0"
},
"west": {
"uv": [1, 4, 7, 11],
"texture": "#0"
},
"up": {
"uv": [1, 2, 3, 8],
"texture": "#1"
},
"down": {
"uv": [1, 2, 3, 8],
"texture": "#1"
}
}
}
]

View file

@ -7,26 +7,82 @@
"water": "naturesaura:block/spring_water"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#frame", "cullface": "down" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#frame", "cullface": "up" },
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#frame", "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#frame", "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#frame", "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#frame", "cullface": "east" }
"down": {
"uv": [0, 0, 16, 16],
"texture": "#frame",
"cullface": "down"
},
"up": {
"uv": [0, 0, 16, 16],
"texture": "#frame",
"cullface": "up"
},
"north": {
"uv": [0, 0, 16, 16],
"texture": "#frame",
"cullface": "north"
},
"south": {
"uv": [0, 0, 16, 16],
"texture": "#frame",
"cullface": "south"
},
"west": {
"uv": [0, 0, 16, 16],
"texture": "#frame",
"cullface": "west"
},
"east": {
"uv": [0, 0, 16, 16],
"texture": "#frame",
"cullface": "east"
}
}
},
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#water", "tintindex": 0, "cullface": "down" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#water", "tintindex": 0, "cullface": "up" },
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#water", "tintindex": 0, "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#water", "tintindex": 0, "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#water", "tintindex": 0, "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#water", "tintindex": 0, "cullface": "east" }
"down": {
"uv": [0, 0, 16, 16],
"texture": "#water",
"tintindex": 0,
"cullface": "down"
},
"up": {
"uv": [0, 0, 16, 16],
"texture": "#water",
"tintindex": 0,
"cullface": "up"
},
"north": {
"uv": [0, 0, 16, 16],
"texture": "#water",
"tintindex": 0,
"cullface": "north"
},
"south": {
"uv": [0, 0, 16, 16],
"texture": "#water",
"tintindex": 0,
"cullface": "south"
},
"west": {
"uv": [0, 0, 16, 16],
"texture": "#water",
"tintindex": 0,
"cullface": "west"
},
"east": {
"uv": [0, 0, 16, 16],
"texture": "#water",
"tintindex": 0,
"cullface": "east"
}
}
}
]

View file

@ -12,12 +12,12 @@
"text": "However, it isn't always as easy as that. Making use of it wrongly, specifically $(thing)draining$() it completely from an area, will face the culprit with diminishing returns.$(br)So while $(aura) is plentiful and useful, abusing it would certainly be ill-advised.$(p)An additional thing to note is that, based on the world you are in - specifically, the $(item)dimension$(), different types of $(aura) will be present, making some mechanics work unlike expected."
},
{
"type":"text",
"text":"When it comes to the inner workings of $(aura), scientists are toubled to admit that they have not quite figured out how exactly it works yet.$(br)The only thing they know is that excess or missing amounts of $(aura) affect an area of varying size (based on the apparatus used) around the place the modification happened from.$(br)If an area is drained and a new generating instrument is added, it will renew the drained area first before creating its own luscious area."
"type": "text",
"text": "When it comes to the inner workings of $(aura), scientists are toubled to admit that they have not quite figured out how exactly it works yet.$(br)The only thing they know is that excess or missing amounts of $(aura) affect an area of varying size (based on the apparatus used) around the place the modification happened from.$(br)If an area is drained and a new generating instrument is added, it will renew the drained area first before creating its own luscious area."
},
{
"type":"text",
"text":"Similarly, if a draining instrument is placed close to a rich area, it will first drain that area before moving on to draining the area directly around itself.$(p)While this behavior surely sounds complicated, the consensus is that letting the apparatus and $(aura) do their thing for a while seems to be a good approach of analysis, as sometimes $(aura) tends to migrate and move around to balance itself out naturally."
"type": "text",
"text": "Similarly, if a draining instrument is placed close to a rich area, it will first drain that area before moving on to draining the area directly around itself.$(p)While this behavior surely sounds complicated, the consensus is that letting the apparatus and $(aura) do their thing for a while seems to be a good approach of analysis, as sometimes $(aura) tends to migrate and move around to balance itself out naturally."
}
]
}

View file

@ -11,7 +11,7 @@
{
"type": "text",
"text": "It needs be noted that the extended bar only shows if $(aura) levels are high or low enough.$(p)Secondly, the $(item)Environmental Ocular$() has the ability to display all $(thing)Aura Imbalance$() effects that are currently occuring in the place the user is standing. They are displayed in the form of icons next to the aura bar. To find out which icon represents which effect, the $(thing)Aura Imbalance$() section of this book can be used."
},{
}, {
"type": "text",
"text": "If an effect icon is crossed out, it's either an effect that requires $(l:effects/effect_powder)Effect Powder$() and there is none present, or it's an effect that is currently being inhibited by its corresponding powder.$(br)An additional perk is that, while the $(item)Environmental Eye$() needs to be held in the hotbar, the $(item)Environmental Ocular$() can be anywhere in the user's inventory to work.$(br)All other properties of the $(item)Environmental Eye$() carry over to the $(item)Environmental Ocular$() as expected."
},

View file

@ -12,12 +12,12 @@
"text": "However, it isn't always as easy as that. Making use of it wrongly, specifically $(thing)draining$() it completely from an area, will face the culprit with diminishing returns.$(br)So while $(aura) is plentiful and useful, abusing it would certainly be ill-advised.$(p)An additional thing to note is that, based on the world you are in - specifically, the $(item)dimension$(), different types of $(aura) will be present, making some mechanics work unlike expected."
},
{
"type":"text",
"text":"When it comes to the inner workings of $(aura), scientists are toubled to admit that they have not quite figured out how exactly it works yet.$(br)The only thing they know is that excess or missing amounts of $(aura) affect an area of varying size (based on the apparatus used) around the place the modification happened from.$(br)If an area is drained and a new generating instrument is added, it will renew the drained area first before creating its own luscious area."
"type": "text",
"text": "When it comes to the inner workings of $(aura), scientists are toubled to admit that they have not quite figured out how exactly it works yet.$(br)The only thing they know is that excess or missing amounts of $(aura) affect an area of varying size (based on the apparatus used) around the place the modification happened from.$(br)If an area is drained and a new generating instrument is added, it will renew the drained area first before creating its own luscious area."
},
{
"type":"text",
"text":"Similarly, if a draining instrument is placed close to a rich area, it will first drain that area before moving on to draining the area directly around itself.$(p)While this behavior surely sounds complicated, the consensus is that letting the apparatus and $(aura) do their thing for a while seems to be a good approach of analysis, as sometimes $(aura) tends to migrate and move around to balance itself out naturally."
"type": "text",
"text": "Similarly, if a draining instrument is placed close to a rich area, it will first drain that area before moving on to draining the area directly around itself.$(p)While this behavior surely sounds complicated, the consensus is that letting the apparatus and $(aura) do their thing for a while seems to be a good approach of analysis, as sometimes $(aura) tends to migrate and move around to balance itself out naturally."
}
]
}

View file

@ -11,7 +11,7 @@
{
"type": "text",
"text": "It needs be noted that the extended bar only shows if $(aura) levels are high or low enough.$(p)Secondly, the $(item)Environmental Ocular$() has the ability to display all $(thing)Aura Imbalance$() effects that are currently occuring in the place the user is standing. They are displayed in the form of icons next to the aura bar. To find out which icon represents which effect, the $(thing)Aura Imbalance$() section of this book can be used."
},{
}, {
"type": "text",
"text": "If an effect icon is crossed out, it's either an effect that requires $(l:effects/effect_powder)Effect Powder$() and there is none present, or it's an effect that is currently being inhibited by its corresponding powder.$(br)An additional perk is that, while the $(item)Environmental Eye$() needs to be held in the hotbar, the $(item)Environmental Ocular$() can be anywhere in the user's inventory to work.$(br)All other properties of the $(item)Environmental Eye$() carry over to the $(item)Environmental Ocular$() as expected."
},

View file

@ -12,12 +12,12 @@
"text": "然而,这并不总是那么容易。若使用不当,尤其是将其从一个区域中完全$(thing)抽干$(),就将受到自然的报复。$(br)所以即使$(#419600)灵气$()是充足且有用的,滥用也绝对是鲁莽的。$(p)另外需要注意的是,基于你所在的世界 - 特指$(item)维度$(), 会有不同形式的$(#419600)灵气$(), 使得一些设备不像预料中一样工作."
},
{
"type":"text",
"text":"当涉及到$(#419600)灵气$()的内部运作原理时,科学家们不得不承认他们还没有完全搞清楚它是如何运作的。$(br)唯一知道的是,$(#419600)灵气$()的过量或者缺失会对变化发生的地方造成不同范围(取决于使用的仪器)的影响。$(br)如果一个区域被抽干了,新放置的发生仪器会先翻新此区域再创建自己的芬芳领域。"
"type": "text",
"text": "当涉及到$(#419600)灵气$()的内部运作原理时,科学家们不得不承认他们还没有完全搞清楚它是如何运作的。$(br)唯一知道的是,$(#419600)灵气$()的过量或者缺失会对变化发生的地方造成不同范围(取决于使用的仪器)的影响。$(br)如果一个区域被抽干了,新放置的发生仪器会先翻新此区域再创建自己的芬芳领域。"
},
{
"type":"text",
"text":"类似地,如果消耗灵气的机器被放置在一个灵气富饶的区域附近,他将在抽取自己所处区域的灵气之前先抽取那片区域。$(p)固然这种行为听起来复杂,但一般分析认为,似乎让设备和$(#419600)灵气$()自由发挥一段时间就行了,因为有时$(#419600)灵气$()会自行移动来达到自然的平衡。"
"type": "text",
"text": "类似地,如果消耗灵气的机器被放置在一个灵气富饶的区域附近,他将在抽取自己所处区域的灵气之前先抽取那片区域。$(p)固然这种行为听起来复杂,但一般分析认为,似乎让设备和$(#419600)灵气$()自由发挥一段时间就行了,因为有时$(#419600)灵气$()会自行移动来达到自然的平衡。"
}
]
}

View file

@ -11,7 +11,7 @@
{
"type": "text",
"text": "需要注意的是,拓展的条只会在$(#419600)灵气$()水平足够高或者足够低时才出现。$(p)其次, $(item)环境目镜$()可以展示玩家当前位置发生的任何$(thing)灵气失衡$()效果. 查阅本书的$(thing)灵气失衡$()章节来了解图标对应的效果。"
},{
}, {
"type": "text",
"text": "如果某个效果的图标被划掉, 说明它要么是缺失所需的$(l:effects/effect_powder)效应粉末$()或者是被相应的效应粉末抑制了. $(br)环境目镜额外的好处是, 虽然$(item)环境之眼$()需要放在快捷栏, 但$(item)环境目镜$()可以在物品栏的任何位置发挥作用和.$(br)$(item)环境目镜$()如期望中的一样,拥有$(item)环境之眼$()所有功能."
},

View file

@ -12,8 +12,8 @@
"I": {
"item": "naturesaura:infused_iron"
},
"C":{
"item":"minecraft:cobblestone"
"C": {
"item": "minecraft:cobblestone"
}
},
"result": {

View file

@ -15,8 +15,8 @@
"H": {
"item": "minecraft:hopper"
},
"C":{
"item":"minecraft:cobblestone"
"C": {
"item": "minecraft:cobblestone"
}
},
"result": {