-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
86d16a1
commit 87642c3
Showing
90 changed files
with
887 additions
and
2,489 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
version_forge=11.15.0.1707 | ||
version_forge=11.15.1.1722 | ||
version_minecraft=1.8.9 | ||
version_major=0 | ||
version_minor=2 | ||
version_revis=1 | ||
version_minor=3 | ||
version_revis=0 | ||
version_mappings=snapshot_20160101 | ||
version_jei=2.21+ | ||
version_thaumcraft=5.1.0 | ||
version_jei=2.22+ | ||
version_thaumcraft=5.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package jeresources.api; | ||
|
||
public interface IJERAPI | ||
{ | ||
IMobRegistry getMobRegistry(); | ||
IWorldGenRegistry getWorldGenRegistry(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package jeresources.api; | ||
|
||
public interface IJERPlugin | ||
{ | ||
void APIDelivery(IJERAPI ijerapi); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package jeresources.api; | ||
|
||
import jeresources.api.conditionals.LightLevel; | ||
import jeresources.api.drop.DropItem; | ||
import jeresources.api.render.IMobRenderHook; | ||
import net.minecraft.entity.EntityLivingBase; | ||
|
||
public interface IMobRegistry | ||
{ | ||
void registerMob(EntityLivingBase entity, LightLevel lightLevel, int minExp, int maxExp, String[] biomes, DropItem... drops); | ||
void registerMob(EntityLivingBase entity, LightLevel lightLevel, String[] biomes, DropItem... drops); | ||
void registerMob(EntityLivingBase entity, LightLevel lightLevel, int exp, String[] biomes, DropItem... drops); | ||
void registerMob(EntityLivingBase entity, LightLevel lightLevel, int exp, DropItem... drops); | ||
void registerMob(EntityLivingBase entity, LightLevel lightLevel, int minExp, int maxExp, DropItem... drops); | ||
|
||
void registerDrops(Class<? extends EntityLivingBase> entity, DropItem... drops); | ||
|
||
void registerRenderHook(Class<? extends EntityLivingBase> entity, IMobRenderHook renderHook); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package jeresources.api; | ||
|
||
import jeresources.api.distributions.DistributionBase; | ||
import jeresources.api.drop.DropItem; | ||
import jeresources.api.restrictions.Restriction; | ||
import net.minecraft.item.ItemStack; | ||
|
||
public interface IWorldGenRegistry | ||
{ | ||
void register(ItemStack block, DistributionBase distribution, DropItem... drops); | ||
void register(ItemStack block, DistributionBase distribution, Restriction restriction, DropItem... drops); | ||
void register(ItemStack block, DistributionBase distribution, boolean silktouch, DropItem... drops); | ||
void register(ItemStack block, DistributionBase distribution, Restriction restriction, boolean silktouch, DropItem... drops); | ||
|
||
void registerDrops(ItemStack block, DropItem... drops); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package jeresources.api; | ||
|
||
/** | ||
* Implement {@link IJERPlugin} on a class with this interface | ||
*/ | ||
public @interface JERPlugin | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ils/conditionals/ExtendedConditional.java → ...api/conditionals/ExtendedConditional.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
src/main/java/jeresources/api/distributions/DistributionCustom.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
src/main/java/jeresources/api/distributions/DistributionSquare.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
src/main/java/jeresources/api/distributions/DistributionTriangular.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
src/main/java/jeresources/api/distributions/DistributionUnderWater.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.