-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tram-bar-contest-ocean
- Loading branch information
Showing
50 changed files
with
645 additions
and
47 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
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
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
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
Binary file added
BIN
+1.16 KB
code/modules/unit_tests/screenshots/screenshot_humanoids__datum_species_floran.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
2023-11-06: | ||
DexeeXI: | ||
- rscadd: Dagoth Ur wishes you all to behave yourselves and pray well, lest you | ||
invoke his anger. | ||
Gboster-0: | ||
- rscdel: Deleted wendigo's impossible attack | ||
Salted-Zen: | ||
- bugfix: Un-fries your boiled spagetti | ||
Senri: | ||
- bugfix: Fixed patreon monkecoin boost to work properly | ||
- balance: rebalanced Throwing Arm quirk | ||
lmenvs: | ||
- rscadd: New Space Marine helmet, thanks to Odie_boy! | ||
- bugfix: Pets that died and had no sprite should now be fixed. Lazarus Injections | ||
will work properly too. | ||
2023-11-07: | ||
DexeeXI: | ||
- rscdel: Removed buffer bottles from Chemist job starting gear and the Chemist | ||
lockers. | ||
NicoDeLuna: | ||
- rscadd: Added Edgerunner Hairstyle for Roundstart | ||
2023-11-08: | ||
Glyphee: | ||
- rscadd: Florans | ||
KoboldCommando: | ||
- bugfix: cargo, zoomba and kerfus borgs should no longer go invisible when reset |
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
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,25 @@ | ||
// Dagoth KILL Smite! (ported from Biblefart code) - Dexee | ||
// tweaked the name of this to make it extremely apparent that someone's gonna get fucked up. completely and utterly apparent. will be making a separate funny smite that doesn't kill | ||
|
||
/datum/smite/dagothkillsmite | ||
name = "Dagoth KILL Smite" | ||
|
||
/datum/smite/dagothkillsmite/effect(client/user, mob/living/target) | ||
. = ..() | ||
if (!iscarbon(target)) | ||
to_chat(user, span_warning("This must be used on a carbon mob."), confidential = TRUE) | ||
return | ||
var/mob/living/carbon/human/Person = target | ||
var/turf/Location = get_turf(target) | ||
var/turf/T = get_step(get_step(Person, NORTH), NORTH) | ||
to_chat(Person,span_ratvar("What a grand and intoxicating innocence. Perish.")) | ||
T.Beam(Person, icon_state="lightning[rand(1,12)]", time = 1.5 SECONDS) | ||
Person.unequip_everything() | ||
Person.Paralyze(15) | ||
playsound(target,'sound/magic/lightningshock.ogg', 50, 1) | ||
playsound(target,'monkestation/sound/misc/dagothgod.ogg', 80) | ||
Person.electrocution_animation(15) | ||
spawn(15) | ||
Person.gib() | ||
playsound(Location,'sound/effects/explosion3.ogg', 75, 1) | ||
return |
17 changes: 17 additions & 0 deletions
17
monkestation/code/modules/admin/smites/dagothstripsmite.dm
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,17 @@ | ||
// The Dagoth Strip! To have something that doesn't kill but you still wanna humiliate someone! -Dexee | ||
|
||
/datum/smite/dagothstripsmite | ||
name = "Dagoth STRIP" | ||
|
||
/datum/smite/dagothstripsmite/effect(client/user, mob/living/target) | ||
. = ..() | ||
if (!iscarbon(target)) | ||
to_chat(user, span_warning("This must be used on a carbon mob."), confidential = TRUE) | ||
return | ||
var/mob/living/carbon/human/Person = target | ||
to_chat(Person,span_ratvar("Why have you come unprepared?")) | ||
Person.unequip_everything() | ||
Person.Paralyze(15) | ||
playsound(target,'monkestation/sound/misc/dagothgod.ogg', 80) | ||
return | ||
|
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.