- Fixed issue 589 , also fixed the other broken object paths while I was at it.

- Removed the surgery crate, the replacement Surgery tools can now be made in the autolathe

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3915 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
trubblebass@gmail.com
2012-06-25 01:09:40 +00:00
parent d085d77706
commit e92b98c491
3 changed files with 17 additions and 27 deletions
+6 -27
View File
@@ -3,6 +3,7 @@
//NOTE: hidden packs only show up when the computer has been hacked.
//ANOTER NOTE: Contraband is obtainable through modified supplycomp circuitboards.
//BIG NOTE: Don't add living things to crates, that's bad, it will break the shuttle.
/datum/supply_packs/specialops
name = "Special Ops supplies"
contains = list("/obj/item/weapon/storage/emp_kit",
@@ -41,17 +42,6 @@
containertype = "/obj/structure/closet/crate/freezer"
containername = "Monkey crate"
/*
/datum/supply_packs/shotgun
name = "Shotgun crate"
contains = list("/obj/item/weapon/gun/projectile/shotgun",
"/obj/item/ammo_casing/shotgun/beanbag",
"/obj/item/ammo_casing/shotgun/beanbag")
cost = 25
containertype = "/obj/structure/closet/crate"
containername = "Shotgun crate"
//APPARENTLY OP?
*/
/datum/supply_packs/beanbagammo
name = "Beanbag shells"
@@ -276,18 +266,6 @@
containername = "Virus crate"
access = access_cmo
/datum/supply_packs/surgery
name = "Surgery crate"
contains = list("/obj/item/weapon/hemostat",
"/obj/item/weapon/surgicaldrill",
"/obj/item/weapon/retractor",
"/obj/item/weapon/cautery",
"/obj/item/weapon/circular_saw",
"/obj/item/weapon/scalpel")
cost = 20
containertype = "/obj/structure/closet/crate/medical"
containername = "Surgery crate"
/datum/supply_packs/metal50
name = "50 Metal Sheets"
contains = list("/obj/item/stack/sheet/metal")
@@ -326,9 +304,9 @@
"/obj/item/clothing/suit/hazardvest",
"/obj/item/clothing/suit/hazardvest",
"/obj/item/clothing/suit/hazardvest",
"/obj/item/clothing/head/helmet/welding",
"/obj/item/clothing/head/helmet/welding",
"/obj/item/clothing/head/helmet/hardhat")
"/obj/item/clothing/head/welding",
"/obj/item/clothing/head/welding",
"/obj/item/clothing/head/hardhat")
cost = 10
containertype = "/obj/structure/closet/crate"
containername = "Mechanical maintenance crate"
@@ -599,7 +577,8 @@
/datum/supply_packs/randomised/contraband
num_contained = 5
contains = list("/obj/item/weapon/contraband/poster", "/obj/item/weapon/cigpacket/dromedaryco")
contains = list("/obj/item/weapon/contraband/poster",
"/obj/item/weapon/cigpacket/dromedaryco")
name = "Contraband crate"
cost = 30
containertype = "/obj/structure/closet/crate"
+8
View File
@@ -1388,6 +1388,8 @@
desc = "Retracts stuff."
icon = 'surgery.dmi'
icon_state = "retractor"
m_amt = 10000
g_amt = 5000
flags = FPRINT | TABLEPASS | CONDUCT
w_class = 1.0
origin_tech = "materials=1;biotech=1"
@@ -1397,6 +1399,8 @@
desc = "You think you have seen this before."
icon = 'surgery.dmi'
icon_state = "hemostat"
m_amt = 5000
g_amt = 2500
flags = FPRINT | TABLEPASS | CONDUCT
w_class = 1.0
origin_tech = "materials=1;biotech=1"
@@ -1406,6 +1410,8 @@
desc = "This stops bleeding."
icon = 'surgery.dmi'
icon_state = "cautery"
m_amt = 5000
g_amt = 2500
flags = FPRINT | TABLEPASS | CONDUCT
w_class = 1.0
origin_tech = "materials=1;biotech=1"
@@ -1416,6 +1422,8 @@
icon = 'surgery.dmi'
icon_state = "drill"
hitsound = 'circsawhit.ogg'
m_amt = 15000
g_amt = 10000
flags = FPRINT | TABLEPASS | CONDUCT
force = 15.0
w_class = 1.0
+3
View File
@@ -23,6 +23,9 @@ var/global/list/autolathe_recipes = list( \
new /obj/item/weapon/kitchenknife(), \
new /obj/item/weapon/scalpel(), \
new /obj/item/weapon/circular_saw(), \
new /obj/item/weapon/surgicaldrill(),\
new /obj/item/weapon/retractor(),\
new /obj/item/weapon/cautery(),\
new /obj/item/weapon/reagent_containers/glass/beaker(), \
new /obj/item/weapon/reagent_containers/glass/large(), \
new /obj/item/ammo_casing/shotgun/blank(), \