Skip to content

Commit a160138

Browse files
authored
Rac Buff, plate repair reversion (#1922)
2 parents 9f66cea + 912037e commit a160138

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Weapon Mods/Anomaly_Solaris_Hypernautics/Data/Scripts/selfrepair/selfrepair.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private void DoRepair()
6868

6969
// If the grid has an owner, proceed with repair and ownership change.
7070

71-
float repairAmount = 14; //about 1% per triggertick, tested in game.
71+
float repairAmount = 8; //about 3.5% per triggertick at 14, 2% per trigger at 8, tested in game.
7272
slimBlock.IncreaseMountLevel(repairAmount, 0L, null, 0f, false, MyOwnershipShareModeEnum.Faction);
7373

7474
// Try casting to MyCubeBlock and change the owner.

Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Vulcan.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ partial class Parts {
5656
HardPoint = new HardPointDef
5757
{
5858
PartName = "R.A.C.-5 Avenger", // Name of the weapon in terminal, should be unique for each weapon definition that shares a SubtypeId (i.e. multiweapons).
59-
DeviateShotAngle = 0.57f, // Projectile inaccuracy in degrees.
59+
DeviateShotAngle = 0.52f, //0.57f //Projectile inaccuracy in degrees.
6060
AimingTolerance = 1f, // How many degrees off target a turret can fire at. 0 - 180 firing angle.
61-
AimLeadingPrediction = Basic, // Level of turret aim prediction; Off, Basic, Accurate, Advanced
61+
AimLeadingPrediction = Accurate, // Level of turret aim prediction; Off, Basic, Accurate, Advanced
6262
DelayCeaseFire = 0, // Measured in game ticks (6 = 100ms, 60 = 1 second, etc..). Length of time the weapon continues firing after trigger is released.
6363
AddToleranceToTracking = false, // Allows turret to track to the edge of the AimingTolerance cone instead of dead centre.
6464
CanShootSubmerged = false, // Whether the weapon can be fired underwater when using WaterMod.

Weapon Mods/Heavy-Assault-Systems/Data/Scripts/CoreParts/Vulcan_Ammo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ partial class Parts
9595
// For the following modifier values: -1 = disabled (higher performance), 0 = no damage, 0.01f = 1% damage, 2 = 200% damage.
9696
FallOff = new FallOffDef
9797
{
98-
Distance = 4000f, // Distance at which damage begins falling off.
99-
MinMultipler = 0.5f, // Value from 0.0001f to 1f where 0.1f would be a min damage of 10% of base damage.
98+
Distance = 0f, //4000f// Distance at which damage begins falling off.
99+
MinMultipler = 1f, //0.5f // Value from 0.0001f to 1f where 0.1f would be a min damage of 10% of base damage.
100100
},
101101
Grids = new GridSizeDef
102102
{

0 commit comments

Comments
 (0)