Skip to content

Commit

Permalink
Merge branch 'syndicate_affiliates_2.0' of https://github.com/Anorak2…
Browse files Browse the repository at this point in the history
…024/Paradise into syndicate_affiliates_2.0
  • Loading branch information
Anorak2024 committed Oct 28, 2024
2 parents e677523 + 411e0a8 commit 9073488
Show file tree
Hide file tree
Showing 12 changed files with 173 additions and 78 deletions.
206 changes: 133 additions & 73 deletions _maps/map_files/nova/nova.dmm

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions code/game/mecha/equipment/tools/mining_tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
var/drill_delay = 7
var/drill_level = DRILL_BASIC

/obj/item/mecha_parts/mecha_equipment/drill/action_checks(atom/target)
. = ..()
if(!.)
return

return chassis.Adjacent(target)

/obj/item/mecha_parts/mecha_equipment/drill/action(atom/target)
if(!action_checks(target))
return FALSE
Expand Down
20 changes: 20 additions & 0 deletions code/modules/clothing/ears/ears.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,23 @@
strip_delay = 15
put_on_delay = 25
resistance_flags = FLAMMABLE

/obj/item/clothing/ears/earrings
name = "Earrings"
desc = "Простые золотые серёжки"
icon_state = "earring_gold"
item_state = "earring_gold"
slot_flags = ITEM_SLOT_EARS
species_restricted = list(SPECIES_HUMAN, SPECIES_VOX, SPECIES_VULPKANIN, SPECIES_TAJARAN, SPECIES_DIONA, SPECIES_DRASK, SPECIES_SLIMEPERSON, SPECIES_SKRELL, SPECIES_MACNINEPERSON, SPECIES_MOTH, SPECIES_NUCLEATION)

/obj/item/clothing/ears/earrings/Nt
name = "Earrings NT"
desc = "Золотые серьги с гравировкой НТ"
icon_state = "earring_NT"
item_state = "earring_NT"

/obj/item/clothing/ears/earrings/silver
name = "Silver earings"
desc = "Простые серебряные серьги"
icon_state = "earring_silver"
item_state = "earring_silver"
2 changes: 1 addition & 1 deletion code/modules/instruments/objs/items/headphones.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
desc = "Unce unce unce unce."
icon_state = "headphones0"
item_state = "headphones0"
slot_flags_2 = ITEM_FLAG_TWOEARS
slot_flags = ITEM_SLOT_EARS
actions_types = list(/datum/action/item_action/change_headphones_song)
var/datum/song/headphones/song
var/on = FALSE
Expand Down
1 change: 1 addition & 0 deletions code/modules/mining/equipment/survival_pod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@
anchored = TRUE
density = TRUE
pixel_y = -32
move_resist = MOVE_FORCE_STRONG


/obj/item/gps/computer/wrench_act(mob/living/user, obj/item/I)
Expand Down
7 changes: 7 additions & 0 deletions code/modules/paperwork/paperbin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,14 @@
return ..()
to_chat(user, span_notice("You have put [I] into [src]."))
papers.Add(I)
var/do_update = FALSE
if(amount == 0)
do_update = TRUE

amount++
if(do_update)
update_icon(UPDATE_ICON_STATE)

return ATTACK_CHAIN_BLOCKED_ALL

return ..()
Expand Down
4 changes: 2 additions & 2 deletions code/modules/paperwork/photocopier.dm
Original file line number Diff line number Diff line change
Expand Up @@ -586,13 +586,13 @@
if(istype(I, /obj/item/toner))
add_fingerprint(user)
var/obj/item/toner/toner = I
if(toner > 10) //allow replacing when low toner is affecting the print darkness
if(src.toner > 10) //allow replacing when low toner is affecting the print darkness
to_chat(user, span_warning("This cartridge is not yet ready for replacement! Use up the rest of the toner."))
return ATTACK_CHAIN_PROCEED
if(!user.drop_transfer_item_to_loc(I, src))
return ..()
to_chat(user, span_notice("You have inserted the toner cartridge into [src]."))
toner += toner.toner_amount
src.toner += toner.toner_amount
qdel(I)
return ATTACK_CHAIN_BLOCKED_ALL

Expand Down
4 changes: 2 additions & 2 deletions code/modules/station_goals/brs/brs_stationary_scanner.dm
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@

// It's a large machine, add a delay
user.visible_message(
"[user] начина[pluralize_ru(user.gender, "ет", "ют")] [panel_open ? "От" : "За"]кручивать панель [src].",
"Вы начинаете [panel_open ? "От" : "За"]кручивать панель [src]."
"[user] начина[pluralize_ru(user.gender, "ет", "ют")] [panel_open ? "за" : "от"]кручивать панель [src].",
"Вы начинаете [panel_open ? "за" : "от"]кручивать панель [src]."
)
if(!I.use_tool(src, user, 3 SECONDS, volume = I.tool_volume))
return
Expand Down
Binary file modified icons/mob/clothing/ears.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/monkey/ears.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/vox/ears.dmi
Binary file not shown.
Binary file modified icons/obj/items.dmi
Binary file not shown.

0 comments on commit 9073488

Please sign in to comment.