mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-26 01:52:15 +00:00
Cult Communication Update (#15003)
This commit is contained in:
@@ -490,7 +490,6 @@
|
||||
#include "code\game\gamemodes\cult\runes\blind_others.dm"
|
||||
#include "code\game\gamemodes\cult\runes\blood_boil.dm"
|
||||
#include "code\game\gamemodes\cult\runes\blood_drain.dm"
|
||||
#include "code\game\gamemodes\cult\runes\communicate.dm"
|
||||
#include "code\game\gamemodes\cult\runes\convert.dm"
|
||||
#include "code\game\gamemodes\cult\runes\create_construct.dm"
|
||||
#include "code\game\gamemodes\cult\runes\create_talisman.dm"
|
||||
|
||||
@@ -79,6 +79,7 @@ var/datum/antagonist/cultist/cult
|
||||
player.current.visible_message("<FONT size = 3>[player.current] looks like they just reverted to their old faith!</FONT>")
|
||||
if(. && player.current && !istype(player.current, /mob/living/simple_animal/construct))
|
||||
player.current.remove_language(LANGUAGE_CULT)
|
||||
player.current.remove_language(LANGUAGE_OCCULT)
|
||||
|
||||
/datum/antagonist/cultist/add_antagonist(var/datum/mind/player)
|
||||
. = ..()
|
||||
@@ -86,6 +87,7 @@ var/datum/antagonist/cultist/cult
|
||||
to_chat(player, "You catch a glimpse of the Realm of Nar-Sie, the Geometer of Blood. You now see how flimsy the world is, you see that it should be open to the knowledge of That Which Waits. Assist your new compatriots in their dark dealings. Their goals are yours, and yours are theirs. You serve the Dark One above all else. Bring It back.")
|
||||
if(player.current && !istype(player.current, /mob/living/simple_animal/construct))
|
||||
player.current.add_language(LANGUAGE_CULT)
|
||||
player.current.add_language(LANGUAGE_OCCULT)
|
||||
player.current.verbs |= /datum/antagonist/cultist/proc/appraise_offering
|
||||
player.current.verbs |= /datum/cultist/proc/memorize_rune
|
||||
player.current.verbs |= /datum/cultist/proc/forget_rune
|
||||
@@ -133,4 +135,4 @@ var/datum/antagonist/cultist/cult
|
||||
return TRUE
|
||||
else if(istype(player.current, /mob/living/simple_animal/shade))
|
||||
return TRUE
|
||||
return FALSE
|
||||
return FALSE
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
/datum/rune/communicate
|
||||
name = "communication rune"
|
||||
desc = "This rune is used to send a message to all acolytes."
|
||||
rune_flags = CAN_MEMORIZE
|
||||
|
||||
/datum/rune/communicate/do_rune_action(mob/living/user, atom/movable/A)
|
||||
var/input = input(user, "Please choose a message to tell to the other acolytes.", "Voice of Blood", "")//sanitize() below, say() and whisper() have their own
|
||||
if(!input)
|
||||
fizzle(user, A)
|
||||
|
||||
user.say("O bidai nabora se'sma!")
|
||||
user.whisper("[input]")
|
||||
|
||||
input = sanitize(input)
|
||||
log_and_message_admins("used a communicate rune to say '[input]'")
|
||||
for(var/datum/mind/H in cult.current_antagonists)
|
||||
if(H.current)
|
||||
to_chat(H.current, SPAN_CULT("The familiar voice of [user] fills your mind: [input]"))
|
||||
qdel(A)
|
||||
41
html/changelogs/buttercultcomms.yml
Normal file
41
html/changelogs/buttercultcomms.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
################################
|
||||
# Example Changelog File
|
||||
#
|
||||
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||
#
|
||||
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||
# When it is, any changes listed below will disappear.
|
||||
#
|
||||
# Valid Prefixes:
|
||||
# bugfix
|
||||
# wip (For works in progress)
|
||||
# tweak
|
||||
# soundadd
|
||||
# sounddel
|
||||
# rscadd (general adding of nice things)
|
||||
# rscdel (general deleting of nice things)
|
||||
# imageadd
|
||||
# imagedel
|
||||
# maptweak
|
||||
# spellcheck (typo fixes)
|
||||
# experiment
|
||||
# balance
|
||||
# admin
|
||||
# backend
|
||||
# security
|
||||
# refactor
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: Butterrobber202
|
||||
|
||||
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||
delete-after: True
|
||||
|
||||
# Any changes you've made. See valid prefix list above.
|
||||
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||
# SCREW THIS UP AND IT WON'T WORK.
|
||||
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- tweak: "Cultists now have a station-wide language to communicate with."
|
||||
Reference in New Issue
Block a user