-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Modular] Adds a (Nerfed) Interdyne modsuit to lavaland Interdyne's S…
…huttle (#1996) (#2930) * Nerfs * slower * One module i forgot * replaces the medical mod with the improved interdyne one * Less storage * Woops to complex Co-authored-by: SomeRandomOwl <[email protected]>
- Loading branch information
1 parent
108a4cd
commit 80c560f
Showing
4 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/obj/item/mod/control/pre_equipped/interdyne/nerfed | ||
theme = /datum/mod_theme/interdyne | ||
starting_frequency = MODLINK_FREQ_SYNDICATE | ||
applied_cell = /obj/item/stock_parts/cell/super | ||
applied_modules = list( | ||
/obj/item/mod/module/defibrillator, | ||
/obj/item/mod/module/injector, | ||
/obj/item/mod/module/surgical_processor/preloaded, | ||
/obj/item/mod/module/storage/large_capacity, | ||
/obj/item/mod/module/tether, | ||
/obj/item/mod/module/thread_ripper, | ||
) | ||
|
||
/datum/mod_theme/interdyne/nerfed | ||
armor_type = /datum/armor/mod_theme_interdyne/nerfed | ||
slowdown_inactive = 0.0 | ||
slowdown_active = 0.25 | ||
allowed_suit_storage = list( | ||
/obj/item/assembly/flash, | ||
/obj/item/healthanalyzer, | ||
/obj/item/reagent_containers/cup/beaker, | ||
/obj/item/reagent_containers/cup/bottle, | ||
/obj/item/reagent_containers/cup/tube, | ||
/obj/item/reagent_containers/dropper, | ||
/obj/item/reagent_containers/hypospray, | ||
/obj/item/reagent_containers/pill, | ||
/obj/item/reagent_containers/syringe, | ||
/obj/item/restraints/handcuffs, | ||
/obj/item/sensor_device, | ||
/obj/item/shield/energy, | ||
/obj/item/stack/medical, | ||
/obj/item/storage/bag/bio, | ||
/obj/item/storage/bag/chemistry, | ||
/obj/item/storage/pill_bottle, | ||
) | ||
|
||
/datum/armor/mod_theme_interdyne/nerfed | ||
melee = 5 | ||
bullet = 5 | ||
laser = 5 | ||
energy = 5 | ||
bomb = 10 | ||
bio = 100 | ||
fire = 60 | ||
acid = 75 | ||
wound = 5 | ||
|
||
/obj/machinery/suit_storage_unit/interdyne/nerfed | ||
mask_type = /obj/item/clothing/mask/gas/sechailer/syndicate | ||
storage_type = /obj/item/tank/internals/oxygen | ||
mod_type = /obj/item/mod/control/pre_equipped/interdyne/nerfed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters