forked from ChaoticOnyx/OnyxBay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
262 changed files
with
5,046 additions
and
2,524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/// Represents a proc or verb path. | ||
/// | ||
/// Despite having no DM-defined static type, proc paths have some variables, | ||
/// listed below. These are not modifiable, but for a given procpath P, | ||
/// `new P(null, "Name", "Desc")` can be used to create a new procpath with the | ||
/// same code but new `name` and `desc` values. The other variables cannot be | ||
/// changed in this way. | ||
/// | ||
/// This type exists only to act as an annotation, providing reasonable static | ||
/// typing for procpaths. Previously, types like `/atom/verb` were used, with | ||
/// the `name` and `desc` vars of `/atom` thus being accessible. Proc and verb | ||
/// paths will fail `istype` and `ispath` checks against `/procpath`. | ||
/procpath | ||
// Although these variables are effectively const, if they are marked const | ||
// below, their accesses are optimized away. | ||
|
||
/// A text string of the verb's name. | ||
var/name = null as text|null | ||
/// The verb's help text or description. | ||
var/desc = null as text|null | ||
/// The category or tab the verb will appear in. | ||
var/category = null as text|null | ||
/// Only clients/mobs with `see_invisibility` higher can use the verb. | ||
var/invisibility = null as num|null | ||
/// Whether or not the verb appears in statpanel and commandbar when you press space | ||
var/hidden = null as num|null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#define PROM_MASTER_ITERATIONS "master_iterations" | ||
#define PROM_MASTER_TICK_DRIFT "master_tick_drift_ratio" | ||
#define PROM_SUBSYSTEM_COST "subsystem_cost_seconds" | ||
#define PROM_SUBSYSTEM_TICKS "subsystem_ticks_ratio" | ||
#define PROM_SUBSYSTEM_TICK_USAGE "subsystem_tick_usage_ratio" | ||
#define PROM_SUBSYSTEM_TICK_OVERRUN "subsystem_tick_overrun_ratio" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
#define METROID_ACTIVATE_MAJOR 2 | ||
|
||
#define LUMINESCENT_DEFAULT_GLOW 2 | ||
#define LUMINESCENT_ENHANCED_GLOW 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.