package avatar
- Alphabetic
- Public
- Protected
Type Members
- case class Avatar(id: Int, basic: BasicCharacterData, bep: Long = 0, cep: Long = 0, stamina: Int = 100, fatigued: Boolean = false, certifications: Set[Certification] = Set(), implants: Seq[Option[Implant]] = Seq(None, None, None), shortcuts: Array[Option[Shortcut]] = Array.fill[Option[Shortcut]](64)(None), locker: LockerContainer = Avatar.makeLocker(), deployables: DeployableToolbox = new DeployableToolbox(), lookingForSquad: Boolean = false, vehicle: Option[PlanetSideGUID] = None, decoration: ProgressDecoration = ProgressDecoration(), loadouts: Loadouts = Loadouts(), cooldowns: Cooldowns = Cooldowns(), people: MemberLists = MemberLists(), scorecard: ScoreCard = new ScoreCard()) extends Product with Serializable
- sealed abstract class Award extends StringEnumEntry
A unique accomplishment that statuses positive player behavior and assigns classification and advancement metrics to the accomplishment.
- sealed abstract class BattleRank extends IntEnumEntry
Battle ranks and their starting experience values Source: http://wiki.psforever.net/wiki/Battle_Rank
- sealed abstract class Certification extends IntEnumEntry
- sealed abstract class CommandRank extends IntEnumEntry
Command ranks and their starting experience values
- final case class CommendationRank(commendation: types.MeritCommendation.Value) extends Product with Serializable
Awards organize merit commendations into an iterative series that have their own accomplishment statistics.
Awards organize merit commendations into an iterative series that have their own accomplishment statistics.
- commendation
the merit commendation attached to this rank
- See also
MeritCommendation.Value
- case class Cooldowns(purchase: Map[String, LocalDateTime] = Map(), use: Map[String, LocalDateTime] = Map()) extends Product with Serializable
- class CorpseControl extends Actor with ContainableBehavior
- class DeployableToolbox extends AnyRef
A class that keeps track - "manages" - deployables that are owned by the avatar.
Deployables belong to the Engineering certification line of certifications.A class that keeps track - "manages" - deployables that are owned by the avatar.
Deployables belong to the Engineering certification line of certifications.CombatEngineering
and above certifications include permissions for different types of deployables, and one unique type of deployable is available through theGroundSupport
and one that also requiresAdvancedHacking
. (They are collectively called "ce" for that reason.)
Not only does the level of certification change the maximum number of deployables that can be managed by type but it also influences the maximum number of deployables that can be managed by category. Individual deployables are counted by type and category individually in special data structures to avoid having to probe the primary list of deployable references whenever a question of quantity is asked. As deployables are added and removed, and tracked certifications are added and removed, these structures are updated to reflect proper count. For example, the greatest number of spitfire turrets that can be placed is 15 (individual count) and the greatest number of shadow turrets and cerebus turrets that can be placed is 5 each (individual counts) but the maximum number of small turrets that can be placed overall is only 15 (categorical count). Spitfire turrets, shadow turrets, and cerebus turrets are all included in the category of small turrets. - case class Friend(charId: Long = 0, name: String = "", faction: types.PlanetSideEmpire.Value, online: Boolean = false) extends Product with Serializable
- case class Ignored(charId: Long = 0, name: String = "", online: Boolean = false) extends Product with Serializable
- case class Implant(definition: ImplantDefinition, active: Boolean = false, initialized: Boolean = false) extends Product with Serializable
- class LoadoutManager extends AnyRef
- case class Loadouts(suit: Seq[Option[Loadout]] = Seq.fill(20)(None), squad: Seq[Option[SquadLoadout]] = Seq.fill(10)(None)) extends Product with Serializable
- case class MemberLists(friend: List[Friend] = List[Friend](), ignored: List[Ignored] = List[Ignored]()) extends Product with Serializable
- sealed abstract class NewConglomerateAward extends Award
- class PlayerControl extends Actor with JammableBehavior with Damageable with ContainableBehavior with AggravatedBehavior with AuraEffectBehavior with RespondsToZoneEnvironment
- case class ProgressDecoration(cosmetics: Option[Set[Cosmetic]] = None, ribbonBars: RibbonBars = RibbonBars(), firstTimeEvents: Set[String] = FirstTimeEvents.Maps ++ FirstTimeEvents.Monoliths ++ FirstTimeEvents.Standard.All ++ FirstTimeEvents.Cavern.All ++ FirstTimeEvents.TR.All ++ FirstTimeEvents.NC.All ++ FirstTimeEvents.VS.All ++ FirstTimeEvents.Generic) extends Product with Serializable
- case class Shortcut(purpose: Int, tile: String, effect1: String = "", effect2: String = "") extends Product with Serializable
The internal respresentation of a shortcut on the hotbar.
The internal respresentation of a shortcut on the hotbar.
- purpose
integer value related to the type of shortcut
- tile
details how the shortcut is to be used (net.psforever.packet.game.Schortcut)
- effect1
three letters emblazoned on the shortcut icon; defaults to empty string
- effect2
the message published to text chat; defaults to empty string
- sealed abstract class SpecialCarry extends StringEnumEntry
- sealed abstract class TerranRepublicAward extends Award
- sealed abstract class VanuSovereigntyAward extends Award
Value Members
- object Avatar extends Serializable
- object Avatars extends Enumeration
An
Enumeration
of all the avatar types in the game, paired with their object id as theValue
.An
Enumeration
of all the avatar types in the game, paired with their object id as theValue
. #121 is the most important. - object Award extends StringEnum[Award]
- object AwardCategory extends Enumeration
A collection of all award categories.
- case object BattleRank extends IntEnum[BattleRank] with Product with Serializable
- case object Certification extends IntEnum[Certification] with Product with Serializable
- case object CommandRank extends IntEnum[CommandRank] with Product with Serializable
- object DeployableToolbox
- object FirstTimeEvents
- object Merit extends Enumeration
A collection of all award labels.
- object PlayerControl
- object Shortcut extends Serializable
- object SpecialCarry extends StringEnum[SpecialCarry]
Things that the player can carry that are not stored in the inventory or in holsters.