Started work on the meme gamemode itself.

This commit is contained in:
cib
2012-05-19 14:38:52 +02:00
parent 736738dbb4
commit 19449f77b0
5 changed files with 181 additions and 6 deletions

View File

@@ -468,10 +468,14 @@ mob/living/parasite/meme/verb/Dormant()
usr << "\red You have regained all points and exited dormant mode!"
// Game mode helpers, used for theft objectives
// --------------------------------------------
mob/living/parasite/check_contents_for(t)
if(!host) return 0
// TEST CODE
client/verb/become_meme(target as mob in world)
var/mob/living/parasite/meme/M = new
M.enter_host(target)
src.mob = M
// END TEST CODE
return host.check_contents_for(t)
mob/living/parasite/check_contents_for_reagent(t)
if(!host) return 0
return host.check_contents_for_reagent(t)

View File

@@ -39,6 +39,7 @@ var/const
BE_CULTIST =(1<<7)
BE_MONKEY =(1<<8)
BE_PAI =(1<<9)
BE_MEME =(1<<10)