From b13f090fe9161bbafead875272863b0160461f6f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 17 Sep 2017 22:32:53 -0500 Subject: [PATCH] [MIRROR] Adds Lavaland items to weapon exports for cargo (#2836) * Adds Lavaland items to weapon exports for cargo (#30403) They're expensive, but those mobs are quite difficult to kill * Adds Lavaland items to weapon exports for cargo --- code/modules/cargo/exports/weapons.dm | 96 ++++++++++++++++++++++++++- 1 file changed, 95 insertions(+), 1 deletion(-) diff --git a/code/modules/cargo/exports/weapons.dm b/code/modules/cargo/exports/weapons.dm index 64e90678de..9bd8c0a6e7 100644 --- a/code/modules/cargo/exports/weapons.dm +++ b/code/modules/cargo/exports/weapons.dm @@ -69,4 +69,98 @@ cost = 3 unit_name = "pair" message = "of handcuffs" - export_types = list(/obj/item/restraints/handcuffs) \ No newline at end of file + export_types = list(/obj/item/restraints/handcuffs) + +// relics of lavaland + +/datum/export/weapon/hierophant + cost = 40000 + unit_name = "Hierophant Club" + export_types = list(/obj/item/hierophant_club) + +/datum/export/weapon/lava + cost = 40000 + unit_name = "Lava Staff" + export_types = list(/obj/item/lava_staff) + +/datum/export/weapon/cleaving_saw + cost = 40000 + unit_name = "Cleaving Saw" + export_types = list(/obj/item/melee/transforming/cleaving_saw) + +/datum/export/weapon/mayhem + cost = 40000 + unit_name = "Mayhem in a bottle" + export_types = list(/obj/item/mayhem) + +/datum/export/weapon/blood_contract + cost = 40000 + unit_name = "Blood Contract" + export_types = list(/obj/item/blood_contract) + +//Artifacts of lavaland + +/datum/export/weapon/immortality_talisman + cost = 10000 + unit_name = "Immortality Talisman" + export_types = list(/obj/item/device/immortality_talisman) + +/datum/export/weapon/babel + cost = 10000 + unit_name = "Book of Babel" + export_types = list(/obj/item/book_of_babel) + +/datum/export/weapon/hook + cost = 10000 + unit_name = "Meat hook" + export_types = list(/obj/item/gun/magic/hook) + +/datum/export/weapon/shipbottle //the price for not breaking the bottle. + cost = 20000 + unit_name = "Ship in a bottle" + export_types = list(/obj/item/ship_in_a_bottle) + +/datum/export/weapon/tarot //price for sacraficing a very profitiable ally + cost = 20000 + unit_name = "Tarot cards" + export_types = list(/obj/item/guardiancreator) + +/datum/export/weapon/red //second half of telecube + cost = 5000 + unit_name = "Red Cube" + export_types = list(/obj/item/device/warp_cube/red) + +/datum/export/weapon/blue //first half of telecube + cost = 5000 + unit_name = "Blue Cube" + export_types = list(/obj/item/device/warp_cube) + +/datum/export/weapon/wisplantern //thermals on lavaland + cost = 10000 + unit_name = "Wisp Lantern" + export_types = list(/obj/item/device/wisp_lantern) + +/datum/export/weapon/flight //if xenobiology ever reaches the point to get these without shuttle being called they deserve it + cost = 10000 + unit_name = "Strange Elixer" + export_types = list(/obj/item/reagent_containers/glass/bottle/potion/flight) + +/datum/export/weapon/cheart //is a very powerfull healing artifact in the robust hands + cost = 10000 + unit_name = "Cursed Heart" + export_types = list(/obj/item/organ/heart/cursed/wizard) + +/datum/export/weapon/ckatana + cost = 10000 + unit_name = "Katana" + export_types = list(/obj/item/katana/cursed) + +/datum/export/weapon/geye //xray + cost = 10000 + unit_name = "God eye" + export_types = list(/obj/item/clothing/glasses/godeye) + +/datum/export/weapon/spectral + cost = 10000 + unit_name = "Spectral Sword" + export_types = list(/obj/item/melee/ghost_sword)