Skip to content
Snippets Groups Projects
Commit 2c553696 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Stronger bombs.

parent c4270cc2
No related branches found
No related tags found
No related merge requests found
......@@ -278,6 +278,9 @@ class Blast(bs.Actor):
self.hitType = hitType;
self.hitSubType = hitSubType;
# anton boom
blastRadius *= 1.25
# blast radius
self.radius = blastRadius
......@@ -464,6 +467,10 @@ class Blast(bs.Actor):
# new
mag = 2000.0
# anton boom
mag *= 10
if self.blastType == 'ice': mag *= 0.5
elif self.blastType == 'landMine': mag *= 2.5
elif self.blastType == 'tnt': mag *= 2.0
......@@ -600,7 +607,7 @@ class Bomb(bs.Actor):
WarnMessage()))
else:
fuseTime = 3000
fuseTime = 1500
if self.bombType == 'sticky':
sticky = True
model = factory.stickyBombModel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment