Massive rework of configs, items and blocks.
I redone where the items/blocsks are stored and how the configs are handled to clean up it and give space. You can change the config line to AWWayofTime if you want to keep the compatibility with old configs. Now you reference the blocks from the ModBlocks and Items from the ModItems.
This commit is contained in:
parent
8601e9faff
commit
e3644f2d2b
304 changed files with 3941 additions and 5108 deletions
|
@ -4,13 +4,13 @@ import net.minecraftforge.common.ForgeDirection;
|
|||
|
||||
/**
|
||||
* @author Azanor
|
||||
* This interface is used by tiles that use or transport vis.
|
||||
* Only tiles that implement this interface will be able to connect to vis conduits or other thaumic devices
|
||||
* This interface is used by tiles that use or transport vis.
|
||||
* Only tiles that implement this interface will be able to connect to vis conduits or other thaumic devices
|
||||
*/
|
||||
public interface IEssentiaTransport
|
||||
{
|
||||
public interface IEssentiaTransport {
|
||||
/**
|
||||
* Is this tile able to connect to other vis users/sources on the specified side?
|
||||
*
|
||||
* @param face
|
||||
* @return
|
||||
*/
|
||||
|
@ -18,6 +18,7 @@ public interface IEssentiaTransport
|
|||
|
||||
/**
|
||||
* Is this side used to input essentia?
|
||||
*
|
||||
* @param face
|
||||
* @return
|
||||
*/
|
||||
|
@ -25,6 +26,7 @@ public interface IEssentiaTransport
|
|||
|
||||
/**
|
||||
* Is this side used to output essentia?
|
||||
*
|
||||
* @param face
|
||||
* @return
|
||||
*/
|
||||
|
@ -44,26 +46,29 @@ public interface IEssentiaTransport
|
|||
|
||||
/**
|
||||
* Sets the amount of suction this block will apply
|
||||
*
|
||||
* @param suction
|
||||
*/
|
||||
public void setSuction(AspectList suction);
|
||||
|
||||
/**
|
||||
* Sets the amount of suction this block will apply
|
||||
*
|
||||
* @param suction
|
||||
*/
|
||||
public void setSuction(Aspect aspect, int amount);
|
||||
|
||||
/**
|
||||
* Returns the amount of suction this block is applying.
|
||||
* @param loc
|
||||
* the location from where the suction is being checked
|
||||
*
|
||||
* @param loc the location from where the suction is being checked
|
||||
* @return
|
||||
*/
|
||||
public AspectList getSuction(ForgeDirection face);
|
||||
|
||||
/**
|
||||
* remove the specified amount of vis from this transport tile
|
||||
*
|
||||
* @param suction
|
||||
* @return how much was actually taken
|
||||
*/
|
||||
|
@ -73,6 +78,7 @@ public interface IEssentiaTransport
|
|||
|
||||
/**
|
||||
* Essentia will not be drawn from this container unless the suction exceeds this amount.
|
||||
*
|
||||
* @return the amount
|
||||
*/
|
||||
public int getMinimumSuction();
|
||||
|
@ -80,6 +86,7 @@ public interface IEssentiaTransport
|
|||
/**
|
||||
* Return true if you want the conduit to extend a little further into the block.
|
||||
* Used by jars and alembics that have smaller than normal hitboxes
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
boolean renderExtendedTube();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue