mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-17 02:47:58 +01:00
3f62424312
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
// Weapon exports. Stun batons, disablers, etc.
|
|
|
|
/datum/export/weapon
|
|
include_subtypes = FALSE
|
|
|
|
/datum/export/weapon/baton
|
|
cost = 100
|
|
unit_name = "stun baton"
|
|
export_types = list(/obj/item/melee/baton/)
|
|
exclude_types = list(/obj/item/melee/baton/cattleprod)
|
|
include_subtypes = TRUE
|
|
|
|
/datum/export/weapon/knife
|
|
cost = 100
|
|
unit_name = "tactical knife"
|
|
export_types = list(/obj/item/material/knife/tacknife )
|
|
|
|
/datum/export/weapon/laser
|
|
cost = 200
|
|
unit_name = "laser gun"
|
|
export_types = list(/obj/item/gun/energy/rifle/laser)
|
|
|
|
/datum/export/weapon/energy_gun
|
|
cost = 300
|
|
unit_name = "energy gun"
|
|
export_types = list(/obj/item/gun/energy/gun)
|
|
|
|
/datum/export/weapon/flashbang
|
|
cost = 5
|
|
unit_name = "flashbang grenade"
|
|
export_types = list(/obj/item/grenade/flashbang)
|
|
|
|
/datum/export/weapon/stinger
|
|
cost = 5
|
|
unit_name = "stinger grenade"
|
|
export_types = list(/obj/item/grenade/stinger)
|
|
|
|
/datum/export/weapon/teargas
|
|
cost = 5
|
|
unit_name = "tear gas grenade"
|
|
export_types = list(/obj/item/grenade/chem_grenade/teargas)
|
|
|
|
|
|
/datum/export/weapon/flash
|
|
cost = 5
|
|
unit_name = "handheld flash"
|
|
export_types = list(/obj/item/flash)
|
|
include_subtypes = TRUE
|
|
|
|
/datum/export/weapon/handcuffs
|
|
cost = 3
|
|
unit_name = "pair"
|
|
message = "of handcuffs"
|
|
export_types = list(/obj/item/handcuffs)
|
|
|