mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 17:11:22 +00:00
Added sharpened bear traps, a mechanical trap that ignores armour in the clamp action, to the Stealthy and Inconspicuous Weapons uplink.
Added closet teleporters to the Stealth and Camouflage Items uplink, a device that start linked and can be attached to closets to set-up a teleport network. Step inside and close the door to teleport.
Pushing a wall to try and find a secret entrance now takes a few seconds of touching and feeling.
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
/*************************************
|
|
* Stealthy and Inconspicuous Weapons *
|
|
*************************************/
|
|
/datum/uplink_item/item/stealthy_weapons
|
|
category = /datum/uplink_category/stealthy_weapons
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/soap
|
|
name = "Subversive Soap"
|
|
item_cost = 1
|
|
path = /obj/item/soap/syndie
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/cigarette_kit
|
|
name = "Cigarette Kit"
|
|
item_cost = 2
|
|
path = /obj/item/storage/box/syndie_kit/cigarette
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/random_toxin
|
|
name = "Random Toxin - Beaker"
|
|
item_cost = 2
|
|
path = /obj/item/storage/box/syndie_kit/toxin
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/detomatix
|
|
name = "Detomatix PDA Cartridge"
|
|
item_cost = 4
|
|
path = /obj/item/cartridge/syndicate
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/pens
|
|
name = "Pen-jector Kit"
|
|
desc = "A kit that contains four differently coloured pens. A blue pacifying pen, a green pen containing healing chemicals, and a yellow hyperzine pen."
|
|
item_cost = 5
|
|
path = /obj/item/storage/box/syndie_kit/special_pens
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/parapen
|
|
name = "Paralysis pen"
|
|
item_cost = 6
|
|
path = /obj/item/pen/reagent/paralysis
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/concealed_cane
|
|
name = "Concealed Cane Sword"
|
|
item_cost = 7
|
|
path = /obj/item/cane/concealed
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/sleepy_ring
|
|
name = "Sleepy Ring"
|
|
item_cost = 6
|
|
path = /obj/item/clothing/ring/reagent/sleepy
|
|
|
|
/datum/uplink_item/item/stealthy_weapons/sharpened_trap
|
|
name = "Sharpened Bear Trap"
|
|
item_cost = 5
|
|
path = /obj/item/trap/sharpened |