Supported Plugins
FisFisItemEvolve will work with popular plugins to recognize items, creatures and blocks added to the game with these plugins.
Item Providers:
MythicMobs
ItemsAdder
Oraxen
Nexo
MMOItems
Block Providers:
ItemsAdder
Oraxen(NoteBlock, StringBlock)
Nexo(NoteBlock, StringBlock, ChorusBlock)
Mob Provider:
MythicMobs
MythicMobs:
You can specify the items you add with the MythicMobs plugin as base_item or target_item, and you can also specify the mobs you create with this plugin as targets for the on_kill trigger. Check out the example below.
"mythicmobs:your_special_item_id"
# withervine_bow_evolution.yml
# The base item is a custom bow from MythicMobs
base_item: "mythicmobs:SkeletalBow"
# The target item is another custom bow from MythicMobs
target_item: "mythicmobs:WithervineBow"
progress_goal: 500
progress:
  on_kill:
    # The main progress comes from defeating the custom MythicMobs boss
    "mythicmobs:SKELETON_KING": 500ItemsAdder:
You can specify the items you add with the ItemsAdder plugin as base_item or target_item. You can also specify the blocks you add with this plugin as targets in the on_block_break trigger. check out the example below.
"itemsadder:your_namespace:your_special_item_id"
# emerald_pickaxe_evolution.yml
# The base item is a custom pickaxe from ItemsAdder
base_item: "itemsadder:iasurvival:ruby_pickaxe"
# The target item is another custom pickaxe from ItemsAdder
target_item: "itemsadder:iasurvival:emerald_pickaxe"
progress_goal: 1000
progress:
  on_block_break:    
    # The main progress comes from breaking the custom Ruby Ore block
    "itemsadder:iasurvival:ruby_ore": 50Oraxen:
You can specify the items you add with the Oraxen plugin as base_item or target_item. You can also specify the blocks you add with this plugin as targets in the on_block_break trigger. check out the example below.
"oraxen:your_special_item_id"
# golem_pickaxe_evolution.yml
# The base item is a custom pickaxe from Oraxen
base_item: "oraxen:sapphire_pickaxe"
# The target item is a more powerful pickaxe, also from Oraxen
target_item: "oraxen:golem_pickaxe"
progress_goal: 250
progress:
  on_block_break:
    # Progress is only gained by breaking the custom Sapphire Ore block
    "oraxen:sapphire_ore": 1Nexo:
You can specify the items you add with the Nexo plugin as base_item or target_item. You can also specify the blocks you add with this plugin as targets in the on_block_break trigger. check out the example below.
"nexo:your_special_item_id"
# golem_drill_evolution.yml
# The base item is a custom pickaxe from Nexo
base_item: "nexo:golem_pickaxe"
# The target item is a more powerful tool, also from Nexo
target_item: "nexo:golem_drill"
progress_goal: 300
progress:
  on_block_break:
    # Progress is only gained by breaking the custom Golem Ore block
    "nexo:golem_ore": 1MMOItems:
You can specify the items you add with the MMOItems plugin as base_item or target_item.
"mmoitems:ITEM_TYPE:ITEM_ID"
# mmo_sword_evolution.yml
# The base item is a custom sword from MMOItems
base_item: "mmoitems:SWORD:BASIC_MMO_SWORD"
# The target item is another custom sword from MMOItems
target_item: "mmoitems:SWORD:ELITE_MMO_SWORD"
progress_goal: 500Last updated