diff --git a/code/modules/clothing/rogueclothes/psydonian.dm b/code/modules/clothing/rogueclothes/psydonian.dm new file mode 100644 index 00000000000..24c4c1d3f91 --- /dev/null +++ b/code/modules/clothing/rogueclothes/psydonian.dm @@ -0,0 +1,62 @@ +// Full Blackplate Psydonian Armor, Event only gear + + +//................ Full Blackplate Armor ............... // +/obj/item/clothing/suit/roguetown/armor/plate/full/psyrant + name = "blackplate armor" + desc = "Full blacksteel plate. Leg protecting tassets, groin cup, armored vambraces." + icon = 'icons/roguetown/clothing/special/psyrant.dmi' + mob_overlay_icon = 'icons/roguetown/clothing/special/onmob/psyrant.dmi' + icon_state = "psyrant" + item_state = "psyrant" + equip_delay_self = 8 SECONDS + unequip_delay_self = 7 SECONDS + sellprice = VALUE_FULL_PLATE + allowed_race = list("human") + + armor = ARMOR_PLATE + body_parts_covered = COVERAGE_FULL + max_integrity = INTEGRITY_STRONGEST + + +//................ Full Blackplate Boots ............... // +/obj/item/clothing/shoes/roguetown/boots/armor/psyrant + name = "blackplated boots" + desc = "Armored boots made from blacksteel offering heavy protection against both melee and ranged attacks." + icon = 'icons/roguetown/clothing/special/psyrant.dmi' + mob_overlay_icon = 'icons/roguetown/clothing/special/onmob/psyrant.dmi' + icon_state = "psyboots" + item_state = "psyboots" + body_parts_covered = FEET + allowed_race = list("human") + max_integrity = INTEGRITY_STRONGEST + + +//................ Full Blackplate Helmet ............... // +/obj/item/clothing/head/roguetown/helmet/visored/psyrant + name = "blackplate visored barbute" + desc = "A blackplate imperial helmet with a psydonian cross-visor." + icon = 'icons/roguetown/clothing/special/psyrant.dmi' + mob_overlay_icon = 'icons/roguetown/clothing/special/onmob/psyrant.dmi' + icon_state = "psyhelmet" + flags_inv = HIDEEARS|HIDEFACE|HIDEHAIR + equip_sound = 'sound/foley/equip/equip_armor_plate.ogg' + equip_delay_self = 3 SECONDS + unequip_delay_self = 3 SECONDS + + armor = ARMOR_PLATE + body_parts_covered = FULL_HEAD + max_integrity = INTEGRITY_STRONGEST + prevent_crits = ALL_CRITICAL_HITS + + +//................ Full Blackplate Gauntlets ............... // +/obj/item/clothing/gloves/roguetown/plate/psyrant + name = "plate gauntlets" + desc = "Heavy plated gauntlets made out of blacksteel. Offers the best protection against melee attacks and the most powerful slaps." + icon = 'icons/roguetown/clothing/special/psyrant.dmi' + mob_overlay_icon = 'icons/roguetown/clothing/special/onmob/psyrant.dmi' + icon_state = "psygloves" + blocksound = PLATEHIT + allowed_race = list("human") + max_integrity = INTEGRITY_STRONGEST diff --git a/icons/roguetown/clothing/onmob/helpers/sleeves_armor.dmi b/icons/roguetown/clothing/onmob/helpers/sleeves_armor.dmi index 92a5f537434..cc55a02d8ce 100644 Binary files a/icons/roguetown/clothing/onmob/helpers/sleeves_armor.dmi and b/icons/roguetown/clothing/onmob/helpers/sleeves_armor.dmi differ diff --git a/icons/roguetown/clothing/special/onmob/psyrant.dmi b/icons/roguetown/clothing/special/onmob/psyrant.dmi new file mode 100644 index 00000000000..65b7cdb3e07 Binary files /dev/null and b/icons/roguetown/clothing/special/onmob/psyrant.dmi differ diff --git a/icons/roguetown/clothing/special/psyrant.dmi b/icons/roguetown/clothing/special/psyrant.dmi new file mode 100644 index 00000000000..a01935a63af Binary files /dev/null and b/icons/roguetown/clothing/special/psyrant.dmi differ diff --git a/stonekeep.dme b/stonekeep.dme index 841231c7f4e..522ebe1d417 100644 --- a/stonekeep.dme +++ b/stonekeep.dme @@ -1530,6 +1530,7 @@ #include "code\modules\clothing\rogueclothes\mask.dm" #include "code\modules\clothing\rogueclothes\neck.dm" #include "code\modules\clothing\rogueclothes\pants.dm" +#include "code\modules\clothing\rogueclothes\psydonian.dm" #include "code\modules\clothing\rogueclothes\quiver.dm" #include "code\modules\clothing\rogueclothes\rings.dm" #include "code\modules\clothing\rogueclothes\robes.dm"