Small bit of framework for Soul Breath items, plus testing with the "Scroll of Icarus". Crafting mechanic as well as refilling of its resource not implemented.
This commit is contained in:
parent
560d167765
commit
eb6b8a3aa5
7 changed files with 174 additions and 58 deletions
|
@ -7,8 +7,10 @@ import net.minecraftforge.fml.common.registry.ForgeRegistries;
|
|||
|
||||
import java.util.Locale;
|
||||
|
||||
public class Constants {
|
||||
public static class NBT {
|
||||
public class Constants
|
||||
{
|
||||
public static class NBT
|
||||
{
|
||||
public static final String OWNER_UUID = "ownerUUID";
|
||||
public static final String OWNER_NAME = "ownerNAME";
|
||||
public static final String USES = "uses";
|
||||
|
@ -125,13 +127,17 @@ public class Constants {
|
|||
public static final String POTION_IMPURITY = "impurity";
|
||||
|
||||
public static final String TANK = "tank";
|
||||
|
||||
public static final String BREATH = "breath";
|
||||
}
|
||||
|
||||
public static class Mod {
|
||||
public static class Mod
|
||||
{
|
||||
public static final String DOMAIN = BloodMagic.MODID.toLowerCase(Locale.ENGLISH) + ":";
|
||||
}
|
||||
|
||||
public static final class Gui {
|
||||
public static final class Gui
|
||||
{
|
||||
public static final int TELEPOSER_GUI = 0;
|
||||
public static final int SOUL_FORGE_GUI = 1;
|
||||
public static final int ROUTING_NODE_GUI = 2;
|
||||
|
@ -140,7 +146,8 @@ public class Constants {
|
|||
public static final int SIGIL_HOLDING_GUI = 5;
|
||||
}
|
||||
|
||||
public static class Compat {
|
||||
public static class Compat
|
||||
{
|
||||
public static final String JEI_CATEGORY_ALTAR = BloodMagic.MODID + ":altar";
|
||||
public static final String JEI_CATEGORY_BINDING = BloodMagic.MODID + ":binding";
|
||||
public static final String JEI_CATEGORY_ALCHEMYARRAY = BloodMagic.MODID + ":alchemyArray";
|
||||
|
@ -157,7 +164,8 @@ public class Constants {
|
|||
public static final Item THAUMCRAFT_GOGGLES = ForgeRegistries.ITEMS.getValue(new ResourceLocation("Thaumcraft", "goggles"));
|
||||
}
|
||||
|
||||
public static class Misc {
|
||||
public static class Misc
|
||||
{
|
||||
public static final int POTION_ARRAY_SIZE = 256;
|
||||
public static final float ALTERED_STEP_HEIGHT = 1.00314159f;
|
||||
public static final int NIGHT_VISION_CONSTANT_BEGIN = 30002;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue