Custom Item/Mobs/Bosses/Enchantments

Discussion in 'Plugin Requests' started by HazePvPHD, Dec 25, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    HazePvPHD

    So I am currently looking for a very nice plugin for factions. It includes the ability to have:

    - Custom Items(EG. Upon rightclicking it could give you speed or something ((Every custom item is creatable in a file like this):

    Code:
    #Item Name
    #Item id/name
    #Enchantments
    #Spawning on mob chance (In Percentages)
    #Which Mob to spawn on
    #Custom Lore
    #Room to add Custom Item books to it
    
    WakenSword:
      ItemName: DIAMOND_SWORD
      Enchantments:
      - DAMAGE_ALL: 10
      - FIRE_ASPECT: 5
      ChanceToSpawn: 50
      ChanceToDrop: 5
      MobsCanSpawnOn:
      - ZOMBIE_PIGMAN
      - ZOMBIE
      - GIANT
      Lore:
      - '&8This item was forged by %name%'
      AllowCustomEnchantments: true
      CustomEnchantmentLimit: 5
    
    #Example:
    #Would spawn a Diamond sword with Sharp10, Fire-
    #Aspect 5 with a lore of:
    #- '&8This item was forged by %name%'
    # - '&6&m---&r&6[ &8Custom Enchantments &6]&m---'
    #- '&3(EnchantmentSlot)'
    #- '&3(EnchantmentSlot)'
    #- '&3(EnchantmentSlot)'
    #- '&3(EnchantmentSlot)'
    #- '&3(EnchantmentSlot)'
    #
    #Would only spawn on Zombie Pigman, Zombies and
    #Giants with a chance of 50%.
    #With a drop chance of 5%
    - Custom Enchantments (With the ability to create your own in another file like this):
    Code:
    #Enchantment Name:
    #The potion effects with this enchantment
    #Length of enchantment per level
    #The Max Level you can get the enchant
    #Is it applied when you hit someone
    #Is it applied when someone hits you
    #What Items can it be used on
    #Can you get this enchantment from a custom
    #Enchant book
    
    Wither:
      POTION-EFFECTS:
      - 'WITHER'
      LENGTH-PER-LVL: 0.2
      MAX-LEVEL: 2
      USING-ROMAN-NUMERALS: true
      APPLY-WHEN-HIT: false
      APPLY-WHEN-HURT: true
      ALLOW-ON:
      - 'DIAMOND_CHESTPLATE'
      ALLOW-IN-BOOK: true
    - Custom Mobs/Bosses (Ability to edit each mob/boss in a different file like this):
    Code:
    #The natural mobs that spawn
    #MobName:
    #SpawnWithCustomItem means will it spawn with
    #custom items or enchantments on its gear. Still #using  the % that is configured.
    
    Natural:
      Zombie:
        SpawnWithCustomItem: true
    
    #The Custom Bosses created
    #BossName to use apon spawning.
    #Will it spawn with custom items aswell as the items down below
    #The Options. Includes custom effects like launch where when hit launchs you up 5 blocks per level
    #The CustomItems it spawns with
    #The Custom Item Name
    #Cusom Item Enchantments
    # Item Lore
    #The drop chance the item drops
    Bosses:
      ZombieKing:
        SpawnWithCustomItem: true
        Options:
        - HEALTH: 500
        - JUMP_BOOST: 5
        - LAUNCH: 5
        CustomItems:
          SkeletonKing Sword:
            Name: '&3Skeleton King Sword'
            Enchantments:
            - DAMAGE_ALL: 5
            Lore:
            - '&8This item was forged in the Skeleton King Cave'
            - '&3(Enchantment Slot)'
            ItemDropChance: 5.0
    
    Another nice feature would be to have the custom items spawn in chests. And maybe even tiers. Each custom item spawning with items within that tier itemlist with enchantments specific to that item within the tier list. And a last feature would be able to have some sort of Envoy where chests will spawn in Warzone land (Connection with Factions plugin)
     
  2. Offline

    C4sad3i

    @HazePvPHD Woulden't it work to use MythicMobs and RPGItems? As far as I can see it has all the features needed ?
     
  3. Offline

    HazePvPHD

    @C4sad3i So I have been looking into those plugins, they work perfectly!! Thanks for the suggestion! :)
     
Thread Status:
Not open for further replies.

Share This Page