Added last 2 units, added sidebar actions and build queue components, entities can now have their build actions put on the sidebar

This commit is contained in:
2019-11-21 14:04:33 -06:00
parent 902e48d53a
commit cec0c45932
12 changed files with 107 additions and 8 deletions

View File

@@ -1,4 +1,10 @@
IMICRTS::Entity.define_entity(:war_factory, :building, 2_000, "Generates credits") do |entity|
IMICRTS::Entity.define_entity(:war_factory, :building, 2_000, "Builds units") do |entity|
entity.has(:build_queue)
entity.has(:sidebar_actions)
entity.component(:sidebar_actions).add(:add_to_build_queue, :jeep)
entity.component(:sidebar_actions).add(:add_to_build_queue, :tank)
entity.component(:sidebar_actions).add(:add_to_build_queue, :harvester)
entity.radius = 48
entity.max_health = 100.0