Skip to content

Commit

Permalink
initial (#1920)
Browse files Browse the repository at this point in the history
  • Loading branch information
Iajret authored Feb 11, 2024
1 parent 9185ba2 commit e925a9a
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 9 deletions.
4 changes: 2 additions & 2 deletions tff_modular/modules/redsec/code/vending.dm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/obj/item/clothing/under/rank/security/officer/skirt/redsec = 5,
/obj/item/clothing/under/rank/security/nova/utility/redsec = 5,
/obj/item/clothing/suit/toggle/jacket/sec/old = 5,
/obj/item/clothing/suit/armor/vest/alt/sec/redsec = 2
/obj/item/clothing/suit/armor/vest/alt/sec/redsec = 2,
),
),
list(
Expand All @@ -38,7 +38,7 @@
/obj/item/clothing/neck/security_cape/armplate = 5,
/obj/item/storage/backpack/security = 5,
/obj/item/storage/backpack/satchel/sec = 5,
/obj/item/storage/backpack/duffelbag/sec = 5,
/obj/item/storage/backpack/messenger/sec = 5,
/obj/item/storage/backpack/duffelbag/sec = 5,
/obj/item/clothing/under/rank/security/officer = 10,
/obj/item/clothing/under/rank/security/officer/skirt = 10,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,25 @@
if(!unique_reskin)
return
unique_reskin += list(
"Blue Slim Variant" = list(
RESKIN_ICON = 'tff_modular/modules/redsec_reskins/icons/belt_obj.dmi',
RESKIN_ICON_STATE = "belt_slim",
RESKIN_WORN_ICON = 'tff_modular/modules/redsec_reskins/icons/belt_worn.dmi',
RESKIN_WORN_ICON_STATE = "belt_slim"
),
)
/obj/item/storage/belt/security/webbing/peacekeeper/Initialize(mapload)
. = ..()
uses_advanced_reskins = TRUE
current_skin = NONE
unique_reskin = list(
"Red Variant" = list(
RESKIN_ICON = 'icons/obj/clothing/belts.dmi',
RESKIN_ICON_STATE = "security",
RESKIN_WORN_ICON = 'icons/mob/clothing/belt.dmi',
RESKIN_WORN_ICON_STATE = "security"
RESKIN_ICON_STATE = "armadyne_webbing",
RESKIN_WORN_ICON_STATE = "armadyne_webbing"
),
"Blue Variant" = list(
RESKIN_ICON_STATE = "peacekeeper_webbing",
RESKIN_WORN_ICON_STATE = "peacekeeper_webbing"
),
)

Expand Down Expand Up @@ -268,6 +282,23 @@
),
)

/obj/item/storage/backpack/messenger/sec
uses_advanced_reskins = TRUE
unique_reskin = list(
"Red Variant" = list(
RESKIN_ICON = 'icons/obj/storage/backpack.dmi',
RESKIN_ICON_STATE = "messenger_security",
RESKIN_WORN_ICON = 'icons/mob/clothing/back/backpack.dmi',
RESKIN_WORN_ICON_STATE = "messenger_security"
),
"Blue Variant" = list(
RESKIN_ICON = 'modular_nova/master_files/icons/obj/clothing/backpacks.dmi',
RESKIN_ICON_STATE = "messenger_security_black",
RESKIN_WORN_ICON = 'modular_nova/master_files/icons/mob/clothing/back.dmi',
RESKIN_WORN_ICON_STATE = "messenger_security_black"
),
)

/obj/item/storage/backpack/security/Initialize(mapload)
. = ..()
unique_reskin += list(
Expand Down
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -8182,9 +8182,9 @@
#include "tff_modular\modules\nabbers\code\GAGS\nabber_gags.dm"
#include "tff_modular\modules\quirks\code\_quirk.dm"
#include "tff_modular\modules\redsec\code\vending.dm"
#include "tff_modular\modules\redsec_reskins\beret_reskin.dm"
#include "tff_modular\modules\redsec_reskins\hood_reskin.dm"
#include "tff_modular\modules\redsec_reskins\redsec.dm"
#include "tff_modular\modules\redsec_reskins\code\beret_reskin.dm"
#include "tff_modular\modules\redsec_reskins\code\hood_reskin.dm"
#include "tff_modular\modules\redsec_reskins\code\redsec.dm"
#include "tff_modular\modules\smites\femboyfication.dm"
#include "tff_modular\modules\teshari_reborn\code\teshari.dm"
#include "tff_modular\modules\teshari_reborn\code\teshari_bodypart.dm"
Expand Down

0 comments on commit e925a9a

Please sign in to comment.