-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from SynthTwo/upstreeeeeeeeeeeeea
Upstream Merge the Squeakquel
- Loading branch information
Showing
20 changed files
with
411 additions
and
102 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
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,14 @@ | ||
2025-01-01: | ||
vinylspiders: | ||
- bugfix: hash can now be created again by grinding dried cannabis leaves in a grinder | ||
or with a mortar and pestle | ||
2025-01-02: | ||
CoiledLamb, JohnFulpWillard, Ebin-Halcyon, axietheaxolotl, sergeirocks100: | ||
- image: The coroner's scrubs and jumpsuit now have digitigrade sprites. | ||
RatFromTheJungle: | ||
- qol: made previously required experiments into discounts for a majority of the | ||
tech-web, pretty much everything but alien tech, surgeries (to keep the coroners | ||
job safe,) fishing, and illegal tech. | ||
2025-01-04: | ||
somenetwork: | ||
- rscadd: Donation reward for bonkaitheroris |
Binary file modified
BIN
+297 Bytes
(110%)
modular_nova/master_files/icons/donator/mob/inhands/donator_left.dmi
Binary file not shown.
Binary file modified
BIN
+280 Bytes
(110%)
modular_nova/master_files/icons/donator/mob/inhands/donator_right.dmi
Binary file not shown.
Binary file modified
BIN
+1.72 KB
(120%)
modular_nova/master_files/icons/mob/clothing/under/medical.dmi
Binary file not shown.
Binary file modified
BIN
+1.68 KB
(110%)
modular_nova/master_files/icons/mob/clothing/under/medical_digi.dmi
Binary file not shown.
Binary file not shown.
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,34 @@ | ||
/obj/item/domain_anchor | ||
name = "domain connection anchor" | ||
desc = "A disposable tablet with a set of programs and utilities meant to stabilize the local square meter of domain infospace for new connections to be hopefully-safe. <br>\ | ||
In layman's terms, this creates additional bitrunning spawn points." | ||
icon = 'modular_nova/modules/bitrunning/icons/remote.dmi' | ||
icon_state = "delivery_running" | ||
|
||
/obj/item/domain_anchor/examine(mob/user) | ||
. = ..() | ||
. += span_notice("Use in-hand to create a new spawn point.") | ||
|
||
/obj/item/domain_anchor/attack_self(mob/user, modifiers) | ||
for(var/obj/machinery/quantum_server/server in SSmachines.get_machines_by_type(/obj/machinery/quantum_server)) | ||
server.exit_turfs += get_turf(src) | ||
server.retries_spent -= 1 | ||
server.threat += 1 | ||
server.radio.talk_into(src, "Potential secure datastream detected. Locking on the new spawn point.", RADIO_CHANNEL_SUPPLY) | ||
new /obj/effect/landmark/bitrunning/domain_anchor(drop_location()) | ||
user.balloon_alert(user, "connection stabilized!") | ||
qdel(src) | ||
|
||
/obj/effect/landmark/bitrunning/domain_anchor | ||
name = "anchored secure connection" | ||
desc = "Highly stable connection protocol, and consequentially a trojan, used by bitrunners during attacks on high-value targets when numbers are key and \ | ||
just three attempts aren't enough.<br>\ | ||
In several seconds it will merge itself with the code, becoming nigh-invisible to any means of detection." | ||
icon = 'icons/effects/effects.dmi' | ||
icon_state = "curse" | ||
invisibility = INVISIBILITY_NONE | ||
|
||
/obj/effect/landmark/bitrunning/domain_anchor/Initialize(mapload) | ||
. = ..() | ||
animate(src, alpha = 0, 10 SECONDS) | ||
QDEL_IN(src, 10 SECONDS) |
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
Oops, something went wrong.