Advertisement
SmiDmi

ChampionMonsters

Jun 27th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # ---------------------------------------------------------------------------
  2. # Champion mobs - Turn random mobs into Champions
  3. # ---------------------------------------------------------------------------
  4.  
  5. # Enable/Disable Champion Mob System.
  6. ChampionEnable = True
  7.  
  8. # Force Champion mobs to be passive?
  9. # To leave champion mobs to default/Aggressive, set to False.
  10. # To set all champion mobs to Passive, set True.
  11. ChampionPassive = True
  12.  
  13. # % chance for a mob to became champion (0 to disable).
  14. ChampionFrequency = 3
  15.  
  16. # Title of all Champion Mobs.
  17. ChampionTitle = Champion
  18.  
  19. # Red aura for Champion Mobs.
  20. ChampionAura = True
  21.  
  22. # Min and max levels allowed for a mob to be a Champion mob.
  23. ChampionMinLevel = 80
  24. ChampionMaxLevel = 115
  25.  
  26. # Hp multiplier for Champion mobs.
  27. ChampionHp = 8
  28.  
  29. # Hp Regen Multiplier for Champion mobs.
  30. ChampionHpRegen = 1.0
  31.  
  32. # Exp/Sp rewards multiplier for Champion mobs.
  33. ChampionRewardsExpSp = 4.0
  34.  
  35. # Standard rewards chance multiplier for Champion mobs.
  36. ChampionRewardsChance = 5.0
  37.  
  38. # Standard rewards amount multiplier for Champion mobs.
  39. ChampionRewardsAmount = 1.0
  40.  
  41. # Adena & Seal Stone rewards chance multiplier for Champion mobs.
  42. ChampionAdenasRewardsChance = 3.0
  43.  
  44. # Adena & Seal Stone rewards amount multiplier for Champion mobs.
  45. ChampionAdenasRewardsAmount = 3.0
  46.  
  47. # P. Attack and M. Attack bonus for Champion mobs.
  48. ChampionAtk = 1.0
  49.  
  50. # Physical/Magical Attack Speed bonus for Champion mobs.
  51. ChampionSpdAtk = 1.0
  52.  
  53. # Specified reward item ID
  54. ChampionRewardItemID = 4037
  55.  
  56. # The amount of the specified reward a player will receive if they are awarded the item.
  57. ChampionRewardItemQty = 2
  58.  
  59. # % Chance to obtain a specified reward item from a lower level Champion mob.
  60. # Default: 0
  61. ChampionRewardLowerLvlItemChance = 3
  62.  
  63. # % Chance to obtain a specified reward item from a higher level Champion mob.
  64. # Default: 100
  65. ChampionRewardHigherLvlItemChance = 5
  66.  
  67. # Do you want to enable the vitality calculation when killing champion mobs?
  68. # Be aware that it can lead to huge unbalance on your server, your rate for that mob would
  69. # then be "mobXP x serverRate x vitalityRate x championXpRate
  70. # Notes:
  71. #   Works only if EnableVitality = True
  72. # Default: False
  73. ChampionEnableVitality = False
  74.  
  75. # Enable spawning of the champions in instances
  76. # Default = False
  77. ChampionEnableInInstances = False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement