use of uk.co.wehavecookies56.kk.common.entity.magic.EntityFiraga in project Kingdom-Keys-Re-Coded by Wehavecookies56.
the class MagicFire method process.
@Override
public void process(EntityPlayer player, Side side) {
if (!player.getCapability(ModCapabilities.CHEAT_MODE, null).getCheatMode())
player.getCapability(ModCapabilities.PLAYER_STATS, null).remMP(Constants.getCost(Strings.Spell_Fire));
World world = player.world;
switch(player.getCapability(ModCapabilities.MAGIC_STATE, null).getMagicLevel(Strings.Spell_Fire)) {
case 1:
world.spawnEntity(new EntityFire(world, player, player.posX, player.posY, player.posZ));
break;
case 2:
world.spawnEntity(new EntityFira(world, player, player.posX, player.posY, player.posZ));
break;
case 3:
world.spawnEntity(new EntityFiraga(world, player, player.posX, player.posY, player.posZ));
break;
}
PacketDispatcher.sendTo(new SyncMagicData(player.getCapability(ModCapabilities.MAGIC_STATE, null), player.getCapability(ModCapabilities.PLAYER_STATS, null)), (EntityPlayerMP) player);
}
Aggregations