forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 42
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 underwear
- Loading branch information
Showing
70 changed files
with
927 additions
and
310 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
Binary file modified
BIN
+97 Bytes
(100%)
code/modules/unit_tests/screenshots/screenshot_antag_icons_blobinfection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-79 Bytes
(97%)
code/modules/unit_tests/screenshots/screenshot_antag_icons_bloodbrother.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+42 Bytes
(100%)
code/modules/unit_tests/screenshots/screenshot_antag_icons_changeling.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+42 Bytes
(100%)
code/modules/unit_tests/screenshots/screenshot_antag_icons_stowawaychangeling.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-40 Bytes
(99%)
code/modules/unit_tests/screenshots/screenshot_humanoids__datum_species_jelly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-33 Bytes
(99%)
...nit_tests/screenshots/screenshot_humanoids__datum_species_jelly_luminescent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-40 Bytes
(99%)
...ules/unit_tests/screenshots/screenshot_humanoids__datum_species_jelly_slime.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-40 Bytes
(99%)
.../unit_tests/screenshots/screenshot_humanoids__datum_species_jelly_stargazer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-49 Bytes
(97%)
code/modules/unit_tests/screenshots/screenshot_humanoids__datum_species_lizard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-129 Bytes
(93%)
code/modules/unit_tests/screenshots/screenshot_humanoids__datum_species_moth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions
74
modular_doppler/emotes/code/overlay_emotes/overlay_emotes.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,74 @@ | ||
#define MOB_OVERLAY_FILE 'modular_doppler/emotes/icons/mob_overlay.dmi' | ||
|
||
/// Overwrite | ||
/datum/emote/living/sing_tune/run_emote(mob/living/user, params, type_override, intentional) | ||
. = ..() | ||
var/mutable_appearance/overlay = mutable_appearance(MOB_OVERLAY_FILE, "sing", ABOVE_MOB_LAYER) | ||
user.flick_overlay_static(overlay, 50) | ||
|
||
/// Additions | ||
/datum/emote/living/sweatdrop | ||
key = "sweatdrop" | ||
key_third_person = "sweatdrops" | ||
cant_muffle = TRUE | ||
|
||
/datum/emote/living/sweatdrop/run_emote(mob/living/user, params, type_override, intentional) | ||
. = ..() | ||
var/mutable_appearance/overlay = mutable_appearance(MOB_OVERLAY_FILE, "sweatdrop", ABOVE_MOB_LAYER) | ||
overlay.pixel_x = 10 | ||
overlay.pixel_y = 10 | ||
user.flick_overlay_static(overlay, 50) | ||
playsound(get_turf(user), 'modular_doppler/emotes/sound/sweatdrop.ogg', 25, TRUE) | ||
|
||
/datum/emote/living/exclaim | ||
key = "exclaim" | ||
key_third_person = "exclaims" | ||
cant_muffle = TRUE | ||
|
||
/datum/emote/living/exclaim/run_emote(mob/living/user, params, type_override, intentional) | ||
. = ..() | ||
var/mutable_appearance/overlay = mutable_appearance(MOB_OVERLAY_FILE, "exclamation", ABOVE_MOB_LAYER) | ||
overlay.pixel_x = 10 | ||
overlay.pixel_y = 28 | ||
user.flick_overlay_static(overlay, 50) | ||
playsound(get_turf(user), 'sound/machines/chime.ogg', 25, TRUE) | ||
|
||
/datum/emote/living/question | ||
key = "question" | ||
key_third_person = "questions" | ||
cant_muffle = TRUE | ||
|
||
/datum/emote/living/question/run_emote(mob/living/user, params, type_override, intentional) | ||
. = ..() | ||
var/mutable_appearance/overlay = mutable_appearance(MOB_OVERLAY_FILE, "question", ABOVE_MOB_LAYER) | ||
overlay.pixel_x = 10 | ||
overlay.pixel_y = 28 | ||
user.flick_overlay_static(overlay, 50) | ||
playsound(get_turf(user), 'modular_doppler/emotes/sound/question.ogg', 25, TRUE) | ||
|
||
/datum/emote/living/realize | ||
key = "realize" | ||
key_third_person = "realizes" | ||
cant_muffle = TRUE | ||
|
||
/datum/emote/living/realize/run_emote(mob/living/user, params, type_override, intentional) | ||
. = ..() | ||
var/mutable_appearance/overlay = mutable_appearance(MOB_OVERLAY_FILE, "realize", ABOVE_MOB_LAYER) | ||
overlay.pixel_y = 15 | ||
user.flick_overlay_static(overlay, 50) | ||
playsound(get_turf(user), 'modular_doppler/emotes/sound/realize.ogg', 25, TRUE) | ||
|
||
/datum/emote/living/annoyed | ||
key = "annoyed" | ||
key_third_person = "is annoyed" | ||
cant_muffle = TRUE | ||
|
||
/datum/emote/living/annoyed/run_emote(mob/living/user, params, type_override, intentional) | ||
. = ..() | ||
var/mutable_appearance/overlay = mutable_appearance(MOB_OVERLAY_FILE, "annoyed", ABOVE_MOB_LAYER) | ||
overlay.pixel_x = 10 | ||
overlay.pixel_y = 10 | ||
user.flick_overlay_static(overlay, 50) | ||
playsound(get_turf(user), 'modular_doppler/emotes/sound/annoyed.ogg', 25, TRUE) | ||
|
||
#undef MOB_OVERLAY_FILE |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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 modified
BIN
+216 Bytes
(130%)
modular_doppler/modular_cosmetics/GAGS/icons/mob/under.dmi
Binary file not shown.
Binary file modified
BIN
+134 Bytes
(130%)
modular_doppler/modular_cosmetics/GAGS/icons/obj/under.dmi
Binary file not shown.
10 changes: 10 additions & 0 deletions
10
modular_doppler/modular_cosmetics/GAGS/json_configs/head/back_bow.json
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,10 @@ | ||
{ | ||
"back_bow": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "back_bow", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
} | ||
] | ||
} |
10 changes: 10 additions & 0 deletions
10
modular_doppler/modular_cosmetics/GAGS/json_configs/head/large_bow.json
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,10 @@ | ||
{ | ||
"large_bow": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "large_bow", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
modular_doppler/modular_cosmetics/GAGS/json_configs/head/small_bow.json
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,18 @@ | ||
{ | ||
"small_bow": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "small_bow", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
} | ||
], | ||
"small_bow_t": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "small_bow_t", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
} | ||
] | ||
} |
10 changes: 10 additions & 0 deletions
10
modular_doppler/modular_cosmetics/GAGS/json_configs/head/sweet_bow.json
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,10 @@ | ||
{ | ||
"sweet_bow": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "sweet_bow", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
} | ||
] | ||
} |
10 changes: 10 additions & 0 deletions
10
modular_doppler/modular_cosmetics/GAGS/json_configs/under/pentagram_dress.json
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,10 @@ | ||
{ | ||
"dress_pentagram": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "penta_base", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
} | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
modular_doppler/modular_cosmetics/GAGS/json_configs/under/strapless_dress.json
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,16 @@ | ||
{ | ||
"dress_strapless": [ | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "strapless_belt", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 1 ] | ||
}, | ||
{ | ||
"type": "icon_state", | ||
"icon_state": "strapless_base", | ||
"blend_mode": "overlay", | ||
"color_ids": [ 2 ] | ||
} | ||
] | ||
} |
25 changes: 25 additions & 0 deletions
25
modular_doppler/modular_cosmetics/code/belt/med_bandolier.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,25 @@ | ||
/obj/item/storage/belt/med_bandolier | ||
icon = 'modular_doppler/modular_cosmetics/icons/obj/belt/medical_extra.dmi' | ||
worn_icon = 'modular_doppler/modular_cosmetics/icons/mob/belt/medical_extra.dmi' | ||
name = "medical bandolier" | ||
desc = "A pocketed, pine green belt slung like a sash over the shoulder. Features numerous pockets for medicines and poisons alike. Now is coward healing time." | ||
icon_state = "med_bandolier" | ||
worn_icon_state = "med_bandolier" | ||
|
||
/obj/item/storage/belt/med_bandolier/Initialize(mapload) | ||
. = ..() | ||
atom_storage.max_specific_storage = WEIGHT_CLASS_NORMAL | ||
atom_storage.max_slots = 14 | ||
atom_storage.max_total_storage = 35 | ||
atom_storage.set_holdable(list( | ||
/obj/item/dnainjector, | ||
/obj/item/reagent_containers/dropper, | ||
/obj/item/reagent_containers/cup/bottle, | ||
/obj/item/reagent_containers/pill, | ||
/obj/item/reagent_containers/syringe, | ||
/obj/item/reagent_containers/medigel, | ||
/obj/item/storage/pill_bottle, | ||
/obj/item/implanter, | ||
/obj/item/hypospray/mkii, | ||
/obj/item/reagent_containers/cup/hypovial, | ||
)) |
Oops, something went wrong.