Compiled in Java 1.8 to make use of all the new features.
This means it will only work if you compile any plugins made using Ipsum with Java 1.8
Currently NOT in a suitable production state.
WorldMaker worldMaker = new WorldMaker(this);
WorldCreator worldCreator = worldMaker.getWorldCreator("Relicum");
worldCreator.generator("LuckyCrates");
World world = worldCreator.createWorld(); ItemStack stack = SimpleItemFactory.getSkullBuilder(1, SkullType.PLAYER)
.setOwner("Relicum")
.build();Includes custom display name, custom lore and adding an Enchantment.
ItemStack stack = SimpleItemFactory.getColorArmorBuilder(Material.LEATHER_CHESTPLATE,1)
.setColor(Color.BLUE)
.setDisplayName("&6Rels Blue Chest")
.setLore("&aRelicums Chest Plate")
.addUnsafeEnchantment(Enchant.builder().enchantment(Enchantment.PROTECTION_ENVIRONMENTAL).level(3).force(true).build())
.build();Build for Bukkit and Spigot 1.7.10-R0.1
This will be built using the Prototyping method, build them quick and build them often. What this means is I will code parts release, play test, listen to feedback and carry on.