station_trait 
Base class of station traits. These are used to influence rounds in one way or the other by influencing the levers of the station.
Vars | |
| blacklist | What traits are incompatible with this one? |
|---|---|
| can_revert | Whether or not this trait can be reverted by an admin |
| force | Whether this trait is always enabled; generally used for debugging |
| name | Name of the trait |
| report_message | What message to show in the centcom report? |
| show_in_report | Does this trait show in the centcom report? |
| trait_flags | Extra flags for station traits such as it being abstract |
| trait_processes | Whether or not this trait uses process() |
| trait_to_give | What code-trait does this station trait give? gives none if null |
| trait_type | The type of this trait. Used to classify how this trait influences the station |
| weight | Chance relative to other traits of its type to be picked |
Procs | |
| get_report | type of info the centcom report has on this trait, if any. |
| on_round_start | Proc ran when round starts. Use this for roundstart effects. |
| revert | Will attempt to revert the station trait, used by admins. |
Var Details
blacklist 
What traits are incompatible with this one?
can_revert 
Whether or not this trait can be reverted by an admin
force 
Whether this trait is always enabled; generally used for debugging
name 
Name of the trait
report_message 
What message to show in the centcom report?
show_in_report 
Does this trait show in the centcom report?
trait_flags 
Extra flags for station traits such as it being abstract
trait_processes 
Whether or not this trait uses process()
trait_to_give 
What code-trait does this station trait give? gives none if null
trait_type 
The type of this trait. Used to classify how this trait influences the station
weight 
Chance relative to other traits of its type to be picked
Proc Details
get_report
type of info the centcom report has on this trait, if any.
on_round_start
Proc ran when round starts. Use this for roundstart effects.
revert
Will attempt to revert the station trait, used by admins.