mirror of
https://github.com/cyberarm/i-mic-rts.git
synced 2025-12-15 15:52:34 +00:00
12 lines
258 B
Ruby
12 lines
258 B
Ruby
IMICRTS::Entity.define_entity(:barracks, :building, 400, "Builds and soldiers") do |entity|
|
|
entity.has(:build_queue)
|
|
|
|
entity.radius = 44
|
|
entity.max_health = 100.0
|
|
|
|
entity.shell_image = "buildings/barracks/barracks.png"
|
|
|
|
entity.on_tick do
|
|
end
|
|
end
|