Skip to content

Commit

Permalink
Populate the blueprint field AverageDensity of units (#6279)
Browse files Browse the repository at this point in the history
Affects the behavior of units when they bump into each other. Units with more weight push units with less weight. As a result units with more health will receive less to no pushback from units with less health.
  • Loading branch information
Garanas authored Jul 2, 2024
1 parent 727125e commit 738fe61
Show file tree
Hide file tree
Showing 404 changed files with 439 additions and 19 deletions.
2 changes: 1 addition & 1 deletion engine/Core/Blueprints/EntityBlueprint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---@class EntityBlueprint : HitBox, Blueprint
--- alternate Unit footprint
---@field AltFootprint? FootprintBlueprint
--- unit average density in tons / m^3 (default is 0.49)
--- unit average density in tons / m^3 (default is 0.49). Affects the behavior of units when they bump into each other. Units with more weight push units with less weight.
---@field AverageDensity? number
--- list of category names that this entity belongs to
---@field Categories CategoryName[]
Expand Down
35 changes: 35 additions & 0 deletions lua/system/blueprints-units.lua
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,29 @@ function VerifyBlinkingLights(unit)
end
end

--- Feature: Unit weight based on the maximum health of a unit
---
--- Affects the behavior of units when they bump into each other. Units
--- with more weight push units with less weight. As a result units with
--- more health will receive less to no pushback from units with less health.
---@param unit UnitBlueprint
local function ProcessUnitDensity(unit)
local averageDensity = 10
if unit.Defense and unit.Defense.MaxHealth then
averageDensity = unit.Defense.MaxHealth

if unit.Physics and unit.Physics.MotionType == "RULEUMT_Hover" then
averageDensity = 0.50 * averageDensity
end
end

if averageDensity ~= unit.AverageDensity then
WARN(string.format("Overwriting the average density of %s from %s to %s", tostring(unit.BlueprintId), unit.AverageDensity, averageDensity))
end

unit.AverageDensity = averageDensity
end

--- Post-processes all units
---@param allBlueprints BlueprintsTable
---@param units UnitBlueprint[]
Expand All @@ -779,3 +802,15 @@ function PostProcessUnits(allBlueprints, units)
end
end
end

--- Batch process all units
---@param blueprints BlueprintsTable
function BatchProcessUnits(blueprints)
LOG("Batch processing units")
if blueprints.Unit then
for _, unit in pairs(blueprints.Unit) do
ProcessCanLandOnWater(unit)
ProcessUnitDensity(unit)
end
end
end
1 change: 1 addition & 0 deletions units/DAA0206/DAA0206_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0204_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 90,
BuildIconSortPriority = 35,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/DAL0310/DAL0310_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'UAL', Cue = 'UAL0304_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Tank', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 400.0,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/DALK003/DALK003_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'UAL', Cue = 'UAL0303_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Bot', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1700,
BuildIconSortPriority = 25,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/DEA0202/DEA0202_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UEA', Cue = 'UEA0304_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'UEF_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1200,
BuildIconSortPriority = 18,
Categories = {
"AIR",
Expand Down
1 change: 1 addition & 0 deletions units/DEL0204/DEL0204_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'UEL', Cue = 'UEL0107_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'UEF_Select_Bot', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 650,
BuildIconSortPriority = 18,
Categories = {
"BOT",
Expand Down
1 change: 1 addition & 0 deletions units/DELK002/DELK002_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'UEL', Cue = 'UEL0202_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'UEF_Select_Vehicle', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1900,
BuildIconSortPriority = 25,
Categories = {
"ANTIAIR",
Expand Down
1 change: 1 addition & 0 deletions units/DRA0202/DRA0202_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'URA', Cue = 'URA0204_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Cybran_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1100,
BuildIconSortPriority = 15,
Categories = {
"AIR",
Expand Down
1 change: 1 addition & 0 deletions units/DRL0204/DRL0204_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'URL', Cue = 'URL0107_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Cybran_Select_Bot', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 550,
BuildIconSortPriority = 20,
Categories = {
"BOT",
Expand Down
1 change: 1 addition & 0 deletions units/DRLK001/DRLK001_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'URL', Cue = 'URL0107_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Cybran_Select_Bot', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1900,
BuildIconSortPriority = 25,
Categories = {
"ANTIAIR",
Expand Down
1 change: 1 addition & 0 deletions units/DRLK005/DRLK005_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ UnitBlueprint{
EggSink = Sound { Bank = 'URLDestroy', Cue = 'URB_Destroy_Lrg_PreDestroy', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Cybran_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 10,
BuildIconSortPriority = 25,
Categories = {
"CONSTRUCTION",
Expand Down
1 change: 1 addition & 0 deletions units/DSLK004/DSLK004_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'XSL', Cue = 'XSL0303_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'SeraphimSelect', Cue = 'Seraphim_Select_Tank', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1800,
BuildIconSortPriority = 35,
Categories = {
"ANTIAIR",
Expand Down
1 change: 1 addition & 0 deletions units/SRL0310/SRL0310_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
StopMove = Sound { Bank = 'URL', Cue = 'URL0107_Move_Stop', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Cybran_Select_Bot', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 800,
Buffs = {
Regen = {
Level1 = 3,
Expand Down
1 change: 1 addition & 0 deletions units/UAA0101/UAA0101_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0101_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 25,
BuildIconSortPriority = 20,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0102/UAA0102_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0102_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 285,
BuildIconSortPriority = 30,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0103/UAA0103_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0103_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 205,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
2 changes: 1 addition & 1 deletion units/UAA0104/UAA0104_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ UnitBlueprint{
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
Unload = Sound { Bank = 'UAA', Cue = 'UAA0104_Unit_Unload', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1,
AverageDensity = 1575,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
2 changes: 1 addition & 1 deletion units/UAA0107/UAA0107_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ UnitBlueprint{
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
Unload = Sound { Bank = 'UAA', Cue = 'UAA0104_Unit_Unload', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1,
AverageDensity = 500,
BuildIconSortPriority = 50,
Categories = {
"AEON",
Expand Down
2 changes: 1 addition & 1 deletion units/UAA0203/UAA0203_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0203_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1,
AverageDensity = 848,
BuildIconSortPriority = 30,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0204/UAA0204_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0204_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 820,
BuildIconSortPriority = 20,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0302/UAA0302_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0302_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1050,
BuildIconSortPriority = 20,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0303/UAA0303_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0303_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 2250,
BuildIconSortPriority = 25,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0304/UAA0304_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0304_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 3800,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAA0310/UAA0310_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ UnitBlueprint{
Thruster = Sound { Bank = 'UAA', Cue = 'UAA0310_Move_Thruster', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Air', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 40000,
BuildIconSortPriority = 110,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0101/UAB0101_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0101_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 3200,
BuildIconSortPriority = 10,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0102/UAB0102_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0102_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 3200,
BuildIconSortPriority = 20,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0103/UAB0103_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0103_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 3700,
BuildIconSortPriority = 30,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0201/UAB0201_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0201_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 6400,
BuildIconSortPriority = 50,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0202/UAB0202_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0202_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 6400,
BuildIconSortPriority = 60,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0203/UAB0203_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0203_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 12800,
BuildIconSortPriority = 70,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0301/UAB0301_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0301_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 12800,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0302/UAB0302_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0302_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 12800,
BuildIconSortPriority = 50,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0303/UAB0303_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0303_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Factory', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 21000,
BuildIconSortPriority = 60,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB0304/UAB0304_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB0304_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Structure', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 10000,
BuildIconSortPriority = 220,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1101/UAB1101_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1101_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 525,
BuildIconSortPriority = 60,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1102/UAB1102_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1102_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1600,
BuildIconSortPriority = 70,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1103/UAB1103_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1103_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 370,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1104/UAB1104_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1104_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 360,
BuildIconSortPriority = 50,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1105/UAB1105_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1105_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 500,
BuildIconSortPriority = 80,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1106/UAB1106_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1106_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 650,
BuildIconSortPriority = 50,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1201/UAB1201_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1201_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 2300,
BuildIconSortPriority = 70,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1202/UAB1202_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1202_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 1900,
BuildIconSortPriority = 40,
Categories = {
"AEON",
Expand Down
1 change: 1 addition & 0 deletions units/UAB1301/UAB1301_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ UnitBlueprint{
DoneBeingBuilt = Sound { Bank = 'UAB', Cue = 'UAB1301_Activate', LodCutoff = 'UnitMove_LodCutoff' },
UISelection = Sound { Bank = 'Interface', Cue = 'Aeon_Select_Resource', LodCutoff = 'UnitMove_LodCutoff' },
},
AverageDensity = 6200,
BuildIconSortPriority = 70,
Categories = {
"AEON",
Expand Down
Loading

0 comments on commit 738fe61

Please sign in to comment.