npc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. # npc
  2. i = NPCnow
  3. :markgenernpc
  4. i += 1
  5. !!power and moral qualities
  6. slut[i] = 0
  7. musle[i] = rand(25, 100)
  8. flex[i] = rand(25, 80)
  9. stamina[i] = rand(200, 300)
  10. wipo[i] = rand(30, 60)
  11. !!equipment
  12. Bteh[i] = rand(0, 100)
  13. Uteh[i] = rand(0, 100)
  14. Zteh[i] = rand(0, 100)
  15. if i = 2:
  16. musle[i] = 200
  17. flex[i] = 100
  18. stamina[i] = 300
  19. wipo[i] = 100
  20. !!equipment
  21. Bteh[i] += 200
  22. Uteh[i] += 200
  23. Zteh[i] += 200
  24. end
  25. if i = 10:
  26. musle[i] += 50
  27. wipo[i] += 30
  28. end
  29. if i = 15:
  30. musle[i] += 30
  31. flex[i] += 40
  32. stamina[i] += 100
  33. wipo[i] += 20
  34. !!equipment
  35. Bteh[i] += 20
  36. Uteh[i] += 20
  37. Zteh[i] += 20
  38. end
  39. if i = 32:
  40. musle[i] += 100
  41. flex[i] += 100
  42. end
  43. if i = 36:
  44. flex[i] += 100
  45. end
  46. if i = 51:
  47. Bteh[i] += 100
  48. Uteh[i] += 100
  49. Zteh[i] += 100
  50. end
  51. if i = 52:
  52. stamina[i] += 300
  53. wipo[i] += 60
  54. end
  55. if i = 60:
  56. musle[i] += 200
  57. wipo[i] += 40
  58. end
  59. if i = 78:
  60. flex[i] += 50
  61. wipo[i] += 30
  62. end
  63. if i = 100:
  64. musle[i] += 100
  65. flex[i] += 100
  66. stamina[i] += 200
  67. wipo[i] += 30
  68. !!equipment
  69. Bteh[i] += 100
  70. Uteh[i] += 100
  71. Zteh[i] += 100
  72. end
  73. if i = 107:
  74. musle[i] += 10
  75. flex[i] += 10
  76. stamina[i] += 100
  77. wipo[i] += 100
  78. end
  79. if i = 123:
  80. flex[i] += 100
  81. stamina[i] += 100
  82. wipo[i] += 30
  83. end
  84. if i = 137:
  85. musle[i] += 70
  86. wipo[i] += 20
  87. end
  88. if i = 170:
  89. musle[i] += 100
  90. stamina[i] += 100
  91. wipo[i] += 30
  92. end
  93. if i = 235:
  94. Bteh[i] += 100
  95. Uteh[i] += 100
  96. Zteh[i] += 100
  97. end
  98. if i = 236:
  99. flex[i] += 60
  100. stamina[i] += 100
  101. wipo[i] += 20
  102. end
  103. if i = 255:
  104. musle[i] += 30
  105. flex[i] += 30
  106. stamina[i] += 100
  107. wipo[i] += 60
  108. !!equipment
  109. Bteh[i] += 400
  110. Uteh[i] += 400
  111. Zteh[i] += 400
  112. end
  113. if i = 265:
  114. musle[i] += 100
  115. flex[i] += 100
  116. stamina[i] += 150
  117. wipo[i] += 80
  118. !!equipment
  119. Bteh[i] += 60
  120. Uteh[i] += 60
  121. Zteh[i] += 60
  122. end
  123. irand = i
  124. gs 'namer'
  125. if i < NPCnum:jump'markgenernpc'
  126. --- npc ---------------------------------