Adds ninja hardsuit selection (#9631)

This commit is contained in:
kyres1
2020-08-11 04:38:54 -05:00
committed by GitHub
parent 3867f1d686
commit 73a73c4e23
22 changed files with 316 additions and 4 deletions

View File

@@ -0,0 +1,71 @@
/***************
* Special Ninja RIGs *
***************/
/datum/uplink_item/item/ninja_rigs
category = /datum/uplink_category/ninja_rigs
/datum/uplink_item/item/ninja_rigs/sol
name = "Solarian Military Hardsuit"
desc = "A Sheridan-type military hardsuit utilized by Solarian armed forces. Beefy. Only wearable by Humans."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/military/ninja
/datum/uplink_item/item/ninja_rigs/gunslinger
name = "Coalition Gunslinger Suit"
desc = "A gunslinger suit popular among Coalition rangers. Only wearable by Humans."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/gunslinger/ninja
/datum/uplink_item/item/ninja_rigs/breacher
name = "Hegemony Breacher Suit"
desc = "A walking tank, one of the most armored suits in existence. Only wearable by Unathi."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/unathi/fancy/ninja
/datum/uplink_item/item/ninja_rigs/tesla
name = "People's Republic Tesla Suit"
desc = "A Tajaran hardsuit built for use by the Tesla Brigade. Only wearable by Tajara."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/tesla
/datum/uplink_item/item/ninja_rigs/strike
name = "Eridani PMC Strike Suit"
desc = "A powerful brawling suit which often spearheads police raids. Only wearable by Humans."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/strike/ninja
/datum/uplink_item/item/ninja_rigs/jinxiang
name = "Jinxiang Pattern Combat Suit"
desc = "A Dominian take on the infamous Bunker Suit. Only wearable by Humans."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/jinxiang/ninja
/datum/uplink_item/item/ninja_rigs/elyra
name = "Elyran Battlesuit"
desc = "An Elyran battlesuit which is nigh-impervious to heat. Only wearable by Humans."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/elyran/ninja
/datum/uplink_item/item/ninja_rigs/hacker
name = "Cyberwarfare Suit"
desc = "A less sturdy, but more agile cyberwarfare suit. Perfect for espionage. No species restrictions."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/light/hacker/ninja
/datum/uplink_item/item/ninja_rigs/techno
name = "Technoconglomerate Mobility Suit"
desc = "A thin suit with speed-boosting actuators. Only wearable by Offworlders."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/light/offworlder/techno/ninja
/datum/uplink_item/item/ninja_rigs/crimson
name = "Crimson Hardsuit"
desc = "A powerful hardsuit with an excess of powerful, illegal modules. No species restrictions."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/merc/ninja
/datum/uplink_item/item/ninja_rigs/rhino
name = "Rhino Suit"
desc = "The crimson hardsuit's ugly cousin, plated heavily with ballistic armor. No species restrictions."
item_cost = DEFAULT_TELECRYSTAL_AMOUNT
path = /obj/item/rig/merc/distress/ninja

View File

@@ -84,6 +84,10 @@
name = "Infiltration Items"
antag_roles = list(MODE_NINJA)
/datum/uplink_category/ninja_rigs
name = "Equipped Hardsuits"
antag_roles = list(MODE_NINJA)
/datum/uplink_category/gear_loadout
name = "Gear Loadout"
antag_roles = list(MODE_MERCENARY)