[b25] More than 2 Hurricanes at a time

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
jotwebe
Uruivellas
Posts: 725
Joined: Fri Apr 15, 2011 6:58 am
Location: GMT+1

[b25] More than 2 Hurricanes at a time

#1 Post by jotwebe »

According to Hurricane's (spells/storm) description,
return ([[Each time one of your lightning spell dazes a target it has %d%% chances to creates a chain reaction that summons a mighty Hurricane that last for 10 turns around the target with radius of %d.
Each turn all creatures around it will take %0.2f to %0.2f lightning damage.
Only 2 hurricanes can exist at the same time.
The damage will increase with the Magic stat]]):format(chance, radius, damage / 3, damage)
That's not true, however. I haven't seen anything either in spells/storm or in timed_effects that checks for existing hurricanes.

Here's an example where a Nova starts 3 Hurricanes:

Code: Select all


[LOG]	Isenwolf casts Nova.
USING	table: 0xa818bc0	Nova
[SPELL CRIT %]	9.6000000000001
[PROJECTOR] starting dam	68.333333333333
[PROJECTOR] after difficulty dam	68.333333333333
[PROJECTOR] res	0	1	 on dam	79.95
[PROJECTOR] after resists dam	79.95
[PROJECTOR] final dam	79.95
checkHit	137	24.625
=> chance to hit	92.382051897989
[LOG]	Cutpurse is dazed!
addTmpVal	table: 0x113f2c48	dazed	1	 :=: 	14	14	add
[LOG]	Cutpurse is caught inside a Hurricane.
[PROJECTOR] starting dam	68.333333333333
[PROJECTOR] after difficulty dam	68.333333333333
[PROJECTOR] res	0	1	 on dam	79.95
[PROJECTOR] after resists dam	79.95
[PROJECTOR] final dam	79.95
checkHit	137	18.9
=> chance to hit	93.938419711453
[LOG]	Ninurlhing is dazed!
addTmpVal	table: 0xe786fa0	dazed	1	 :=: 	2	2	add
[LOG]	Ninurlhing is caught inside a Hurricane.
[PROJECTOR] starting dam	68.333333333333
[PROJECTOR] after difficulty dam	68.333333333333
[PROJECTOR] res	8.0548723553325	0.91945127644668	 on dam	79.95
[PROJECTOR] after resists dam	73.510129551912
[PROJECTOR] final dam	73.510129551912
checkHit	137	4.55
=> chance to hit	95
[LOG]	Giant fire ant is dazed!
addTmpVal	table: 0xefd3338	dazed	1	 :=: 	1	1	add
[LOG]	Giant fire ant is caught inside a Hurricane.
[PROJECTOR] starting dam	68.333333333333
[PROJECTOR] after difficulty dam	68.333333333333
[PROJECTOR] res	0	1	 on dam	79.95
[PROJECTOR] after resists dam	79.95
[PROJECTOR] final dam	79.95
checkHit	137	4.55
=> chance to hit	95
[LOG]	Giant ice ant is dazed!
addTmpVal	table: 0x111b2b38	dazed	1	 :=: 	1	1	add
[LOG]	#{italic}##FIREBRICK#curlyjim has joined channel tome (press space to talk).#{normal}#
[LOG]	Isenwolf hits ninurlhing for #ROYAL_BLUE#80 lightning#LAST# damage.
[LOG]	Isenwolf hits cutpurse for #ROYAL_BLUE#80 lightning#LAST# damage.
[LOG]	Isenwolf hits giant fire ant for #ROYAL_BLUE#74 lightning#LAST# damage.
[LOG]	Isenwolf hits giant ice ant for #ROYAL_BLUE#80 lightning#LAST# damage.
Ghoul never existed, this never happened!

darkgod
Master of Eyal
Posts: 10751
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: [b25] More than 2 Hurricanes at a time

#2 Post by darkgod »

True, fixed (removed the line ;) )
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

Post Reply