-The AI Upload area now all share the AI's SMES unit

-Cloneloss inflicted on fresh clones is now randomized between 0-25 instead of a constant 10

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4302 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
ericgfwong@hotmail.com
2012-08-03 17:27:06 +00:00
parent aa93ab759c
commit c37cce0fb8
3 changed files with 6394 additions and 6395 deletions

View File

@@ -1330,7 +1330,7 @@ proc/process_ghost_teleport_locs()
icon_state = "ai_upload" icon_state = "ai_upload"
/area/turret_protected/ai_upload_foyer /area/turret_protected/ai_upload_foyer
name = "Secure Tech Access" name = "Secure Network Access"
icon_state = "ai_foyer" icon_state = "ai_foyer"
/area/turret_protected/ai /area/turret_protected/ai

View File

@@ -121,6 +121,8 @@
if( !(clonemind && istype(clonemind) && clonemind.current && clonemind.current.stat==DEAD) ) if( !(clonemind && istype(clonemind) && clonemind.current && clonemind.current.stat==DEAD) )
return 0 return 0
src.heal_level = rand(75,100) //Randomizes what health the clone is when ejected
src.attempting = 1 //One at a time!! src.attempting = 1 //One at a time!!
src.locked = 1 src.locked = 1
@@ -140,7 +142,7 @@
src.icon_state = "pod_1" src.icon_state = "pod_1"
//Get the clone body ready //Get the clone body ready
src.occupant.adjustCloneLoss(190) //new damage var so you can't eject a clone early then stab them to abuse the current damage system --NeoFite src.occupant.adjustCloneLoss(190) //new damage var so you can't eject a clone early then stab them to abuse the current damage system --NeoFite
src.occupant.adjustBrainLoss(90) src.occupant.adjustBrainLoss(heal_level)
src.occupant.Paralyse(4) src.occupant.Paralyse(4)
//Here let's calculate their health so the pod doesn't immediately eject them!!! //Here let's calculate their health so the pod doesn't immediately eject them!!!

File diff suppressed because it is too large Load Diff