mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 15:08:34 +01:00
Added in a new syndicate toolbox.
Contains a welder, a wrench, a crowbar, wirecutters, a screwdriver, a multitool and some cable. Syndicates can now acquire a syndicate toolbox for 1 telecrystal from their syndicate uplink. Singularity beacon crystal cost upped to 8 crystals. It was way to Overpowered a 1. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1716 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -56,7 +56,9 @@
|
||||
menu_message += "<A href='byond://?src=\ref[src];buy_item=botchat'>Binary Translator</A> (3)<BR>"
|
||||
menu_message += "<A href='byond://?src=\ref[src];buy_item=lawmod'>Hacked AI Module</A> (7)<BR>"
|
||||
menu_message += "<BR>"
|
||||
menu_message += "<A href='byond://?src=\ref[src];buy_item=singubeacon'>Singularity Beacon</A> (does not include a screwdriver) (1)<BR>"
|
||||
menu_message += "<A href='byond://?src=\ref[src];buy_item=singubeacon'>Singularity Beacon</A> (does not include a screwdriver) (8)<BR>"
|
||||
menu_message += "<BR>"
|
||||
menu_message += "<A href='byond://?src=\ref[src];buy_item=toolbox'>Syndicate Toolbox</A> (Includes various tools) (1)<BR>"
|
||||
|
||||
menu_message += "<HR>"
|
||||
return
|
||||
@@ -165,9 +167,14 @@
|
||||
uses -= 3
|
||||
new /obj/item/device/radio/headset/traitor(get_turf(hostpda))
|
||||
if("singubeacon")
|
||||
if(uses >= 8)
|
||||
uses -= 8
|
||||
new /obj/machinery/singularity_beacon/syndicate(get_turf(hostpda))
|
||||
|
||||
if("toolbox")
|
||||
if(uses)
|
||||
uses--
|
||||
new /obj/machinery/singularity_beacon/syndicate(get_turf(hostpda))
|
||||
new /obj/item/weapon/storage/toolbox/syndicate(get_turf(hostpda))
|
||||
|
||||
generate_menu()
|
||||
print_to_host(menu_message)
|
||||
|
||||
@@ -33,4 +33,14 @@
|
||||
if(prob(5))
|
||||
new /obj/item/clothing/gloves/yellow(src)
|
||||
else
|
||||
new /obj/item/weapon/cable_coil(src,30,color)
|
||||
new /obj/item/weapon/cable_coil(src,30,color)
|
||||
|
||||
/obj/item/weapon/storage/toolbox/syndicate/New()
|
||||
..()
|
||||
new /obj/item/weapon/screwdriver(src)
|
||||
new /obj/item/weapon/wrench(src)
|
||||
new /obj/item/weapon/weldingtool(src)
|
||||
new /obj/item/weapon/crowbar(src)
|
||||
new /obj/item/weapon/cable_coil(src,30,color)
|
||||
new /obj/item/weapon/wirecutters(src)
|
||||
new /obj/item/device/multitool(src)
|
||||
Reference in New Issue
Block a user