mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Vaurca Content 2 (#426)
Vaurca hivemind language added. Vaurca appropriate name generator added. Tied Vaurca language to their neural socket organ. Added a method for non-Vaurca to intercept the Vaurca hivenet so long as they construct the correct item. Sprites for Vaurca organs. Neutered all Vaurca. Cutting open a Vaurca for surgery now requires heavier equipment. Injecting a Vaurca with a syringe now will take time. Adds various Vaurca cosmetic items available via loadout. Adds a few new burst-fire weapons exploiting the burstfire fix - obtainable via research or adminbus. Ports the ability to stick heads on spears from Paradise-code. Added an error message when trying to bite someone before the cooldown expires. Removed spoken Vaurca language. Heavily nerfed K'ois' properties. Halved the nutrition value of nutriment, returning it to old-code state. Nerfed the damage dealt by bite, while reducing the cooldown. Fixed burstfire weapons spamming attack messages when fired, allowing for more automatic weapons. Fixed Vaurca player ability to select coloured eyes.
This commit is contained in:
@@ -118,9 +118,13 @@
|
||||
max_duration = 110
|
||||
|
||||
can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
if(..())
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
return affected && affected.open == 0 && target_zone != "mouth"
|
||||
if(target.get_species() == "Vaurca")
|
||||
return 0
|
||||
else
|
||||
if(..())
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
return affected && affected.open == 0 && target_zone != "mouth"
|
||||
|
||||
|
||||
begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
@@ -146,6 +150,47 @@
|
||||
"\red Your hand slips, slicing open [target]'s [affected.name] in the wrong place with \the [tool]!")
|
||||
affected.createwound(CUT, 10)
|
||||
|
||||
/datum/surgery_step/generic/cut_openvaurca
|
||||
allowed_tools = list(
|
||||
/obj/item/weapon/surgicaldrill = 85, \
|
||||
/obj/item/weapon/pickaxe/ = 15, \
|
||||
)
|
||||
|
||||
min_duration = 110
|
||||
max_duration = 130
|
||||
|
||||
can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
if(target.get_species() != "Vaurca")
|
||||
return 0
|
||||
else
|
||||
if(..())
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
return affected && affected.open == 0 && target_zone != "mouth"
|
||||
|
||||
begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
user.visible_message("[user] starts drilling into [target]'s [affected.name] carapace with \the [tool].", \
|
||||
"You start drilling into [target]'s [affected.name] carapace with \the [tool].")
|
||||
target.custom_pain("You feel a horrible pain as if from a jackhammer in your [affected.name]!",1)
|
||||
..()
|
||||
|
||||
end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
user.visible_message("\blue [user] has drilled into [target]'s [affected.name] carapace with \the [tool].", \
|
||||
"\blue You have drilled into [target]'s [affected.name] carapace with \the [tool].",)
|
||||
affected.open = 1
|
||||
|
||||
if(istype(target) && !(target.species.flags & NO_BLOOD))
|
||||
affected.status |= ORGAN_BLEEDING
|
||||
|
||||
affected.createwound(CUT, 1)
|
||||
|
||||
fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
|
||||
var/obj/item/organ/external/affected = target.get_organ(target_zone)
|
||||
user.visible_message("\red [user]'s hand slips, cracking [target]'s [affected.name] carapace in the wrong place with \the [tool]!", \
|
||||
"\red Your hand slips, cracking [target]'s [affected.name] carapace in the wrong place with \the [tool]!")
|
||||
affected.createwound(CUT, 15)
|
||||
|
||||
/datum/surgery_step/generic/clamp_bleeders
|
||||
allowed_tools = list(
|
||||
/obj/item/weapon/hemostat = 100, \
|
||||
|
||||
Reference in New Issue
Block a user