-
Notifications
You must be signed in to change notification settings - Fork 617
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
21 changed files
with
1,378 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Possible Bracer Colors | ||
#define SIMI_COLOR_DEFAULT "default" | ||
#define SIMI_COLOR_WHITE "white" | ||
|
||
/// Loads/Reloads the available actions on the computer itself. | ||
#define SIMI_ACTIONS_LOAD "load" | ||
#define SIMI_ACTIONS_RELOAD "reload" | ||
/// Cleans and then adds actions to the user. | ||
#define SIMI_ACTIONS_ADD "add" | ||
/// Removes actions from the user. | ||
#define SIMI_ACTIONS_REMOVE "remove" | ||
|
||
/// No active module. | ||
#define SIMI_ACTIVE_NONE "none" | ||
|
||
// Primary Abilities | ||
#define SIMI_PRIMARY_ACTION "primary" | ||
|
||
/// Synth self-repair | ||
#define SIMI_ABILITY_REPAIR "repair" | ||
#define SIMI_REPAIR_COST 50 | ||
|
||
/// Synth fortify, enforced stationary | ||
#define SIMI_ABILITY_ANCHOR "anchor" | ||
#define SIMI_IMMOBILE_COST 20 | ||
|
||
/// Damage reduced but incapable of self defense. | ||
#define SIMI_ABILITY_PROTECT "protect" | ||
#define SIMI_PROTECTIVE_COST 60 | ||
|
||
// Secondary Abilities | ||
#define SIMI_SECONDARY_ACTION "secondary" | ||
|
||
/// Rescue hook. | ||
#define SIMI_SECONDARY_HOOK "hook" | ||
/// Motion Detector | ||
#define SIMI_SECONDARY_MD "motion" | ||
|
||
// Statuses | ||
#define SIMI_STATUS_IDLE "status_idle" | ||
#define SIMI_STATUS_NOACCESS "status_unauthorized" | ||
#define SIMI_STATUS_LOWPOWER "status_lowbattery" | ||
#define SIMI_STATUS_NOPOWER "status_nobattery" | ||
#define SIMI_STATUS_CHARGING "status_charging" |
38 changes: 38 additions & 0 deletions
38
code/game/objects/items/tools/synth_bracer/abilities/chips.dm
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,38 @@ | ||
/obj/item/device/simi_chip | ||
name = "PK-130 SIMI programmable circuit (NOT FOR USE)" | ||
desc = "A programmable computer circuit used within the PK-130 SINI wrist-mounted computer to add or unlock various functions." | ||
icon = 'icons/obj/items/synth/bracer.dmi' | ||
icon_state = "simi_chip_white" | ||
|
||
/// The action this chip will add to the SIMI | ||
var/chip_action = /datum/action/human_action | ||
/// If this chip is 'secret' or not (cannot be removed/one time use) | ||
var/secret = FALSE | ||
|
||
/obj/item/device/simi_chip/repair | ||
name = "PK-130 SIMI programmable circuit (Self-Repair)" | ||
chip_action = /datum/action/human_action/synth_bracer/repair_form | ||
icon_state = "simi_chip_red" | ||
|
||
/obj/item/device/simi_chip/protect | ||
name = "PK-130 SIMI programmable circuit (Damage Bracing)" | ||
icon_state = "simi_chip_blue" | ||
chip_action = /datum/action/human_action/synth_bracer/protective_form | ||
|
||
/obj/item/device/simi_chip/anchor | ||
name = "PK-130 SIMI programmable circuit (Anchor)" | ||
icon_state = "simi_chip_blue" | ||
chip_action = /datum/action/human_action/synth_bracer/anchor_form | ||
|
||
/obj/item/device/simi_chip/rescue_hook | ||
name = "PK-130 SIMI programmable circuit (Rescue Hook)" | ||
chip_action = /datum/action/human_action/activable/synth_bracer/rescue_hook | ||
|
||
/obj/item/device/simi_chip/motion_detector | ||
name = "PK-130 SIMI programmable circuit (Motion Detector)" | ||
chip_action = /datum/action/human_action/synth_bracer/motion_detector | ||
desc = "A programmable computer circuit used within the PK-130 SIMI wrist-mounted computer to add or unlock various functions. This one activates a motion detector capability, at a running cost of power." | ||
|
||
/obj/item/device/simi_chip/tactical_map | ||
name = "PK-130 SIMI programmable circuit (Tactical Map)" | ||
chip_action = /datum/action/human_action/synth_bracer/tactical_map |
Oops, something went wrong.