mirror of
https://github.com/cyberarm/i-mic-rts.git
synced 2025-12-15 15:52:34 +00:00
15 lines
419 B
Ruby
15 lines
419 B
Ruby
IMICRTS::Entity.define_entity(:helicopter, :unit, 400, "Attacks ground targets") do |entity|
|
|
entity.has(:movement)
|
|
|
|
entity.radius = 14
|
|
entity.movement = :air
|
|
entity.max_health = 100.0
|
|
|
|
entity.body_image = "vehicles/helicopter/helicopter.png"
|
|
entity.shell_image = "vehicles/helicopter/helicopter_shell.png"
|
|
entity.overlay_image = "vehicles/helicopter/helicopter_overlay.png"
|
|
|
|
entity.on_tick do
|
|
end
|
|
end
|