Files
59fafc8a6b [MIRROR] All jetpacks are no longer full-speed (#28690)
* All jetpacks are no longer full-speed (#84712)

## About The Pull Request

Full-speed has been removed from jetpacks
All jetpacks are now modsuit jetpack speed
Due to having no purpose now, Adv. Ion Jetpack has been replaced with
its lesser form, Ion Jetpack

## Why It's Good For The Game
The meta to just blow up gravity and use your jetpack that makes you
faster than 99% of the projectiles ingame and faster than a healthy full
mood human to dunk on literally anyone you see because they cant click
you because youre going mach 3000 is absolutely not fair
With jetpacks being reasonable speeds this is no longer a problem

## Changelog
🆑
balance: All jetpacks are now modsuit jetpack speed
del: Adv. Ion Jetpack module has been removed
/🆑

* All jetpacks are no longer full-speed

* modular fixes

* mapfix

---------

Co-authored-by: jimmyl <70376633+mc-oofert@users.noreply.github.com>
Co-authored-by: SpaceLoveSs13 <68121607+SpaceLoveSs13@users.noreply.github.com>
2024-07-08 14:51:48 +05:30

53 lines
1.7 KiB
Plaintext

/obj/item/storage/belt/utility/full/powertools/ircd/PopulateContents()
new /obj/item/screwdriver/power(src)
new /obj/item/crowbar/power(src)
new /obj/item/weldingtool/electric(src)
new /obj/item/construction/rcd/combat(src)
new /obj/item/pipe_dispenser(src)
new /obj/item/wrench/bolter(src)
new /obj/item/analyzer/ranged(src)
/obj/item/mod/control/pre_equipped/advanced/atmos
theme = /datum/mod_theme/advanced/atmos
applied_cell = /obj/item/stock_parts/power_store/cell/hyper
applied_modules = list(
/obj/item/mod/module/storage/large_capacity,
/obj/item/mod/module/welding,
/obj/item/mod/module/rad_protection,
/obj/item/mod/module/flashlight,
/obj/item/mod/module/t_ray,
/obj/item/mod/module/jetpack,
/obj/item/mod/module/visor/meson,
)
default_pins = list(
/obj/item/mod/module/jetpack,
/obj/item/mod/module/magboot/advanced,
)
/datum/mod_theme/advanced/atmos //Implement a unique skin for this eventually
ui_theme = "neutral"
/obj/item/rcd_ammo/combat
name = "industrial RCD matter cartridge"
desc = "A cartridge with one complete refill for an industrial RCD."
w_class = WEIGHT_CLASS_SMALL
custom_materials = list(
/datum/material/iron = SHEET_MATERIAL_AMOUNT * 60,
/datum/material/glass = SHEET_MATERIAL_AMOUNT * 40,
)
ammoamt = 440
/obj/item/storage/box/rcd_ammo
name = "industrial RCD matter box"
icon = 'modular_skyrat/modules/aesthetics/storage/storage.dmi'
desc = "A durable box with refill cartridges for an industrial RCD."
icon_state = "engibox"
illustration = "rcd"
custom_materials = list(
/datum/material/plastic = HALF_SHEET_MATERIAL_AMOUNT,
)
/obj/item/storage/box/rcd_ammo/PopulateContents()
for(var/i in 1 to 4)
new/obj/item/rcd_ammo/combat(src)