-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master220' into СС-arm2
- Loading branch information
Showing
528 changed files
with
8,932 additions
and
6,501 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
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,35 @@ | ||
/// If used, an implant will trigger when an emote is intentionally used. | ||
#define BIOCHIP_EMOTE_TRIGGER_INTENTIONAL (1<<0) | ||
/// If used, an implant will trigger when an emote is forced/unintentionally used. | ||
#define BIOCHIP_EMOTE_TRIGGER_UNINTENTIONAL (1<<1) | ||
/// If used, an implant will always trigger when the user makes an emote. | ||
#define BIOCHIP_EMOTE_TRIGGER_ALWAYS (BIOCHIP_EMOTE_TRIGGER_UNINTENTIONAL|BIOCHIP_EMOTE_TRIGGER_INTENTIONAL) | ||
/// If used, an implant will trigger on the user's first death. | ||
#define BIOCHIP_TRIGGER_DEATH_ONCE (1<<2) | ||
/// If used, an implant will trigger any time a user dies. | ||
#define BIOCHIP_TRIGGER_DEATH_ANY (1<<3) | ||
/// If used, an implant will NOT trigger on death when a user is gibbed. | ||
#define BIOCHIP_TRIGGER_NOT_WHEN_GIBBED (1<<4) | ||
|
||
// Defines related to the way that the implant is activated. This is the value for implant.activated | ||
/// The implant is passively active (like a mindshield) | ||
#define BIOCHIP_ACTIVATED_PASSIVE 0 | ||
/// The implant is activated manually by a trigger | ||
#define BIOCHIP_ACTIVATED_ACTIVE 1 | ||
|
||
// Defines related to biochip current status | ||
/// The implant is currently inside the body | ||
#define BIOCHIP_IMPLANTED 1 | ||
/// The implant was once implanted into someone | ||
#define BIOCHIP_USED 0 | ||
/// The implant is new and intact | ||
#define BIOCHIP_NEW null | ||
|
||
// Defines implanting results of proc [/obj/item/implant/proc/implant()] | ||
/// Implant is successfully installed | ||
#define BIOCHIP_IMPLANT_SUCCESS 1 | ||
/// Implant fails to inject | ||
#define BIOCHIP_IMPLANT_FAIL -1 | ||
/// Return this if there's no room for the implant | ||
#define BIOCHIP_IMPLANT_NOROOM 0 | ||
|
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,56 @@ | ||
// Internal organs | ||
|
||
#define INTERNAL_ORGAN_HEART "heart" | ||
#define INTERNAL_ORGAN_LUNGS "lungs" | ||
#define INTERNAL_ORGAN_LIVER "liver" | ||
#define INTERNAL_ORGAN_KIDNEYS "kidneys" | ||
#define INTERNAL_ORGAN_APPENDIX "appendix" | ||
#define INTERNAL_ORGAN_EYES "eyes" | ||
#define INTERNAL_ORGAN_EARS "ears" | ||
#define INTERNAL_ORGAN_BRAIN "brain" | ||
|
||
#define INTERNAL_ORGAN_RESONANT_CRYSTAL "resonant_crystal" | ||
#define INTERNAL_ORGAN_STRANGE_CRYSTAL "strange_crystal" | ||
#define INTERNAL_ORGAN_WAX_GLANDS "wax_glands" | ||
#define INTERNAL_ORGAN_HEADPOCKET "headpocket" | ||
#define INTERNAL_ORGAN_LANTERN "lantern" | ||
#define INTERNAL_ORGAN_RESONATOR "adamantine_resonator" | ||
|
||
#define INTERNAL_ORGAN_PLASMAVESSEL "plasmavessel" | ||
#define INTERNAL_ORGAN_ACIDGLAND "acidgland" | ||
#define INTERNAL_ORGAN_HIVENODE "hivenode" | ||
#define INTERNAL_ORGAN_NEUROTOXIN_GLAND "neurotoxin_gland" | ||
#define INTERNAL_ORGAN_RESIN_SPINNER "resin_spinner" | ||
#define INTERNAL_ORGAN_EGGSAC "eggsac" | ||
|
||
#define INTERNAL_ORGAN_L_ARM_DEVICE "l_arm_device" | ||
#define INTERNAL_ORGAN_R_ARM_DEVICE "r_arm_device" | ||
#define INTERNAL_ORGAN_L_LEG_DEVICE "l_leg_device" | ||
#define INTERNAL_ORGAN_R_LEG_DEVICE "r_leg_device" | ||
#define INTERNAL_ORGAN_EYE_SIGHT_DEVICE "eye_sight" | ||
#define INTERNAL_ORGAN_EYE_HUD_DEVICE "eye_hud" | ||
#define INTERNAL_ORGAN_EYE_SHIELD_DEVICE "eye_shield" | ||
#define INTERNAL_ORGAN_EYE_LING "eye_ling" | ||
#define INTERNAL_ORGAN_BREATHING_TUBE "breathing_tube" | ||
#define INTERNAL_ORGAN_STOMACH "stomach" | ||
#define INTERNAL_ORGAN_HEART_DRIVE "heartdrive" | ||
#define INTERNAL_ORGAN_BRAIN_ANTIDROP "brain_antidrop" | ||
#define INTERNAL_ORGAN_BRAIN_ANTISTUN "brain_antistun" | ||
#define INTERNAL_ORGAN_BRAIN_ANTISLEEP "brain_antisleep" | ||
#define INTERNAL_ORGAN_BRAIN_CLOWNVOICE "brain_clownvoice" | ||
#define INTERNAL_ORGAN_BRAIN_SPEECHTRANSLATOR "brain_speechtranslator" | ||
|
||
#define INTERNAL_ORGAN_VOCALCORDS "vocal_cords" | ||
#define INTERNAL_ORGAN_HIVECORE "hivecore" | ||
#define INTERNAL_ORGAN_PARASITE_EGG "parasite_egg" | ||
|
||
#define INTERNAL_ORGAN_HAIR "hair_organ" // yeah thats a thing | ||
#define INTERNAL_ORGAN_HONK_BLADDER "honk_bladder" | ||
#define INTERNAL_ORGAN_BRAIN_TUMOR "brain_tumor" | ||
|
||
|
||
// insert/remove organ special defines | ||
#define ORGAN_MANIPULATION_DEFAULT 0 | ||
#define ORGAN_MANIPULATION_NOEFFECT 1 | ||
#define ORGAN_MANIPULATION_ABDUCTOR 2 | ||
|
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 |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
#define UPLINK_TYPE_NUCLEAR 1 | ||
#define UPLINK_TYPE_SST 2 | ||
#define UPLINK_TYPE_ADMIN 3 | ||
#define UPLINK_TYPE_SIT 4 | ||
|
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
Oops, something went wrong.