Thoughts on a new idea: Powered Hardsuits

How, what and why to code in BYOND.
Post Reply
katastic
Joined: Fri Mar 13, 2015 12:30 am

Thoughts on a new idea: Powered Hardsuits

Post by katastic » #75287

Hello, I'm new here.

Whenever I play engineering, or ATMO, a few things will happen often. A guy gets too fast, and dumps plasma in engineering, for example. But the one thing that happens almost every bloody round is that everyone takes the hardsuits and disappears for the rest of the round. Some may be traitors, but certainly not all of them.

My solution to this is, in my opinion, fairly elegant: Hardsuits are all powered. They have batteries (which can be upgraded), and they get recharged at suit storage units. Currently, only the ENG hardsuit is extended but the others could be upgraded as well pending balancing.

Now, suits will regularly be returned to their place of origin. Nobody can grab them and leave forever, unless they're clever and find alternative means to recharge them. But the typical chuckle-joe won't be able to just run off with them for the whole round anymore.

In exchange for having to return to a station periodically, the suits are no longer as slow as they were. Either no reduction in speed, or minor, except when they run out of power. When the battery fails, you're really struggling hard to move. (slowdown == 16, at the moment) Also, losing power to the suit storage units becomes a new issue.

I've already completed the code to test this functionality and it works fine. You're never waiting too long for the suit to charge, but you're certainly coming back. Like the engineering department equivalent of a coffee machine at work with everyone hanging out and discussing things.

As for implementation details. I changed human_movement (perhaps there's a better place) to fire off a step_action() to any suits. The suit draws power whenever there is movement. I also made a 5K charge "suit battery" so that the 10K "high capacity cells" double your distance instead of 10X'ing it from a standard cell which would be insanely unbalanced. (Either normal would be useless, or high-capacity would be essentially infinite.) The suit storage units detect chargable suits, and announce and ding when done charging.

Using a 5K battery, and taking 10 charge per step, I had just enough to walk from the captains office, to engineering, and do a complete setup of the engine.

The suits occasionally make a mech sound to highlight that they're powered.

I have also experimented with (but this is not ready for primetime) a fatigue system where the longer you have the suit unpowered, the more sluggish you get ("You struggle to overcome the weight of the suit."). But it's currently implemented inside the spacesuit code and it should really be more general. But "more general" also means lots of potential balancing.

Lastly, there is lots of room for "FUN." I have not implemented it yet, so the codebase changes could be easy or difficult. We could add things like attaching a remote signaler to the suit's oxygen storage space. Someone is out in space, and you cut off the air and they scramble to figure out why. Or, cut off the battery power right as they move past the singularity. Come to think of it, remote signaler + [any batteries] would be very useful for creative destruction. Disable an APC, borg, gun, anything. But I digress.

What are your thoughts?
User avatar
Xhuis
Github User
Joined: Mon May 26, 2014 1:04 pm
Byond Username: Xhuis
Github Username: Xhuis
Location: North Carolina

Re: Thoughts on a new idea: Powered Hardsuits

Post by Xhuis » #75338

I can see this being very controversial. When people take hardsuits and run off, they're usually either doing construction or fixing a hull breach - I hardly ever see people running around with hardsuits for no reason anymore, barring the CE or people who break into EVA. There is no proper way to prevent that particular behavior as it will continue to happen. If this does get implemented, I would like to see a way of having a toggle function for the suit's power, in addition to having some sort of charging relay machine that can be found in spots around the station, similar to how Atmospherics maintenance has firesuits and air tanks. Returning to Engineering every few minutes while you're repairing a hull breach doesn't make anyone happy, and it would make engineers who actually repair said breaches have to go through extra hassle. Being able to upgrade batteries at round start would alleviate this somewhat, however, and science would have incentive to make power cells outside of cyborgs. It's certainly a good concept, but it would stir up a lot of controversy and I have a feeling that most experienced engineers or atmos techs would prefer the old system.

Also, welcome to the forum.
I'm an ex-coder for /tg/. I made the original versions of clockcult, shadowlings, revenants, His Grace, and other stuff.
I don't play, code, or participate in the community, but I occasionally post dumb stuff in the hut.
Kraso wrote:hi gay
wubli wrote:xhuis you said you were feeling better but every thread you make makes me worry more about your sanity
ExcessiveUseOfCobblestone wrote:Sorry I was making fun of xhuis' """""compromise""""" who insisted that was the correct term to use.
CitrusGender wrote:We've ended up disabling clockcult on sybil and bagil now (terry is having some problems.) We will give Xhuis some time until he wishes to work upon it again. As of now, please use this thread for ideas and not for bickering.
wubli wrote:you are a cultist of the gay
IkeTG wrote:It's a reflection of humanity, like all of man's creation. You cannot divorce this act from yourself, in a way there's a big titty moth inside all of us.
wesoda25 wrote:yeah no one was curious what it was from. Imagine choosing being a degenerate as your forum gimmick, LOL
User avatar
PKPenguin321
Site Admin
Joined: Tue Jul 01, 2014 7:02 pm
Byond Username: PKPenguin321
Github Username: PKPenguin321
Location: U S A, U S A, U S A

Re: Thoughts on a new idea: Powered Hardsuits

Post by PKPenguin321 » #75343

inb4 this is paprika ban evading

cool idea, but in reality, random mandatory menial tasks that limit an otherwise fully functional item =/= fun
i play Lauser McMauligan. clown name is Cold-Ass Honkey
i have three other top secret characters as well.
tell the best admin how good he is
Spoiler:
Image
katastic
Joined: Fri Mar 13, 2015 12:30 am

Re: Thoughts on a new idea: Powered Hardsuits

Post by katastic » #75352

Yeah, I can see it as controversial. I haven't modified the hard suit code, but rather inherited from it so any server can choose the one they prefer. But to be clear, I'm not really demanding this be changed. I just wanted to see if I'd like it, so I coded it to test the idea.

Toggle power could certainly work. This was a test dive into the SS13 codebase so I haven't figured how to set things like that up yet. I had it originally in there but the state machine got much bigger and confusing. The suit button is used for deploying the helmet by default. Can you have more than one button?

As for "random mandatory menial tasks", nobody seriously complains that cyborgs (and mechs?) have to recharge, and batteries are easy to store in your backpack. And people have to recharge their O2 tanks (or replace them) often as well. This doesn't really make things harder, so much as it changes the flow of things so that suit storage units (and their subsystems) are now important.

It's also possible we could run both types by splitting hardsuits into unpowered versions, heavier powered versions. The powered versions having some advantages but requiring to be recharged and the unpowered ones being the normal bulky (or slightly more bulky than currently). A trade-off of speed and utility at a cost of longevity. But I'm just airing my train-of-thought.

Lastly, thanks for the welcome and the input. Have a great day.
Gun Hog
Joined: Sat Apr 19, 2014 5:19 am
Byond Username: Gun Hog

Re: Thoughts on a new idea: Powered Hardsuits

Post by Gun Hog » #75364

This idea is good for new hardsuits which provide a superior funcitonality with that drawback, but certainly not as an application to current suits.
User avatar
Not-Dorsidarf
Joined: Fri Apr 18, 2014 4:14 pm
Byond Username: Dorsidwarf
Location: We're all going on an, admin holiday

Re: Thoughts on a new idea: Powered Hardsuits

Post by Not-Dorsidarf » #75454

I support this idea, because for three rounds straight I see people signing up as engi/atmo, grabbing a hardsuit, and "duck you CE I'm off to spess".
Power consumption should be based on time, not number if steps, since space assholes don't walk about. Time should be at least 8-10 minutes to allow serious actual EVA work.
Image
Image
kieth4 wrote: infrequently shitting yourself is fine imo
There is a lot of very bizarre nonsense being talked on this forum. I shall now remain silent and logoff until my points are vindicated.
Player who complainted over being killed for looting cap office wrote: Sun Jul 30, 2023 1:33 am Hey there, I'm Virescent, the super evil person who made the stupid appeal and didn't think it through enough. Just came here to say: screech, retards. Screech and writhe like the worms you are. Your pathetic little cries will keep echoing around for a while before quietting down. There is one great outcome from this: I rised up the blood pressure of some of you shitheads and lowered your lifespan. I'm honestly tempted to do this more often just to see you screech and writhe more, but that wouldn't be cool of me. So come on haters, show me some more of your high blood pressure please. 🖕🖕🖕
Malkevin

Re: Thoughts on a new idea: Powered Hardsuits

Post by Malkevin » #75468

Funnily enough I had almost the exact same idea.

But extended to the helmet.
Helmet requires you to wear the suit to power the helmet.
No suit power or no suit = you can't see out of the helmet

The helmets would also have visors so they weren't completely superior to welding masks.
Allohsnackbar
Joined: Fri Jan 23, 2015 4:00 pm

Re: Thoughts on a new idea: Powered Hardsuits

Post by Allohsnackbar » #75477

Bay hardsuits when
Seriously, if we're going to port full retard things from other servers, like impalment and GOONCHEM, we should also try and implement some straight additions.
Powered, modular hardsuits tailored to certain situations would be pretty swag.
Malkevin

Re: Thoughts on a new idea: Powered Hardsuits

Post by Malkevin » #75493

Does vg have those, or is there a server running bay code that isn't bay?
User avatar
John_Oxford
Github User
Joined: Sat Nov 15, 2014 5:19 am
Byond Username: John Oxford
Github Username: JohnOxford
Location: The United States of America

Re: Thoughts on a new idea: Powered Hardsuits

Post by John_Oxford » #75582

Well, long space explorations would be more of a hassle, how about they get their own power cells? Kinda like long tube things that you grab from the top, and have to swap out on the primary suit.

4 Basic Hardsuit Powercells start in engineering prep, all the hardsuits start with one of the basics in them, the CE gets 2 Advanced HPs, with 15k Charge.

Then there are 2 "Deep Space" Power Cells that spawn in EVA, which have 30k charge, and are capable of sapping energy from normal power cells if powercells are inserted to the item.

Research can make even bigger cells with 40, 50k Charge

Admins can spawn 500k, and infinte charge cells.

---------------------------------

Also, perhaps when your power reaches 75, 50, 25, 10, and 5%, a automated voice, similar to the AI's annoucement system states to you "Current Cell Charge: X"

Also, if hardsuits are powered now, perhaps research can make powered armored plates (By deconstructing Golath plates) , EMP emitters (Illegal Tech), and the list goes on.
Bill Rowe - Used for everything // SYS-OP - AI // SYS-USR - Cyborg
https://gyazo.com/07cbe7219ba24366c1f655ad6c56a524

Signature Content:
Spoiler:
Offical In-Game rank:
Image

Image

Image

Image
TechnoAlchemist wrote:you where always right john, you where always right
>implying the admin conspiracy wasen't just confirmed by a admin.
see, i told you motherfuckers.
NikNakFlak wrote:this isn't a game you can't just post whenever you want
I don't even know what the fuck tg is.

Image

Image
User avatar
DemonFiren
Joined: Sat Dec 13, 2014 9:15 pm
Byond Username: DemonFiren

Re: Thoughts on a new idea: Powered Hardsuits

Post by DemonFiren » #75588

Automated voice, you say...

I am getting the unpleasant feeling that we'll need to find something that sounds like the HEV suit, but isn't exactly identical.
Image
Image
Image
ImageImageImageImageImage

non-lizard things:
Spoiler:
Image
User avatar
John_Oxford
Github User
Joined: Sat Nov 15, 2014 5:19 am
Byond Username: John Oxford
Github Username: JohnOxford
Location: The United States of America

Re: Thoughts on a new idea: Powered Hardsuits

Post by John_Oxford » #75647

Perhaps even make it to where it needs to initalize, like a ninja suit:

IE:
:// RUNNING SYSTEM CHECKS:
:// POWER SYSTEMS: -current power percentage, if 100%, it will say nominal-
:// AIR SYSTEMS: -current KPA of air in tank based on percentage, if full, will say nominal-
:// LIGHTING SYSTEMS: NOMINAL
:// ALL SYSTEMS NOMINAL - WELCOME TO -insert brand name hardsuit here- -insert version number here-

Above could be for normal rig suits, sec hardsuits could have like :// ARMOR SYSTEMS: NOMINAL or :// DEFENSE SYSTEMS: NOMINAL - And then at the end have :// WELCOME TO SEC SUIT VERSION 1.0.4- Or something along the lines of that
Syndicate hardsuits (Nuke Ops) could have :// COMBAT SYSTEMS: NOMINAL or :// -weapon name- OPERATIONAL ie: :// EMP EMITTER: NOMINAL - And have :// WELCOME TO -insert syndicate faction name here- VERSION 2.6.4
Bill Rowe - Used for everything // SYS-OP - AI // SYS-USR - Cyborg
https://gyazo.com/07cbe7219ba24366c1f655ad6c56a524

Signature Content:
Spoiler:
Offical In-Game rank:
Image

Image

Image

Image
TechnoAlchemist wrote:you where always right john, you where always right
>implying the admin conspiracy wasen't just confirmed by a admin.
see, i told you motherfuckers.
NikNakFlak wrote:this isn't a game you can't just post whenever you want
I don't even know what the fuck tg is.

Image

Image
User avatar
John_Oxford
Github User
Joined: Sat Nov 15, 2014 5:19 am
Byond Username: John Oxford
Github Username: JohnOxford
Location: The United States of America

Re: Thoughts on a new idea: Powered Hardsuits

Post by John_Oxford » #75648

Perhaps if you dident have a power cell, it would have a message pop up in text: "The suit dosent seem to start, perhaps it is out of charge?'
And if you dident have a airtank it would say :// ERROR: NO AIR TANK DETECTED - SUBJECTING UNIT TO SPACE MAY BE LEATHAL
Bill Rowe - Used for everything // SYS-OP - AI // SYS-USR - Cyborg
https://gyazo.com/07cbe7219ba24366c1f655ad6c56a524

Signature Content:
Spoiler:
Offical In-Game rank:
Image

Image

Image

Image
TechnoAlchemist wrote:you where always right john, you where always right
>implying the admin conspiracy wasen't just confirmed by a admin.
see, i told you motherfuckers.
NikNakFlak wrote:this isn't a game you can't just post whenever you want
I don't even know what the fuck tg is.

Image

Image
User avatar
John_Oxford
Github User
Joined: Sat Nov 15, 2014 5:19 am
Byond Username: John Oxford
Github Username: JohnOxford
Location: The United States of America

Re: Thoughts on a new idea: Powered Hardsuits

Post by John_Oxford » #75649

Sorry for triple post, but if this does get added, i'll be making a new fourm post for equipment to add onto the hardsuits.
Bill Rowe - Used for everything // SYS-OP - AI // SYS-USR - Cyborg
https://gyazo.com/07cbe7219ba24366c1f655ad6c56a524

Signature Content:
Spoiler:
Offical In-Game rank:
Image

Image

Image

Image
TechnoAlchemist wrote:you where always right john, you where always right
>implying the admin conspiracy wasen't just confirmed by a admin.
see, i told you motherfuckers.
NikNakFlak wrote:this isn't a game you can't just post whenever you want
I don't even know what the fuck tg is.

Image

Image
User avatar
imblyings
Joined: Fri Apr 18, 2014 5:42 pm
Byond Username: Ausops
Location: >using suit sensors

Re: Thoughts on a new idea: Powered Hardsuits

Post by imblyings » #75715

Gun Hog wrote:This idea is good for new hardsuits which provide a superior funcitonality with that drawback, but certainly not as an application to current suits.
this

leave the current suits but 'prototype' suits being developed by RD or whatnot would be fine.
The patched, dusty, trimmed, feathered mantle of evil +13.
User avatar
Supermichael777
Joined: Sun Feb 01, 2015 3:42 am
Byond Username: Supermichael777
Location: Silver II hell

Re: Thoughts on a new idea: Powered Hardsuits

Post by Supermichael777 » #75739

But applying it to new suits misses the point of why he coded the change.
personally i agree that suits need this functionality but maybe give more than five hundred steps or teach people to just carry the suit in their hands when you don't need it. the only hard-suit i would be opposed to this going on it mining's hard-suit because it would fuck them over both ways. ether another thing you need to carry or a valuable snowflake cell that people want to steal. everyone else is just angry about their power-gaming. and really hard-suits provide notable protection from things other than space. if you really need to go space exploring bother the hop for Eva accesses.
oranges wrote:It's my game, not yours
Never forget the corruption of these halls

Image
You seem to be under the mistaken impression that I actually care.
Spoiler:
Image
Spoiler:
Omar Beail says, "You guys should fuck for my entertainment"
Classy, TG, Classy

OOC: KorPhaeron: Admins aren't allowed to have friends

OOC: Daman997: I HAVE POSTED VIDEOS OF A MAN FUCKING A SNAKE IN OOC GIVE ME THAT LINK PUSSY
An0n3 wrote:Take the same brand of retardation and invert it and you have people saying "It's okay for a game to cost more because I enjoyed it!
Spoiler:
Q: Why does everyone assume I’m a pervert just for wanting to play as a cat girl?
A: Because they’re degenerate cocksuckers who cannot fathom that another person might have pure intentions in wanting to play as the cat girl master race. Their wish fulfillment fetish-tier races like elves, aasimars, goliaths, and hobgoblins are perfectly fine in their mad, lust-filled minds, such that the purity and perfection of cat girls burns at their evil perverted hearts.

Q: Where are the cat boys?
A: I don’t follow.
Malkevin

Re: Thoughts on a new idea: Powered Hardsuits

Post by Malkevin » #75740

It would technically be a buff to suits because we could make them as fast as they used to be, the only difference is you'd have to return to home occasionally to swap out your cells.
User avatar
RG4
Joined: Wed Jun 25, 2014 12:19 am
Byond Username: RG4ORDR

Re: Thoughts on a new idea: Powered Hardsuits

Post by RG4 » #75748

I love to use hard suits, they're always better than space-suits just for the armor and headlight additions that regular suits just don't have. Making all current HS require a powercell is really stupid idea IMO. Some of these suits are typically used all round for a variety of things and forcing them to be run off power cells shouldn't be one of them. Now R&D should be able to make powered hardsuits that have additional benefits to them.
Jalleo
Joined: Tue Apr 15, 2014 1:27 pm
Byond Username: Jalleo

Re: Thoughts on a new idea: Powered Hardsuits

Post by Jalleo » #75763

This could be used as a way to make space suits upgradeable really because all space suits could use a little tinkering.
User avatar
imblyings
Joined: Fri Apr 18, 2014 5:42 pm
Byond Username: Ausops
Location: >using suit sensors

Re: Thoughts on a new idea: Powered Hardsuits

Post by imblyings » #75770

I honestly prefer the current suit slowdown over no speed reduction when the suit is powered and a requirement for occasional recharging.

And I dislike the accusations of powergaming as they're fairly unwarranted. It's convenience, convenience which I highly value when I'm doing things in space. You could make parallels with borgs and say they deal with having to recharge but borgs have a bunch of other perks and unique conditions to balance it out anyway.
The patched, dusty, trimmed, feathered mantle of evil +13.
Jalleo
Joined: Tue Apr 15, 2014 1:27 pm
Byond Username: Jalleo

Re: Thoughts on a new idea: Powered Hardsuits

Post by Jalleo » #75806

Edit: removed what I said first we are kinda bikeshedding with the movement adding any sort of progression that can give perks and downsides would be a good thing. Maybe suits can be made powered as a very simple add on then a lot of science stuff and maybe ghetto stuff can upgrade it. The speed changes in any way can be balanced out if it seems off. The main thing is making sure map changes use this to their advantage and this does not affect syndicate suits to unbalance that aspect too much to begin with.
Last edited by Jalleo on Sun Mar 15, 2015 11:38 pm, edited 1 time in total.
User avatar
MisterPerson
Board Moderator
Joined: Tue Apr 15, 2014 4:26 pm
Byond Username: MisterPerson

Re: Thoughts on a new idea: Powered Hardsuits

Post by MisterPerson » #75809

The idea I'll float is:

No slowdown as long as they're charged. Also reduces/eliminates space-slowdown. Big slowdown or unwearable if it's unpowered.
Has a 10 minute battery life at full charge. An upgraded battery extends this, other upgrades increase the drain. Ideally upgrading both would keep the life about the same, maybe a little longer than default. The life is that short so you can't use it to run around in space like a banshee without stopping every so often.
Recharges automatically from nearby APC's as long as you're in one's range and it's got power. This takes ~5 minutes and should not be upgradable to go faster. This happens even on space tiles so repairing after a bomb is fast. Auto-recharge is a convenience, but it's also slow so criminals who take this thing have a real chance to get caught be security.
The current hardsuits would be left but would lost all their armor values and just become space suits mostly.
I code for the code project and moderate the code sections of the forums.

Feedback is dumb and it doesn't matter
User avatar
PKPenguin321
Site Admin
Joined: Tue Jul 01, 2014 7:02 pm
Byond Username: PKPenguin321
Github Username: PKPenguin321
Location: U S A, U S A, U S A

Re: Thoughts on a new idea: Powered Hardsuits

Post by PKPenguin321 » #75835

katastic wrote:As for "random mandatory menial tasks", nobody seriously complains that cyborgs (and mechs?) have to recharge, and batteries are easy to store in your backpack. And people have to recharge their O2 tanks (or replace them) often as well. This doesn't really make things harder, so much as it changes the flow of things so that suit storage units (and their subsystems) are now important.
I'm certain people would have more fun if they didn't have to charge mechs or cyborgs, but then balance comes in
Menial tasks are good when they're used for the sake of balance, extra menial tasks for poor reasons are just not good
And yes, people do have to recharge or replace their O2 tanks, so there already exists an incentive to come back to the station and recharge without giving the suit a battery
katastic wrote:It's also possible we could run both types by splitting hardsuits into unpowered versions, heavier powered versions. The powered versions having some advantages but requiring to be recharged and the unpowered ones being the normal bulky (or slightly more bulky than currently). A trade-off of speed and utility at a cost of longevity. But I'm just airing my train-of-thought.
Do this instead of killing our currently fully-functional hardsuits and nobody would complain
i play Lauser McMauligan. clown name is Cold-Ass Honkey
i have three other top secret characters as well.
tell the best admin how good he is
Spoiler:
Image
Incomptinence
Joined: Fri May 02, 2014 3:01 am
Byond Username: Incomptinence

Re: Thoughts on a new idea: Powered Hardsuits

Post by Incomptinence » #75879

Mechs and cyborgs are space sealed with benefits and recharging is what they use in place of the health and food system for these articles. Exosuits really fill the role of powered armor, being literally that.

People in hardsuits are more mobile but they already need to take care of themselves as humans or suffer additional movement penalties (mech movement being mostly irrelevant of pilot's status). The Armour is is not incredible and since hardsuits and armour pieces use the same slot where else would they get it? Even against a normal space suit in environment of preference a dude in heavy non space worthy armour will just be killed by the environment so I don't see the point you will still end up with angry spaced officers.
User avatar
Steelpoint
Github User
Joined: Thu Apr 17, 2014 6:37 pm
Byond Username: Steelpoint
Github Username: Steelpoint
Location: The Armoury

Re: Thoughts on a new idea: Powered Hardsuits

Post by Steelpoint » #75880

That's a good point, currently Hardsuits don't provide any massive benefits aside from being a slightly better armoured variant of Space Suits (and the armour given is negligible at best). The only Hardsuits/RIG's that are worthwhile are antagonist one's.

If anything at least the proposed idea would give some interesting edge to Hardsuits, even if its only for RnD/A Rare Hardsuit.
Image
User avatar
RandomMarine
Github User
Joined: Fri Apr 18, 2014 8:50 am
Byond Username: RandomMarine
Github Username: RandomMarine

Re: Thoughts on a new idea: Powered Hardsuits

Post by RandomMarine » #75889

Miners are kind of in an awkward spot due to this. Both because it's part of their job to be engaged in EVA far longer than any other, and goliath plates encourage miners to keep a hold of their own suits. Anybody grabbing your 4/4 upgraded mining suit out of the SSU while it's charging and saxxing off into space would be terrible.
User avatar
Steelpoint
Github User
Joined: Thu Apr 17, 2014 6:37 pm
Byond Username: Steelpoint
Github Username: Steelpoint
Location: The Armoury

Re: Thoughts on a new idea: Powered Hardsuits

Post by Steelpoint » #75890

RandomMarine wrote:Miners are kind of in an awkward spot due to this. Both because it's part of their job to be engaged in EVA far longer than any other, and goliath plates encourage miners to keep a hold of their own suits. Anybody grabbing your 4/4 upgraded mining suit out of the SSU while it's charging and saxxing off into space would be terrible.
Then you would be wise to not leave your valuable equipment alone.
Image
User avatar
DemonFiren
Joined: Sat Dec 13, 2014 9:15 pm
Byond Username: DemonFiren

Re: Thoughts on a new idea: Powered Hardsuits

Post by DemonFiren » #75895

ID-lockable suit storage units when?
Image
Image
Image
ImageImageImageImageImage

non-lizard things:
Spoiler:
Image
User avatar
RandomMarine
Github User
Joined: Fri Apr 18, 2014 8:50 am
Byond Username: RandomMarine
Github Username: RandomMarine

Re: Thoughts on a new idea: Powered Hardsuits

Post by RandomMarine » #75896

How does aloneness matter? Anybody with access to the room can walk up, grab it out of the SSU, slap it on themselves with a single tap of E, and walk out into space. Not everyone carries a stunprod 24/7 to deal with that.

Not to mention having to manage power while out in the asteroid.

I'd suggest keeping mining suits the way they are.
Post Reply

Who is online

Users browsing this forum: No registered users