stat_sklattrib 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. # stat_sklattrib
  2. !!******************** Warning! ********************
  3. !!The code in this location is both complex and very fundamental to most systems!
  4. !!Use EXTREME caution if modifying!
  5. !!Ask if understanding is required
  6. !!****************************************************
  7. !!For Users;
  8. !! For any Attribute or Skill, outside of "stat_sklattrib", the only things that get used are;
  9. !! the variables themselves, pcs_"name", for checks
  10. !! "name"_exp to replace straight adds (i.e. stren_exp +=1 instead of pcs_stren += 1)
  11. !! "name"_deg to replace losses (i.e. stren_deg -= 1 instead of pcs_stren -= 1)
  12. !! "name"_muta if setting higher attribute limits due to "mutations" ("name"_muta replaces the "mutagen" variables)
  13. !! And checking "name"_lvl if and only if it''s being used to check if an NPC/Item can still train the PC. That is also the only time there should be a gate on "name"_exp += x and should be a minimum of += rand(3,5). No other gates should be used.
  14. !! The others are used in the code as controllers and modifying anything except "name"_exp, "name"_deg, and "name"_muta outside of this routine can break things
  15. !! Attributes & Skills
  16. !! $att_name[x] and $skl_name[x]; an array that stores the name of each attribute variable
  17. !! For each attribute and skill variable, there are the following sub-variables
  18. !! _lvl, is the base level of an attribute/skill before adjustment
  19. !! _lvlst, level yesterday, used for error checking
  20. !! _deg is the days to attribute/skill loss and is reset on XP gain
  21. !! _exp is the amount of total XP gained so far for each and will replace all the gains in the rest of the code
  22. !! _mem is the amount of XP yesterday
  23. !! _muta replaces the assorted mutagen variables for attributes, this is to replace the 30 lines of code with 1
  24. !! _flr, this is the floor through which an attribute/skill cannot fall
  25. !! _xpnxt is the XP required to reach the next level
  26. !! Traits
  27. !! $traitattskl[x], this stores a list of all traits that can affect attribute or skill advancement or degradation, if a trait does not, it does not go in this array
  28. !! For each trait that can affect attribute or skill advancement or degradation;
  29. !! "trait"[y1] = 1 if affecting an attribute or = 2 if affecting a skill;
  30. !! "trait"[y2] = the index number in $att_name or $skl_name that corresponds to the skill/attribute to be effected;
  31. !! "trait"[y3] = indicates if it effects XP required to level by adjusting the base rate as a plus to the default of 60
  32. !! "trait"[y4] = indicates if it effects degradation rate by adjusting the base rate as a plus to the default of 60 for attributes or 90 (3/2) for skills
  33. !! the 'y' in the above is for traits that affect more than 1 skill or attribute, note they must be contiguous 0x, 1x, 2x, etc. there can be no gaps
  34. !! Note, the effects of multiple traits on a single skill or attribute stack
  35. !!Attribute variable list
  36. $att_name[0] = 'stren'
  37. $att_name[1] = 'agil'
  38. $att_name[2] = 'vital'
  39. $att_name[3] = 'intel'
  40. $att_name[4] = 'react'
  41. $att_name[5] = 'sprt'
  42. $att_name[6] = 'chrsm'
  43. $att_name[7] = 'prcptn'
  44. $att_name[8] = 'magik'
  45. !!Skill variable list
  46. !!Add new skills to the end; if removing a skill, move the rest up and then edit the Traits so that the index numbers are correct
  47. $skl_name[0] = 'jab'
  48. $skl_name[1] = 'punch'
  49. $skl_name[2] = 'kick'
  50. $skl_name[3] = 'def'
  51. $skl_name[4] = 'shoot'
  52. $skl_name[5] = 'vokal'
  53. $skl_name[6] = 'sewng'
  54. $skl_name[7] = 'instrmusic'
  55. $skl_name[8] = 'photoskl'
  56. $skl_name[9] = 'artskls'
  57. $skl_name[10] = 'danc'
  58. $skl_name[11] = 'dancero'
  59. $skl_name[12] = 'dancpol'
  60. $skl_name[13] = 'chess'
  61. $skl_name[14] = 'ttgmng'
  62. $skl_name[15] = 'humint'
  63. $skl_name[16] = 'persuas'
  64. $skl_name[17] = 'run'
  65. $skl_name[18] = 'vball'
  66. $skl_name[19] = 'icesktng'
  67. $skl_name[20] = 'wrstlng'
  68. $skl_name[21] = 'ftbll'
  69. $skl_name[22] = 'splcstng'
  70. $skl_name[23] = 'observ'
  71. $skl_name[24] = 'makupskl'
  72. $skl_name[25] = 'compskl'
  73. $skl_name[26] = 'comphckng'
  74. $skl_name[27] = 'hndiwrk'
  75. $skl_name[28] = 'servng'
  76. $skl_name[29] = 'mdlng'
  77. $skl_name[30] = 'medcn'
  78. $skl_name[31] = 'heels'
  79. !!Trait Section
  80. !!This is where Traits that will affect attribute or skill advancement or degradation have those aspects defined.
  81. !!Always put the trait name, variable name, and skill or attribute variable in a comment
  82. !!Natrual Dancer; Provides a 10% reduction in xp required to level dance skills
  83. nat_dancer[1] = 2 & nat_dancer[2] = 10 & nat_dancer[3] = -6 & nat_dancer[4] = 0
  84. nat_dancer[11] = 2 & nat_dancer[12] = 11 & nat_dancer[13] = -6 & nat_dancer[14] = 0
  85. nat_dancer[21] = 2 & nat_dancer[22] = 12 & nat_dancer[23] = -6 & nat_dancer[24] = 0
  86. !!Natrual Athlete; Provides a 10% reduction in xp required to level sports skills
  87. nat_athlete[1] = 2 & nat_athlete[2] = 17 & nat_athlete[3] = -6 & nat_athlete[4] = 0
  88. nat_athlete[11] = 2 & nat_athlete[12] = 18 & nat_athlete[13] = -6 & nat_athlete[14] = 0
  89. nat_athlete[21] = 2 & nat_athlete[22] = 19 & nat_athlete[23] = -6 & nat_athlete[24] = 0
  90. nat_athlete[31] = 2 & nat_athlete[32] = 20 & nat_athlete[33] = -6 & nat_athlete[34] = 0
  91. nat_athlete[41] = 2 & nat_athlete[42] = 21 & nat_athlete[43] = -6 & nat_athlete[44] = 0
  92. !!Scholarly; Provides a 10% reduction in xp required to level Intelligence, easier to get good notes at school, faster studying in the university
  93. schlrly[1] = 1 & schlrly[2] = 3 & schlrly[3] = -6 & schlrly[4] = 0
  94. !!Trait variable list; only traits that can affect attribute or skill advancement or degradation goes here
  95. $traitattskl[0] = 'nat_dancer'
  96. $traitattskl[1] = 'nat_athlete'
  97. $traitattskl[2] = 'schlrly'
  98. !!This is sets _lvl and _exp based on the value of pcs_"name" the first time so that _lvl and _exp do not need to set on start.
  99. !!Theoretically this can be eventually deleted.
  100. if attsklupdate = 0:
  101. i = 0 & x = 1
  102. :rstloop
  103. expadj = 60
  104. tl = 0
  105. :trtrstloop
  106. tltp = 0
  107. :trtrstinsdlp
  108. !! Note this loop is done with a flag set in the dynamic that is checked outside; this is because testing showed inconsistent results when jumping from inside the dynamic and with the whole loop in the dynamic.
  109. dynamic "
  110. if <<$traitattskl[tl]>> > 0 and <<$traitattskl[tl]>>[tltp + 1] = x and <<$traitattskl[tl]>>[tltp + 2] = i and <<$traitattskl[tl]>>[tltp + 3] ! 0: expadj += <<$traitattskl[tl]>>[tltp + 3]
  111. if <<$traitattskl[tl]>>[tltp + 11] ! 0: insdlpflag = 1
  112. "
  113. if insdlpflag = 1: tltp += 10 & insdlpflag = 0 & jump 'trtrstinsdlp'
  114. tl += 1
  115. if tl < arrsize ('$traitattskl'): jump 'trtrstloop'
  116. killvar 'tl' & killvar 'tltp' & killvar 'insdlpflag'
  117. if x = 1:
  118. $attskltmp = $att_name[i]
  119. else
  120. $attskltmp = $skl_name[i]
  121. end
  122. dynamic "
  123. if pcs_<<$attskltmp>> > 0 and <<$attskltmp>>_lvl = 0:
  124. <<$attskltmp>>_exp = (expadj * (pcs_<<$attskltmp>> - 1) * (pcs_<<$attskltmp>> - 1) / 180) + 1
  125. <<$attskltmp>>_lvl = pcs_<<$attskltmp>>
  126. <<$attskltmp>>_lvlst = <<$attskltmp>>_lvl
  127. end
  128. "
  129. killvar 'expadj' & killvar '$attskltmp'
  130. i += 1
  131. if (x = 1 and i < arrsize ('$att_name')) or (x = 2 and i < arrsize ('$skl_name')): jump 'rstloop'
  132. i = 0 & x += 1
  133. if x < 3: jump 'rstloop'
  134. killvar 'i' & killvar 'x'
  135. attsklupdate = 1
  136. end
  137. !!This is the section that runs when the call is from cikl
  138. if $ARGS[0] = 'daycall':
  139. !! Attribute XP with Skill XP gain
  140. x = 0
  141. :sklxploop
  142. y = 1
  143. :persklloop
  144. dynamic "$attnamtmp = $att_name[<<$skl_name[x]>>[y]]"
  145. dynamic "
  146. if <<$skl_name[x]>>_exp > <<$skl_name[x]>>_mem: <<$attnamtmp>>_exp += (<<$skl_name[x]>>_exp - <<$skl_name[x]>>_mem) / 5
  147. if <<$skl_name[x]>>[y + 1] = -1 or y >= 9: lpstopflg = 1
  148. "
  149. killvar '$attnamtmp'
  150. if lpstopflg = 0: y += 1 & jump 'persklloop'
  151. killvar 'lpstopflg'
  152. x += 1
  153. if x < arrsize ('$skl_name'): jump 'sklxploop'
  154. killvar 'x' & killvar 'y' & killvar '$attnamtmp'
  155. !! Degradation Loop
  156. i = 0 & x = 1
  157. :degloop
  158. degadj = 60
  159. if x = 2: degadj += 30
  160. expadj = 60
  161. tl = 0
  162. :trtdegloop
  163. tltp = 0
  164. :trtdeginsdlp
  165. !! Note this loop is done with a flag set in the dynamic that is checked outside; this is because testing showed inconsistent results when jumping from inside the dynamic and with the whole loop in the dynamic.
  166. dynamic "
  167. if <<$traitattskl[tl]>> > 0 and <<$traitattskl[tl]>>[tltp + 1] = x and <<$traitattskl[tl]>>[tltp + 2] = i and <<$traitattskl[tl]>>[tltp + 3] ! 0: expadj += <<$traitattskl[tl]>>[tltp + 3]
  168. if <<$traitattskl[tl]>> > 0 and <<$traitattskl[tl]>>[tltp + 1] = x and <<$traitattskl[tl]>>[tltp + 2] = i and <<$traitattskl[tl]>>[tltp + 4] ! 0: degadj += <<$traitattskl[tl]>>[tltp + 4]
  169. if <<$traitattskl[tl]>>[tltp + 11] ! 0: insdlpflag = 1
  170. "
  171. if insdlpflag = 1: tltp += 10 & insdlpflag = 0 & jump 'trtdeginsdlp'
  172. tl += 1
  173. if tl < arrsize ('$traitattskl'): jump 'trtdegloop'
  174. killvar 'tl' & killvar 'tltp' & killvar 'insdlpflag'
  175. if x = 1:
  176. $attskltmp = $att_name[i]
  177. else
  178. $attskltmp = $skl_name[i]
  179. end
  180. dynamic "
  181. if <<$attskltmp>>_lvl ! <<$attskltmp>>_lvlst: <<$attskltmp>>_lvl = <<$attskltmp>>_lvlst
  182. if <<$attskltmp>>_lvl < 100:
  183. degtmp = (102 - <<$attskltmp>>_lvl + <<$attskltmp>>_muta)
  184. else
  185. degtmp = 2 + <<$attskltmp>>_muta
  186. end
  187. degtmp = degadj * degtmp / 60
  188. if degtmp < 2: degtmp = 2
  189. if <<$attskltmp>>_exp < <<$attskltmp>>_mem: <<$attskltmp>>_exp = <<$attskltmp>>_mem
  190. if <<$attskltmp>>_exp = <<$attskltmp>>_mem:
  191. <<$attskltmp>>_deg -= 1
  192. else
  193. <<$attskltmp>>_deg = degtmp
  194. end
  195. if <<$attskltmp>>_deg <= 0 and <<$attskltmp>>_lvl > <<$attskltmp>>_flr:
  196. exptmp = <<$attskltmp>>_exp - (expadj * (<<$attskltmp>>_lvl - 1) * (<<$attskltmp>>_lvl - 1) / 180)
  197. if exptmp < 0: exptmp = 0
  198. <<$attskltmp>>_lvl -= 1
  199. <<$attskltmp>>_deg = degtmp
  200. <<$attskltmp>>_exp = (expadj * (<<$attskltmp>>_lvl - 1) * (<<$attskltmp>>_lvl - 1) / 180) + exptmp
  201. !! This will only do anything if the PC builds exp well in excess of what is needed to level
  202. if <<$attskltmp>>_exp > (expadj * (<<$attskltmp>>_lvl) * (<<$attskltmp>>_lvl) / 180): <<$attskltmp>>_exp -= (2 * <<$attskltmp>> - 1) / 10
  203. end
  204. <<$attskltmp>>_lvlst = <<$attskltmp>>_lvl
  205. <<$attskltmp>>_mem = <<$attskltmp>>_exp
  206. "
  207. killvar 'degtmp' & killvar 'exptmp'
  208. killvar 'degadj' & killvar 'expadj' & killvar '$attskltmp'
  209. i += 1
  210. if (x = 1 and i < arrsize ('$att_name')) or (x = 2 and i < arrsize ('$skl_name')): jump 'degloop'
  211. i = 0 & x += 1
  212. if x < 3: jump 'degloop'
  213. killvar 'i' & killvar 'x'
  214. end
  215. !!Advancement Loop
  216. i = 0 & x = 1
  217. :advloop
  218. expadj = 60
  219. tl = 0
  220. :trtadvloop
  221. tltp = 0
  222. :trtadvinsdlp
  223. !!Note this loop is done with a flag set in the dynamic that is checked outside; this is because testing showed inconsistent results when jumping from inside the dynamic and with the whole loop in the dynamic.
  224. dynamic "
  225. if <<$traitattskl[tl]>> > 0 and <<$traitattskl[tl]>>[tltp + 1] = x and <<$traitattskl[tl]>>[tltp + 2] = i and <<$traitattskl[tl]>>[tltp + 3] ! 0: expadj += <<$traitattskl[tl]>>[tltp + 3]
  226. if <<$traitattskl[tl]>>[tltp + 11] ! 0: insdlpflag = 1
  227. "
  228. if insdlpflag = 1: tltp += 10 & insdlpflag = 0 & jump 'trtadvinsdlp'
  229. tl += 1
  230. if tl < arrsize ('$traitattskl'): jump 'trtadvloop'
  231. killvar 'tl' & killvar 'tltp' & killvar 'insdlpflag'
  232. if x = 1:
  233. $attskltmp = $att_name[i]
  234. else
  235. $attskltmp = $skl_name[i]
  236. end
  237. dynamic "
  238. if <<$attskltmp>>_lvl ! <<$attskltmp>>_lvlst: <<$attskltmp>>_lvl = <<$attskltmp>>_lvlst
  239. if <<$attskltmp>>_exp > (expadj * <<$attskltmp>>_lvl * <<$attskltmp>>_lvl / 180): <<$attskltmp>>_lvl += 1
  240. <<$attskltmp>>_lvlst = <<$attskltmp>>_lvl
  241. <<$attskltmp>>_xpnxt = (expadj * <<$attskltmp>>_lvl * <<$attskltmp>>_lvl / 180) + 1
  242. if <<$attskltmp>>_lvl / 5 > <<$attskltmp>>_flr: <<$attskltmp>>_flr = <<$attskltmp>>_lvl / 5
  243. if <<$attskltmp>>_lvl > (100 + (<<$attskltmp>>_muta * 50)): <<$attskltmp>>_lvl = (100 + (<<$attskltmp>>_muta * 50))
  244. if <<$attskltmp>>_exp > (expadj * (<<$attskltmp>>_lvl + 1) * (<<$attskltmp>>_lvl + 1) / 180) - 1:
  245. <<$attskltmp>>_exp = (expadj * (<<$attskltmp>>_lvl + 1) * (<<$attskltmp>>_lvl + 1) / 180) - 1
  246. <<$attskltmp>>_mem = <<$attskltmp>>_exp
  247. end
  248. "
  249. killvar 'expadj' & killvar '$attskltmp'
  250. i += 1
  251. if (x = 1 and i < arrsize ('$att_name')) or (x = 2 and i < arrsize ('$skl_name')): jump 'advloop'
  252. i = 0 & x += 1
  253. if x < 3: jump 'advloop'
  254. killvar 'i' & killvar 'x'
  255. !!Attribute set section
  256. !!This is where an attribute pcs_"name" is set by "name"_lvl and any adjustments are added
  257. !!Even though most of these could be done without doing a _lvl to pcs_ convertion, doing so is future proofing
  258. pcs_stren = stren_lvl
  259. if pcs_stren < 1: pcs_stren = 1
  260. pcs_agil = agil_lvl
  261. if pcs_agil < 1: pcs_agil = 1
  262. pcs_vital = vital_lvl
  263. if pcs_vital < 1: pcs_vital = 1
  264. pcs_intel = intel_lvl - bimbostupidity - (5 * noorgasm)
  265. if pcs_intel < 1: pcs_intel = 1
  266. pcs_react = react_lvl
  267. if pcs_react < 1: pcs_react = 1
  268. pcs_sprt = sprt_lvl
  269. if pcs_sprt < 1: pcs_sprt = 1
  270. pcs_chrsm = chrsm_lvl
  271. if pcs_chrsm < 1: pcs_chrsm = 1
  272. pcs_prcptn = prcptn_lvl
  273. if pcs_prcptn < 1: pcs_prcptn = 1
  274. pcs_magik = magik_lvl
  275. if pcs_magik < 0: pcs_magik = 0
  276. !!Skill set Section
  277. !!Each skill has three lines, the first is the comment that says what the skill is, the next that sets pcs_"name", and the finial which sets "name"[1] to [x] with the attribute index of the attribute(s) ending with a -1 to show end.
  278. !!Jabs; Quick strikes that do not have much power
  279. pcs_jab = (jab_lvl + (pcs_agil * 2 + pcs_stren) / 3) / 2 - notfem
  280. jab[1] = 0 & jab[2] = 1 & jab[3] = -1
  281. !!Power Strikes; Hard strikes that are harder to land
  282. pcs_punch = (punch_lvl + (pcs_stren * 2 + pcs_agil) / 3) / 2 - notfem
  283. punch[1] = 0 & punch[2] = 1 & punch[3] = -1
  284. !!Kicks; Kicking, enough said
  285. pcs_kick = (kick_lvl + (pcs_stren * 3 + pcs_agil) / 4) / 2 - notfem
  286. kick[1] = 0 & kick[2] = 1 & kick[3] = -1
  287. !!Defence; Covers both blocking and dodging
  288. pcs_def = (def_lvl + (pcs_agil + pcs_stren + pcs_react) / 3) / 2 - notfem
  289. def[1] = 0 & def[2] = 1 & def[3] = 4 & def[4] = -1
  290. !!Marksmanship; Could be guns, bows, or spells
  291. pcs_shoot = (shoot_lvl + (pcs_agil + pcs_react) / 2) / 2
  292. shoot[1] = 1 & shoot[2] = 4 & shoot[3] = -1
  293. !!Singing; Should be self-explanatory
  294. pcs_vokal = (vokal_lvl + (pcs_intel + pcs_chrsm) / 2) / 2
  295. vokal[1] = 3 & vokal[2] = 6 & vokal[3] = -1
  296. !!Tailoring; Should be self-explanatory
  297. pcs_sewng = (sewng_lvl + (pcs_agil + pcs_intel) / 2) / 2
  298. sewng[1] = 1 & sewng[2] = 3 & sewng[3] = -1
  299. !!Instrumental Music; Skill at playing an instrument(s)
  300. pcs_instrmusic = (instrmusic_lvl + (2 * pcs_agil + pcs_intel) / 3) / 2
  301. instrmusic[1] = 1 & instrmusic[2] = 3 & instrmusic[3] = -1
  302. !!Photography; Should be self-explanatory
  303. pcs_photoskl = (photoskl_lvl + (2 * pcs_intel + pcs_react) / 3) / 2
  304. photoskl[1] = 3 & photoskl[2] = 4 & photoskl[3] = -1
  305. !!Artistic Skills; painting, drawing etc.
  306. pcs_artskls = (artskls_lvl + (pcs_intel + pcs_react + pcs_agil) / 3) / 2
  307. artskls[1] = 1 & artskls[2] = 3 & artskls[3] = 4 & artskls[4] = -1
  308. !!Modern Dancing; This is the basic dance skill and replaces 'dance'
  309. pcs_danc = (danc_lvl + (pcs_agil + pcs_react + pcs_vital) / 3) / 2 - notfem
  310. danc[1] = 1 & danc[2] = 2 & danc[3] = 4 & danc[4] = -1
  311. !!Erotic Dancing; This is used when individual eroticism is being displayed, also covers & replaces strip tease
  312. pcs_dancero = (dancero_lvl + (pcs_agil + pcs_chrsm + pcs_vital) / 3) / 2 - notfem + (3 * flxibt)
  313. dancero[1] = 1 & dancero[2] = 2 & dancero[3] = 6 & dancero[4] = -1
  314. !!Pole Dancing; Should be self-explanatory
  315. pcs_dancpol = (dancpol_lvl + (pcs_agil + pcs_stren + pcs_chrsm) / 3) / 2 - notfem + (3 * flxibt)
  316. dancpol[1] = 0 & dancpol[2] = 1 & dancpol[3] = 6 & dancpol[4] = -1
  317. !!Chess; Should be self-explanatory
  318. pcs_chess = (chess_lvl + pcs_intel) / 2 + (5 * logictrt)
  319. chess[1] = 3 & chess[2] = -1
  320. !!Gaming; Abstracts skills at all types of Table Top games
  321. pcs_ttgmng = (ttgmng_lvl + (2 * pcs_intel + pcs_react) / 3) / 2
  322. ttgmng[1] = 3 & ttgmng[2] = 4 & ttgmng[3] = -1
  323. !!People skills; basic human interaction skill set
  324. pcs_humint = (humint_lvl + (pcs_prcptn + pcs_chrsm + pcs_react)/3) / 2 + (5 * chrmng) - (5 * meantrt)
  325. humint[1] = 4 & humint[2] = 6 & humint[3] = 7 & humint[4] = -1
  326. !!Persuasion; Trained skill at getting people to agree with you or like you
  327. pcs_persuas = (persuas_lvl + (pcs_prcptn + pcs_chrsm) / 2) / 2 + (5 * chrmng) - (5 * meantrt)
  328. persuas[1] = 6 & persuas[2] = 7 & persuas[3] = -1
  329. !!Running; Should be self-explanatory
  330. pcs_run = (run_lvl + (2 * (pcs_agil + pcs_stren) + pcs_vital) / 5) / 2 - notfem
  331. run[1] = 0 & run[2] = 1 & run[3] = 2 & run[4] = -1
  332. !!Volleyball; Should be self-explanatory
  333. pcs_vball = (vball_lvl + (2 * pcs_agil + pcs_react + pcs_stren + pcs_vital) / 5) / 2 - notfem
  334. vball[1] = 0 & vball[2] = 1 & vball[3] = 2 & vball[4] = 4 & vball[5] = -1
  335. !!Ice Skating; Should be self-explanatory
  336. pcs_icesktng = (icesktng_lvl + (2 * pcs_agil + pcs_stren) / 3) / 2 - notfem
  337. icesktng[1] = 0 & icesktng[2] = 1 & icesktng[3] = -1
  338. !!Wrestling; Should be self-explanatory
  339. pcs_wrstlng = (wrstlng_lvl + (2 * pcs_stren + pcs_vital + pcs_agil) / 4) / 2 - notfem
  340. wrstlng[1] = 0 & wrstlng[2] = 1 & wrstlng[3] = 2 & wrstlng[4] = -1
  341. !!Football; Should be self-explanatory
  342. pcs_ftbll = (ftbll_lvl + (pcs_vital + pcs_agil + pcs_stren) / 3) / 2 - notfem
  343. ftbll[1] = 0 & ftbll[2] = 1 & ftbll[3] = 2 & ftbll[4] = -1
  344. !!Spell Casting; The ability to Successfully cast spells
  345. pcs_splcstng = (splcstng_lvl + (pcs_intel + pcs_react) / 2) / 2
  346. splcstng[1] = 3 & splcstng[2] = 4 & splcstng[3] = -1
  347. !!Observation; trained skill in noticing one''s surroundings and events (nothing but surface detail)
  348. pcs_observ = (observ_lvl + (pcs_prcptn + pcs_react + pcs_intel)/3) / 2
  349. observ[1] = 3 & observ[2] = 4 & observ[3] = 7 & observ[4] = -1
  350. !!Makeup; Skill at applying makeup, goes into the vnesh calc as makupskl/5
  351. pcs_makupskl = (makupskl_lvl + (pcs_intel + pcs_agil) / 2) / 2
  352. makupskl[1] = 1 & makupskl[2] = 3 & makupskl[3] = -1
  353. !!Computer Skill; Skill at using and repairing computers
  354. pcs_compskl = (compskl_lvl + pcs_intel) / 2 + (5 * logictrt)
  355. compskl[1] = 3 & compskl[2] = -1
  356. !!Hacking; Skill at hacking computer systems
  357. pcs_comphckng = (comphckng_lvl + (pcs_intel + pcs_react) / 2) / 2 + (5 * logictrt)
  358. comphckng[1] = 3 & comphckng[2] = 4 & comphckng[3] = -1
  359. !!Handy-work; Used for non-mechanic work, i.e. plumbing
  360. pcs_hndiwrk = (hndiwrk_lvl + (2 * pcs_agil + pcs_intel) / 3) / 2
  361. hndiwrk[1] = 1 & hndiwrk[2] = 3 & hndiwrk[3] = -1
  362. !!Serving; Covers all aspects of waitressing and bartending
  363. pcs_servng = (servng_lvl + (pcs_intel + pcs_vital) / 2) / 2
  364. servng[1] = 2 & servng[2] = 3 & servng[3] = -1
  365. !!Modelling; Knowing how to pose and hold poses for long periods of time
  366. pcs_mdlng = (mdlng_lvl + (pcs_agil + pcs_vital) / 2) / 2 - notfem
  367. mdlng[1] = 1 & mdlng[2] = 2 & mdlng[3] = -1
  368. !!Medicine; Basic medical knowledge up to the level of Nursing
  369. pcs_medcn = (medcn_lvl + (pcs_intel + pcs_react + pcs_prcptn) / 3) / 2
  370. medcn[1] = 3 & medcn[2] = 4 & medcn[3] = 7 & medcn[4] = -1
  371. !!Heels; Experience with walking in heels of increasing height
  372. !!Currently only based on the skill itself, not linked to any attributes
  373. pcs_heels = heels_lvl
  374. heels[1] = -1
  375. !!Skiing; Should be self-explanatory
  376. !!To add this skill, copy this "$skl_name[x] = 'skng'" to the end of the skils list above and replace the x with the next index number, then remove the comment and bracket marks on the next two lines and delete this line
  377. !!pcs_skng = (skng_lvl + (2 * pcs_agil + pcs_stren) / 3) / 2
  378. !!{skng[1] = 0 & skng[2] = 1 & skng[3] = -1}
  379. !!Larceny; picking locks, hotwire cars etc.; basic thief/stealing skills
  380. !!To add this skill, copy this "$skl_name[x] = 'thiefskls'" to the end of the skils list above and replace the x with the next index number, then remove the comment and bracket marks on the next two lines and delete this line
  381. !!pcs_thiefskls = (thiefskls_lvl + (2 * pcs_agil + pcs_react) / 3) / 2
  382. !!{thiefskls[1] = 1 & thiefskls[2] = 4 & thiefskls[3] = -1}
  383. !!Mechanic; Auto mechanic skill, can work on your own car
  384. !!To add this skill, copy this "$skl_name[x] = 'mchanc'" to the end of the skils list above and replace the x with the next index number, then remove the comment and bracket marks on the next two lines and delete this line
  385. !!pcs_mchanc = (mchanc_lvl + (2 * pcs_agil + pcs_intel) / 3) / 2
  386. !!{mchanc[1] = 1 & mchanc[2] = 3 & mchanc[3] = -1}
  387. !!Gambling; Should be self-explanatory
  388. !!To add this skill, copy this "$skl_name[x] = 'gmbling'" to the end of the skils list above and replace the x with the next index number, then remove the comment and bracket marks on the next two lines and delete this line
  389. !!pcs_gmbling = (gmbling_lvl + (2 * pcs_prcptn + pcs_intel + pcs_react) / 4) / 2
  390. !!{gmbling[1] = 3 & gmbling[2] = 4 & gmbling[3] = 7 & gmbling[4] = -1}
  391. !!Seduction; Trained art of making yourself sexually desired, by words, body language, tone etc.; should be checked with either a +hotcat or on a 300point scale with +vnesh (set elsewhere so not added here)
  392. !!To add this skill, copy this "$skl_name[x] = 'sdctn'" to the end of the skils list above and replace the x with the next index number, then remove the comment and bracket marks on the next two lines and delete this line
  393. !!pcs_sdctn = (sdctn_lvl + (pcs_prcptn + pcs_chrsm) / 2) / 2
  394. !!{sdctn[1] = 6 & sdctn[2] = 7 & sdctn[3] = -1}
  395. !!Computer Gaming; Skill at playing assorted computer and console games.
  396. !!To add this skill, copy this "$skl_name[x] = 'compgame'" to the end of the skils list above and replace the x with the next index number, then remove the comment and bracket marks on the next two lines and delete this line
  397. !!pcs_compgame = (compgame_lvl + (pcs_agil + pcs_react) / 2) / 2
  398. !!{compgame[1] = 1 & compgame[2] = 4 & compgame[3] = -1}
  399. --- stat_sklattrib ---------------------------------