Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SCU Changes #6092

Draft
wants to merge 29 commits into
base: deploy/fafdevelop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
26ef47e
Base SCU Changes
MrRowey Apr 17, 2024
0cb8324
Fix Typo
MrRowey Apr 19, 2024
62483b4
Update Small Typos
MrRowey Apr 22, 2024
09f5dea
Merge branch 'deploy/fafdevelop' into Base-SCU-Rework
MrRowey Apr 26, 2024
ae7d1b3
Sera Base dame ehnacement swap
MrRowey Apr 26, 2024
4eaf585
Update XSL0301_unit.bp
MrRowey Apr 26, 2024
413e141
Fix Sera SACU damage mods
lL1l1 Apr 26, 2024
332854c
Fix UEF Sacu damage mods
lL1l1 Apr 26, 2024
91faed3
Add damage mod to shield for rambo preset
lL1l1 Apr 26, 2024
569b896
Fix indentation
lL1l1 Apr 26, 2024
7365acd
Merge branch 'deploy/fafdevelop' into Base-SCU-Rework
MrRowey May 1, 2024
01383cb
Create balance.6092.md
MrRowey May 1, 2024
a78a99c
Addtions
MrRowey May 2, 2024
eb321df
Added Base UEF Chanages and Implementes Small Jamming Field. Includes…
MrRowey May 14, 2024
7099d58
Added Stealth Field to base Cybran. Updated UEF Wreckage Layers. Upda…
MrRowey May 14, 2024
a884369
Updated the new Regen Rate for the base Sera SCU & Annotated script f…
MrRowey May 14, 2024
5d58c79
Quantum Games HP Reduced by 50%, Build Cost Reduced by 15%
MrRowey May 14, 2024
75bb9e9
Remove Transport Attachment from Qunatum Gates as it unused
MrRowey May 14, 2024
8fcca7e
Update Aeon SCU Cost, Improve Aeon Preset Order, Added TODO for Sera/…
MrRowey May 14, 2024
c1cdae1
Add removed Damage from base guns to SCU Upgrades, Aeon SCU reduced B…
MrRowey May 14, 2024
34aa9b0
Merge branch 'deploy/fafdevelop' into Base-SCU-Rework
MrRowey May 14, 2024
2c1a990
Update UEL0301_script.lua
MrRowey May 14, 2024
9867516
Reorder the UEF SCU EhncPresets.
MrRowey May 15, 2024
5fedb53
Reorder the Cybran SCU EhncPresets.
MrRowey May 15, 2024
7853463
Aeon SCU Intergrate Sacifice Upgrade. Moved Teleport to Left Arm, Reo…
MrRowey May 15, 2024
8631c1f
Sera Preset Update
MrRowey May 15, 2024
5a2ca47
Updated Cybran SACU BP, Changed Base Cost, Rapid Fab Cost, Added Dama…
MrRowey May 21, 2024
e1448f2
Updated Cybran SACU BP, Updated Death Damage
MrRowey May 21, 2024
e99983c
Update Cybran SACU Script File
MrRowey May 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Empty file.
16 changes: 5 additions & 11 deletions units/UAB0304/UAB0304_unit.bp
Expand Up @@ -43,8 +43,8 @@ UnitBlueprint{
AirThreatLevel = 0,
ArmorType = "Structure",
EconomyThreatLevel = 440,
Health = 10000,
MaxHealth = 10000,
Health = 5000,
MaxHealth = 5000,
RegenRate = 0,
SubThreatLevel = 0,
SurfaceThreatLevel = 0,
Expand Down Expand Up @@ -89,10 +89,10 @@ UnitBlueprint{
UniformScale = 0.055,
},
Economy = {
BuildCostEnergy = 30000,
BuildCostMass = 3000,
BuildCostEnergy = 25500,
BuildCostMass = 2550,
BuildRate = 120,
BuildTime = 4097,
BuildTime = 4100,
BuildableCategory = { "BUILTBYQUANTUMGATE AEON" },
RebuildBonusIds = { "uab0304" },
},
Expand Down Expand Up @@ -186,12 +186,6 @@ UnitBlueprint{
SizeY = 1.5,
SizeZ = 5,
StrategicIconName = "icon_structure3_transport",
StrategicIconSortPriority = 175,
Transport = {
Class2AttachSize = 1,
Class3AttachSize = 1,
ClassGenericUpTo = 3,
},
Wreckage = {
Blueprint = "/props/DefaultWreckage/DefaultWreckage_prop.bp",
EnergyMult = 0,
Expand Down
2 changes: 1 addition & 1 deletion units/UAL0301/UAL0301_script.lua
Expand Up @@ -141,7 +141,7 @@ UAL0301 = ClassUnit(CommandUnit) {
-- StabilitySupressant
elseif enh == 'StabilitySuppressant' then
local wep = self:GetWeaponByLabel('RightReactonCannon')
wep:AddDamageMod(bp.NewDamageMod or 0)
wep:AddDamageMod(bp.NewDamageMod or 200)
wep:AddDamageRadiusMod(bp.NewDamageRadiusMod or 0)
wep:ChangeMaxRadius(bp.NewMaxRadius or 40)
elseif enh == 'StabilitySuppressantRemove' then
Expand Down