Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. public class EuropaRegistry {
  2.  
  3. public static Moon europa;
  4.  
  5. public static void register(){
  6. europa = (Moon) new Moon("europa").setParentPlanet(GalacticraftCore.planetOverworld).setRelativeSize(0.0017F).setRelativeDistanceFromCenter(new CelestialBody.ScalableDistance(1F, 1F));
  7. europa.setRelativeOrbitTime(50F).setTierRequired(1).setBodyIcon(new ResourceLocation(RefStrings.MODID, "textures/gui/celestialbodies/europa.png"));
  8. europa.setDimensionInfo(7, WorldProviderEuropa.class);
  9.  
  10.  
  11. GalaxyRegistry.registerMoon(europa);
  12. GalacticraftRegistry.registerTeleportType(WorldProviderEuropa.class, new TeleportTypeMoon());
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement