Skip to content
forked from Relicum/Ipsum

Custom GameEngine and API's for the Bukkit API

License

Notifications You must be signed in to change notification settings

DeathZonePT/Ipsum

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ipsum Gaming Commons 1.0.27-SNAPSHOT

Providing All you need to create mini games and plugins

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.

Example of creating new void world. Easy !!

    WorldMaker worldMaker = new WorldMaker(this);
    WorldCreator worldCreator = worldMaker.getWorldCreator("Relicum");
    worldCreator.generator("LuckyCrates");
    World world = worldCreator.createWorld();

Example of building a named Player Skull. Easy !!

    ItemStack stack = SimpleItemFactory.getSkullBuilder(1, SkullType.PLAYER)
                    .setOwner("Relicum")
                    .build();

Example of building a blue leather chest plate. Easy !!

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();

Designed and Built by Relicum

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.

About

Custom GameEngine and API's for the Bukkit API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published