mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-06 15:32:52 +00:00
Started work on the meme gamemode itself.
This commit is contained in:
@@ -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)
|
||||
@@ -39,6 +39,7 @@ var/const
|
||||
BE_CULTIST =(1<<7)
|
||||
BE_MONKEY =(1<<8)
|
||||
BE_PAI =(1<<9)
|
||||
BE_MEME =(1<<10)
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user