Ninja Nerf

Emp 25 > 40
Ninja Star 1 > 10
Teleport 3 sec > 10 sec
No more capture objectives
Changed an instance of Nanotrasen to Kinaris.
This commit is contained in:
JaySparrow
2020-09-09 01:46:05 -05:00
parent 0a59f16587
commit a0afddfa95
5 changed files with 9 additions and 7 deletions
+4 -2
View File
@@ -27,7 +27,7 @@
/datum/antagonist/ninja/proc/addMemories()
antag_memory += "I am an elite mercenary assassin of the mighty Spider Clan. A <font color='red'><B>SPACE NINJA</B></font>!<br>"
antag_memory += "Surprise is my weapon. Shadows are my armor. Without them, I am nothing. (//initialize your suit by clicking the initialize UI button, to use abilities like stealth)!<br>"
antag_memory += "Officially, [helping_station?"Nanotrasen":"The Syndicate"] are my employer.<br>"
antag_memory += "Officially, [helping_station?"Kinaris":"The Syndicate"] are my employer.<br>"
/datum/antagonist/ninja/proc/addObjectives(quantity = 6)
var/list/possible_targets = list()
@@ -39,7 +39,7 @@
else if(M.assigned_role in GLOB.command_positions)
possible_targets[M] = 1 //good-guy
var/list/possible_objectives = list(1,2,3,4)
var/list/possible_objectives = list(1,2,3)
while(objectives.len < quantity)
switch(pick_n_take(possible_objectives))
@@ -73,6 +73,7 @@
O.target = M
O.explanation_text = "Protect \the [M.current.real_name], the [M.assigned_role], from harm."
objectives += O
/*
if(4) //debrain/capture
if(!possible_targets.len) continue
var/selected = rand(1,possible_targets.len)
@@ -91,6 +92,7 @@
O.owner = owner
O.gen_amount_goal()
objectives += O
*/
else
break
var/datum/objective/O = new /datum/objective/survive()
+1 -1
View File
@@ -102,5 +102,5 @@
/datum/action/innate/dash/ninja
current_charges = 3
max_charges = 3
charge_rate = 30
charge_rate = 100
recharge_sound = null
@@ -3,7 +3,7 @@
//Disables nearby tech equipment.
/obj/item/clothing/suit/space/space_ninja/proc/ninjapulse()
if(!ninjacost(250,N_STEALTH_CANCEL))
if(!ninjacost(400,N_STEALTH_CANCEL))
var/mob/living/carbon/human/H = affecting
playsound(H.loc, 'sound/effects/empulse.ogg', 60, 2)
empulse(H, 4, 6) //Procs sure are nice. Slightly weaker than wizard's disable tch.
@@ -2,7 +2,7 @@
//Creates a throwing star
/obj/item/clothing/suit/space/space_ninja/proc/ninjastar()
if(!ninjacost(10))
if(!ninjacost(100))
var/mob/living/carbon/human/H = affecting
var/obj/item/throwing_star/ninja/N = new(H)
if(H.put_in_hands(N))