mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-07-13 15:34:42 +00:00
resolutions 3; exo-suit conventions
This commit is contained in:
parent
c4bb0a77f6
commit
a782e7bc46
3 changed files with 9 additions and 3 deletions
|
|
@ -1530,7 +1530,8 @@ object GlobalDefinitions {
|
||||||
Standard.ResistanceSplash = 15
|
Standard.ResistanceSplash = 15
|
||||||
Standard.ResistanceAggravated = 8
|
Standard.ResistanceAggravated = 8
|
||||||
|
|
||||||
Agile.Name = "agile"
|
Agile.Name = "lite_armor"
|
||||||
|
Agile.Descriptor = "agile"
|
||||||
Agile.MaxArmor = 100
|
Agile.MaxArmor = 100
|
||||||
Agile.InventoryScale = InventoryTile.Tile99
|
Agile.InventoryScale = InventoryTile.Tile99
|
||||||
Agile.InventoryOffset = 6
|
Agile.InventoryOffset = 6
|
||||||
|
|
@ -1542,7 +1543,8 @@ object GlobalDefinitions {
|
||||||
Agile.ResistanceSplash = 25
|
Agile.ResistanceSplash = 25
|
||||||
Agile.ResistanceAggravated = 10
|
Agile.ResistanceAggravated = 10
|
||||||
|
|
||||||
Reinforced.Name = "reinforced"
|
Reinforced.Name = "med_armor"
|
||||||
|
Reinforced.Descriptor = "reinforced"
|
||||||
Reinforced.Permissions = List(CertificationType.ReinforcedExoSuit)
|
Reinforced.Permissions = List(CertificationType.ReinforcedExoSuit)
|
||||||
Reinforced.MaxArmor = 200
|
Reinforced.MaxArmor = 200
|
||||||
Reinforced.InventoryScale = InventoryTile.Tile1209
|
Reinforced.InventoryScale = InventoryTile.Tile1209
|
||||||
|
|
@ -1580,18 +1582,21 @@ object GlobalDefinitions {
|
||||||
}
|
}
|
||||||
|
|
||||||
CommonMaxConfig(VSMAX)
|
CommonMaxConfig(VSMAX)
|
||||||
|
VSMAX.Name = "vshev"
|
||||||
VSMAX.MaxCapacitor = 50
|
VSMAX.MaxCapacitor = 50
|
||||||
VSMAX.CapacitorRechargeDelayMillis = 5000
|
VSMAX.CapacitorRechargeDelayMillis = 5000
|
||||||
VSMAX.CapacitorRechargePerSecond = 3
|
VSMAX.CapacitorRechargePerSecond = 3
|
||||||
VSMAX.CapacitorDrainPerSecond = 20
|
VSMAX.CapacitorDrainPerSecond = 20
|
||||||
|
|
||||||
CommonMaxConfig(TRMAX)
|
CommonMaxConfig(TRMAX)
|
||||||
|
TRMAX.Name = "trhev"
|
||||||
TRMAX.MaxCapacitor = 300
|
TRMAX.MaxCapacitor = 300
|
||||||
TRMAX.CapacitorRechargeDelayMillis = 10000
|
TRMAX.CapacitorRechargeDelayMillis = 10000
|
||||||
TRMAX.CapacitorRechargePerSecond = 10
|
TRMAX.CapacitorRechargePerSecond = 10
|
||||||
TRMAX.CapacitorDrainPerSecond = 30
|
TRMAX.CapacitorDrainPerSecond = 30
|
||||||
|
|
||||||
CommonMaxConfig(NCMAX)
|
CommonMaxConfig(NCMAX)
|
||||||
|
NCMAX.Name = "nchev"
|
||||||
NCMAX.MaxCapacitor = 400
|
NCMAX.MaxCapacitor = 400
|
||||||
NCMAX.CapacitorRechargeDelayMillis = 10000
|
NCMAX.CapacitorRechargeDelayMillis = 10000
|
||||||
NCMAX.CapacitorRechargePerSecond = 4
|
NCMAX.CapacitorRechargePerSecond = 4
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,7 @@ class ExoSuitDefinition(private val suitType : ExoSuitType.Value) extends BasicD
|
||||||
|
|
||||||
class SpecialExoSuitDefinition(private val suitType : ExoSuitType.Value) extends ExoSuitDefinition(suitType) {
|
class SpecialExoSuitDefinition(private val suitType : ExoSuitType.Value) extends ExoSuitDefinition(suitType) {
|
||||||
Name = "heavy_armor"
|
Name = "heavy_armor"
|
||||||
|
Descriptor = "heavy_armor"
|
||||||
|
|
||||||
private var activatedSpecial : SpecialExoSuitDefinition.Mode.Value = SpecialExoSuitDefinition.Mode.Normal
|
private var activatedSpecial : SpecialExoSuitDefinition.Mode.Value = SpecialExoSuitDefinition.Mode.Normal
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7791,7 +7791,7 @@ class WorldSessionActor extends Actor with MDCContextAware {
|
||||||
sendResponse(PlanetsideAttributeMessage(amenityId, 47, if(silo.LowNtuWarningOn) 1 else 0))
|
sendResponse(PlanetsideAttributeMessage(amenityId, 47, if(silo.LowNtuWarningOn) 1 else 0))
|
||||||
|
|
||||||
if(silo.ChargeLevel == 0) {
|
if(silo.ChargeLevel == 0) {
|
||||||
sendResponse(PlanetsideAttributeMessage(silo.Owner.asInstanceOf[Building].GUID, 48, 1))
|
sendResponse(PlanetsideAttributeMessage(silo.Owner.GUID, 48, 1))
|
||||||
}
|
}
|
||||||
case _ => ;
|
case _ => ;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue