mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 04:17:33 +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:
@@ -380,8 +380,7 @@
|
||||
cannot_break = 1
|
||||
dislocated = -1
|
||||
|
||||
|
||||
//VAURCA ORGANS
|
||||
/*//VAURCA ORGANS
|
||||
/obj/item/organ/vaurca/neuralsocket
|
||||
name = "neural socket"
|
||||
organ_tag = "neural socket"
|
||||
@@ -406,4 +405,4 @@
|
||||
icon = 'icons/mob/alien.dmi'
|
||||
icon_state = "tracheae"
|
||||
/obj/item/organ/vaurca/tracheae/removed()
|
||||
return
|
||||
return */
|
||||
@@ -167,17 +167,51 @@
|
||||
..()
|
||||
|
||||
//VAURCA ORGANS
|
||||
/obj/item/organ/vaurca/neuralsocket
|
||||
name = "neural socket"
|
||||
parent_organ = "head"
|
||||
robotic = 2
|
||||
|
||||
|
||||
/obj/item/organ/vaurca/breathingapparatus
|
||||
name = "breathing apparatus"
|
||||
parent_organ = "chest"
|
||||
robotic = 2
|
||||
|
||||
|
||||
/obj/item/organ/internal/vaurca/process()
|
||||
return
|
||||
|
||||
/obj/item/organ/vaurca/neuralsocket
|
||||
name = "neural socket"
|
||||
organ_tag = "neural socket"
|
||||
icon = 'icons/mob/alien.dmi'
|
||||
icon_state = "neural_socket"
|
||||
parent_organ = "head"
|
||||
robotic = 2
|
||||
|
||||
obj/item/organ/vaurca/neuralsocket/process()
|
||||
if (is_broken())
|
||||
if (all_languages["Hivenet"] in owner.languages)
|
||||
owner.remove_language(all_languages["Hivenet"])
|
||||
owner << "\red Your mind suddenly grows dark as the unity of the Hive is torn from you."
|
||||
else
|
||||
if (!(all_languages["Hivenet"] in owner.languages))
|
||||
owner.add_language(all_languages["Hivenet"])
|
||||
owner << "\blue Your mind expands, and your thoughts join the unity of the Hivenet."
|
||||
..()
|
||||
|
||||
/obj/item/organ/vaurca/neuralsocket/replaced(var/mob/living/carbon/human/target)
|
||||
if (!(all_languages["Hivenet"] in owner.languages))
|
||||
owner.add_language(all_languages["Hivenet"])
|
||||
owner << "\blue Your mind expands, and your thoughts join the unity of the Hivenet."
|
||||
..()
|
||||
|
||||
/obj/item/organ/vaurca/neuralsocket/removed(var/mob/living/carbon/human/target)
|
||||
if(all_languages["Hivenet"] in target.languages)
|
||||
target.remove_language(all_languages["Hivenet"])
|
||||
target << "\red Your mind suddenly grows dark as the unity of the Hive is torn from you."
|
||||
..()
|
||||
|
||||
/obj/item/organ/vaurca/breathingapparatus
|
||||
name = "breathing apparatus"
|
||||
organ_tag = "breathing apparatus"
|
||||
parent_organ = "chest"
|
||||
icon = 'icons/mob/alien.dmi'
|
||||
icon_state = "breathing_app"
|
||||
robotic = 2
|
||||
|
||||
obj/item/organ/vaurca/breathingapparatus/process()
|
||||
return
|
||||
|
||||
/obj/item/organ/vaurca/breathingapparatus/removed()
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user