Commit Graph

14649 Commits

Author SHA1 Message Date
SkyratBot
a110c0a342 [MIRROR] Cooked steaks are once again edible. (#6577)
* Cooked steaks are once again edible.

* FF

* Update sheetifier.dm

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-29 16:56:25 +01:00
SkyratBot
ce7052fda8 [MIRROR] Slightly buffs knife wounds, slightly nerfs scalpel wounds (#6572)
* Slightly buffs knife wounds, slightly nerfs scalpel wounds (#59848)

Recently it came to my attention that knives are actually really bad at causing slashing wounds, while the scalpel is probably a little too good at causing them, even through armor. So, here's what this PR does:

Knives in general are more effective at causing slash wounds, especially if the target has no armor/clothing on that limb. The butcher's cleaver in particular is now equally as effective as a circular saw.
Scalpels are a bit less effective at causing slash wounds against armor/clothing, though they're still extremely good at cutting, especially against exposed flesh.

With these stats, knives will be more effective against unarmored targets, and can actually be counted on to draw blood when needed.

* Slightly buffs knife wounds, slightly nerfs scalpel wounds

Co-authored-by: Ryll Ryll <3589655+Ryll-Ryll@users.noreply.github.com>
2021-06-29 16:45:35 +01:00
SkyratBot
397f4a69a7 [MIRROR] makes card decks to use the drag_pickup element (#6582)
* puts the drag_pickup component on card decks (#59857)

* makes card decks to use the drag_pickup element

Co-authored-by: spessbro <51048066+spessbro@users.noreply.github.com>
2021-06-29 16:44:54 +01:00
OrionTheFox
31952d96ee [READY]Adds two new space ruins, tiny bit of framework for other future mapping (#6507)
* Adds Spaceship turfs (First iteration)

* Moves VG decals icons into turf/decals

* GPS Computer

Literally the survival pod one re-textured to work with any wall. Good for ruins

* Fluff/machinery

just read the fluff file ffs

* Hardspace Maps

yes they're based on HS:SB. They turned out well ok

* these arent even complete but im commiting

* hbg

* New sound for AI node, wall fixes

* pre-loaded tape go brrrr

poggers

* tweaks ai node values + ghostship loot

hh

* remove two unused files, move salvagepost ID

* craftable spaceship walls (hopefully) and le cool pre-recorded tape

* properly makes spaceshipshiz craftable/placeable

* adds totally-cool sprites for the spaceship stacks :)

they arent codersprites i worked hard on them :)

* salvagepost loot and anchoring

* adds juicy ai node sprite

thamk u hay, sorry i couldnt use the big icon im not good coder :(

* replace on-turf lattices with the decal version

* oops adds the gps computer to the generic spaceruin signal
2021-06-28 14:35:16 +01:00
DuffCreeper
0afcf0db5c bye stonks (#6540)
you were too weird

Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-28 14:29:11 +01:00
SkyratBot
6ea78f1eb9 [MIRROR] Cigarettes heat their contents + early returns (#6509)
* Cigarettes heat their contents + early returns

* Update cigs_lighters.dm

Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-28 14:21:03 +01:00
SkyratBot
9c861af7b7 [MIRROR] Greyscale Mat Datum Stationary Smooth Tanks (#6544)
* Greyscale Mat Datum Stationary Smooth Tanks

* Update icon_smoothing.dm

Co-authored-by: Emmett Gaines <ninjanomnom@protonmail.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-27 16:37:32 +01:00
SkyratBot
eb09b20e47 [MIRROR] Adds a kneecapping element and adds that very element to baseball bats. (#6541)
* Adds a kneecapping element and adds that very element to baseball bats.

* Update signals.dm

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-27 16:34:19 +01:00
SkyratBot
418f5cc9c6 [MIRROR] Free golem policy (#6551)
* Free golem policy (#59831)

Adds policy.json functionality for Free Golems, will make it easier for future headmins to alter the policy.json rather than PR a change.

* Free golem policy

Co-authored-by: Coconutwarrior97 <40315842+Coconutwarrior97@users.noreply.github.com>
2021-06-27 16:16:14 +01:00
SkyratBot
79c3c379b9 [MIRROR] Fix missing SIGNAL_HANDLER (#6552)
* Fix missing SIGNAL_HANDLER (#59826)

Adds SIGNAL_HANDLER to everywhere that didn't have it that was picked up by dm-lua, which is now ready enough to catch these.

* Fix missing SIGNAL_HANDLER

Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
2021-06-27 16:16:04 +01:00
SkyratBot
665fe76566 [MIRROR] Modifies right click logic so that it is not the same priority as modifier keys. (#6498)
* Modifies right click logic so that it is not the same priority as modifier keys. (#59656)

Strips out the existing right click code - Due to the myriad of ways right clicking has been implemented, dedicated signals and procs for right clicking without modifiers are fundamentally incompatible with our system of primary and secondary attacks.

Adds additional signals to attacking code. These signals allow atoms to cancel the attack chain early on secondary attacks, or override the standard procs and not send signals to prevent any undesired behaviour from signal handlers.

Items that used RightClick procs have been converted to attack_hand_secondary.

The slaughter demon, having its own set of snowflake code as poor OOP principles have been applied in UnarmedAttack() procs with lacking calls to parent procs and arbitrary redefinition of behaviour, checks for a right click in its own UnarmedAttack() and performs a bodyslam off that.

Storage components now hijack the secondary attackby stage via signals to handle their opening and closing shortcuts on right click. When you right click a storage component equipped item with an object in your active hand, the object has an opportunity to perform its logic in pre secondary attack code and cancel the attack chain. If it does not cancel the attack chain in pre-attack, then the storage component takes over for attackby and, if possible, opens the relevant inventory and ends the attack chain.

The forensic scanner is a proof-of-concept of this working in action. With its scan logic moved from afterattack code to pre attack code for right clicking, right clicking with the scanner will now perform a scan where previously one was impossible. Left clicking still does what it always does - Scans at the very end of the attack chain.

The logic still isn't perfect - For example, you still can't attack containers in melee even in combat mode (you'll either open them or put your weapon into them regardless of which option you choose) - But this is a better setup overall which allows for items to at least override this behaviour in pre-attack if needed.

* Modifies right click logic so that it is not the same priority as modifier keys.

* a

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-27 16:10:15 +01:00
SkyratBot
73fdf1fa20 [MIRROR] Integrates spider eggs into the mob spawners (#6502)
* Integrates spider eggs into the mob spawners

* Update corpse.dm

Co-authored-by: Arkatos1 <43862960+Arkatos1@users.noreply.github.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-27 16:01:04 +01:00
Gandalf
221bc79f7c FUCK 2021-06-27 02:13:33 +01:00
SkyratBot
b9c1cda706 [MIRROR] Fix incorrect return for closet attack_hand_secondary causing lockers to have their locks toggled twice. (#6536)
* Fix incorrect return for closet attack_hand_secondary causing lockers to have their locks toggled twice. (#59814)

/obj/structure/closet/attack_hand_secondary(mob/user, modifiers) doesn't return one of the expected attack chain cancelling/continuing defines and instead returns TRUE.

This means that right clicking them acts as a secondary attack followed by a primary attack.

When the secondary attack against a secure closet actually attempts to toggle the lock, it now cancels the entire attack chain.

* Fix incorrect return for closet attack_hand_secondary causing lockers to have their locks toggled twice.

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
2021-06-26 16:11:45 +01:00
SkyratBot
1211d28c90 [MIRROR] Fixes blockers blocking themselves + cleanup (#6528)
* Fixes blockers blocking themselves + cleanup (#59808)

* Fixes blockers blocking themselves + cleanup

Co-authored-by: Rohesie <rohesie@gmail.com>
2021-06-25 22:34:02 +01:00
SkyratBot
a14b1dadb5 [MIRROR] CanPass refactor (#6527)
* CanPass refactor (#59804)

* CanPass refactor

Co-authored-by: Rohesie <rohesie@gmail.com>
2021-06-25 22:33:51 +01:00
SkyratBot
9992941e90 [MIRROR] Foodtype update (#6503)
* Foodtype update (#59783)

After eating a burrito and noticing the odd addition of the meat taste, I took a dive into the food folder and it hurt my poor fragile brain. I gave a lot of things updated tags or tastes. I think I got most of it.

* Foodtype update

Co-authored-by: carshalash <carshalash@gmail.com>
2021-06-25 13:13:01 +01:00
SkyratBot
25cdf772a4 [MIRROR] Gives advanced wireless right click functionality to agent ID cards. (#6511)
* Gives advanced wireless right click functionality to agent ID cards. (#59657)

* Wireless schmireless

* tgui adjacency check

* Tgui state tweaks

* Moar functionality

* Right clickify

* Depends-on-Things

* I have always wanted a the agent ID card of my own.

* Revert "Tgui state tweaks"

This reverts commit 42824a30958186f62cf47ce5ebd150a02b3ee8b2.

* Revert "tgui adjacency check"

This reverts commit af0bf4c46456e92c1d5e29ccd2b064be134216b4.

* Compose don't inherit

* Revert "Depends-on-Things"

This reverts commit 7880e7b1914c7de22e2a57c0b4005a0fb748cc61.

* Gives advanced wireless right click functionality to agent ID cards.

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
2021-06-25 12:50:43 +01:00
SkyratBot
d822eda106 [MIRROR] Forcefield Projector Nerf (#6495)
* Forcefield Projector Nerf (#59751)

The item can no longer be used to instantly lock someone into a corner. It's a minor balance change, but the projector is way too bullshit to play against as-is.

* Forcefield Projector Nerf

Co-authored-by: Cheshify <73589390+Cheshify@users.noreply.github.com>
2021-06-24 23:02:36 +01:00
SkyratBot
707f38ea7f [MIRROR] Fixes bodybags, cargo crates, and directional lighting. (#6459)
* Fixes bodybags, cargo crates, and directional lighting. (#59709)

Fixes a couple bugs created by the neon carpets PR:
* Bodybags can once again be closed. (Fixes #59704, Fixes #59747)
* Cargo crates no longer report having delivered an emissive blocker
* Directional lighting no longer masks the emissive plane.

* Fixes bodybags, cargo crates, and directional lighting.

Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com>
2021-06-24 01:58:05 +01:00
Gandalf
1a2f4f5d69 missed mirror 2021-06-23 22:35:37 +01:00
SkyratBot
5326760cb3 [MIRROR] Makes turfs persist their signals, uses this to optimize connect_loc (#6465)
* Makes turfs persist their signals, uses this to optimize connect_loc  (#59608)

* Makes turfs persist signals

* Splits connect_loc up into two elements, one for stuff that wishes to connect on behalf of something, and one for stuff that just wants to connect normally. Connecting on behalf of someone has a significant amount of overhead, so let's do this to keep things clear

* Converts all uses of connect_loc over to the new patterns

* Adds some comments, actually makes turfs persist signals

* There's no need to detach connect loc anymore, since all it does is unregister signals. Unregisters a signal from formorly decal'd turfs, and makes the changeturf signal persistance stuff actually work

* bro fuck documentation

* Changes from a var to a proc, prevents admemems and idiots

* Extra detail on why we do the copy post qdel

* Makes turfs persist their signals, uses this to optimize connect_loc

Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
2021-06-23 04:23:48 +01:00
SkyratBot
d85a02babd [MIRROR] Refactors move procs to support multitle objects (#6423)
* Refactors move procs to support multitle objects

* Update _blob.dm

Co-authored-by: Rohesie <rohesie@gmail.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-22 22:40:04 +01:00
SkyratBot
a757049411 [MIRROR] Toy Update (#6444)
* Toy Update (#59754)

* code

* sprite part 1

* sprites and mapping

* wa

* fix

* warden figure fix

* warden fix 2

* wahwah

* Update code/game/objects/items/toys.dm

* series

Co-authored-by: tralezab <spamqetuo2@ gmail.com>

* Toy Update

Co-authored-by: Fikou <piotrbryla@onet.pl>
Co-authored-by: tralezab <spamqetuo2@ gmail.com>
2021-06-22 22:38:42 +01:00
SkyratBot
7f66f37439 [MIRROR] Make smoke_all for cigarettes work correctly (#6439)
* Make smoke_all for cigarettes work correctly (#59698)

smoke_all wasn't actually being considered when computing the amount of reagents transferred to the body, but only the reagents removed from the cigarette prior to this.
This makes the amount of reagents that cigarettes transfer into your body when you smoke them actually dependent on the smoke_all factor.

Makes the changes made in #45711 (A similar pr) (c9c57c4419) actually work properly, as otherwise there really isn't much of a meaning to the smoke_all property.

* Make smoke_all for cigarettes work correctly

Co-authored-by: RandomGamer123 <31096837+RandomGamer123@users.noreply.github.com>
2021-06-22 22:38:35 +01:00
SkyratBot
9eaae7deea [MIRROR] Tramstation Tram "Upgrades" (#6456)
* Tramstation Tram "Upgrades" (#59277)

The tram now smashes through walls instead of phasing through them. Spawns sparks and shakes the screen for nearby observers as the tram kool-aids its way through obstructions.
The tram now equal-opportunity smashes through most machinery and structures. If a structure is normally not anchored by default (girders, lockers, closets, ect), it will unanchor them and throw them while doing some damage. Machinery now actually gets destroyed when hit by the tram, which also fixes the issue with the recycler breaking the tram.
Tram platforms themselves have been made inherently indestructible to prevent them from ever breaking in any unexpected gameplay method.
The permabrig mouse has been moved to the general activity room instead of the room with the exposed APC wiring.

* Tramstation Tram "Upgrades"

Co-authored-by: MMMiracles <lolaccount1@hotmail.com>
2021-06-22 22:37:08 +01:00
SkyratBot
d7fdb638c3 [MIRROR] New tile-coloring turf decals! (#6442)
* New tile-coloring turf decals! (#59609)

* New tile-coloring turf decals!

Co-authored-by: Greniza <61635418+Greniza@users.noreply.github.com>
2021-06-22 11:53:12 +01:00
Useroth
873144d8ef Adds a setter for density (#59529) (#6437)
Adds set_density()
Fixes one instance of a duplicate density assignment on an object.
Comments two hacky usages of density which will have to forgo using the setter for now.

Lets us append code to the event of density changing.
Pretty sure this is leading up to some multitile object thing -Lemon

Co-authored-by: Rohesie <rohesie@gmail.com>
2021-06-22 01:24:59 +01:00
SkyratBot
c6ee89d898 [MIRROR] contractor baton cyborg stunning now uses left/right clicks, not combat mode (#6427)
* contractor baton cyborg stunning now uses left/right clicks, not combat mode

* Update misc.dm

* Update misc.dm

Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-22 01:02:29 +01:00
SkyratBot
56f2e79a0a [MIRROR] Agent ID cards now jump to the front of wallets and can disguise other more powerful ID cards. (#6433)
* Change agent ID cards to jump to the front of wallets; disguise other more powerful ID cards (#59652)

Many moons after I reworked ID cards, I feel the Agent ID card needs a little bit of extra love.

This change adds an option during forging which allows the user to specify whether the agent ID card will force itself to the front-facing/visible ID slot in wallets.

This provides traitors with a way to effectively disguse any special ID cards and accesses they may have without making the agent ID card a must-buy TC tax. If your traitor strategy involves gathering many ID cards, this is a definite buff to an item that took a heavy hit to power in the rework.

* Agent ID cards now jump to the front of wallets and can disguise other more powerful ID cards.

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
2021-06-22 00:48:52 +01:00
SkyratBot
b37a7f134e [MIRROR] Refactors mail, delivery and goodies code (#6432)
* Refactors mail and delivery code (#59730)

- Mail now uses weakreferences to minds, which means the presence of
  mail will not cause harddels, and persist between mindswaps or cloning
  or whatever horrible mob transfer things you've got going on.
- The code for creating a crate of mail has been refactored into a
  single proc, rather than having the same code twice.
- Instead of special casing reagents being delivered, instead
  reagent mail goodies are just regular bottle items like any other.

* Refactors mail, delivery and goodies code

Co-authored-by: coiax <yellowbounder@gmail.com>
2021-06-22 00:48:42 +01:00
SkyratBot
0ab0c4f5c4 [MIRROR] Yolk issue fix (#6426)
* I put this egg back together (#59744)

Uhhh, I made it so yolks give 5u instead of 4 when cracked into a beaker. Pretty much that

It's weird to not get enough yolk to make a cake when cracked into a beaker. Having to crack a 4th egg because you did it in the wrong container kinda sucks.

* Yolk issue fix

Co-authored-by: carshalash <carshalash@gmail.com>
2021-06-22 00:48:11 +01:00
SkyratBot
2739a31f24 [MIRROR] Splits documents.dm into secret_documents.dm and inspector.dm. (#6422)
* Splits documents.dm into secret_documents.dm and inspector.dm. (#59746)

This splits documents.dm into two files and adds dmdoc comments to the new secret_documents.dm. Also removed a few newlines from the inspector part.

* Splits documents.dm into secret_documents.dm and inspector.dm.

Co-authored-by: interestingusernam3 <51925758+interestingusernam3@users.noreply.github.com>
2021-06-21 00:50:59 +01:00
SkyratBot
87e3a63f7d [MIRROR] During unit tests, does extra verification on text based overlays (#6415)
* During unit tests, does extra verification on text based overlays (#59553)

This makes it so during unit tests, adding a text based overlay to something will runtime if the icon does not have an icon state matching that text. I would do this during normal compiles as well but getting the icon states from an icon is surprisingly expensive.

Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@ users.noreply.github.com>

* During unit tests, does extra verification on text based overlays

Co-authored-by: Emmett Gaines <ninjanomnom@gmail.com>
Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@ users.noreply.github.com>
2021-06-21 00:48:24 +01:00
Gandalf
d0bfc4de04 The Nanotrasen Representative (MY WAY) (#6368)
* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

* Ads

* dddd

* a

* a

* a

* Update uniform_digi.dmi

* Update uniform_digi.dmi

* Update uniform_digi.dmi

* Some random new potted plants!

* a

* Update flora.dm

* a

* fixes

* a

* a

* e
2021-06-20 02:23:29 +01:00
SkyratBot
071b56751d [MIRROR] Converts the new span_ procs to macros, fixing a few oversights/errors along the way (#6394)
* Converts the new span_ procs to macros, fixing a few oversights/errors along the way (#59685)

This is a partial re-implementation of #59645

oranges has expressed a desire for the span_ procs to instead be macros.

I agree. Even though it's a small micro-optimisation, a well contained macro can be self-linting. I've already caught one edge case thanks to this in launch_pad.dm

Similarly, there was an edge case where a [ was escaped inappropriately (that errored out) in watercloset.dm and a case where a ] that should probably have been escaped actually wasn't in robot_defense.dm

I have opted to make an exception to the ALLCAPS convention for these macros.

I have guaraded these macros in parenthesis. In doing so, additional error states can be captured as part of the build process as malformed inputs will then cause errors and prompt further investigation.

* Converts the new span_ procs to macros, fixing a few oversights/errors along the way

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
2021-06-19 22:54:47 +01:00
SkyratBot
3a8e36d443 [MIRROR] Defibrillator Fixes + Code Cleanup (#6392)
* Defibrillator Fixes + Code Cleanup (#59615)

Cleans up some of the defib code by reducing repeated code blocks, renaming certain procs, reducing unnecessary if statements, and adding flexability to certain aspects, like cooldown time. Additionally fixes some issues with the code, like visible messages not showing up for mobs who are wearing the source and shock_touching not using its provided damage values.

I have defined the combat paddles' emp_act change as a "Fix" because the comment appended to the combat variable, as well as the lack of sprites/clarity for emped syndicate defibs, made me feel this was unintentional. However, if this is seen as intentional, I will revert those changes to keep this a purely fix/cleanup-based PR

* Defibrillator Fixes + Code Cleanup

Co-authored-by: Beatrice <83368538+SpaceDragon00@users.noreply.github.com>
2021-06-19 22:53:05 +01:00
SkyratBot
b44ec5c816 [MIRROR] [READY]The smell of death! New machine to puts the spectre in spectroscopy. (#6390)
* Add ectoscopic sniffer to Robotics Labs (#59494)

This PR adds a new machine; the ectoscopic sniffer, to the robotics lab on each map.

The sniffer is small desktop machine used for detecting paranormal activity, it displays a green flash and a chime every time it is touched(as in attacked) by a ghost.

It has a single wire inside, when this wire is pulsed, it triggers the animation and chime, as if touched by a ghost, maybe some enterprising crewmember can use this to their advantage. When this wire is cut, the device won't trigger, no matter how many spooks or haunts touch it.

---

This PR is above all fun.

Of course, it can be used as the author of the previous PR intended; to alert the roboticists of souls willing to occupy a positronic brain.

Clever spacemen will always figure out how to use this kind of device for more creative parascientifc research.

It is still limited by its low bitrate and the very low quality of the information as compared to something like ghost court, since a single malevolent spirit is able to feed the living bullshit.

Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com>

* [READY]The smell of death! New machine to puts the spectre in spectroscopy.

Co-authored-by: Krysonism <49783092+Krysonism@users.noreply.github.com>
Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-19 21:56:32 +01:00
OrionTheFox
078998de2c Adds various Departmental warning tapes (#6376)
* POLICE TAPE WOO

hmmgh

* Much things, read desc

Placed tape is a structure now instead of an item, door sprites are actually torn, all code besides destruction works (mostly)

* TAPE WORKS 99%

just need to have a visual for lifted tape..

* Adds lifted visual + starts on making tape obtainable

ahgghbkaghb

* finishes the vendors. 100% complete(?)

AAAAAAAAAAAAAAAAAAA

* detdrobe vending

abghb

* lifted alpha is better

hbgb

* change opacity hngh

* indentation bhgjknbg

im so tired

* walking can crumple the tape too

* desc
2021-06-19 21:51:31 +01:00
SkyratBot
476ff93339 [MIRROR] Removes the fake error texture floor tiles. (#6371)
* Removes the fake error texture floor tiles. (#59693)

* Removing is improving

* Remove icon from dmi

* Inhands repurposed to error states

* Removes the fake error texture floor tiles.

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
2021-06-18 04:20:14 +01:00
SkyratBot
1dee4ec527 [MIRROR] Fixes powerfist randomly not working when using mixed gas types (#6362)
* Fixes powerfist randomly not working when using mixed gas types (#59234)

Adds a bit of wiggleroom so QUANTIZE being called on gas_mixture.remove() doesn't randomly and occasionally makes the powerfist think there isn't enough gas. This seems to be the only feasible way of fixing it.

Adds a helper proc to do this generically

* Fixes powerfist randomly not working when using mixed gas types

Co-authored-by: RandomGamer123 <31096837+RandomGamer123@users.noreply.github.com>
2021-06-18 02:43:35 +01:00
SkyratBot
1b122706a3 [MIRROR] USB Cables -- Connect circuits to computers/machines (#6327)
* USB Cables -- Connect circuits to computers/machines (#59345)

* Initial commit

* Sprites, finishing work

* More ways to detach from circuitboards

* Clear TODOs, give bots a button

* Fix qdel loop

* Designs

* It's the bots that have them

* Grammar fix

* Feedback for connecting to circuit directly

* Add USB cable design to basic circuitry

* Better naming

* Feedback

* Fix for new code

* COMSIG_CIRCUIT_ADD_COMPONENT_MANUALLY

* span procs

* USB Cables -- Connect circuits to computers/machines

Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
2021-06-16 00:37:07 +01:00
SkyratBot
7d1d0e1fad [MIRROR] Refactors most spans into span procs (#6315)
* Refactors most spans into span procs

* AA

* a

* AAAAAAAAAAAAAAAAAAAAAA

* Update species.dm

Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-16 00:24:49 +01:00
SkyratBot
ab709c8dba [MIRROR] Refactors quirk code. (#6303)
* Refactors quirk code.

* Update neutral.dm

* 0

* Update neutral.dm

Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-15 23:48:10 +01:00
SkyratBot
6d90c85a57 [MIRROR] Readds poutine (#6330)
* Readds poutine (#59611)

Adds a crafting recipe and food item for poutine, which was mistakenly dropped off in #55160
Updates poutine's icon to no longer have the plate, keeping in line with other similar foods.

* Readds poutine

Co-authored-by: ArcaneDefence <51932756+ArcaneDefence@users.noreply.github.com>
2021-06-15 20:37:09 +01:00
SkyratBot
f8042b6306 [MIRROR] Adds Neon Carpet (#6302)
* Adds Neon Carpet (#59140)

Adds a couple varieties of neon carpet.
Makes decals care about their plane in addition to their layer.

* 0

* A

* a

Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com>
Co-authored-by: Gandalf <jzo123@hotmail.com>
2021-06-15 18:12:49 +01:00
SkyratBot
103d77f5de [MIRROR] Refactors tram code to be more robust (#6298)
* Refactors tram code to be more robust (#59596)

Tram code has a lot of locate() in list, a lot of unnecessary typechecking and generally bad practices. This refactors tramcode to be easily more maintainable and to have more consistent behaviour, as well as removing any unnecessary code.

* Refactors tram code to be more robust

Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com>
2021-06-14 18:44:55 +12:00
SkyratBot
e1c7ca12d1 [MIRROR] Wrapping Paper GAGS (#6309)
* Convert wrapping paper sprites to GAGS (#59374)

Wrapping paper has been put through GAGS. You can set the base color and ribbon color with right click, then apply it to a package.

Co-authored-by: coiax <yellowbounder@ gmail.com>

* Wrapping Paper GAGS

Co-authored-by: RaveRadbury <3204033+RaveRadbury@users.noreply.github.com>
Co-authored-by: coiax <yellowbounder@ gmail.com>
2021-06-14 18:42:46 +12:00
SkyratBot
75b3b2bc8b [MIRROR] Lizard Food: a Taste of the Homeworld (#6281)
* Lizard Food: a Taste of the Homeworld

* Mirror!

Co-authored-by: EOBGames <58124831+EOBGames@users.noreply.github.com>
Co-authored-by: Funce <funce.973@gmail.com>
2021-06-14 18:36:47 +12:00
SkyratBot
6f3b151bb8 [MIRROR] Fixes a bunch of harddels that are sourced from player action (#6252)
* Fixes a bunch of harddels that are sourced from player action

* Mirror!

Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
Co-authored-by: Funce <funce.973@gmail.com>
2021-06-11 03:13:33 +01:00