123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- # init
- !Calculation initiative
- !Be sure to check for mills
- !hod variable is responsible for who will attack
- !hod = 0 player attacks hod = 1 enemy attacks
- !<font color = red><<$pcs_nickname>> </font>
- if GedoMazo = 1 and stunV > 0:stunV = 0 & mannaV = mannaV - 1000 & '<font color = red><<$boydesc>> with a deafening roar,, It allocates a large amount of energy which allows him to attack you again.</font>'
- initi = pcs_react*20/100
- initi = initi - dospehVes
- if initi < 0:initi = 0
- init = RAND(pcs_react-initi,pcs_react+initi) + initBonus
- initiV = reactV*20/100
- initiV = initiV - dospehVesV
- if initiV < 0:initiV = 0
- initV = RAND(reactV-initiV,reactV+initiV) + initBonusV
- if hodtime >= 3 and stun = 0 and stunV = 0 and initBonus = 0:
- !the player has already attacked three times
- '<font color = red><<$boydesc>> I took the initiative</font>'
- hod = 1
- hodtime = 0
- exit
- elseif hodtimeV >= 3 and stun = 0 and stunV = 0 and initBonusV = 0:
- !the opponent three times already attacked
- '<font color = green>You seized the initiative</font>'
- hod = 0
- hodtimeV = 0
- exit
- end
- if stun = 0 and stunV = 0 and hodtime < 3 and hodtimeV < 3 or stun = 0 and stunV = 0 and initBonus > 0 or stun = 0 and stunV = 0 and initBonusV > 0:
- !neither in the camp
- if tuman = 0 and tumanV = 0:
- !no fog
- if init > initV:
- !initiative tackler
- '<font color = green>You took the initiative</font>'
- hod = 0
- hodtime = hodtime + 1
- exit
- elseif init < initV:
- !the initiative has captured the enemy
- '<font color = red><<$boydesc>> He seized the initiative</font>'
- hod = 1
- hodtimeV = hodtimeV + 1
- exit
- elseif init = initV:
- hod = RAND(0,1)
- if hod = 0:'<font color = green>You hardly took the initiative</font>'
- if hod = 1:'<font color = red><<$boydesc>> hardly seized the initiative</font>'
- exit
- end
- elseif tuman > 0:
- !fog player
- tuman = tuman - 1
- initV = reactV-initiV
- if init > initV:
- !initiative tackler
- '<font color = green>In your fog <<$boydesc>> I do not have time for you, and you took the initiative</font>'
- hod = 0
- hodtime = hodtime + 1
- exit
- elseif init < initV:
- !the initiative has captured the enemy
- '<font color = red>Although your fog <<$boydesc>> He seized the initiative</font>'
- hod = 1
- hodtimeV = hodtimeV + 1
- exit
- elseif init = initV:
- hod = RAND(0,1)
- if hod = 0:'<font color = green>You hardly seized the initiative in spite of your fog</font>'
- if hod = 1:'<font color = red><<$boydesc>> despite your fog still took the initiative</font>'
- exit
- end
- elseif tumanV > 0:
- !fog opponent
- tumanV = tumanV - 1
- init = pcs_react-initi
- if init > initV:
- !initiative tackler
- '<font color = green>Despite the fog, You took the initiative</font>'
- hod = 0
- hodtime = hodtime + 1
- exit
- elseif init < initV:
- !the initiative has captured the enemy
- '<font color = red><<$boydesc>> Using a mist easily captures initiative</font>'
- hod = 1
- hodtimeV = hodtimeV + 1
- exit
- elseif init = initV:
- hod = RAND(0,1)
- if hod = 0:'<font color = green>You hardly seized the initiative in spite of the fog</font>'
- if hod = 1:'<font color = red><<$boydesc>> Using a mist seized the initiative</font>'
- exit
- end
- end
- end
- if stun > 0:
- !player in the camp
- stun = stun - 1
- hod = 1
- if tuman > 0:tuman = tuman - 1
- if tumanV > 0:tumanV = tumanV - 1
- '<font color = red>You can not move, and <<$boydesc>> easy to seize the initiative</font>'
- exit
- elseif stunV > 0:
- !the enemy in the camp
- stunV = stunV - 1
- hod = 0
- if tuman > 0:tuman = tuman - 1
- if tumanV > 0:tumanV = tumanV - 1
- '<font color = green><<$boydesc>> It can not move and you can easily grab the initiative</font>'
- exit
- end
- --- init ---------------------------------
|