I wouldn't start my modid with numbers. I see you have a proxy setup, but your main mod pre/init methods never call the proxy methods.
*edit: Ok, my bad, as I see you're trying to use the registry events. I don't see you registering the subscribed methods to the event bus, or annotating the class with the @Mod.EventBusSubscriber. That is likely your problem. Keep in mind that your main class never calls any proxy methods, so even if you get the events working, any of the preinit/init code will still not ever run.