mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
receive (#17524)
This commit is contained in:
@@ -39,7 +39,7 @@ GLOBAL_LIST_EMPTY(emergencyresponseteamspawn)
|
||||
GLOBAL_LIST_EMPTY(servant_spawns) //Servants of Ratvar spawn here
|
||||
GLOBAL_LIST_EMPTY(servant_spawns_scarabs) //Servants of Ratvar spawn here
|
||||
GLOBAL_LIST_EMPTY(city_of_cogs_spawns) //Anyone entering the City of Cogs spawns here
|
||||
GLOBAL_LIST_EMPTY(brazil_reception) //teleport recieve spots for heretic sacrifices
|
||||
GLOBAL_LIST_EMPTY(brazil_reception) //teleport receive spots for heretic sacrifices
|
||||
GLOBAL_LIST_EMPTY(ruin_landmarks)
|
||||
GLOBAL_LIST_EMPTY(bar_areas)
|
||||
// IF YOU ARE MAKING A NEW BAR TEMPLATE AND WANT IT ROUNDSTART ADD IT TO THIS LIST!
|
||||
|
||||
@@ -358,7 +358,7 @@
|
||||
<ol>
|
||||
<li>Open the Syndicate Contract Uplink program.</li>
|
||||
<li>Here, you can accept a contract, and redeem your TC payments from completed contracts.</li>
|
||||
<li>The payment number shown in brackets is the bonus you'll recieve when bringing your target <b>alive</b>. You recieve the
|
||||
<li>The payment number shown in brackets is the bonus you'll receive when bringing your target <b>alive</b>. You receive the
|
||||
other number regardless of if they were alive or dead.</li>
|
||||
<li>Contracts are completed by bringing the target to designated dropoff, calling for extraction, and putting them
|
||||
inside the pod.</li>
|
||||
@@ -378,7 +378,7 @@
|
||||
<p>We need your target for our own reasons, but we ransom them back to your mission area once their use is served. They will return back
|
||||
from where you sent them off from in several minutes time. Don't worry, we give you a cut of what we get paid. We pay this into whatever
|
||||
ID card you have equipped, on top of the TC payment we give.</p>
|
||||
|
||||
|
||||
<p>Good luck agent. You can burn this document with the supplied lighter.</p>"}
|
||||
|
||||
return ..()
|
||||
@@ -502,7 +502,7 @@
|
||||
|
||||
/obj/item/storage/box/syndie_kit/imp_radio/PopulateContents()
|
||||
new /obj/item/implanter/radio/syndicate(src)
|
||||
|
||||
|
||||
/obj/item/storage/box/syndie_kit/imp_mindshield
|
||||
real_name = "mindshield implant box"
|
||||
|
||||
@@ -603,7 +603,7 @@
|
||||
new /obj/item/hemostat/supermatter(src)
|
||||
new /obj/item/nuke_core_container/supermatter(src)
|
||||
new /obj/item/paper/guides/antag/supermatter_sliver(src)
|
||||
|
||||
|
||||
/obj/item/storage/box/syndie_kit/supermatter_delaminator
|
||||
real_name = "box"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
if(!IS_HERETIC(user))
|
||||
return
|
||||
if(!target)
|
||||
to_chat(user,span_warning("No target could be found. Put the living heart on the rune and use the rune to recieve a target."))
|
||||
to_chat(user,span_warning("No target could be found. Put the living heart on the rune and use the rune to receive a target."))
|
||||
return
|
||||
var/turf/userturf = get_turf(user)
|
||||
var/turf/targetturf = get_turf(target)
|
||||
|
||||
@@ -193,7 +193,7 @@
|
||||
if(!ishuman(L))
|
||||
return
|
||||
if(world.time < last_dono) // immersion broken
|
||||
user.visible_message(span_notice("You are getting too greedy! You can recieve another donation in [(last_dono - world.time)/10] seconds!"))
|
||||
user.visible_message(span_notice("You are getting too greedy! You can receive another donation in [(last_dono - world.time)/10] seconds!"))
|
||||
return
|
||||
var/mob/living/carbon/human/H = L
|
||||
var/obj/item/card/id/id_card = H.get_idcard()
|
||||
@@ -205,16 +205,16 @@
|
||||
to_chat(user,span_notice("[H] doesn't seem to have an account to 'donate' from for your blessing..."))
|
||||
return
|
||||
if(!id_cardu)
|
||||
to_chat(user,span_notice("You have no id card to recieve your 'donation'"))
|
||||
to_chat(user,span_notice("You have no id card to receive your 'donation'"))
|
||||
return
|
||||
if(!id_cardu.registered_account)
|
||||
to_chat(user,span_notice("You have no bank account to recieve your 'donation'"))
|
||||
to_chat(user,span_notice("You have no bank account to receive your 'donation'"))
|
||||
return
|
||||
|
||||
var/money_to_donate = round(id_card.registered_account.account_balance * 0.1) // takes 10% of their money and rounds it down
|
||||
|
||||
if(money_to_donate <= 0)
|
||||
user.visible_message(span_notice("[H] is too poor to recieve [GLOB.deity]'s blessing!"))
|
||||
user.visible_message(span_notice("[H] is too poor to receive [GLOB.deity]'s blessing!"))
|
||||
else
|
||||
last_dono = world.time + 15 SECONDS // healing CD is 15 seconds but your healing strength is 3x stronger
|
||||
var/heal_amt = 30
|
||||
@@ -375,9 +375,9 @@
|
||||
else
|
||||
adjust_favor(75, user)
|
||||
qdel(offering)
|
||||
return
|
||||
|
||||
/// The Honkmother sect, sacrifice bananas to feed your prank power.
|
||||
return
|
||||
|
||||
/// The Honkmother sect, sacrifice bananas to feed your prank power.
|
||||
|
||||
/datum/religion_sect/honkmother
|
||||
name = "The Honkmother"
|
||||
@@ -420,7 +420,7 @@
|
||||
/datum/religion_sect/honkmother/on_sacrifice(obj/item/reagent_containers/food/snacks/grown/banana/offering, mob/living/user)
|
||||
if(!istype(offering))
|
||||
return
|
||||
adjust_favor(10, user)
|
||||
adjust_favor(10, user)
|
||||
to_chat(user, span_notice("HONK"))
|
||||
qdel(offering)
|
||||
return
|
||||
|
||||
@@ -216,7 +216,7 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list(
|
||||
/*
|
||||
Generates a box of mail depending on our exports and imports.
|
||||
Applied in the cargo shuttle sending/arriving, by building the crate if the round is ready to introduce mail based on the economy subsystem.
|
||||
Then, fills the mail crate with mail, by picking applicable crew who can recieve mail at the time to sending.
|
||||
Then, fills the mail crate with mail, by picking applicable crew who can receive mail at the time to sending.
|
||||
*/
|
||||
/obj/docking_port/mobile/supply/proc/create_mail()
|
||||
//Early return if there's no mail waiting to prevent taking up a slot. We also don't send mails on sundays or holidays.
|
||||
|
||||
Reference in New Issue
Block a user