-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIRROR] New Neutral Quirk to indicate to Medical you're willing to b…
…e borged (#1644) * New Neutral Quirk to indicate to Medical you're willing to be borged * Fix CI --------- Co-authored-by: zxaber <[email protected]> Co-authored-by: SomeRandomOwl <[email protected]>
- Loading branch information
1 parent
c527703
commit c096f72
Showing
3 changed files
with
20 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/datum/quirk/item_quirk/borg_ready | ||
name = "Cyborg Pre-screened dogtag" | ||
desc = "Get pre-approved for NT's experimental Cyborg program, with a dog tag that lets medical staff know." | ||
icon = FA_ICON_TAG | ||
value = 0 | ||
gain_text = span_notice("You hear a distant echo of beeps and buzzes.") | ||
lose_text = span_danger("The distant beeping halts.") | ||
medical_record_text = "Patient is a registered brain donor for Robotics research." | ||
|
||
/datum/quirk/item_quirk/borg_ready/add_unique(client/client_source) | ||
if(is_banned_from(quirk_holder.ckey, JOB_CYBORG)) | ||
return FALSE | ||
var/obj/item/clothing/accessory/dogtag/borg_ready/borgtag = new(get_turf(quirk_holder)) | ||
give_item_to_holder(borgtag, list(LOCATION_BACKPACK = ITEM_SLOT_BACKPACK, LOCATION_HANDS = ITEM_SLOT_HANDS)) |
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