Advertisement
Guest User

sengoku rance delay calculation

a guest
Sep 9th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.99 KB | None | 0 0
  1. initial delay = 10
  2. if (unit passive skill == first move)
  3. initial delay = 0
  4. if (unit type == diviner)
  5. initial delay = 4
  6.  
  7. delay at battle start = getAdjustedDelay(unit.id, randInt(1, 4) + initialDelay)
  8.  
  9. delay added by ability = getAdjustedDelay(unitID, getAbilityDelay(abilityID));
  10.  
  11. lint getAdjustedDelay(lint unitIndex, lint baseValue)
  12. {
  13. lint delayAdjustment = 0;
  14. lint bb = 0;
  15. lint ii = 0;
  16. lint troopType = gs[ii][unitIndex].troopType;
  17. delayAdjustment = 15;
  18. if (troopType == ninja)
  19. {
  20. delayAdjustment = 6;
  21. }
  22. if (troopType == musketeer)
  23. {
  24. delayAdjustment = 8;
  25. }
  26. if (troopType == cavalry)
  27. {
  28. delayAdjustment = 10;
  29. }
  30. if (troopType == demonWarrior || troopType == __demonArcherdemonFootSoldier || troopType == demonMage || troopType == __demonArcherdemonFootSoldier)
  31. {
  32. delayAdjustment = 11;
  33. }
  34. if (troopType == footSoldier)
  35. {
  36. delayAdjustment = 11;
  37. }
  38. if (troopType == warrior)
  39. {
  40. delayAdjustment = 12;
  41. }
  42. if (troopType == knight)
  43. {
  44. delayAdjustment = 14;
  45. }
  46. if (troopType == diviner)
  47. {
  48. delayAdjustment = 14;
  49. }
  50. if (troopType == cannon)
  51. {
  52. delayAdjustment = 15;
  53. }
  54. if (troopType == archer)
  55. {
  56. delayAdjustment = 15;
  57. }
  58. if (troopType == miko)
  59. {
  60. delayAdjustment = 16;
  61. }
  62. if (troopType == mage)
  63. {
  64. delayAdjustment = 17;
  65. }
  66. if (troopType == monk)
  67. {
  68. delayAdjustment = 20;
  69. }
  70. if (troopType == tactician)
  71. {
  72. delayAdjustment = 20;
  73. }
  74. if (troopType == peasant)
  75. {
  76. delayAdjustment = 30;
  77. }
  78. if (gs[ii][unitIndex].speed == 0) // unit speed without tactician buffs
  79. {
  80. delayAdjustment += 8;
  81. }
  82. if (gs[ii][unitIndex].speed == 1)
  83. {
  84. delayAdjustment += 6;
  85. }
  86. if (gs[ii][unitIndex].speed == 2)
  87. {
  88. delayAdjustment += 4;
  89. }
  90. if (gs[ii][unitIndex].speed == 3)
  91. {
  92. delayAdjustment += 2;
  93. }
  94. if (gs[ii][unitIndex].speed == 4)
  95. {
  96. delayAdjustment = delayAdjustment;
  97. }
  98. if (gs[ii][unitIndex].speed == 5)
  99. {
  100. delayAdjustment -= 2;
  101. }
  102. if (gs[ii][unitIndex].speed == 6)
  103. {
  104. delayAdjustment -= 4;
  105. }
  106. if (gs[ii][unitIndex].speed == 7)
  107. {
  108. delayAdjustment -= 6;
  109. }
  110. if (gs[ii][unitIndex].speed == 8)
  111. {
  112. delayAdjustment -= 8;
  113. }
  114. if (gs[ii][unitIndex].speed > 8)
  115. {
  116. delayAdjustment -= 10;
  117. }
  118. if (gs[ii][unitIndex].speedBuff != 0) // unit.speedBuff is a percentage value. doesn't seem to matter though
  119. {
  120. delayAdjustment -= 4;
  121. }
  122. if (gs[ii][unitIndex].予備1 == 1) // whether unit came from reserves maybe?
  123. {
  124. delayAdjustment += 6;
  125. }
  126. delayAdjustment = delayAdjustment + baseValue;
  127. return delayAdjustment;
  128. return 0;
  129. }
  130.  
  131. // ability delay table
  132. Standby,25
  133. Concentration,15
  134. Charge,5
  135. Warrior attack,15
  136. Warrior attack 2,15
  137. Guard break,15
  138. Full power warrior attack,20
  139. Full power warrior attack,25
  140. Shouting charge,20
  141. Side attack,20
  142. Light attack,20
  143. Gamble charge,10
  144. Gamble charge: love,10
  145. Rance attack,15
  146. Kentarou-kun slash,15
  147. Commander charge,15
  148. Ally guard,20
  149. Ally guard plus,20
  150. All guard,20
  151. Foot soldier attack,15
  152. Foot soldier attack 2,15
  153. Spear attack,15
  154. Spear attack 2,15
  155. Fellow troops' revenge,20
  156. Loot,20
  157. Battle rating up 1,15
  158. Battle rating up 2,15
  159. Cavalry charge,20
  160. Cavalry charge 2,20
  161. Onrush,20
  162. Rear guard smash,20
  163. Pursuit attack,20
  164. Bow attack,20
  165. Bow attack plus,20
  166. Yamamoto sweeping fire,20
  167. Reinforced bow attack,20
  168. Foot soldier snipe,10
  169. Ninja snipe,10
  170. Unskilled volley,30
  171. Volley,30
  172. Accurate shots,25
  173. Whirlwind shot,10
  174. Lure,25
  175. Shoot,30
  176. Aim and shoot,30
  177. Penetration shot,40
  178. Penetration shot 2,40
  179. Commander snipe,30
  180. Special cannon,30
  181. Miko dance,20
  182. Miko dance plus,20
  183. Miko dance/wind,5
  184. Healing mist,30
  185. Poisoning,20
  186. Miko storm 2,5
  187. Miko storm,5
  188. Ninja arts: Leaves hiding,20
  189. Ninja arts: Battleground construction 1,10
  190. Ninja arts: Battleground construction 2,10
  191. Ninja arts: Battleground construction 3,10
  192. Shuriken,20
  193. Shuriken 2,20
  194. Chun chun shuriken,20
  195. Sonic shuriken,2
  196. Assassinate,25
  197. Assassinate 2,25
  198. 101 doggies,15
  199. 201 doggies,15
  200. Persuade,30
  201. Tenshi's divine protection,15
  202. Tenshi's divine protection 2,15
  203. Convert action,15
  204. Convert action 2,15
  205. Monk charge,20
  206. Monk charge plus,20
  207. Youkai ward,15
  208. Clay figure smasher,20
  209. Guard cancel,10
  210. Death's scythe,10
  211. Overtime,20
  212. Overtime 2,20
  213. Guard Shikigami,20
  214. All guard Shikigami,20
  215. Shikigami,25
  216. Shikigami 2,25
  217. Advanced shikigami,35
  218. Summon ogre,20
  219. Summon ogre plus,20
  220. Souun's summoning,25
  221. Summon Suzaku,15
  222. Battle strategy (single),20
  223. Battle strategy (all),20
  224. Battle strategy (3),15
  225. Battle strategy (2),15
  226. Battle strategy (1),15
  227. Remove status (1),10
  228. Remove status (2),10
  229. Remove status (3),10
  230. Advance time,20
  231. Advance time 2,20
  232. Battle rating down 1,20
  233. Battle rating down 2,20
  234. Witty comeback,30
  235. Fire blast,35
  236. A cutter,35
  237. White destruction beam,25
  238. Knight attack,15
  239. Royal guard charge,20
  240. Tulip,30
  241. Tulip rapid-fire,30
  242. Hanny attack,15
  243. Animal attack,15
  244. Riot,20
  245. Infect,40
  246. Ogre attack,20
  247. Lightning,25
  248. Large lightning,10
  249. Disappear bomb,5
  250. Nuclear explosion,40
  251. S Sword attack,15
  252. S Strong sword attack,15
  253. S Cavalry charge,15
  254. S Strong cavalry charge,15
  255. S Rance attack,15
  256. S Kentarou-kun slash,15
  257. S Spear attack,15
  258. S Strong spear attack,15
  259. S Bow attack,20
  260. S Strong Bow attack,20
  261. S Musket shot,30
  262. S Rengoku fire,30
  263. S Hit attack,30
  264. S Strong hit attack,30
  265. S Shuriken,20
  266. S Strong shuriken,20
  267. S Shikigami attack,20
  268. S Strong shikigami attack,20
  269. S Fire blast,35
  270. S Angel cutter,35
  271. S Healing,20
  272. Monster healing,20
  273. Masamune's eyedrop,20
  274. S Thrust attack,10
  275. S Tulip,30
  276. S Animal attack,15
  277. S Strong animal attack,15
  278. S Hanny flash,15
  279. S Basic monster attack,15
  280. Motonari punch,15
  281. Use Youmeishu,10
  282. S Rommel spell attack,20
  283. S Demon single spell,20
  284. S Zombie attack,20
  285. Attack-all spell,20
  286. Seiitai Shogun Tatsumaki,20
  287. S Blaze,30
  288. S Nyo,30
  289. Demon slash,18
  290. Black fire,15
  291. Sandal shuriken,5
  292. Byakko's fang,5
  293. Apostle lightning,10
  294. Shichininshu's claw,50
  295. Gigai punch,10
  296. Orochi beam,15
  297. Earthquake,10
  298. Xavier slash,10
  299. Full heal,20
  300. Petrify,10
  301. S Okayu,10
  302. Sekimei's sword,2
  303. Hibachi charge,10
  304. Tokugawa Ieyasu's special move,10
  305. Guna beam,20
  306. S Crossbow shot,20
  307. Con Turtle's attack,20
  308. Javara's attack,20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement