Files
i-mic-rts/lib/entities/construction_worker.rb
2019-10-11 20:01:35 -05:00

12 lines
379 B
Ruby

IMICRTS::Entity.define_entity(:construction_worker, :unit, 1000, "Constructs buildings") do |entity|
entity.radius = 14
entity.movement = :ground
entity.max_health = 100.0
entity.body_image = "vehicles/construction_worker/images/construction_worker.png"
entity.shell_image = "vehicles/construction_worker/images/construction_worker.png"
entity.on_tick do
end
end