mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Updated cultist mode to be a bit less impossible.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@724 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -8,7 +8,9 @@
|
|||||||
var/const/waittime_l = 600 //lower bound on time before intercept arrives (in tenths of seconds)
|
var/const/waittime_l = 600 //lower bound on time before intercept arrives (in tenths of seconds)
|
||||||
var/const/waittime_h = 1800 //upper bound on time before intercept arrives (in tenths of seconds)
|
var/const/waittime_h = 1800 //upper bound on time before intercept arrives (in tenths of seconds)
|
||||||
|
|
||||||
var/list/startwords = list("travel","blood","join","hell","self","see")
|
var/list/startwords = list("blood","join","self")
|
||||||
|
//var/list/startwords = list("travel","blood","join","hell","self","see")
|
||||||
|
var/list/allwords = list("travel","blood","join","hell","self","see")
|
||||||
|
|
||||||
var/list/objectives = list()
|
var/list/objectives = list()
|
||||||
|
|
||||||
@@ -42,7 +44,7 @@
|
|||||||
world.Reboot()
|
world.Reboot()
|
||||||
return
|
return
|
||||||
|
|
||||||
cultists_number = 3
|
cultists_number = 4 //3
|
||||||
while(cultists_number > 0)
|
while(cultists_number > 0)
|
||||||
cult += pick(cultists_possible)
|
cult += pick(cultists_possible)
|
||||||
cultists_possible -= cult
|
cultists_possible -= cult
|
||||||
@@ -103,7 +105,11 @@
|
|||||||
cult_mob << "You have a talisman in your backpack, one that will help you start the cult on this station. Use it well and remember - there are others."
|
cult_mob << "You have a talisman in your backpack, one that will help you start the cult on this station. Use it well and remember - there are others."
|
||||||
if(!wordtravel)
|
if(!wordtravel)
|
||||||
runerandom()
|
runerandom()
|
||||||
|
if(startwords.len > 0)
|
||||||
var/word=pick(startwords)
|
var/word=pick(startwords)
|
||||||
|
startwords -= word
|
||||||
|
else
|
||||||
|
var/word=pick(allwords)
|
||||||
var/wordexp
|
var/wordexp
|
||||||
switch(word)
|
switch(word)
|
||||||
if("travel")
|
if("travel")
|
||||||
@@ -118,7 +124,6 @@
|
|||||||
wordexp = "[wordself] is self..."
|
wordexp = "[wordself] is self..."
|
||||||
if("see")
|
if("see")
|
||||||
wordexp = "[wordsee] is see..."
|
wordexp = "[wordsee] is see..."
|
||||||
startwords -= word
|
|
||||||
cult_mob << "\red You remembered one thing from the dark teachings of your master... [wordexp]"
|
cult_mob << "\red You remembered one thing from the dark teachings of your master... [wordexp]"
|
||||||
cult_mob.mind.store_memory("<B>You remember one thing</B>: [wordexp]", 0, 0)
|
cult_mob.mind.store_memory("<B>You remember one thing</B>: [wordexp]", 0, 0)
|
||||||
cultists.Add(cult_mob)
|
cultists.Add(cult_mob)
|
||||||
|
|||||||
Reference in New Issue
Block a user