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:
Superxpdude@gmail.com
2011-06-24 02:26:17 +00:00
parent 774a07bdb2
commit 5f1b51eba4
3 changed files with 25 additions and 3 deletions
+9 -2
View File
@@ -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)
+11 -1
View File
@@ -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)