mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 16:44:43 +01:00
[MIRROR] The Medal Epilogue: Engineering (And Medical) Now Gets Them Too [MDB IGNORE] (#23855)
* The Medal Epilogue: Engineering (And Medical) Now Gets Them Too (#78461) ## About The Pull Request **Credits to @ CoiledLamb for the awesome sprites in this PR!** CE 🤝 CMO Finally, the last department to receive their own medal box, the engineering department. The saga is complete, we can go home now. Adds two types of medals: 1. For assisting the station in a crisis, the "emergency services award" 2. For showing your atmospheric prowess with a project, the "atmospheric mastery award" To me, those two awards symbolize the best engineering (and medical) has to offer. On the one hand, assisting the station and its crew in a calamity, and on the other hand just absolutely flexing your atmos knowledge on your boss. CEs now have a lockbox in their locker with 3 emergency service medals and 1 atmospheric mastery medal, and CMOs get 3 emergency services medals in their lockbox. 3 emergency service medals may seem like a lot, but remember that assisting the station is often done in a team and not alone. An engineering/medical department who can work together in a crisis really demonstrates how robust they are. As for the atmos mastery medal, well... ### THERE CAN ONLY BE ONE ! <details> <summary>Pictures</summary>  Upper row: emergency services award, engineering Middle row: atmospheric mastery award Lower row: emergency services award, medical    Sprites without funky byond scaling   </details> ## Why It's Good For The Game medals are cute and awesome, i think you can agree ## Changelog 🆑 distributivgesetz, CoiledLamb add: Added two new awards specifically for engineering and medical: The "Emergency Services Award" and the "Atmospheric Mastery Award". CEs get 3 Emergency Services Awards and 1 Atmospheric Mastery Award and CMOs get 3 Emergency Services Awards. /🆑 * The Medal Epilogue: Engineering (And Medical) Now Gets Them Too --------- Co-authored-by: distributivgesetz <distributivgesetz93@gmail.com>
This commit is contained in:
@@ -178,3 +178,29 @@
|
||||
/obj/item/clothing/accessory/medal/plasma/nobel_science
|
||||
name = "nobel sciences award"
|
||||
desc = "A plasma medal which represents significant contributions to the field of science or engineering."
|
||||
|
||||
/obj/item/clothing/accessory/medal/silver/emergency_services
|
||||
name = "emergency services award"
|
||||
desc = "A silver medal awarded to the outstanding emergency service workers of Nanotrasen, those who work tirelessly together through adversity to keep their crew safe and breathing in the harsh environments of outer space."
|
||||
icon_state = "emergencyservices"
|
||||
|
||||
/// Flavor text that is appended to the description.
|
||||
var/insignia_desc = null
|
||||
|
||||
/obj/item/clothing/accessory/medal/silver/emergency_services/Initialize(mapload)
|
||||
. = ..()
|
||||
if(istext(insignia_desc))
|
||||
desc += " [insignia_desc]"
|
||||
|
||||
/obj/item/clothing/accessory/medal/silver/emergency_services/engineering
|
||||
icon_state = "emergencyservices_engi"
|
||||
insignia_desc = "The back of the medal bears an orange wrench."
|
||||
|
||||
/obj/item/clothing/accessory/medal/silver/emergency_services/medical
|
||||
icon_state = "emergencyservices_med"
|
||||
insignia_desc = "The back of the medal bears a dark blue cross."
|
||||
|
||||
/obj/item/clothing/accessory/medal/silver/elder_atmosian
|
||||
name = "atmospheric mastery award"
|
||||
desc = "Often referred to as the \"elder atmosian\" award, this medal is awarded to the exemplary scientists and technicians who push the boundaries and demonstrate mastery of atmospherics."
|
||||
icon_state = "elderatmosian"
|
||||
|
||||
Reference in New Issue
Block a user