summaryrefslogtreecommitdiffhomepage
path: root/app/factories/ships/osprey.rb
blob: 1f57cb1abd4d5e9aaecf56bda3c5da3835dee100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Factory
  class Osprey
    def self.new(x: x, y: y)
      sprite = FF::Cmp::Sprite.new
      sprite.props[:path] = 'sprites/kenny/Ships/Osprey.png'
      FF::Ent.new(
        FF::Cmp::Boid.new(x: x, y: y, vx: 25, vy: 25, w: 32, h: 32),
        sprite,
        FF::Cmp::BoidBounds.new(strength: 0.6),
        FF::Cmp::BoidsAlignment.new(strength: 1),
        FF::Cmp::BoidsSeparation.new(distance: 150, strength: 0.001),
        FF::Cmp::BoidsCohesion.new(strength: 10000),
        FF::Cmp::Hp.new(health: 100),
        FF::Cmp::CollisionDamage.new(damage: 100),
        FF::Cmp::Hitcircle.new(r: 12),
        FF::Cmp::DebugVectorArrow[0],
        FF::Cmp::SingletonCamera[0],
      )
    end
  end
end