Skip to content

Commit

Permalink
Christian minecraft server (#1996)
Browse files Browse the repository at this point in the history
* Christian Minecraft Improvement

First pass. If more words are wanted, add more to strings\phobia.json

* Update phobia.json

more words
  • Loading branch information
DexeeXI authored May 26, 2024
1 parent fa076af commit e792833
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 1 deletion.
1 change: 1 addition & 0 deletions code/_globalvars/phobias.dm
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ GLOBAL_LIST_INIT(phobia_regexes, list(
"strangers" = construct_phobia_regex("strangers"),
"the supernatural" = construct_phobia_regex("the supernatural"),
"blood" = construct_phobia_regex("blood"),
"christian minecraft" = construct_phobia_regex("christian minecraft"), //monkestation edit: added for new smite. -dexee 05/24/24
))

GLOBAL_LIST_INIT(phobia_mobs, list(
Expand Down
4 changes: 4 additions & 0 deletions monkestation/code/datums/brain_damage/phobia.dm
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,7 @@
/datum/brain_trauma/mild/phobia/freak_out(atom/reason, trigger_word)
if(!suppressed)
return ..()

/datum/brain_trauma/mild/phobia/christian_minecraft
phobia_type = "christian minecraft"
random_gain = FALSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/// "Immerses" the player, making them unable to use some OOC terms IC
/datum/smite/christian_minecraft
name = "Christian Minecraft Server"

/datum/smite/christian_minecraft/effect(client/user, mob/living/target)
. = ..()
var/mob/living/carbon/ocker = target
ocker.gain_trauma(/datum/brain_trauma/mild/phobia/christian_minecraft, TRAUMA_RESILIENCE_LOBOTOMY)
to_chat(ocker,span_ratvar("Welcome to our Christian Minecraft Server."))
31 changes: 30 additions & 1 deletion strings/phobia.json
Original file line number Diff line number Diff line change
Expand Up @@ -467,5 +467,34 @@
"hemorrhaging",
"iv",
"transfusion"
]
],
"christian minecraft": [
"balls",
"bitch",
"butt",
"cock",
"cunt",
"damn",
"dang",
"darn",
"dick",
"felinid",
"frack",
"frick",
"fornicate",
"fuc",
"fuccboi",
"fuck",
"fucker",
"fucking",
"fuckest",
"hell",
"heck",
"make love",
"sex",
"shit",
"shitter",
"shitty",
"weiner"
]
}
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -5814,6 +5814,7 @@
#include "monkestation\code\modules\admin\event_tokens.dm"
#include "monkestation\code\modules\admin\smites\dagothkillsmite.dm"
#include "monkestation\code\modules\admin\smites\dagothstripsmite.dm"
#include "monkestation\code\modules\admin\smites\phobia_christian_minecraft.dm"
#include "monkestation\code\modules\admin\smites\where_are_your_fingers.dm"
#include "monkestation\code\modules\aesthetics\airlock\airlock.dm"
#include "monkestation\code\modules\aesthetics\items\clothing.dm"
Expand Down

0 comments on commit e792833

Please sign in to comment.