mirror of
https://github.com/cyberarm/i-mic-rts.git
synced 2025-12-15 15:52:34 +00:00
18 lines
471 B
Ruby
18 lines
471 B
Ruby
IMICRTS::Entity.define_entity(:jeep, :unit, 400, "Attacks ground targets") do |entity|
|
|
entity.has(:movement)
|
|
entity.has(:turret)
|
|
|
|
entity.radius = 14
|
|
entity.movement = :ground
|
|
entity.max_health = 100.0
|
|
|
|
entity.body_image = "vehicles/jeep/jeep.png"
|
|
entity.shell_image = "vehicles/jeep/jeep_shell.png"
|
|
|
|
entity.component(:turret).shell_image = "vehicles/jeep/jeep_turret_shell.png"
|
|
entity.component(:turret).center.y = 0.3125
|
|
|
|
entity.on_tick do
|
|
end
|
|
end
|