New Construction: Automatic Portable Turrets

Items required to construct: any energy gun, a proximity sensor, a screwdriver, wrench, a welder and a total of 9 metal.

This turret can best be described as a mixture of an ED-209 and an AI turret. It fires the same projectile as the gun it uses, and has a few customizable behaviours for people with security access to play with. The turrets can be unbolted and dragged off to be deployed anywhere, but can not turn on and shoot unless it's bolted into place. Can be controlled by the AI and cyborgs, but isn't controlled by /area's in the same way normal AI turrets are.

This will probably be expanded on in the future if I or one of the other coders want it to be expanded.




git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1746 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
vageyenaman@gmail.com
2011-07-01 04:49:45 +00:00
parent 16c9b80f52
commit 1f21128ef0
3 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -74,12 +74,13 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \
new/datum/stack_recipe("wall girders", /obj/structure/girder, 2, time = 50, one_per_turf = 1, on_floor = 1), \
new/datum/stack_recipe("airlock assembly", /obj/door_assembly, 4, time = 50, one_per_turf = 1, on_floor = 1), \
new/datum/stack_recipe("machine frame", /obj/machinery/constructable_frame/machine_frame, 5, one_per_turf = 1), \
new/datum/stack_recipe("turret frame", /obj/machinery/porta_turret_construct, 5, one_per_turf = 1), \
null, \
new/datum/stack_recipe("apc frame", /obj/item/apc_frame, 2), \
new/datum/stack_recipe("grenade casing", /obj/item/weapon/chem_grenade), \
null, \
new/datum/stack_recipe("iron door", /obj/mineral_door/iron, 20), \
)
)
/obj/item/stack/sheet/metal
New(var/loc, var/amount=null)