mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 06:58:30 +01:00
Chirret Edits
This commit is contained in:
+9
-3
@@ -858,12 +858,18 @@
|
||||
|
||||
|
||||
/mob/living/carbon/human/proc/create_silk()
|
||||
set name = "Create Silk Cocoon"
|
||||
set desc = "Creates a silk cocoon! If you are holding someone, you will wrap them up in it."
|
||||
set category = "Abilities"
|
||||
|
||||
if(world.time < last_special)
|
||||
return
|
||||
|
||||
var/mob/living/carbon/human/O = src
|
||||
var/obj/item/weapon/grab/G = src.get_active_hand()
|
||||
last_special = world.time + 600 //60 seconds. You don't get
|
||||
if(!istype(G))
|
||||
var/silk_path = /obj/structure/closet/body_bag/chirret
|
||||
new silk_path(O) //For modifications in the future.
|
||||
new /obj/structure/closet/body_bag/chirret(src.loc)
|
||||
to_chat(O, "<span class='notice'>You create a soft silk cocoon!</span>")
|
||||
O.visible_message("<font color='notice'>[O] creates a soft silk cocoon!</font>")
|
||||
return
|
||||
@@ -873,7 +879,7 @@
|
||||
if(do_after(O, 200, T)) //20 seconds to cocoon someone.
|
||||
if(!Adjacent(T)) return
|
||||
var/silk_path = /obj/structure/closet/body_bag/chirret
|
||||
var/obj/structure/closet/body_bag/chirret/chirrret_silk = new silk_path(O)
|
||||
var/obj/structure/closet/body_bag/chirret/chirrret_silk = new /obj/structure/closet/body_bag/chirret(src.loc)
|
||||
T.forceMove(chirrret_silk) //Put them in the body bag!
|
||||
to_chat(T, "<span class='notice'>You're encased in a soft silk cocoon by [O]!</span>")
|
||||
to_chat(O, "<span class='notice'>You encase [T] in a soft silk cocoon!</span>")
|
||||
|
||||
@@ -333,7 +333,7 @@
|
||||
|
||||
num_alternate_languages = 3
|
||||
secondary_langs = list("Sol Common")
|
||||
//color_mult = 1
|
||||
color_mult = 1
|
||||
tail = "tail" //Scree's tail. Can be disabled in the vore tab by choosing "hide species specific tail sprite"
|
||||
icobase_tail = 1
|
||||
inherent_verbs = list(
|
||||
|
||||
@@ -74,6 +74,7 @@
|
||||
var/obj/machinery/hologram/holopad/T = src.holo
|
||||
if(T && T.masters[src])//If there is a hologram and its master is the user.
|
||||
var/obj/effect/overlay/aiholo/hologram = T.masters[src] //VOREStation Add for people in the hologram to hear the messages
|
||||
if(!hologram) return //VOREStation edit. I keep getting compile warnings because of this!
|
||||
//Human-like, sorta, heard by those who understand humans.
|
||||
var/rendered_a
|
||||
//Speech distorted, heard by those who do not understand AIs.
|
||||
|
||||
@@ -731,21 +731,25 @@
|
||||
name = "Chirret Cheeks"
|
||||
icon_state = "chirret_cheeks"
|
||||
body_parts = list(BP_HEAD)
|
||||
color_blend_mode = ICON_MULTIPLY
|
||||
|
||||
chirret_cheeks
|
||||
chirret_claws
|
||||
name = "Chirret Claws"
|
||||
icon_state = "chirret_claws"
|
||||
body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND)
|
||||
color_blend_mode = ICON_MULTIPLY
|
||||
|
||||
chirret_face_and_belly_v1
|
||||
name = "Chirret Face and Belly Variant 1"
|
||||
icon_state = "chirret_fb_1"
|
||||
body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND)
|
||||
body_parts = list(BP_HEAD,BP_GROIN,BP_TORSO,BP_R_LEG,BP_L_LEG)
|
||||
color_blend_mode = ICON_MULTIPLY
|
||||
|
||||
chirret_face_and_belly_v2
|
||||
name = "Chirret Face and Belly Variant 2"
|
||||
icon_state = "chirret_fb_2"
|
||||
body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND)
|
||||
body_parts = list(BP_HEAD,BP_GROIN,BP_TORSO,BP_R_LEG,BP_L_LEG)
|
||||
color_blend_mode = ICON_MULTIPLY
|
||||
|
||||
harpy_feathers
|
||||
name = "Rapala leg Feather"
|
||||
|
||||
Reference in New Issue
Block a user