Amended range of Zephyr ritual

Fixed Green Grove ritual
Fixed Crusher ritual so it didn't break everything at once.
This commit is contained in:
WayofTime 2016-02-16 11:46:47 -05:00
parent 8f453f6e1e
commit 15650bac8b
5 changed files with 11 additions and 6 deletions

View file

@ -8,6 +8,9 @@ Version 2.0.0-18
- Added Ritual: Ritual of Living Evolution, which is used to set the living armour's max upgrade points to 300.
- Added tooltip to living armour to show the current upgrade points of the armour.
- Added recipe for the training bracelet. Combine in an anvil with an upgrade tome to set it as the upgrade to train.
- Ammended range of Zephyr ritual
- Fixed Green Grove ritual
- Fixed Crusher ritual so it didn't break everything at once.
------------------------------------------------------
Version 2.0.0-17

View file

@ -71,7 +71,7 @@ public class BloodAltar implements IFluidHandler
private int chargingFrequency = 0;
private int maxCharge = 0;
private int cooldownAfterCrafting = 500;
private int cooldownAfterCrafting = 60;
private ItemStack result;
@ -457,7 +457,7 @@ public class BloodAltar implements IFluidHandler
server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 40, 0.3, 0, 0.3, 0, new int[0]);
}
this.cooldownAfterCrafting = 100;
this.cooldownAfterCrafting = 30;
this.isActive = false;
}
}

View file

@ -29,7 +29,7 @@ public class RitualCrushing extends Ritual
public RitualCrushing()
{
super("ritualCrushing", 0, 2500, "ritual." + Constants.Mod.MODID + ".crushingRitual");
super("ritualCrushing", 0, 5000, "ritual." + Constants.Mod.MODID + ".crushingRitual");
addBlockRange(CRUSHING_RANGE, new AreaDescriptor.Rectangle(new BlockPos(-1, -3, -1), 3));
}
@ -113,6 +113,8 @@ public class RitualCrushing extends Ritual
}
world.setBlockToAir(newPos);
break;
}
network.syphon(getRefreshCost());

View file

@ -52,7 +52,7 @@ public class RitualGreenGrove extends Ritual
IBlockState state = world.getBlockState(newPos);
Block block = state.getBlock();
if (BloodMagicAPI.getGreenGroveBlacklist().contains(block))
if (!BloodMagicAPI.getGreenGroveBlacklist().contains(block))
{
if (block instanceof IPlantable || block instanceof IGrowable)
{
@ -79,7 +79,7 @@ public class RitualGreenGrove extends Ritual
@Override
public int getRefreshCost()
{
return 20;
return 5; //TODO: Need to find a way to balance this
}
@Override

View file

@ -23,7 +23,7 @@ public class RitualZephyr extends Ritual
public RitualZephyr()
{
super("ritualZephyr", 0, 1000, "ritual." + Constants.Mod.MODID + ".zephyrRitual");
addBlockRange(ZEPHYR_RANGE, new AreaDescriptor.Rectangle(new BlockPos(-4, 1, -4), 10));
addBlockRange(ZEPHYR_RANGE, new AreaDescriptor.Rectangle(new BlockPos(-5, -5, -5), 11));
}
@Override