Merge remote-tracking branch 'origin/master'

This commit is contained in:
Amory Blaine
2020-02-06 16:25:31 -05:00
27 changed files with 132 additions and 11 deletions
+1
View File
@@ -1289,6 +1289,7 @@
#include "code\modules\client\preference_setup\loadout\loadout_gloves.dm"
#include "code\modules\client\preference_setup\loadout\loadout_head.dm"
#include "code\modules\client\preference_setup\loadout\loadout_mask.dm"
#include "code\modules\client\preference_setup\loadout\loadout_religion.dm"
#include "code\modules\client\preference_setup\loadout\loadout_shoes.dm"
#include "code\modules\client\preference_setup\loadout\loadout_smoking.dm"
#include "code\modules\client\preference_setup\loadout\loadout_suit.dm"
@@ -262,8 +262,4 @@
/datum/gear/accessory/sleeve_patch/New()
..()
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/accessory/rosary
display_name = "rosary"
path = /obj/item/clothing/accessory/rosary
gear_tweaks += gear_tweak_free_color_choice
@@ -0,0 +1,20 @@
/datum/gear/religion
display_name = "trinary perfection robes"
path = /obj/item/clothing/suit/trinary_robes
sort_category = "Religion"
/datum/gear/religion/trinary/mask
display_name = "trinary perfection mask"
path = /obj/item/clothing/mask/trinary_mask
/datum/gear/religion/trinary/cape
display_name = "trinary perfection cape"
path = /obj/item/clothing/accessory/poncho/trinary
/datum/gear/religion/trinary/badge
display_name = "trinary perfection brooch"
path = /obj/item/clothing/accessory/badge/trinary
/datum/gear/religion/rosary
display_name = "rosary"
path = /obj/item/clothing/accessory/rosary
@@ -173,6 +173,10 @@
display_name = "winter coat"
path = /obj/item/clothing/suit/storage/hooded/wintercoat
/datum/gear/suit/winter/red
display_name = "winter coat, red"
path = /obj/item/clothing/suit/storage/hooded/wintercoat/red
/datum/gear/suit/winter/captain
display_name = "winter coat, captain"
path = /obj/item/clothing/suit/storage/hooded/wintercoat/captain
@@ -76,6 +76,7 @@
antenna["antenna, double"] = /obj/item/clothing/head/antenna/double
antenna["antenna, left"] = /obj/item/clothing/head/antenna/double/left
antenna["antenna, right"] = /obj/item/clothing/head/antenna/double/right
antenna["antenna, trinary perfection"] = /obj/item/clothing/head/antenna/trinary_halo
gear_tweaks += new/datum/gear_tweak/path(antenna)
gear_tweaks += list(gear_tweak_free_color_choice)
@@ -102,4 +103,4 @@
idris["Brown Idris Unit trench coat"] = /obj/item/clothing/suit/armor/vest/idris/trenchcoat/brown
idris["Black Idris Unit duster coat"] = /obj/item/clothing/suit/armor/vest/idris/duster/black
idris["Brown Idris Unit duster coat"] = /obj/item/clothing/suit/armor/vest/idris/duster/brown
gear_tweaks += new/datum/gear_tweak/path(idris)
gear_tweaks += new/datum/gear_tweak/path(idris)
+6
View File
@@ -593,6 +593,12 @@
icon_state = "right_robot_antennae"
item_state = "right_robot_antennae"
/obj/item/clothing/head/antenna/trinary_halo
name = "trinary perfection antenna"
desc = "A decorative antenna that is commonly worn by IPCs who serve the Trinary Perfection. It resembles a golden gear."
icon_state = "trinary_halo"
item_state = "trinary_halo"
/obj/item/clothing/head/fake_culthood
name = "occultist hood"
icon_state = "culthood"
+12 -1
View File
@@ -92,6 +92,17 @@
flags_inv = HIDEFACE
body_parts_covered = 0
/obj/item/clothing/mask/trinary_mask
name = "trinary perfection mask"
desc = "A simple lace mask worn by IPCs and organics alike while within the churches of the Trinary Perfection."
icon_state = "trinary_mask"
item_state = "trinary_mask"
w_class = ITEMSIZE_SMALL
body_parts_covered = FACE
item_flags = FLEXIBLEMATERIAL
down_body_parts_covered = null
adjustable = TRUE
//scarves (fit in in mask slot)
//None of these actually have on-mob sprites...
/obj/item/clothing/mask/bluescarf
@@ -210,7 +221,7 @@
return
if(user.get_equipped_item(slot_wear_mask) != src)
return
eye.possess(user)
to_chat(eye.owner, span("notice", "You feel disoriented for a moment as your mind connects to the camera network."))
+5
View File
@@ -102,6 +102,11 @@
min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE
canremove = 0
/obj/item/clothing/suit/storage/hooded/wintercoat/red
name = "red winter coat"
icon_state = "coatred"
item_state = "coatred"
/obj/item/clothing/suit/storage/hooded/wintercoat/captain
name = "captain's winter coat"
icon_state = "coatcaptain"
@@ -154,6 +154,12 @@
body_parts_covered = UPPER_TORSO|LOWER_TORSO
flags_inv = HIDEJUMPSUIT
/obj/item/clothing/suit/trinary_robes
name = "trinary perfection robe"
desc = "Robes worn by those who serve The Trinary Perfection."
icon_state = "trinary_robes"
item_state = "trinary_robes"
/*
* Misc
*/
@@ -613,6 +613,13 @@
item_state = "galaxycape"
overlay_state = "galaxycape"
/obj/item/clothing/accessory/poncho/trinary
name = "trinary perfection cape"
desc = "A brilliant red and brown cape, commonly worn by those who serve the Trinary Perfection."
icon_state = "trinary_cape"
item_state = "trinary_cape"
overlay_state = "trinary_cape"
//tau ceti legion ribbons
/obj/item/clothing/accessory/legion
name = "seniority ribbons"
@@ -227,4 +227,11 @@
desc = "A descriptive identification badge with the holder's credentials displayed with a harsh digital glow."
icon_state = "intelbadge"
overlay_state = "intelbadge"
badge_string = null
badge_string = null
/obj/item/clothing/accessory/badge/trinary
name = "trinary perfection brooch"
desc = "A metal brooch worn by those who serve or follow the beliefs of the Trinary Perfection. It resembles a gear with a triangle inside."
icon_state = "trinary_badge"
overlay_state = "trinary_badge"
badge_string = null
+1 -1
View File
@@ -74,7 +74,7 @@
return
if(standard_splash_obj(user, target))
return
if(istype(target, /obj/))
var/obj/O = target
if(!(O.flags & NOBLUDGEON) && reagents)
@@ -4,7 +4,7 @@
/obj/item/reagent_containers/hypospray
name = "hypospray"
desc = "The DeForest Medical Corporation hypospray is a sterile, air-needle autoinjector for administration of drugs to patients."
desc = "The Zeng-Hu Pharmaceuticals hypospray is a sterile, air-needle autoinjector for administration of drugs to patients."
icon = 'icons/obj/syringe.dmi'
item_state = "hypo"
icon_state = "hypo"
@@ -15,13 +15,24 @@
flags = OPENCONTAINER
slot_flags = SLOT_BELT
center_of_mass = null
drop_sound = 'sound/items/drop/bottle.ogg'
var/armorcheck = 1
var/time = 3 SECONDS
var/has_level_sprites = TRUE
matter = list("glass" = 400, DEFAULT_WALL_MATERIAL = 200)
/obj/item/reagent_containers/hypospray/Initialize()
. = ..()
update_icon()
/obj/item/reagent_containers/hypospray/on_reagent_change()
update_icon()
return
/obj/item/reagent_containers/hypospray/cmo
name = "premium hypospray"
desc = "The DeForest Medical Corporation premium hypospray is a cutting-edge, sterile, air-needle autoinjector for rapid administration of drugs to patients."
desc = "The Zeng-Hu Pharmaceuticalsn premium hypospray is a cutting-edge, sterile, air-needle autoinjector for rapid administration of drugs to patients."
item_state = "cmo_hypo"
volume = 30
time = 0
@@ -36,6 +47,22 @@
if(!do_mob(user, M, inj_time))
return 1
/obj/item/reagent_containers/hypospray/update_icon()
if(!has_level_sprites)
return
var/percent = round((reagents.total_volume / 10) * 100)
switch(percent)
if(0 to 25)
icon_state = "[item_state]"
if(26 to 50)
icon_state = "[item_state]_25"
if(51 to 75)
icon_state = "[item_state]_50"
if(76 to 99)
icon_state = "[item_state]_75"
if(100 to INFINITY)
icon_state = "[item_state]_100"
/obj/item/reagent_containers/hypospray/afterattack(var/mob/M, var/mob/user, proximity)
if (!istype(M))
@@ -74,6 +101,7 @@
amount_per_transfer_from_this = 5
volume = 5
time = 0
has_level_sprites = FALSE
/obj/item/reagent_containers/hypospray/autoinjector/Initialize()
. =..()
@@ -168,6 +196,7 @@
volume = 20
armorcheck = 0
time = 0
has_level_sprites = FALSE
/obj/item/reagent_containers/hypospray/combat/Initialize()
. = ..()
+16
View File
@@ -35,6 +35,22 @@
-->
<div class="commit sansserif">
<h2 class="date">06 February 2020</h2>
<h3 class="author">Alberyk, BRAINOS updated:</h3>
<ul class="changes bgimages16">
<li class="imageadd">Added new hypospray sprites.</li>
</ul>
<h3 class="author">Furrycactus updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">Re-adds the former redsec winter coat as an alternative winter coat choice in the loadout. Does not count as standard security uniform.</li>
</ul>
<h3 class="author">Goret updated:</h3>
<ul class="changes bgimages16">
<li class="rscadd">A religion tab in the loadout menu has been added. All Trinary related items are located inside, and could be used in the feature for other religions.</li>
<li class="rscadd">Following the Trinary Perfection rework, clothing related to it has been added.</li>
<li class="rscadd">A new antenna is available for the IPCs that serve the Trinary Perfection.</li>
</ul>
<h2 class="date">05 February 2020</h2>
<h3 class="author">VTCobaltblood updated:</h3>
<ul class="changes bgimages16">
+12
View File
@@ -11656,3 +11656,15 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- rscadd: Mechs can now be linked to cameranet networks.
- rscadd: Adds a program for security that allows them to monitor & lockdown prisoner-controlled
mechs and robots.
2020-02-06:
Alberyk, BRAINOS:
- imageadd: Added new hypospray sprites.
Furrycactus:
- rscadd: Re-adds the former redsec winter coat as an alternative winter coat choice
in the loadout. Does not count as standard security uniform.
Goret:
- rscadd: A religion tab in the loadout menu has been added. All Trinary related
items are located inside, and could be used in the feature for other religions.
- rscadd: Following the Trinary Perfection rework, clothing related to it has been
added.
- rscadd: A new antenna is available for the IPCs that serve the Trinary Perfection.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 KiB

After

Width:  |  Height:  |  Size: 172 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 KiB

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 KiB

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 424 KiB

After

Width:  |  Height:  |  Size: 425 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB