Added Magnetism ritual
This commit is contained in:
parent
c26b7851a8
commit
6560e6ec09
|
@ -8,6 +8,8 @@ Version 2.0.0-4
|
||||||
- Added T5 orb recipe and Demonic Activation Crystal
|
- Added T5 orb recipe and Demonic Activation Crystal
|
||||||
- Added Rituals:
|
- Added Rituals:
|
||||||
- Animal Growth ritual
|
- Animal Growth ritual
|
||||||
|
- Harvest ritual
|
||||||
|
- Magnetism ritual
|
||||||
|
|
||||||
- Added parts for the new Soul System
|
- Added parts for the new Soul System
|
||||||
- Added the Monster Soul
|
- Added the Monster Soul
|
||||||
|
@ -16,8 +18,11 @@ Version 2.0.0-4
|
||||||
- SSSSSSSSoooooooouuuuuuulllllllllsssssss
|
- SSSSSSSSoooooooouuuuuuulllllllllsssssss
|
||||||
- Added Soul Forge block
|
- Added Soul Forge block
|
||||||
- Added soul snare and recipe - has 10% chance for monster to drop its soul
|
- Added soul snare and recipe - has 10% chance for monster to drop its soul
|
||||||
|
- Added bow
|
||||||
|
- Added Sentient Armour
|
||||||
|
|
||||||
- Fixed binding of togglable sigils
|
- Fixed binding of togglable sigils
|
||||||
|
- Added saving for ritual tags
|
||||||
|
|
||||||
------------------------------------------------------
|
------------------------------------------------------
|
||||||
Version 2.0.0-3
|
Version 2.0.0-3
|
||||||
|
|
|
@ -65,9 +65,9 @@ public abstract class AreaDescriptor
|
||||||
{
|
{
|
||||||
ArrayList<BlockPos> posList = new ArrayList<BlockPos>();
|
ArrayList<BlockPos> posList = new ArrayList<BlockPos>();
|
||||||
|
|
||||||
for (int i = minimumOffset.getX(); i < maximumOffset.getX(); i++)
|
|
||||||
{
|
|
||||||
for (int j = minimumOffset.getY(); j < maximumOffset.getY(); j++)
|
for (int j = minimumOffset.getY(); j < maximumOffset.getY(); j++)
|
||||||
|
{
|
||||||
|
for (int i = minimumOffset.getX(); i < maximumOffset.getX(); i++)
|
||||||
{
|
{
|
||||||
for (int k = minimumOffset.getZ(); k < maximumOffset.getZ(); k++)
|
for (int k = minimumOffset.getZ(); k < maximumOffset.getZ(); k++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,6 +24,7 @@ public class ModRituals
|
||||||
public static Ritual regenerationRitual;
|
public static Ritual regenerationRitual;
|
||||||
public static Ritual animalGrowthRitual;
|
public static Ritual animalGrowthRitual;
|
||||||
public static Ritual harvestRitual;
|
public static Ritual harvestRitual;
|
||||||
|
public static Ritual magneticRitual;
|
||||||
|
|
||||||
public static ImperfectRitual imperfectNight;
|
public static ImperfectRitual imperfectNight;
|
||||||
public static ImperfectRitual imperfectRain;
|
public static ImperfectRitual imperfectRain;
|
||||||
|
@ -51,6 +52,8 @@ public class ModRituals
|
||||||
harvestRitual = new RitualHarvest();
|
harvestRitual = new RitualHarvest();
|
||||||
RitualRegistry.registerRitual(harvestRitual, harvestRitual.getName());
|
RitualRegistry.registerRitual(harvestRitual, harvestRitual.getName());
|
||||||
initHarvestHandlers();
|
initHarvestHandlers();
|
||||||
|
magneticRitual = new RitualMagnetic();
|
||||||
|
RitualRegistry.registerRitual(magneticRitual, magneticRitual.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void initImperfectRituals()
|
public static void initImperfectRituals()
|
||||||
|
|
|
@ -263,6 +263,7 @@ ritual.BloodMagic.wellOfSufferingRitual=Well of Suffering
|
||||||
ritual.BloodMagic.featheredKnifeRitual=Ritual of the Feathered Knife
|
ritual.BloodMagic.featheredKnifeRitual=Ritual of the Feathered Knife
|
||||||
ritual.BloodMagic.regenerationRitual=Ritual of Regeneration
|
ritual.BloodMagic.regenerationRitual=Ritual of Regeneration
|
||||||
ritual.BloodMagic.harvestRitual=Reap of the Harvest Moon
|
ritual.BloodMagic.harvestRitual=Reap of the Harvest Moon
|
||||||
|
ritual.BloodMagic.magneticRitual=Ritual of Magnetism
|
||||||
|
|
||||||
# Chat
|
# Chat
|
||||||
chat.BloodMagic.altarMaker.setTier=Set Tier to: %d
|
chat.BloodMagic.altarMaker.setTier=Set Tier to: %d
|
||||||
|
|
Loading…
Reference in a new issue