From 907c8176a7e1f04db2dfcec94dd99c23d7683a84 Mon Sep 17 00:00:00 2001 From: BadM0dder <109397107+BadM0dder@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:23:05 -0400 Subject: [PATCH 1/4] Update Nyx.cs fug --- Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Nyx.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Nyx.cs b/Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Nyx.cs index 3c204bb5e..a287ad63d 100644 --- a/Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Nyx.cs +++ b/Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Nyx.cs @@ -185,7 +185,7 @@ partial class Parts { }, }, Ammos = new[] { - HAS_Nyx_Ammo, // Must list all primary, shrapnel, and pattern ammos. + HAS_Nyx_Ammo, HAS_Nyx_Ammo_Fake, // Must list all primary, shrapnel, and pattern ammos. }, //Animations = SA_HMI_ERGaussRF_Animation, //Upgrades = UpgradeModules, From b6720bf12f49feaa3a4ec16b037587b73b13da9f Mon Sep 17 00:00:00 2001 From: BadM0dder <109397107+BadM0dder@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:30:08 -0400 Subject: [PATCH 2/4] Un Nerf X4 --- .../Data/Scripts/CoreParts/Plasma Weapons/X-4PlasAmmo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Weapon Mods/TIOStarcore/Data/Scripts/CoreParts/Plasma Weapons/X-4PlasAmmo.cs b/Weapon Mods/TIOStarcore/Data/Scripts/CoreParts/Plasma Weapons/X-4PlasAmmo.cs index d42e3b61a..1ee6a1ef0 100644 --- a/Weapon Mods/TIOStarcore/Data/Scripts/CoreParts/Plasma Weapons/X-4PlasAmmo.cs +++ b/Weapon Mods/TIOStarcore/Data/Scripts/CoreParts/Plasma Weapons/X-4PlasAmmo.cs @@ -42,7 +42,7 @@ partial class Parts AmmoMagazine = "PlasAmmo", // SubtypeId of physical ammo magazine. Use "Energy" for weapons without physical ammo. AmmoRound = "Plasma-X", // Name of ammo in terminal, should be different for each ammo type used by the same weapon. HybridRound = true, // Use both a physical ammo magazine and energy per shot. - EnergyCost = 0.823f, //120MW@0.823 //58MW@0.4 // Scaler for energy per shot (EnergyCost * BaseDamage * (RateOfFire / 3600) * BarrelsPerShot * TrajectilesPerBarrel). Uses EffectStrength instead of BaseDamage if EWAR. + EnergyCost = 0.4f, //120MW@0.823 //58MW@0.4 // Scaler for energy per shot (EnergyCost * BaseDamage * (RateOfFire / 3600) * BarrelsPerShot * TrajectilesPerBarrel). Uses EffectStrength instead of BaseDamage if EWAR. BaseDamage = 5000f, // Direct damage; one steel plate is worth 100. Mass = 100f, // In kilograms; how much force the impact will apply to the target. Health = 0, // How much damage the projectile can take from other projectiles (base of 1 per hit) before dying; 0 disables this and makes the projectile untargetable. From a62b9cf25874f198d8fe1dfdc2b4e82f8936626b Mon Sep 17 00:00:00 2001 From: BadM0dder <109397107+BadM0dder@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:36:57 -0400 Subject: [PATCH 3/4] fixing the phobos needs to be unrestricted still --- .../OnyxArmamentCo/Data/Scripts/CoreParts/DeimosPhobos_Ammo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Weapon Mods/OnyxArmamentCo/Data/Scripts/CoreParts/DeimosPhobos_Ammo.cs b/Weapon Mods/OnyxArmamentCo/Data/Scripts/CoreParts/DeimosPhobos_Ammo.cs index d754c094d..33d3f2f8c 100644 --- a/Weapon Mods/OnyxArmamentCo/Data/Scripts/CoreParts/DeimosPhobos_Ammo.cs +++ b/Weapon Mods/OnyxArmamentCo/Data/Scripts/CoreParts/DeimosPhobos_Ammo.cs @@ -261,7 +261,7 @@ partial class Parts MaxLifeTime = 0, // 0 is disabled, Measured in game ticks (6 = 100ms, 60 = 1 seconds, etc..). Please have a value for this, It stops Bad things. AccelPerSec = 0f, // Meters Per Second. This is the spawning Speed of the Projectile, and used by turning. DesiredSpeed = 8000, // voxel phasing if you go above 5100 - MaxTrajectory = 7000f, // Max Distance the projectile or beam can Travel. + MaxTrajectory = 15000f, // Max Distance the projectile or beam can Travel. //FieldTime = 0, // 0 is disabled, a value causes the projectile to come to rest, spawn a field and remain for a time (Measured in game ticks, 60 = 1 second) GravityMultiplier = 0f, // Gravity multiplier, influences the trajectory of the projectile, value greater than 0 to enable. Natural Gravity Only. SpeedVariance = Random(start: 0, end: 0), // subtracts value from DesiredSpeed. Be warned, you can make your projectile go backwards. From 6f4e7205f36ff86d8a6775dcd3676d07866948b1 Mon Sep 17 00:00:00 2001 From: BadM0dder <109397107+BadM0dder@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:39:21 -0400 Subject: [PATCH 4/4] ion points --- .../Data/Scripts/Additions/PointAdditions.cs | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Gamemode Mods/Starcore_Pointslist/Data/Scripts/Additions/PointAdditions.cs b/Gamemode Mods/Starcore_Pointslist/Data/Scripts/Additions/PointAdditions.cs index 4821a5591..c2975c0ad 100644 --- a/Gamemode Mods/Starcore_Pointslist/Data/Scripts/Additions/PointAdditions.cs +++ b/Gamemode Mods/Starcore_Pointslist/Data/Scripts/Additions/PointAdditions.cs @@ -188,19 +188,19 @@ internal class PointAdditions : MySessionComponentBase ["LargeBlockSmallHydrogenThrustIndustrial"] = 10, ["HugeHydrogenThruster"] = 200, - ["LargeBlockLargeThrust"] = 10, - ["AQD_LG_IonThrusterL_ArmoredSlope"] = 10, - ["AQD_LG_IonThrusterL_Armored"] = 10, - ["LargeBlockLargeThrustSciFi"] = 10, - ["LargeBlockLargeModularThruster"] = 10, - ["LargeBlockSmallThrust"] = 2, - ["AQD_LG_IonThrusterS_Armored"] = 2, - ["AQD_LG_IonThrusterS_ArmoredSlope"] = 2, - ["LargeBlockSmallThrustSciFi"] = 2, - ["SmallThrustSciFi"] = 2, - ["LargeBlockSmallModularThruster"] = 2, - ["AWGFocusDrive"] = 50, - ["IonHeavyCovered"] = 50, + ["LargeBlockLargeThrust"] = 20, + ["AQD_LG_IonThrusterL_ArmoredSlope"] = 20, + ["AQD_LG_IonThrusterL_Armored"] = 20, + ["LargeBlockLargeThrustSciFi"] = 20, + ["LargeBlockLargeModularThruster"] = 20, + ["LargeBlockSmallThrust"] = 4, + ["AQD_LG_IonThrusterS_Armored"] = 4, + ["AQD_LG_IonThrusterS_ArmoredSlope"] = 4, + ["LargeBlockSmallThrustSciFi"] = 4, + ["SmallThrustSciFi"] = 4, + ["LargeBlockSmallModularThruster"] = 4, + ["AWGFocusDrive"] = 100, + ["IonHeavyCovered"] = 100, ["AWGGG"] = 150, ["AQD_LG_AtmoThrusterS_ArmoredSlopeRev"] = 3,