1
0
mirror of https://gitlab.com/the-no-frauds-club/cosmonarchy-bw-prerelease.git synced 2026-09-21 06:11:34 +00:00
cosmonarchy-bw-prerelease/mpq/lua/melee/zerg/basic.lua

18 lines
662 B
Lua
Raw Normal View History

local Basic = {}
---@type BuildOrder
function Basic.build_anti_ground(melee_ai, town)
melee_ai:build_sequence(town, 1, 3, UnitId.ZergSurkithCesiant, 80, 5, secs(25), secs(5))
melee_ai:wait_can_make(UnitId.ZergSkortrithCesiant)
melee_ai:build_sequence(town, 1, 3, UnitId.ZergSkortrithCesiant, 80, 5, secs(25), secs(5))
end
---@type BuildOrder
function Basic.build_anti_air(melee_ai, town)
melee_ai:build_sequence(town, 1, 3, UnitId.ZergSpraithCesiant, 80, 5, secs(25), secs(5))
melee_ai:wait_can_make(UnitId.ZergSpirtithCesiant)
melee_ai:build_sequence(town, 1, 3, UnitId.ZergSpirtithCesiant, 80, 5, secs(25), secs(5))
end
return Basic