Skip to content

Commit

Permalink
KQE work adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
vampirebat74 committed May 9, 2024
1 parent 80e2256 commit e598b89
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions code/modules/mob/living/simple_animal/abnormality/he/KQE.dm
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
/mob/living/simple_animal/hostile/abnormality/kqe/AttemptWork(mob/living/carbon/human/user, work_type)
if((work_type != "Write HELLO") && (work_type != "Write GOODBYE") && (work_type != "Write DUMBASS") && !question)
return TRUE
if(((work_type == "Write HELLO") || (work_type == "Write GOODBYE")) || (work_type == "Write DUMBASS") && !question)
if(((work_type == "Write HELLO") || (work_type == "Write GOODBYE") || (work_type == "Write DUMBASS")) && !question)
to_chat(user, span_notice("The terminal is blank."))
return FALSE
if((work_type != "Write HELLO") && (work_type != "Write GOODBYE") && (work_type != "Write DUMBASS") && question)
Expand All @@ -138,12 +138,15 @@
if(work_type == "Write HELLO")
if(!GiftUser(user, 18, 100))//always gives a gift
say("Then you may not have a souvenir! Please cooperate, or you may be punished according to Rule #A62GBFE1!")
datum_reference.qliphoth_change(-2)
work_penalty = TRUE
datum_reference.qliphoth_change(-1)
question = FALSE
work_count = 0
return FALSE
say("Have you enjoyed the town tour? We’d like you to have a souvenir. :-)")
to_chat(user, span_notice("A smile is displayed on the terminal, but the abnormality appears to be distressed."))
datum_reference.qliphoth_change(-1)
question = FALSE
datum_reference.max_boxes += 4
work_count = 0
if(work_type == "Write GOODBYE")
if(get_attribute_level(user, JUSTICE_ATTRIBUTE) < 60)//instant breach if below 3 justice
Expand Down
2 changes: 1 addition & 1 deletion lobotomy-corp13.dme
Original file line number Diff line number Diff line change
Expand Up @@ -3991,8 +3991,8 @@
#include "ModularTegustation\fishing\code\rod_components\fishing_lines.dm"
#include "ModularTegustation\living\living.dm"
#include "ModularTegustation\living\carbon\life.dm"
#include "ModularTegustation\ssd_indicator\code\mob.dm"
#include "ModularTegustation\primitive_farming\farming_structures.dm"
#include "ModularTegustation\ssd_indicator\code\mob.dm"
#include "ModularTegustation\tegu_borg_code\cyborg_upgrades.dm"
#include "ModularTegustation\tegu_borg_code\medborg_holobed.dm"
#include "ModularTegustation\tegu_borg_code\tegu_airlock_electroadaptive.dm"
Expand Down

0 comments on commit e598b89

Please sign in to comment.