summaryrefslogtreecommitdiffhomepage
path: root/app/factories/bullet.rb
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2021-12-26 21:42:56 -0500
committerrealtradam <[email protected]>2021-12-26 21:42:56 -0500
commit5f8a4b6b17d6ada0097412b13605717dd5a310df (patch)
treecd3646042537e6c9e69ff2c31c99b816607acce7 /app/factories/bullet.rb
parent70b2499a8753331b68fb7a61a8882c9ff0b017d8 (diff)
downloadSteelWings-5f8a4b6b17d6ada0097412b13605717dd5a310df.tar.gz
SteelWings-5f8a4b6b17d6ada0097412b13605717dd5a310df.zip
added rate of fire, tweaked ai
Diffstat (limited to 'app/factories/bullet.rb')
-rw-r--r--app/factories/bullet.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/factories/bullet.rb b/app/factories/bullet.rb
index 1731999..39d3f3c 100644
--- a/app/factories/bullet.rb
+++ b/app/factories/bullet.rb
@@ -8,7 +8,7 @@ class Factory
sprite,
FF::Cmp::Boid.new(x: x, y: y, vx: vx, vy: vy, w: 16, h: 16),
FF::Cmp::SingletonCamera[0],
- FF::Cmp::Hitcircle.new(r: 10),
+ FF::Cmp::Hitcircle.new(r: 20),
FF::Cmp::Hp.new(health: 1),
FF::Cmp::Team.new,
FF::Cmp::CollisionDamage.new(damage: damage),