Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
johncoder0 committed Jul 3, 2023
2 parents c793f2b + 0425623 commit f84cdec
Show file tree
Hide file tree
Showing 11 changed files with 89 additions and 0 deletions.
2 changes: 2 additions & 0 deletions baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -3453,6 +3453,8 @@
#include "customs\code\letro02.dm"
#include "customs\code\lodagn.dm"
#include "customs\code\s1334.dm"
#include "customs\code\timlv.dm"
#include "customs\code\vlades.dm"
#include "interface\interface.dm"
#include "interface\skin.dmf"
#include "maps\_maps.dm"
Expand Down
4 changes: 4 additions & 0 deletions code/controllers/configuration.dm
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,8 @@

var/static/hub_entry = "<b>$SERVER</b> by <b>$HOST</b> &#8212; $ACTIVES of $PLAYERS alive"

var/static/hub_banner_url = "https://i.imgur.com/n5i0D3V.png" //bos

var/static/run_empty_levels = FALSE


Expand Down Expand Up @@ -501,6 +503,8 @@
use_age_restriction_for_jobs = TRUE
if ("use_age_restriction_for_antags")
use_age_restriction_for_antags = TRUE
if ("hub_banner_url")
config.hub_banner_url = value //bos
if ("use_recursive_explosions")
use_recursive_explosions = TRUE
if ("log_ooc")
Expand Down
3 changes: 3 additions & 0 deletions code/game/world.dm
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,9 @@ GLOBAL_VAR_INIT(world_topic_last, world.timeofday)
if (!config?.hub_visible || !config.hub_entry)
return
status = config.generate_hub_entry()
var/s = ""
if (config.hub_banner_url) //bos
s += "<img src=\"https://i.imgur.com/n5i0D3V.png\"><br>"


/world/proc/SetupLogs()
Expand Down
15 changes: 15 additions & 0 deletions customs/code/timlv.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/obj/item/clothing/under/party
name = "party animal's outfit"
desc = "Be Wild. Be Animal."
icon_state = "partygoer"
item_state = "partygoer_s"
icon = 'customs/icons/obj/custom_items_obj.dmi'
item_icons = list(slot_w_uniform_str = 'customs/icons/mob/custom_items_mob.dmi')

/obj/item/clothing/head/helmet/stahlhelm
name = "stahlhelm"
desc = "Kaiser? Valhalla? What are you talking about!? We're in the desert, damn it!"
icon_state = "stahlhelm"
icon = 'customs/icons/obj/custom_items_obj.dmi'
item_icons = list(slot_head_str = 'customs/icons/mob/custom_items_mob.dmi')
valid_accessory_slots = null
44 changes: 44 additions & 0 deletions customs/code/vlades.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/obj/item/clothing/suit/storage/hooded/duster
name = "duster"
desc = "A sturdy duster."
icon = 'customs/icons/obj/custom_items_obj.dmi'
item_icons = list(slot_wear_suit_str = 'customs/icons/mob/custom_items_mob.dmi')
icon_state = "duster"
item_state = "duster"
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS
min_cold_protection_temperature = ARMOR_MIN_COLD_PROTECTION_TEMPERATURE
armor = list(
bio = ARMOR_BIO_MINOR
)
action_button_name = "Toggle Hood"
hoodtype = /obj/item/clothing/head/dusthood
siemens_coefficient = 0.6

/obj/item/clothing/head/dusthood
name = "duster hood"
icon_state = "dusterhood"
item_state = "dusterhood"
icon = 'customs/icons/obj/custom_items_obj.dmi'
item_icons = list(slot_head_str = 'customs/icons/mob/custom_items_mob.dmi')
desc = "I hate sand."
armor = list(
bio = ARMOR_BIO_MINOR,
)
flags_inv = HIDEEARS|BLOCKHAIR
item_flags = ITEM_FLAG_THICKMATERIAL
body_parts_covered = HEAD
siemens_coefficient = 0.9

/obj/item/clothing/mask/gas/budget/dustmask
name = "respirator with googles"
desc = "A face-covering cheepy mask that can be connected to an air supply. This one is combined with safety glasses."
icon_state = "dustermask"
item_state = "dustermask"
icon = 'customs/icons/obj/custom_items_obj.dmi'
item_icons = list(slot_wear_mask_str = 'customs/icons/mob/custom_items_mob.dmi')
body_parts_covered = FACE|EYES
armor = list(
melee = ARMOR_MELEE_MINOR,
bio = ARMOR_BIO_SMALL
)
5 changes: 5 additions & 0 deletions customs/config/timlv/timlv-helmet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ckey": "Tim_LV",
"character_name": "Bjorn",
"item_path": "/obj/item/clothing/head/helmet/stahlhelm"
}
5 changes: 5 additions & 0 deletions customs/config/timlv/timlv-under.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"ckey": "Tim_LV",
"character_name": "Bjorn",
"item_path": "/obj/item/clothing/under/party"
}
Binary file modified customs/icons/mob/custom_items_mob.dmi
Binary file not shown.
Binary file modified customs/icons/obj/custom_items_obj.dmi
Binary file not shown.
2 changes: 2 additions & 0 deletions maps/castelnau/castelnau.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#if !defined(using_map_DATUM)

#warn ZDAROVA. Obnova na repe esho ne zakonchennaya, tak chto rano bild skachal.

#include "castelnau_bos.dm"
#include "castelnau_bos_torch.dm"

Expand Down
9 changes: 9 additions & 0 deletions maps/castelnau/job/jobs_command.dm
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,17 @@
psi_faculties = list("[PSI_COERCION]" = PSI_RANK_OPERANT)
H.mutations.Add(mRemotetalk)
H.verbs += /mob/living/carbon/human/proc/psisay

var/obj/item/organ/external/E = pick(H.organs)
if(!BP_IS_ROBOTIC(E))
E.mutate()
E.limb_flags |= ORGAN_FLAG_DEFORMED
E.status |= ORGAN_DISFIGURED
E.status |= ORGAN_MUTATED
return ..()



/datum/job/emissary
title = "Emissary"
supervisors = "the Alliance Command"
Expand Down

0 comments on commit f84cdec

Please sign in to comment.