Added Vox and Kidan as unlockable Karma species

This commit is contained in:
ZomgPonies
2013-10-04 02:57:42 -04:00
parent ace911405c
commit aa79d1323b
37 changed files with 345 additions and 126 deletions
+5 -3
View File
@@ -1,4 +1,7 @@
/proc/getbrokeninhands()
set name = "Broken Sprite List"
set category = "Debug"
var/icon/IL = new('icons/mob/items_lefthand.dmi')
var/list/Lstates = IL.IconStates()
var/icon/IR = new('icons/mob/items_righthand.dmi')
@@ -28,9 +31,8 @@
//text+="\n"
del(O)
if(text)
var/F = file("broken_icons.txt")
var/F = file("broken_hand_icons.txt")
fdel(F)
F << text
world << "Completeled successfully and written to [F]"
world << "Completed and written to [F]"
+4 -1
View File
@@ -72,9 +72,12 @@ var/global/vox_tick = 1
affected.implants += I
I.part = affected
if(ticker.mode && ( istype( ticker.mode,/datum/game_mode/vox/heist ) ) )
if(ticker.mode && ( istype(ticker.mode,/datum/game_mode/vox/heist) ) )
var/datum/game_mode/vox/heist/M = ticker.mode
M.cortical_stacks += I
else if(ticker.mode && ( istype(ticker.mode,/datum/game_mode/vox/trade) ) )
var/datum/game_mode/vox/trade/M = ticker.mode
M.cortical_stacks += I
vox_tick++
if (vox_tick > 4) vox_tick = 1