diff --git a/code/game/area/Space Station 13 areas.dm b/code/game/area/Space Station 13 areas.dm index 39ac203c312..272b5d3900a 100644 --- a/code/game/area/Space Station 13 areas.dm +++ b/code/game/area/Space Station 13 areas.dm @@ -1630,9 +1630,11 @@ proc/process_ghost_teleport_locs() //GAYBAR /area/secret/gaybar - name = "\improper Secret Space Bar" + name = "\improper Dance Bar" requires_power = 0 - icon_state = "pink" + icon_state = "dancebar" + + //AI @@ -1700,8 +1702,6 @@ proc/process_ghost_teleport_locs() //Misc - - /area/wreck/ai name = "\improper AI Chamber" icon_state = "ai" diff --git a/code/game/gamemodes/events/ninja_abilities.dm b/code/game/gamemodes/events/ninja_abilities.dm index feeab4f7c39..40acb830ab9 100644 --- a/code/game/gamemodes/events/ninja_abilities.dm +++ b/code/game/gamemodes/events/ninja_abilities.dm @@ -68,12 +68,12 @@ Not sure why this would be useful (it's not) but whatever. Ninjas need their smo //=======//9-8 TILE TELEPORT//=======// //Click to to teleport 9-10 tiles in direction facing. /obj/item/clothing/suit/space/space_ninja/proc/ninjajaunt() - set name = "Phase Jaunt (250E)" + set name = "Phase Jaunt (500E)" set desc = "Utilizes the internal VOID-shift device to rapidly transit in direction facing." set category = "Ninja Ability" set popup_menu = 0 - var/C = 200 + var/C = 500 if(!ninjacost(C,1)) var/mob/living/carbon/human/U = affecting var/turf/destination = get_teleport_loc(U.loc,U,9,1,3,1,0,1) @@ -108,12 +108,12 @@ Not sure why this would be useful (it's not) but whatever. Ninjas need their smo //=======//RIGHT CLICK TELEPORT//=======// //Right click to teleport somewhere, almost exactly like admin jump to turf. /obj/item/clothing/suit/space/space_ninja/proc/ninjashift(turf/T in oview()) - set name = "Phase Shift (500E)" + set name = "Phase Shift (750E)" set desc = "Utilizes the internal VOID-shift device to rapidly transit to a destination in view." set category = null//So it does not show up on the panel but can still be right-clicked. set src = usr.contents//Fixes verbs not attaching properly for objects. Praise the DM reference guide! - var/C = 400 + var/C = 750 if(!ninjacost(C,1)) var/mob/living/carbon/human/U = affecting var/turf/mobloc = get_turf(U.loc)//To make sure that certain things work properly below. @@ -230,12 +230,12 @@ This could be a lot better but I'm too tired atm.*/ /*Allows the ninja to capture people, I guess. Must right click on a mob to activate.*/ /obj/item/clothing/suit/space/space_ninja/proc/ninjanet(mob/living/carbon/M in oview())//Only living carbon mobs. - set name = "Energy Net (5,000E)" + set name = "Energy Net (2,500E)" set desc = "Captures a fallen opponent in a net of energy. Will teleport them to a holding facility after 30 seconds." set category = null set src = usr.contents - var/C = 5000 + var/C = 2500 if(!ninjacost(C,1)&&iscarbon(M)) // Nets now cost 8,000 var/mob/living/carbon/human/U = affecting //if(M.client)//Monkeys without a client can still step_to() and bypass the net. Also, netting inactive people is lame. diff --git a/code/game/gamemodes/events/ninja_equipment.dm b/code/game/gamemodes/events/ninja_equipment.dm index 563dd6fd5a3..f33229ed26e 100644 --- a/code/game/gamemodes/events/ninja_equipment.dm +++ b/code/game/gamemodes/events/ninja_equipment.dm @@ -23,7 +23,6 @@ ________________________________________________________________________________ verbs += /obj/item/clothing/suit/space/space_ninja/proc/init//suit initialize verb verbs += /obj/item/clothing/suit/space/space_ninja/proc/ai_instruction//for AIs verbs += /obj/item/clothing/suit/space/space_ninja/proc/ai_holo - verbs += /obj/item/clothing/suit/space/space_ninja/proc/ai_overrideninja // Experemental //verbs += /obj/item/clothing/suit/space/space_ninja/proc/display_verb_procs//DEBUG. Doesn't work. spark_system = new()//spark initialize spark_system.set_up(5, 0, src) @@ -407,11 +406,11 @@ ________________________________________________________________________________ Abilities: