forked from Bubberstation/Bubberstation
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add quirk ID type - Add quirk ID trim type - Add fallback ID card sprite - Add fallback ID card trim - Add new bloodfledge ID sprite - Update bloodfledge ID to use advanced type - Changed ID role from "-sucker Fledgling" to "-fledge"
- Loading branch information
Showing
6 changed files
with
37 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// This file contains all the trims associated with quirks. | ||
|
||
// Base entry | ||
/datum/id_trim/quirk | ||
trim_icon = 'modular_zzplurt/icons/obj/card.dmi' | ||
trim_state = "trim_question" | ||
assignment = "Error Reporter" | ||
department_color = COLOR_NEARLY_ALL_BLACK | ||
subdepartment_color = COLOR_NEARLY_ALL_BLACK | ||
|
||
// Quirk: Bloodsucker Fledgling | ||
/datum/id_trim/quirk/bloodfledge | ||
trim_state = "trim_bloodfledge" | ||
// Colors disabled because Bloodfledge ID has a custom sprite | ||
department_color = "#00000000" | ||
subdepartment_color = "#00000000" | ||
assignment = "Bloodsucker Fledgling" | ||
intern_alt_name = "Fledgling" | ||
threat_modifier = 2 // Equal to dress code violation |
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 |
---|---|---|
@@ -1,6 +1,15 @@ | ||
/obj/item/card/id/vampire | ||
name = "Bloodfledge ID" | ||
// Base quirk ID card | ||
/obj/item/card/id/advanced/quirk | ||
name = "quirky ID card" | ||
desc = "Show this to a coder to indicate something went wrong." | ||
assignment = "Error Reporter" | ||
trim = /datum/id_trim/quirk | ||
|
||
// Quirk: Bloodsucker Fledgling | ||
/obj/item/card/id/advanced/quirk/bloodfledge | ||
name = "bloodfledge identification card" | ||
desc = "An ID made to easily recognize sanguine crew members without requiring medical scans." | ||
icon = 'modular_zzplurt/icons/obj/card.dmi' | ||
icon_state = "vampire" | ||
icon_state = "card_bloodfledge" | ||
assignment = "Bloodsucker Fledgling" | ||
trim = /datum/id_trim/quirk/bloodfledge |
Binary file not shown.
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