mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-29 18:31:13 +00:00
53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
//////////////////////////////////
|
|
//dakimakuras
|
|
//////////////////////////////////
|
|
|
|
/obj/item/storage/daki
|
|
name = "dakimakura"
|
|
desc = "A large pillow depicting a girl in a compromising position. Featuring as many dimensions as you."
|
|
icon = 'icons/obj/daki.dmi'
|
|
icon_state = "daki_base"
|
|
slot_flags = ITEM_SLOT_BACK
|
|
var/cooldowntime = 20
|
|
var/static/list/dakimakura_options = list("Callie","Casca","Chaika","Elisabeth","Foxy Grandpa","Haruko","Holo","Ian","Jolyne","Kurisu","Marie","Mugi","Nar'Sie","Patchouli","Plutia","Rei","Reisen","Naga","Squid","Squigly","Tomoko","Toriel","Umaru","Yaranaika","Yoko") //Kurisu is the ideal girl." - Me, Logos.
|
|
|
|
/obj/item/storage/daki/ComponentInitialize()
|
|
. = ..()
|
|
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
|
STR.max_w_class = WEIGHT_CLASS_SMALL
|
|
STR.max_combined_w_class = 21
|
|
STR.max_items = 3
|
|
STR.cant_hold = typecacheof(list(/obj/item/disk/nuclear))
|
|
|
|
/obj/item/storage/daki/attack_self(mob/living/user)
|
|
var/body_choice
|
|
var/custom_name
|
|
|
|
if(icon_state == "daki_base")
|
|
body_choice = input("Pick a body.") in dakimakura_options
|
|
icon_state = "daki_[body_choice]"
|
|
custom_name = stripped_input(user, "What's her name?")
|
|
if(length(custom_name) > MAX_NAME_LEN)
|
|
to_chat(user,"<span class='danger'>Name is too long!</span>")
|
|
return FALSE
|
|
if(custom_name)
|
|
name = custom_name
|
|
desc = "A large pillow depicting [custom_name] in a compromising position. Featuring as many dimensions as you."
|
|
else
|
|
switch(user.a_intent)
|
|
if(INTENT_HELP)
|
|
user.visible_message("<span class='notice'>[user] hugs the [name].</span>")
|
|
playsound(src, "rustle", 50, 1, -5)
|
|
if(INTENT_DISARM)
|
|
user.visible_message("<span class='notice'>[user] kisses the [name].</span>")
|
|
playsound(src, "rustle", 50, 1, -5)
|
|
if(INTENT_GRAB)
|
|
user.visible_message("<span class='warning'>[user] holds the [name]!</span>")
|
|
playsound(src, 'sound/items/bikehorn.ogg', 50, 1)
|
|
if(INTENT_HARM)
|
|
user.visible_message("<span class='danger'>[user] punches the [name]!</span>")
|
|
playsound(src, 'sound/effects/shieldbash.ogg', 50, 1)
|
|
user.changeNext_move(CLICK_CD_MELEE)
|
|
|
|
////////////////////////////
|