This commit is contained in:
zerothebigboy
2021-02-09 18:49:45 -05:00
parent 7d60d27a6f
commit 097666a71a
5 changed files with 6 additions and 9 deletions

View File

@@ -9,8 +9,9 @@
shoes = /obj/item/clothing/shoes/space_ninja
gloves = /obj/item/clothing/gloves/space_ninja
l_pocket = /obj/item/grenade/plastic/c4/ninja
r_pocket = /obj/item/hypospray/mkii/CMO/combat
suit_store = /obj/item/tank/internals/oxygen
internals_slot = ITEM_SLOT_SUITSTORE
internals_slot = SLOT_S_STORE
belt = /obj/item/energy_katana
implants = list(/obj/item/implant/explosive)

View File

@@ -30,7 +30,6 @@
ninja.say(pick("A CORNERED FOX IS MORE DANGEROUS THAN A JACKAL!","HURT ME MOOORRREEE!","IMPRESSIVE!"), forced = "ninjaboost")
a_boost = FALSE
to_chat(ninja, "<span class='notice'>You have used the adrenaline boost.</span>")
s_coold = 6
addtimer(CALLBACK(src, .proc/ninjaboost_after), 70)
/**

View File

@@ -68,9 +68,6 @@ GLOBAL_LIST_INIT(ninja_deinitialize_messages, list(
if(!lock_suit(ninja))//To lock the suit onto wearer.
s_busy = FALSE
return
if (NINJA_ICON_GENERATE_PHASE)
lockIcons(ninja)//Check for icons.
ninja.regenerate_icons()
if (NINJA_COMPLETE_PHASE - 1)
message += "<B>[DisplayEnergy(cell.charge)]</B>."
if (NINJA_COMPLETE_PHASE)

View File

@@ -174,10 +174,10 @@
affecting = null
REMOVE_TRAIT(src, TRAIT_NODROP, NINJA_SUIT_TRAIT)
slowdown = 1
icon_state = "s-ninja"
icon_state = "ninja_new"
if(n_hood)//Should be attached, might not be attached.
REMOVE_TRAIT(n_hood, TRAIT_NODROP, NINJA_SUIT_TRAIT)
n_hood.icon_state = "s-ninja"
n_hood.icon_state = "ninja_newcowl"
if(n_shoes)
REMOVE_TRAIT(n_shoes, TRAIT_NODROP, NINJA_SUIT_TRAIT)
n_shoes.slowdown++
@@ -189,7 +189,7 @@
REMOVE_TRAIT(ninja, TRAIT_NOGUNS, NINJA_SUIT_TRAIT)
if(n_mask)
n_mask.icon_state = "s-ninja"
n_mask.icon_state = "ninja_new"
/**
* Proc used to delete all the attachments and itself.