Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. #############
  2. # Items Ids #
  3. #############
  4.  
  5. medallionID=13001
  6.  
  7.  
  8.  
  9. ###########
  10. # Display #
  11. ###########
  12.  
  13. displayMercenaryMessage=true
  14.  
  15. displayMercenaryLife=true
  16.  
  17. mercenaryLifeTop=80.0
  18.  
  19. mercenaryLifeHeight=3.0
  20.  
  21. mercenaryLifeWidth=40.0
  22.  
  23.  
  24.  
  25. #####################
  26. # Entity capacities #
  27. #####################
  28.  
  29. knightCapacities={
  30. "attackStrength": 4.0,
  31. "followRange": 20.0,
  32. "maxHealt": 20.0,
  33. "moveSpeed": 0.55,
  34. "timeRange": 0.0
  35. }
  36.  
  37. knight2Capacities={
  38. "attackStrength": 8.0,
  39. "followRange": 25.0,
  40. "maxHealt": 30.0,
  41. "moveSpeed": 0.6,
  42. "timeRange": 0.0
  43. }
  44.  
  45. eKnightCapacities={
  46. "attackStrength": 6.0,
  47. "followRange": 16.0,
  48. "maxHealt": 25.0,
  49. "moveSpeed": 0.55,
  50. "timeRange": 0.0
  51. }
  52.  
  53. archerCapacities={
  54. "attackStrength": 4.0,
  55. "followRange": 25.0,
  56. "maxHealt": 15.0,
  57. "moveSpeed": 0.1,
  58. "timeRange": 30.0
  59. }
  60.  
  61. archer2Capacities={
  62. "attackStrength": 7.0,
  63. "followRange": 30.0,
  64. "maxHealt": 25.0,
  65. "moveSpeed": 0.1,
  66. "timeRange": 15.0
  67. }
  68.  
  69. eArcherCapacities={
  70. "attackStrength": 6.0,
  71. "followRange": 18.0,
  72. "maxHealt": 20.0,
  73. "moveSpeed": 0.1,
  74. "timeRange": 20.0
  75. }
  76.  
  77. mageCapacities={
  78. "attackStrength": 5.0,
  79. "followRange": 10.0,
  80. "maxHealt": 25.0,
  81. "moveSpeed": 0.1,
  82. "timeRange": 40.0
  83. }
  84.  
  85. eMageCapacities={
  86. "attackStrength": 5.0,
  87. "followRange": 10.0,
  88. "maxHealt": 30.0,
  89. "moveSpeed": 0.1,
  90. "timeRange": 40.0
  91. }
  92.  
  93. mercCapacities={
  94. "attackStrength": 5.0,
  95. "followRange": 20.0,
  96. "maxHealt": 20.0,
  97. "moveSpeed": 0.6,
  98. "timeRange": 0.0
  99. }
  100.  
  101. mercArcherCapacities={
  102. "attackStrength": 5.0,
  103. "followRange": 25.0,
  104. "maxHealt": 20.0,
  105. "moveSpeed": 0.6,
  106. "timeRange": 17.0
  107. }
  108.  
  109. healerCapacities={
  110. "attackStrength": 0.3,
  111. "followRange": 5.0,
  112. "maxHealt": 15.0,
  113. "moveSpeed": 0.6,
  114. "timeRange": 100.0
  115. }
  116.  
  117.  
  118.  
  119. #############
  120. # Mercenary #
  121. #############
  122.  
  123. #[ItemID,metadata,number],...
  124. mercenaryCost=[
  125. [
  126. 266,
  127. 0,
  128. 1
  129. ],
  130. [
  131. 265,
  132. 0,
  133. 10
  134. ]
  135. ]
  136.  
  137. mercArcherCost=[
  138. [
  139. 266,
  140. 0,
  141. 1
  142. ],
  143. [
  144. 265,
  145. 0,
  146. 10
  147. ]
  148. ]
  149.  
  150. healerCost=[
  151. [
  152. 266,
  153. 0,
  154. 1
  155. ],
  156. [
  157. 265,
  158. 0,
  159. 10
  160. ]
  161. ]
  162.  
  163. healPointByTimeRange=1.5
  164.  
  165.  
  166.  
  167. ###############
  168. # Spawn count #
  169. ###############
  170.  
  171. maxSpawnKnight=6
  172.  
  173. maxSpawnKnight2=6
  174.  
  175. maxSpawnEKnight=6
  176.  
  177. maxSpawnArcher=6
  178.  
  179. maxSpawnArcher2=6
  180.  
  181. maxSpawnEArcher=6
  182.  
  183. maxSpawnMage=6
  184.  
  185. maxSpawnEMage=6
  186.  
  187. maxSpawnMerc=6
  188.  
  189. maxSpawnMercArcher=6
  190.  
  191. maxSpawnHealer=6
  192.  
  193.  
  194.  
  195. ##############
  196. # Blocks Ids #
  197. ##############
  198.  
  199. blockKnightID=1238
  200.  
  201. blockKnight2ID=1240
  202.  
  203. blockArcherID=1239
  204.  
  205. blockArcher2ID=1241
  206.  
  207. blockMercID=1234
  208.  
  209. blockMercArcherID=1232
  210.  
  211. blockMageID=1235
  212.  
  213. blockHealerID=1242
  214.  
  215. blockEKnightID=1237
  216.  
  217. blockEArcherID=1236
  218.  
  219. blockEMageID=1233
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement