diff --git a/code/game/objects/structures/crates_lockers/crates/gear_loadout.dm b/code/game/objects/structures/crates_lockers/crates/gear_loadout.dm index 1c27330d4b7..804959a51b3 100644 --- a/code/game/objects/structures/crates_lockers/crates/gear_loadout.dm +++ b/code/game/objects/structures/crates_lockers/crates/gear_loadout.dm @@ -437,6 +437,7 @@ new /obj/item/gun/energy/xray(src) new /obj/item/clothing/accessory/holster/armpit/brown(src) new /obj/item/gun/energy/crossbow/largecrossbow(src) + new /obj/item/melee/energy/sword/red(src) /obj/structure/closet/crate/secure/gear_loadout/ninja/techno associated_hardsuit = /obj/item/rig/light/offworlder/techno/ninja diff --git a/code/modules/clothing/spacesuits/rig/suits/light.dm b/code/modules/clothing/spacesuits/rig/suits/light.dm index 33b5a3ee3d4..10a8e286085 100644 --- a/code/modules/clothing/spacesuits/rig/suits/light.dm +++ b/code/modules/clothing/spacesuits/rig/suits/light.dm @@ -1,4 +1,4 @@ -// Light rigs are not space-capable, but don't suffer excessive slowdown or sight issues when depowered. +// Light rigs are not space-capable, but don't suffer excessive slowdown or sight issues when depowered. /obj/item/rig/light name = "light suit control module" desc = "A lighter, less armored hardsuit." @@ -14,8 +14,9 @@ energy = ARMOR_MELEE_MINOR, bomb = ARMOR_BOMB_PADDED ) - emp_protection = 10 - slowdown = 0 + emp_protection = 100 + slowdown = -1 + species_restricted = list(BODYTYPE_HUMAN, BODYTYPE_UNATHI, BODYTYPE_SKRELL, BODYTYPE_VAURCA) item_flags = THICKMATERIAL offline_slowdown = 0 offline_vision_restriction = 0 @@ -94,7 +95,8 @@ /obj/item/rig_module/vision, /obj/item/rig_module/teleporter, /obj/item/rig_module/actuators/combat, - /obj/item/rig_module/device/door_hack + /obj/item/rig_module/device/door_hack, + /obj/item/rig_module/fabricator/energy_net ) diff --git a/html/changelogs/readthisnameplz-Averys-hell.yml b/html/changelogs/readthisnameplz-Averys-hell.yml new file mode 100644 index 00000000000..d583d0dd850 --- /dev/null +++ b/html/changelogs/readthisnameplz-Averys-hell.yml @@ -0,0 +1,7 @@ +author: ReadThisNamePlz + +delete-after: True + +changes: + - tweak: "Buffed the Cyber Ninja suit. Net gun module added, 100 EMP defense, speed boost to the suit, and an energy sword to the crate." + - rscdel: "Removed Tajaran and IPC access to the cyberwarfare suit for balance reasons." \ No newline at end of file