mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-30 00:22:03 +01:00
Device and weapon
This commit is contained in:
@@ -16,30 +16,30 @@
|
||||
/*
|
||||
* Twohanded
|
||||
*/
|
||||
/obj/item/weapon/oldtwohanded
|
||||
/obj/item/oldtwohanded
|
||||
var/wielded = 0
|
||||
var/force_wielded = 0
|
||||
var/wieldsound = null
|
||||
var/unwieldsound = null
|
||||
var/base_icon
|
||||
|
||||
/obj/item/weapon/oldtwohanded/proc/unwield()
|
||||
/obj/item/oldtwohanded/proc/unwield()
|
||||
wielded = 0
|
||||
force = initial(force)
|
||||
name = "[initial(name)]"
|
||||
update_icon()
|
||||
|
||||
/obj/item/weapon/oldtwohanded/proc/wield()
|
||||
/obj/item/oldtwohanded/proc/wield()
|
||||
wielded = 1
|
||||
force = force_wielded
|
||||
name = "[initial(name)] (Wielded)"
|
||||
update_icon()
|
||||
|
||||
/obj/item/weapon/oldtwohanded/New()
|
||||
/obj/item/oldtwohanded/New()
|
||||
..()
|
||||
update_icon()
|
||||
|
||||
/obj/item/weapon/oldtwohanded/mob_can_equip(M as mob, slot, disable_warning = FALSE)
|
||||
/obj/item/oldtwohanded/mob_can_equip(M as mob, slot, disable_warning = FALSE)
|
||||
//Cannot equip wielded items.
|
||||
if(wielded)
|
||||
to_chat(M, "<span class='warning'>Unwield the [initial(name)] first!</span>")
|
||||
@@ -47,22 +47,22 @@
|
||||
|
||||
return ..()
|
||||
|
||||
/obj/item/weapon/oldtwohanded/dropped(mob/user as mob)
|
||||
/obj/item/oldtwohanded/dropped(mob/user as mob)
|
||||
//handles unwielding a twohanded weapon when dropped as well as clearing up the offhand
|
||||
if(user)
|
||||
var/obj/item/weapon/oldtwohanded/O = user.get_inactive_hand()
|
||||
var/obj/item/oldtwohanded/O = user.get_inactive_hand()
|
||||
if(istype(O))
|
||||
O.unwield()
|
||||
return unwield()
|
||||
|
||||
/obj/item/weapon/oldtwohanded/update_icon()
|
||||
/obj/item/oldtwohanded/update_icon()
|
||||
icon_state = "[base_icon][wielded]"
|
||||
item_state = icon_state
|
||||
|
||||
/obj/item/weapon/oldtwohanded/pickup(mob/user)
|
||||
/obj/item/oldtwohanded/pickup(mob/user)
|
||||
unwield()
|
||||
|
||||
/obj/item/weapon/oldtwohanded/attack_self(mob/user as mob)
|
||||
/obj/item/oldtwohanded/attack_self(mob/user as mob)
|
||||
..()
|
||||
|
||||
if(wielded) //Trying to unwield it
|
||||
@@ -71,7 +71,7 @@
|
||||
if (src.unwieldsound)
|
||||
playsound(src.loc, unwieldsound, 50, 1)
|
||||
|
||||
var/obj/item/weapon/oldtwohanded/offhand/O = user.get_inactive_hand()
|
||||
var/obj/item/oldtwohanded/offhand/O = user.get_inactive_hand()
|
||||
if(O && istype(O))
|
||||
O.unwield()
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
if (src.wieldsound)
|
||||
playsound(src.loc, wieldsound, 50, 1)
|
||||
|
||||
var/obj/item/weapon/oldtwohanded/offhand/O = new(user) ////Let's reserve his other hand~
|
||||
var/obj/item/oldtwohanded/offhand/O = new(user) ////Let's reserve his other hand~
|
||||
O.name = "[initial(name)] - offhand"
|
||||
O.desc = "Your second grip on the [initial(name)]"
|
||||
user.put_in_inactive_hand(O)
|
||||
@@ -97,22 +97,22 @@
|
||||
return
|
||||
|
||||
///////////OFFHAND///////////////
|
||||
/obj/item/weapon/oldtwohanded/offhand
|
||||
/obj/item/oldtwohanded/offhand
|
||||
w_class = 5.0
|
||||
icon_state = "offhand"
|
||||
name = "offhand"
|
||||
|
||||
/obj/item/weapon/oldtwohanded/offhand/unwield()
|
||||
/obj/item/oldtwohanded/offhand/unwield()
|
||||
qdel(src)
|
||||
|
||||
/obj/item/weapon/oldtwohanded/offhand/wield()
|
||||
/obj/item/oldtwohanded/offhand/wield()
|
||||
qdel(src)
|
||||
|
||||
/obj/item/weapon/oldtwohanded/offhand/update_icon()
|
||||
/obj/item/oldtwohanded/offhand/update_icon()
|
||||
return
|
||||
|
||||
//spears, bay edition
|
||||
/obj/item/weapon/oldtwohanded/spear
|
||||
/obj/item/oldtwohanded/spear
|
||||
icon_state = "spearglass0"
|
||||
base_icon = "spearglass"
|
||||
name = "spear"
|
||||
@@ -126,4 +126,4 @@
|
||||
edge = 0
|
||||
sharp = 1
|
||||
hitsound = 'sound/weapons/bladeslice.ogg'
|
||||
attack_verb = list("attacked", "poked", "jabbed", "torn", "gored")
|
||||
attack_verb = list("attacked", "poked", "jabbed", "torn", "gored")
|
||||
|
||||
@@ -53,13 +53,13 @@
|
||||
icon_override = 'icons/vore/axisrus_yw.dmi'
|
||||
item_state = "soldiersuit_mob"
|
||||
blood_overlay_type = "coat"
|
||||
allowed = list(/obj/item/weapon/gun/energy,
|
||||
/obj/item/weapon/reagent_containers/spray/pepper,
|
||||
/obj/item/weapon/gun/projectile,
|
||||
allowed = list(/obj/item/gun/energy,
|
||||
/obj/item/reagent_containers/spray/pepper,
|
||||
/obj/item/gun/projectile,
|
||||
/obj/item/ammo_magazine,
|
||||
/obj/item/ammo_casing,
|
||||
/obj/item/weapon/melee/baton,
|
||||
/obj/item/weapon/handcuffs)
|
||||
/obj/item/melee/baton,
|
||||
/obj/item/handcuffs)
|
||||
|
||||
/obj/item/clothing/suit/storage/labcoat/fluff/zeke_vincir_3/axis/officer
|
||||
name = "Officer's Waffenrock"
|
||||
|
||||
@@ -6,24 +6,24 @@
|
||||
|
||||
//Amara Faell
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/amara
|
||||
/obj/item/storage/box/fluff/amara
|
||||
name = "Amara's Kit"
|
||||
desc = "A kit containing Amara's equipment."
|
||||
has_items = list(
|
||||
/obj/item/clothing/suit/storage/fluff/fedcoat/amara_jacket,
|
||||
/obj/item/clothing/head/beret/amara_beret,
|
||||
/obj/item/clothing/gloves/fluff/amara_gloves,
|
||||
/obj/item/weapon/flame/lighter/zippo/fluff/amara,
|
||||
/obj/item/flame/lighter/zippo/fluff/amara,
|
||||
/obj/item/clothing/under/fluff/amara_uniform,
|
||||
/obj/item/clothing/shoes/boots/jackboots/fluff/amara_boots,
|
||||
/obj/item/clothing/accessory/collar/fluff/amara_collar,
|
||||
/obj/item/weapon/storage/belt/security/tactical/amara_belt,
|
||||
/obj/item/device/modkit_conversion/fluff/amara_hos_kit)
|
||||
/obj/item/storage/belt/security/tactical/amara_belt,
|
||||
/obj/item/modkit_conversion/fluff/amara_hos_kit)
|
||||
|
||||
|
||||
//Zara Venlee
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/zara
|
||||
/obj/item/storage/box/fluff/zara
|
||||
name = "Zara's Kit"
|
||||
desc = "A kit containing Zara's equipment."
|
||||
has_items = list(
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
//Samantha Quzix
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/samantha
|
||||
/obj/item/storage/box/fluff/samantha
|
||||
name = "Samantha's Kit"
|
||||
desc = "A kit containing Samantha's equipment."
|
||||
has_items = list(
|
||||
@@ -43,22 +43,22 @@
|
||||
/obj/item/clothing/gloves/sterile/latex/fluff/sam_gloves,
|
||||
/obj/item/clothing/shoes/boots/jackboots/fluff/sam_boots,
|
||||
/obj/item/clothing/suit/storage/fluff/fedcoat/sam_jacket,
|
||||
/obj/item/weapon/storage/belt/utility/fluff/sam_belt)
|
||||
/obj/item/storage/belt/utility/fluff/sam_belt)
|
||||
|
||||
//Nika Domashev / Defunct
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/nika
|
||||
/obj/item/storage/box/fluff/nika
|
||||
name = "Nika's Kit"
|
||||
desc = "A kit containing Nika's equipment."
|
||||
has_items = list(
|
||||
/obj/item/clothing/under/rank/security/corp/fluff/nika,
|
||||
/obj/item/device/modkit_conversion/fluff/nika_sec_kit)
|
||||
/obj/item/modkit_conversion/fluff/nika_sec_kit)
|
||||
|
||||
//***************
|
||||
//blackangelsace
|
||||
//***************
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/madoka
|
||||
/obj/item/storage/box/fluff/madoka
|
||||
name = "Madoka's Case"
|
||||
desc = "A case containing Madoka's equipment."
|
||||
has_items = list(
|
||||
@@ -66,9 +66,9 @@
|
||||
/obj/item/clothing/suit/armor/fluff/madoka_chest,
|
||||
/obj/item/clothing/gloves/arm_guard/fluff/madoka_arms,
|
||||
/obj/item/clothing/shoes/leg_guard/fluff/madoka_legs,
|
||||
/obj/item/weapon/oldtwohanded/spear/fluff/madoka_koto_1)
|
||||
/obj/item/oldtwohanded/spear/fluff/madoka_koto_1)
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/kelplague
|
||||
/obj/item/storage/box/fluff/kelplague
|
||||
name = "Fancy Plague Doctor Kit"
|
||||
desc = "Fancy boye stuff."
|
||||
has_items = list(
|
||||
@@ -84,7 +84,7 @@
|
||||
//JohnWolf135 / Defunct
|
||||
// **********
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/John
|
||||
/obj/item/storage/box/fluff/John
|
||||
name = "John's kit"
|
||||
desc = "A kit containing John's equipment."
|
||||
has_items = list(
|
||||
@@ -94,7 +94,7 @@
|
||||
// Mauser items
|
||||
// ************
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/mauser
|
||||
/obj/item/storage/box/fluff/mauser
|
||||
name = "Mauser's Kit"
|
||||
desc = "A kit containing Mauser's equipment."
|
||||
has_items = list(
|
||||
@@ -108,7 +108,7 @@
|
||||
|
||||
//Ally Faell
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/ally
|
||||
/obj/item/storage/box/fluff/ally
|
||||
name = "Ally's Kit"
|
||||
desc = "A kit containing Ally's equipment."
|
||||
has_items = list(
|
||||
@@ -117,16 +117,16 @@
|
||||
|
||||
//Raja Bastet
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/raja
|
||||
/obj/item/storage/box/fluff/raja
|
||||
name = "Raja's Kit"
|
||||
desc = "A kit containing Raja's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/storage/belt/utility/fluff/raja_belt,
|
||||
/obj/item/storage/belt/utility/fluff/raja_belt,
|
||||
/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/raja_coat)
|
||||
|
||||
//Shel Nargol
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/shel
|
||||
/obj/item/storage/box/fluff/shel
|
||||
name = "Shel's Kit"
|
||||
desc = "A kit containing Shel's equipment."
|
||||
has_items = list(
|
||||
@@ -135,7 +135,7 @@
|
||||
|
||||
//Alva Karlholm
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/alva
|
||||
/obj/item/storage/box/fluff/alva
|
||||
name = "Alva's Kit"
|
||||
desc = "A kit containing Alva's equipment."
|
||||
has_items = list(
|
||||
@@ -149,7 +149,7 @@
|
||||
|
||||
//Tikorak Korgask
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/tikorak
|
||||
/obj/item/storage/box/fluff/tikorak
|
||||
name = "Tikorak's Kit"
|
||||
desc = "A kit containing Tikorak's equipment."
|
||||
has_items = list(
|
||||
@@ -160,23 +160,23 @@
|
||||
// Dawidoe
|
||||
// *******
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/melissa
|
||||
/obj/item/storage/box/fluff/melissa
|
||||
name = "Melissa's kit"
|
||||
desc = "A kit containing Melissa's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/flame/lighter/zippo/fluff/melissa,
|
||||
/obj/item/flame/lighter/zippo/fluff/melissa,
|
||||
/obj/item/clothing/under/rank/security/corp/fluff/melissa_uniform,
|
||||
/obj/item/device/modkit_conversion/fluff/melissa_gun_kit)
|
||||
/obj/item/modkit_conversion/fluff/melissa_gun_kit)
|
||||
|
||||
// *******
|
||||
// Dwaggy90
|
||||
// *******
|
||||
/obj/item/weapon/storage/box/fluff/saur
|
||||
/obj/item/storage/box/fluff/saur
|
||||
name = "Saur's kit"
|
||||
desc = "A kit containing Saur's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/rig/medical/equipped/fluff/saur,
|
||||
/obj/item/weapon/storage/backpack/dufflebag/fluff/saur_dufflebag,
|
||||
/obj/item/rig/medical/equipped/fluff/saur,
|
||||
/obj/item/storage/backpack/dufflebag/fluff/saur_dufflebag,
|
||||
/obj/item/clothing/suit/armor/pcarrier/navy/fluff/saur_pccarrier
|
||||
)
|
||||
/*
|
||||
@@ -186,15 +186,15 @@
|
||||
|
||||
//Anoki Windroar
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/anoki
|
||||
/obj/item/storage/box/fluff/anoki
|
||||
name = "Anoki's kit"
|
||||
desc = "A kit containing Anoki's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/implanter/reagent_generator/roiz/anoki)
|
||||
/obj/item/implanter/reagent_generator/roiz/anoki)
|
||||
*/
|
||||
//Ivy Kaeire
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/ivy
|
||||
/obj/item/storage/box/fluff/ivy
|
||||
name = "Ivy's Kit"
|
||||
desc = "A kit containing Ivy's equipment."
|
||||
has_items = list(
|
||||
@@ -207,7 +207,7 @@
|
||||
|
||||
//Vanesa FancyFin
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/vanesaf
|
||||
/obj/item/storage/box/fluff/vanesaf
|
||||
name = "Vanesa's kit"
|
||||
desc = "A kit containing Vanesa's equipment."
|
||||
has_items = list(
|
||||
@@ -219,12 +219,12 @@
|
||||
|
||||
//Jessica Mayer
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/jessica
|
||||
/obj/item/storage/box/fluff/jessica
|
||||
name = "Jessica's Kit"
|
||||
desc = "A kit containing Jessica's equipment."
|
||||
has_items = list(
|
||||
/obj/item/clothing/under/rank/security/corp/fluff/jessica,
|
||||
/obj/item/device/modkit_conversion/fluff/jessica_sec_kit)
|
||||
/obj/item/modkit_conversion/fluff/jessica_sec_kit)
|
||||
|
||||
// *******
|
||||
//LukeVale
|
||||
@@ -232,23 +232,23 @@
|
||||
|
||||
//Mira Rezus
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/mira
|
||||
/obj/item/storage/box/fluff/mira
|
||||
name = "Mira's kit"
|
||||
desc = "A kit containing Mira's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/implanter/reagent_generator/mira)
|
||||
/obj/item/implanter/reagent_generator/mira)
|
||||
|
||||
//Natalya Vospit / Defunct
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/natalya
|
||||
/obj/item/storage/box/fluff/natalya
|
||||
name = "Natalya's kit"
|
||||
desc = "A kit containing Natalya's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/implanter/reagent_generator/natalya)
|
||||
/obj/item/implanter/reagent_generator/natalya)
|
||||
|
||||
//Lena Shaw
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/lena
|
||||
/obj/item/storage/box/fluff/lena
|
||||
name = "Lena's kit"
|
||||
desc = "A kit containing Lena's equipment."
|
||||
has_items = list(
|
||||
@@ -256,15 +256,15 @@
|
||||
|
||||
//Eryn Wolfe / Defunct
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/eryn
|
||||
/obj/item/storage/box/fluff/eryn
|
||||
name = "Eryn's kit"
|
||||
desc = "A kit containing Eryn's equipment."
|
||||
has_items = list(
|
||||
/obj/item/weapon/fluff/chemset)
|
||||
/obj/item/fluff/chemset)
|
||||
|
||||
//Mitsuko Jiao
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/jiao
|
||||
/obj/item/storage/box/fluff/jiao
|
||||
name = "Mitsuko's kit"
|
||||
desc = "A kit containing Mituko's equipment"
|
||||
has_items = list(
|
||||
@@ -273,11 +273,11 @@
|
||||
/obj/item/clothing/under/rank/medical/fluff/jiao_uniform,
|
||||
/obj/item/clothing/head/beret/fluff/jiao_beret,
|
||||
/obj/item/clothing/shoes/boots/jackboots/fluff/jiao_boots,
|
||||
/obj/item/weapon/storage/belt/medical/fluff/jiao_belt,
|
||||
/obj/item/storage/belt/medical/fluff/jiao_belt,
|
||||
/obj/item/clothing/gloves/sterile/fluff/jiao_gloves,
|
||||
/obj/item/device/modkit_conversion/fluff/jiao_anynlizer_kit/a,
|
||||
/obj/item/device/modkit_conversion/fluff/jiao_anynlizer_kit/b,
|
||||
/obj/item/device/modkit_conversion/fluff/jiao_anynlizer_kit/c)
|
||||
/obj/item/modkit_conversion/fluff/jiao_anynlizer_kit/a,
|
||||
/obj/item/modkit_conversion/fluff/jiao_anynlizer_kit/b,
|
||||
/obj/item/modkit_conversion/fluff/jiao_anynlizer_kit/c)
|
||||
|
||||
// ************
|
||||
// RadiantFlash
|
||||
@@ -285,7 +285,7 @@
|
||||
|
||||
//Vasharr Zahirn
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/vasharr
|
||||
/obj/item/storage/box/fluff/vasharr
|
||||
name = "Vasharr's Kit"
|
||||
desc = "A kit containing Vasharr's equipment."
|
||||
has_items = list(
|
||||
@@ -296,15 +296,15 @@
|
||||
|
||||
//FrenziedVorcha / Defcunt
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/philipsmirnov
|
||||
/obj/item/storage/box/fluff/philipsmirnov
|
||||
name = "Psychiatric box"
|
||||
desc = "A kit containing various psychiatry tools"
|
||||
has_items = list(
|
||||
/obj/item/weapon/fluff/fidgetspinner,
|
||||
/obj/item/weapon/fluff/fidgetspinner/red,
|
||||
/obj/item/weapon/fluff/fidgetspinner/yellow,
|
||||
/obj/item/weapon/fluff/squeezetoy,
|
||||
/obj/item/weapon/fluff/dimensioncube)
|
||||
/obj/item/fluff/fidgetspinner,
|
||||
/obj/item/fluff/fidgetspinner/red,
|
||||
/obj/item/fluff/fidgetspinner/yellow,
|
||||
/obj/item/fluff/squeezetoy,
|
||||
/obj/item/fluff/dimensioncube)
|
||||
|
||||
// ******
|
||||
// Dushka
|
||||
@@ -312,7 +312,7 @@
|
||||
|
||||
//Saroth
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/saroth
|
||||
/obj/item/storage/box/fluff/saroth
|
||||
name = "Saroth's box"
|
||||
desc = "A kit containing Saroth's equipment."
|
||||
has_items = list(
|
||||
@@ -324,7 +324,7 @@
|
||||
|
||||
//M.I.S.S.Y
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/missy
|
||||
/obj/item/storage/box/fluff/missy
|
||||
name = "M.I.S.S.Y's box"
|
||||
desc = "A kit containing M.I.S.S.Y's equipment."
|
||||
has_items = list(
|
||||
@@ -332,7 +332,7 @@
|
||||
|
||||
//Quanah Hastings
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/quanah
|
||||
/obj/item/storage/box/fluff/quanah
|
||||
name = "Quanah's kit"
|
||||
desc = "A kit containing Quanah's equipment."
|
||||
has_items = list(
|
||||
@@ -344,7 +344,7 @@
|
||||
|
||||
//Maxie Drake
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/maxie
|
||||
/obj/item/storage/box/fluff/maxie
|
||||
name = "Maxie's box"
|
||||
desc = "a kit containing Maxie's equipment."
|
||||
has_items = list(
|
||||
@@ -356,7 +356,7 @@
|
||||
|
||||
//Noel Walsh
|
||||
|
||||
/obj/item/weapon/storage/box/fluff/noel
|
||||
/obj/item/storage/box/fluff/noel
|
||||
name = "Noel's box"
|
||||
desc = "a kit containing Maxie's equipment."
|
||||
has_items = list (
|
||||
@@ -370,21 +370,21 @@
|
||||
// ********
|
||||
|
||||
//Joseph Skinner
|
||||
/obj/item/weapon/storage/box/fluff/skinner
|
||||
/obj/item/storage/box/fluff/skinner
|
||||
name = "Joseph's box"
|
||||
desc = "a kit containing Joseph's equipment."
|
||||
has_items = list (
|
||||
/obj/item/clothing/mask/gas/fluff/skinner,
|
||||
/obj/item/device/modkit_conversion/fluff/skinner/a,
|
||||
/obj/item/device/modkit_conversion/fluff/skinner/b,
|
||||
/obj/item/device/modkit_conversion/fluff/skinner/c)
|
||||
/obj/item/modkit_conversion/fluff/skinner/a,
|
||||
/obj/item/modkit_conversion/fluff/skinner/b,
|
||||
/obj/item/modkit_conversion/fluff/skinner/c)
|
||||
|
||||
// ********
|
||||
// MASMC
|
||||
// ********
|
||||
|
||||
// Kettek Ollarch
|
||||
/obj/item/weapon/storage/box/fluff/kettek
|
||||
/obj/item/storage/box/fluff/kettek
|
||||
name = "Kettek's box"
|
||||
desc = "a kit containing Kettek's equipment."
|
||||
has_items = list (
|
||||
|
||||
@@ -349,7 +349,7 @@
|
||||
icon_badge = "mercvest_badge"
|
||||
icon_nobadge = "mercvest_nobadge"
|
||||
|
||||
/obj/item/weapon/storage/belt/security/tactical/amara_belt
|
||||
/obj/item/storage/belt/security/tactical/amara_belt
|
||||
name = "Mercenary belt"
|
||||
desc = "A sturdy military belt with a shiny buckle and a bunch of pouches."
|
||||
icon = 'icons/vore/custom_clothes_yw.dmi'
|
||||
@@ -452,7 +452,7 @@
|
||||
icon_override = 'icons/vore/custom_onmob_yw.dmi'
|
||||
item_state = "pilotboots_mob"
|
||||
|
||||
/obj/item/weapon/storage/belt/utility/fluff/sam_belt
|
||||
/obj/item/storage/belt/utility/fluff/sam_belt
|
||||
name = "Mech Pilot Belt"
|
||||
desc = "A white-blue toolbelt with many slots to hold tools in, seems to be made to literally be attached onto a suit."
|
||||
icon = 'icons/vore/custom_clothes_yw.dmi'
|
||||
@@ -515,7 +515,7 @@
|
||||
|
||||
//Raja Bastet
|
||||
|
||||
/obj/item/weapon/storage/belt/utility/fluff/raja_belt
|
||||
/obj/item/storage/belt/utility/fluff/raja_belt
|
||||
name = "Mech Engineer Belt"
|
||||
desc = "A black-golden toolbelt with many slots to hold tools in. Also comes with a blue buckle."
|
||||
icon = 'icons/vore/custom_clothes_yw.dmi'
|
||||
@@ -907,7 +907,7 @@
|
||||
blood_overlay_type = "coat"
|
||||
body_parts_covered = UPPER_TORSO|ARMS
|
||||
flags_inv = HIDEHOLSTER
|
||||
allowed = list(/obj/item/device/analyzer,/obj/item/stack/medical,/obj/item/weapon/dnainjector,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/hypospray,/obj/item/device/healthanalyzer,/obj/item/device/flashlight/pen,/obj/item/weapon/reagent_containers/glass/bottle,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/pill,/obj/item/weapon/storage/pill_bottle,/obj/item/weapon/paper)
|
||||
allowed = list(/obj/item/analyzer,/obj/item/stack/medical,/obj/item/dnainjector,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/hypospray,/obj/item/healthanalyzer,/obj/item/flashlight/pen,/obj/item/reagent_containers/glass/bottle,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/pill,/obj/item/storage/pill_bottle,/obj/item/paper)
|
||||
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0)
|
||||
icon = 'icons/vore/custom_clothes_yw.dmi'
|
||||
icon_override = 'icons/vore/custom_onmob_yw.dmi'
|
||||
@@ -1054,7 +1054,7 @@
|
||||
icon_state = "jiao_boots"
|
||||
icon_override = 'icons/vore/custom_onmob_yw.dmi'
|
||||
|
||||
/obj/item/weapon/storage/belt/medical/fluff/jiao_belt
|
||||
/obj/item/storage/belt/medical/fluff/jiao_belt
|
||||
name = "Navy medical belt"
|
||||
desc = "A customized medical belt to sport the navy colors of the Kanghu force."
|
||||
icon = 'icons/vore/custom_clothes_yw.dmi'
|
||||
@@ -1113,7 +1113,7 @@
|
||||
|
||||
//Saur Darastrix
|
||||
|
||||
/obj/item/weapon/storage/backpack/dufflebag/fluff/saur_dufflebag
|
||||
/obj/item/storage/backpack/dufflebag/fluff/saur_dufflebag
|
||||
name = "Saur's Dufflebag"
|
||||
desc = "A large custom made dufflebag to fit snug between a pair of wings, fitted with custom purple straps and golden medical cross, with the name 'Saur Darastrix' written under it."
|
||||
icon = 'icons/vore/custom_clothes_yw.dmi'
|
||||
@@ -1552,14 +1552,14 @@
|
||||
siemens_coefficient = 0.9
|
||||
armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) // Inferior to sec vests in bullet/laser but better for environmental protection.
|
||||
allowed = list(
|
||||
/obj/item/device/flashlight,
|
||||
/obj/item/weapon/gun,
|
||||
/obj/item/flashlight,
|
||||
/obj/item/gun,
|
||||
/obj/item/ammo_magazine,
|
||||
/obj/item/weapon/melee,
|
||||
/obj/item/weapon/material/knife,
|
||||
/obj/item/weapon/tank,
|
||||
/obj/item/device/radio,
|
||||
/obj/item/weapon/pickaxe
|
||||
/obj/item/melee,
|
||||
/obj/item/material/knife,
|
||||
/obj/item/tank,
|
||||
/obj/item/radio,
|
||||
/obj/item/pickaxe
|
||||
)
|
||||
|
||||
/obj/item/clothing/head/hood/mocha_hood
|
||||
@@ -1600,7 +1600,7 @@
|
||||
// ******
|
||||
// Foxicide
|
||||
// ******
|
||||
/obj/item/weapon/storage/backpack/fluff/kaith
|
||||
/obj/item/storage/backpack/fluff/kaith
|
||||
name = "Light duffle bag"
|
||||
desc = "A compact duffle bag, meant for long hikes."
|
||||
icon = 'icons/inventory/back/item.dmi'
|
||||
@@ -1747,4 +1747,4 @@
|
||||
icon_state = "gear_harness_white"
|
||||
icon_override = 'icons/vore/custom_onmob_yw.dmi'
|
||||
item_state = "gear_harness_white"
|
||||
body_parts_covered = 0
|
||||
body_parts_covered = 0
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
// **************
|
||||
// Unleashed_Mana
|
||||
// **************
|
||||
/obj/item/weapon/fluff/zekewatch
|
||||
/obj/item/fluff/zekewatch
|
||||
name = "Zeke's pocketwatch"
|
||||
desc = "Looks like it's broken... or is it?"
|
||||
w_class = 1.0
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "zekewatch"
|
||||
|
||||
/obj/item/weapon/fluff/zekewatch/attack_self(mob/living/user)
|
||||
/obj/item/fluff/zekewatch/attack_self(mob/living/user)
|
||||
if(user.r_hand == src || user.l_hand == src)
|
||||
var/time1 = rand(0,11)
|
||||
var/time2 = rand(0,59)
|
||||
@@ -23,19 +23,19 @@
|
||||
return ..()
|
||||
return
|
||||
|
||||
/obj/item/weapon/kitchenknife/tacknife/unathiknife/fluff/eravik_vessi_1
|
||||
/obj/item/kitchenknife/tacknife/unathiknife/fluff/eravik_vessi_1
|
||||
name = "Noctis"
|
||||
desc = "A strange blade made of some kind of black metal. It feels... incomplete."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "eravikblade"
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/drinks/flask/fluff/david_3
|
||||
/obj/item/reagent_containers/food/drinks/flask/fluff/david_3
|
||||
name = "David's lucky bottle"
|
||||
desc = "As long as there is something in it, nothing can go wrong."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "davidbottle"
|
||||
|
||||
/obj/item/weapon/material/kitchen/utensil/fork/fluff/ragna_1
|
||||
/obj/item/material/kitchen/utensil/fork/fluff/ragna_1
|
||||
name = "Ragna's fork"
|
||||
desc = "\"FEAR RAGNA!\""
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
@@ -47,7 +47,7 @@
|
||||
// Capt_matt
|
||||
// *********
|
||||
//Payton Joghs
|
||||
/obj/item/weapon/material/hatchet/unathiknife/fluff/payton_joghs_1
|
||||
/obj/item/material/hatchet/unathiknife/fluff/payton_joghs_1
|
||||
name = "Payton's Knife"
|
||||
desc = "It appears to be a traditional unathi knife, though with 'Payton' written on the side and appearing to be made of steel."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
@@ -56,7 +56,7 @@
|
||||
// **************
|
||||
// BlackAngelsAce
|
||||
// **************
|
||||
/obj/item/weapon/oldtwohanded/spear/fluff/madoka_koto_1
|
||||
/obj/item/oldtwohanded/spear/fluff/madoka_koto_1
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_override = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "madokaspear0"
|
||||
@@ -91,7 +91,7 @@
|
||||
playsound(user, 'sound/misc/boatswain.ogg', 25, 1)
|
||||
cooldown = world.time
|
||||
|
||||
/obj/item/device/radio/headset/fluff/strix
|
||||
/obj/item/radio/headset/fluff/strix
|
||||
name = "Strix\'s headset"
|
||||
desc = "A headset that seems custom made for a avali skull shape, the sounds coming from it are very quiet."
|
||||
icon_state = "strix_headset"
|
||||
@@ -106,12 +106,12 @@
|
||||
|
||||
//Amara Faell
|
||||
|
||||
/obj/item/weapon/flame/lighter/zippo/fluff/amara
|
||||
/obj/item/flame/lighter/zippo/fluff/amara
|
||||
desc = "A zippo that comes in a metallic blood red case. How the flame can be lime green is an enigma in itself."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "bloodredzippo"
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/amara_hos_kit
|
||||
/obj/item/modkit_conversion/fluff/amara_hos_kit
|
||||
name = "Amara's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a Head of security armored coat. It has a red wolf painted on it."
|
||||
owner_ckey = "generalpantsu"
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
//Nika Domashev
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/nika_sec_kit
|
||||
/obj/item/modkit_conversion/fluff/nika_sec_kit
|
||||
name = "Nika's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a Officer Armor Vest."
|
||||
owner_ckey = "generalpantsu"
|
||||
@@ -140,7 +140,7 @@
|
||||
// *******
|
||||
|
||||
//Glitterpaws
|
||||
/obj/item/weapon/melee/goz_whitecane
|
||||
/obj/item/melee/goz_whitecane
|
||||
name = "White Cane"
|
||||
desc = "A telescoping white cane. They are commonly used by the blind or visually impaired as a mobility tool or as a courtesy to others."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
@@ -154,7 +154,7 @@
|
||||
force = 3
|
||||
var/on = 0
|
||||
|
||||
/obj/item/weapon/melee/goz_whitecane/attack_self(mob/user as mob)
|
||||
/obj/item/melee/goz_whitecane/attack_self(mob/user as mob)
|
||||
on = !on
|
||||
if(on)
|
||||
user.visible_message("<b>\The [user] extends the white cane.</b>",\
|
||||
@@ -185,7 +185,7 @@
|
||||
|
||||
return
|
||||
|
||||
/obj/item/weapon/melee/goz_whitecane/attack(mob/M as mob, mob/user as mob)
|
||||
/obj/item/melee/goz_whitecane/attack(mob/M as mob, mob/user as mob)
|
||||
if(user.a_intent == I_HELP)
|
||||
user.visible_message("<b>\The [user] has lightly tapped [M] on the ankle with their white cane!</b>")
|
||||
return
|
||||
@@ -195,13 +195,13 @@
|
||||
// *******
|
||||
// Dawidoe
|
||||
// *******
|
||||
/obj/item/weapon/flame/lighter/zippo/fluff/melissa
|
||||
/obj/item/flame/lighter/zippo/fluff/melissa
|
||||
name = "Zippo"
|
||||
desc = "A custom made zippo lighter with word 'Mel' engraved in white font on the bottom right corner. It's black, with red lines around the edges."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "melzippo"
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/melissa_gun_kit
|
||||
/obj/item/modkit_conversion/fluff/melissa_gun_kit
|
||||
name = "Melissa's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a 45 Pistol."
|
||||
owner_ckey = "dawidoe"
|
||||
@@ -209,8 +209,8 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "modkit"
|
||||
|
||||
from_suit = /obj/item/weapon/gun/projectile/sec/flash
|
||||
to_suit = /obj/item/weapon/gun/projectile/fluff/m1911
|
||||
from_suit = /obj/item/gun/projectile/sec/flash
|
||||
to_suit = /obj/item/gun/projectile/fluff/m1911
|
||||
|
||||
// ************
|
||||
// championfire
|
||||
@@ -218,10 +218,10 @@
|
||||
|
||||
//Yuki Windroar
|
||||
|
||||
/obj/item/weapon/implanter/reagent_generator/roiz/yuki
|
||||
implant_type = /obj/item/weapon/implant/reagent_generator/roiz/yuki
|
||||
/obj/item/implanter/reagent_generator/roiz/yuki
|
||||
implant_type = /obj/item/implant/reagent_generator/roiz/yuki
|
||||
|
||||
/obj/item/weapon/implant/reagent_generator/roiz/yuki
|
||||
/obj/item/implant/reagent_generator/roiz/yuki
|
||||
name = "egg laying implant"
|
||||
desc = "This is an implant that allows the user to lay eggs."
|
||||
usable_volume = 500
|
||||
@@ -237,7 +237,7 @@
|
||||
|
||||
//Jessica Mayer
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/jessica_sec_kit
|
||||
/obj/item/modkit_conversion/fluff/jessica_sec_kit
|
||||
name = "Jessica's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a Officer Armor Vest."
|
||||
owner_ckey = "vitorhks"
|
||||
@@ -254,7 +254,7 @@
|
||||
|
||||
//Dillan McGraw
|
||||
|
||||
// /obj/item/weapon/storage/fluff/cane/dillan
|
||||
// /obj/item/storage/fluff/cane/dillan
|
||||
// var/max_w_class = 1
|
||||
// var/max_storage_space = 4
|
||||
// throwforce = 7
|
||||
@@ -276,7 +276,7 @@
|
||||
|
||||
//Mira Rezus
|
||||
|
||||
/obj/item/weapon/implant/reagent_generator/tempest/mira
|
||||
/obj/item/implant/reagent_generator/tempest/mira
|
||||
name = "lactation implant"
|
||||
desc = "This is an implant that allows the user to lactate."
|
||||
usable_volume = 1000
|
||||
@@ -289,12 +289,12 @@
|
||||
verb_name = "Milk"
|
||||
verb_desc = "Grab Mira's breasts and milk her, storing her fresh, warm milk in a container. This will undoubtedly turn her on."
|
||||
|
||||
/obj/item/weapon/implanter/reagent_generator/mira
|
||||
implant_type = /obj/item/weapon/implant/reagent_generator/tempest/mira
|
||||
/obj/item/implanter/reagent_generator/mira
|
||||
implant_type = /obj/item/implant/reagent_generator/tempest/mira
|
||||
|
||||
//Natalya Vospit
|
||||
|
||||
/obj/item/weapon/implant/reagent_generator/tempest/natalya
|
||||
/obj/item/implant/reagent_generator/tempest/natalya
|
||||
name = "lactation implant"
|
||||
desc = "This is an implant that allows the user to lactate."
|
||||
usable_volume = 1000
|
||||
@@ -307,12 +307,12 @@
|
||||
verb_name = "Milk"
|
||||
verb_desc = "Grab Natalya's breasts and milk her, storing her fresh, warm milk in a container. This will undoubtedly turn her on."
|
||||
|
||||
/obj/item/weapon/implanter/reagent_generator/natalya
|
||||
implant_type = /obj/item/weapon/implant/reagent_generator/tempest/natalya
|
||||
/obj/item/implanter/reagent_generator/natalya
|
||||
implant_type = /obj/item/implant/reagent_generator/tempest/natalya
|
||||
|
||||
//Eryn Wolfe
|
||||
|
||||
/obj/item/weapon/fluff/chemset
|
||||
/obj/item/fluff/chemset
|
||||
name = "Eryn's chemistry set"
|
||||
desc = "A small box with a open compartment, some buttons, a disk drive, and flashing lights. On the back is a small metal plaque with the name 'Eryn Wofle' on it."
|
||||
w_class = 1.0
|
||||
@@ -321,7 +321,7 @@
|
||||
|
||||
//Mitsuko Jiao
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/jiao_anynlizer_kit/a
|
||||
/obj/item/modkit_conversion/fluff/jiao_anynlizer_kit/a
|
||||
name = "Mitsuko's modkit Mk1"
|
||||
desc = "A kit containing all the needed tools and parts to modify a heath analyzer. It has a Emblem painted on it."
|
||||
owner_ckey = "lukevale"
|
||||
@@ -329,10 +329,10 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "modkit"
|
||||
|
||||
from_suit = /obj/item/device/healthanalyzer
|
||||
to_suit = /obj/item/device/healthanalyzer/fluff/jiao_health
|
||||
from_suit = /obj/item/healthanalyzer
|
||||
to_suit = /obj/item/healthanalyzer/fluff/jiao_health
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/jiao_anynlizer_kit/b
|
||||
/obj/item/modkit_conversion/fluff/jiao_anynlizer_kit/b
|
||||
name = "Mitsuko's modkit Mk2"
|
||||
desc = "A kit containing all the needed tools and parts to modify a heath analyzer. It has a Emblem painted on it."
|
||||
owner_ckey = "lukevale"
|
||||
@@ -340,10 +340,10 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "modkit"
|
||||
|
||||
from_suit = /obj/item/device/healthanalyzer/improved
|
||||
to_suit = /obj/item/device/healthanalyzer/improved/fluff/jiao_health
|
||||
from_suit = /obj/item/healthanalyzer/improved
|
||||
to_suit = /obj/item/healthanalyzer/improved/fluff/jiao_health
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/jiao_anynlizer_kit/c
|
||||
/obj/item/modkit_conversion/fluff/jiao_anynlizer_kit/c
|
||||
name = "Mitsuko's modkit Mk3"
|
||||
desc = "A kit containing all the needed tools and parts to modify a heath analyzer. It has a Emblem painted on it."
|
||||
owner_ckey = "lukevale"
|
||||
@@ -351,22 +351,22 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "modkit"
|
||||
|
||||
from_suit = /obj/item/device/healthanalyzer/advanced
|
||||
to_suit = /obj/item/device/healthanalyzer/advanced/fluff/jiao_health
|
||||
from_suit = /obj/item/healthanalyzer/advanced
|
||||
to_suit = /obj/item/healthanalyzer/advanced/fluff/jiao_health
|
||||
|
||||
/obj/item/device/healthanalyzer/fluff/jiao_health
|
||||
/obj/item/healthanalyzer/fluff/jiao_health
|
||||
name = "Kanghu medical scanner MK1"
|
||||
desc = "A Modified medical scanner, all the main components are compacted into the handle. This one is a basic unit."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "scanner_mk1"
|
||||
|
||||
/obj/item/device/healthanalyzer/improved/fluff/jiao_health
|
||||
/obj/item/healthanalyzer/improved/fluff/jiao_health
|
||||
name = "Kanghu medical scanner MK2"
|
||||
desc = "A Modified medical scanner, all the main components are compacted into the handle. This one is an improved unit."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "scanner_mk2"
|
||||
|
||||
/obj/item/device/healthanalyzer/advanced/fluff/jiao_health
|
||||
/obj/item/healthanalyzer/advanced/fluff/jiao_health
|
||||
name = "Kanghu medical scanner MK3"
|
||||
desc = "A Modified medical scanner, all the main components are compacted into the handle. This one is an advanced unit."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
@@ -378,7 +378,7 @@
|
||||
|
||||
//Ire
|
||||
|
||||
/obj/item/weapon/bikehorn/fluff/chew_ire
|
||||
/obj/item/bikehorn/fluff/chew_ire
|
||||
name = "Chew toy"
|
||||
desc = "A toy normally used by dogs to play with or chew on"
|
||||
slot_flags = SLOT_MASK
|
||||
@@ -396,7 +396,7 @@
|
||||
|
||||
//I'm going to fix this code later.
|
||||
|
||||
/obj/item/weapon/implant/reagent_generator/belle/ysaline
|
||||
/obj/item/implant/reagent_generator/belle/ysaline
|
||||
name = "lactation implant"
|
||||
desc = "This is an implant that allows the user to lactate."
|
||||
usable_volume = 1000
|
||||
@@ -412,7 +412,7 @@
|
||||
// **************
|
||||
// Trash
|
||||
// **************
|
||||
/obj/item/weapon/fluff/fidgetspinner
|
||||
/obj/item/fluff/fidgetspinner
|
||||
name = "Fidget spinner"
|
||||
desc = "A spinning stress relief toy, upsetting family, friends, and employers for 500 years."
|
||||
w_class = 1.0
|
||||
@@ -420,7 +420,7 @@
|
||||
icon_state = "fidgetspinner"
|
||||
var/basestate = "fidgetspinner"
|
||||
|
||||
/obj/item/weapon/fluff/fidgetspinner/red
|
||||
/obj/item/fluff/fidgetspinner/red
|
||||
name = "Red fidget spinner"
|
||||
desc = "A spinning stress relief toy, upsetting family, friends, and employers for 500 years. This one is red"
|
||||
w_class = 1.0
|
||||
@@ -428,7 +428,7 @@
|
||||
icon_state = "fidgetspinnerr"
|
||||
basestate = "fidgetspinnerr"
|
||||
|
||||
/obj/item/weapon/fluff/fidgetspinner/yellow
|
||||
/obj/item/fluff/fidgetspinner/yellow
|
||||
name = "Yellow fidget spinner"
|
||||
desc = "A spinning stress relief toy, upsetting family, friends, and employers for 500 years. This one is yellow"
|
||||
w_class = 1.0
|
||||
@@ -436,7 +436,7 @@
|
||||
icon_state = "fidgetspinnery"
|
||||
basestate = "fidgetspinnery"
|
||||
|
||||
/obj/item/weapon/fluff/fidgetspinner/attack_self(mob/living/user)
|
||||
/obj/item/fluff/fidgetspinner/attack_self(mob/living/user)
|
||||
if(user.r_hand == src || user.l_hand == src)
|
||||
if(icon_state != "[basestate]-s")
|
||||
icon_state = "[basestate]-s"
|
||||
@@ -447,14 +447,14 @@
|
||||
return ..()
|
||||
return
|
||||
|
||||
/obj/item/weapon/fluff/squeezetoy
|
||||
/obj/item/fluff/squeezetoy
|
||||
name = "Stress relief squeeze toy"
|
||||
desc = "A toy squeezed to relieve stress, it’s squeaker appears to be broken from over use."
|
||||
w_class = 1.0
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "squeezetoy"
|
||||
|
||||
/obj/item/weapon/fluff/squeezetoy/attack_self(mob/living/user)
|
||||
/obj/item/fluff/squeezetoy/attack_self(mob/living/user)
|
||||
if(user.r_hand == src || user.l_hand == src)
|
||||
if(icon_state != "squeezetoy-s")
|
||||
icon_state = "squeezetoy-s"
|
||||
@@ -465,7 +465,7 @@
|
||||
return ..()
|
||||
return
|
||||
|
||||
/obj/item/weapon/fluff/dimensioncube
|
||||
/obj/item/fluff/dimensioncube
|
||||
var/folded = 1
|
||||
name = "Infinity cube"
|
||||
desc = "All the fun of a puzzle cube without any of the challenge, a good way to relieve stress and delude yourself into a sense of accomplishment."
|
||||
@@ -473,7 +473,7 @@
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "infinitycube0"
|
||||
|
||||
/obj/item/weapon/fluff/dimensioncube/attack_self(mob/living/user)
|
||||
/obj/item/fluff/dimensioncube/attack_self(mob/living/user)
|
||||
if(user.r_hand == src || user.l_hand == src)
|
||||
if(folded == 0)
|
||||
icon_state = "infinitycube0"
|
||||
@@ -492,7 +492,7 @@
|
||||
// **************
|
||||
|
||||
// These seem to have been deprecated from loadouts? -KK
|
||||
/obj/item/device/modkit_conversion/fluff/skinner/a
|
||||
/obj/item/modkit_conversion/fluff/skinner/a
|
||||
name = "Joseph's modkit Mk1"
|
||||
desc = "A kit containing all the needed tools and parts to modify a security jumpsuit."
|
||||
|
||||
@@ -502,7 +502,7 @@
|
||||
from_suit = /obj/item/clothing/under/rank/security
|
||||
to_suit = /obj/item/clothing/under/rank/security/fluff/skinner
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/skinner/b
|
||||
/obj/item/modkit_conversion/fluff/skinner/b
|
||||
name = "Joseph's modkit Mk2"
|
||||
desc = "A kit containing all the needed tools and parts to modify a security armor."
|
||||
|
||||
@@ -512,7 +512,7 @@
|
||||
from_suit = /obj/item/clothing/suit/armor/vest
|
||||
to_suit = /obj/item/clothing/suit/armor/vest/fluff/skinner
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/skinner/c
|
||||
/obj/item/modkit_conversion/fluff/skinner/c
|
||||
name = "Joseph's modkit Mk3"
|
||||
desc = "A kit containing all the needed tools and parts to modify a security helmet."
|
||||
|
||||
@@ -526,7 +526,7 @@
|
||||
// DeepIndigo
|
||||
// **************
|
||||
|
||||
/obj/item/weapon/storage/bible/fluff/amina
|
||||
/obj/item/storage/bible/fluff/amina
|
||||
name = "New Space Pioneer's Bible"
|
||||
desc = "This one says it was printed in 2492. The name \"Eric Hayvers\" is written on the inside of the cover, crossed out. Under it is written \"Kouri, Amina, Marine Unit 14, Fifth Echelon. Service number NTN-5528928522372\""
|
||||
|
||||
@@ -534,15 +534,15 @@
|
||||
// DameonOwen
|
||||
// **************
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/cookie/mysterious
|
||||
/obj/item/reagent_containers/food/snacks/cookie/mysterious
|
||||
name = "a mysterious cookie"
|
||||
desc = "DAS A BIG COOKIE!!!"
|
||||
bitesize = 100
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/cookie/mysterious/Initialize()
|
||||
/obj/item/reagent_containers/food/snacks/cookie/mysterious/Initialize()
|
||||
. = ..()
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/cookie/mysterious/attack(mob/living/M as mob, mob/user as mob, def_zone)
|
||||
/obj/item/reagent_containers/food/snacks/cookie/mysterious/attack(mob/living/M as mob, mob/user as mob, def_zone)
|
||||
. = ..()
|
||||
if (M == user)
|
||||
M.resize(3)
|
||||
@@ -555,7 +555,7 @@
|
||||
// **************
|
||||
|
||||
//Lucy Price
|
||||
/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/lucyprice
|
||||
/obj/item/reagent_containers/food/drinks/flask/vacuumflask/fluff/lucyprice
|
||||
name = "Cryostasis Thermos"
|
||||
desc = " A thermos that has been designed to look something akin to a mix between a cryostasis beaker and a thermos. Does NOT keep the drinks cold, surprisingly enough."
|
||||
icon_state = "cryothermos"
|
||||
@@ -566,7 +566,7 @@
|
||||
// **************
|
||||
|
||||
//Mocha
|
||||
/obj/item/device/modkit_conversion/fluff/mocha_suit_kit
|
||||
/obj/item/modkit_conversion/fluff/mocha_suit_kit
|
||||
name = "Mocha's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a Explorer Suit"
|
||||
owner_ckey = "mocatheporg1"
|
||||
@@ -580,14 +580,14 @@
|
||||
// *************
|
||||
// Foxicide
|
||||
// *************
|
||||
/obj/item/weapon/material/knife/tacknife/survival/fluff/kaith
|
||||
/obj/item/material/knife/tacknife/survival/fluff/kaith
|
||||
name = "Trusty Survival Knife"
|
||||
desc = "An old looking knife with an outdated wooden handle. Still looks robust, though."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
icon_state = "kaithknife"
|
||||
named_from_material = 0
|
||||
|
||||
/obj/item/device/modkit_conversion/fluff/kaith_knife_kit
|
||||
/obj/item/modkit_conversion/fluff/kaith_knife_kit
|
||||
name = "Kaith's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a survival knife"
|
||||
owner_ckey = "foxicide"
|
||||
@@ -595,39 +595,39 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "modkit"
|
||||
|
||||
from_suit = /obj/item/weapon/material/knife/tacknife/survival
|
||||
to_suit = /obj/item/weapon/material/knife/tacknife/survival/fluff/kaith
|
||||
from_suit = /obj/item/material/knife/tacknife/survival
|
||||
to_suit = /obj/item/material/knife/tacknife/survival/fluff/kaith
|
||||
|
||||
// *************
|
||||
// Coda_Vanistok
|
||||
// *************
|
||||
/obj/item/weapon/implanter/fluff/coda
|
||||
imp = new /obj/item/weapon/implant/fluff/coda
|
||||
/obj/item/implanter/fluff/coda
|
||||
imp = new /obj/item/implant/fluff/coda
|
||||
icon_state = "implanter1_1"
|
||||
|
||||
/obj/item/weapon/implanter/fluff/coda/remove_implant() //No way to remove this implant.
|
||||
/obj/item/implanter/fluff/coda/remove_implant() //No way to remove this implant.
|
||||
to_chat(usr, "<b>It seems \the [imp] can't be removed from \the [src].</b>")
|
||||
return
|
||||
|
||||
/obj/item/weapon/implanter/fluff/coda/attack()
|
||||
/obj/item/implanter/fluff/coda/attack()
|
||||
..()
|
||||
if(!imp) //After injection, the implanter poofs.
|
||||
to_chat(usr, "<b>\The [src] disentegrates after you use it!</b>")
|
||||
qdel(src)
|
||||
|
||||
/obj/item/weapon/implant/fluff/coda
|
||||
/obj/item/implant/fluff/coda
|
||||
name = "locked size-modification implant"
|
||||
desc = "This is an implant that allows the user to change their size. It appears to be locked to two settings."
|
||||
var/mob/living/implanted_in = null
|
||||
|
||||
/obj/item/weapon/implant/fluff/coda/post_implant(mob/source)
|
||||
/obj/item/implant/fluff/coda/post_implant(mob/source)
|
||||
..()
|
||||
var/mob/living/H = source
|
||||
H.verbs += /obj/item/weapon/implant/fluff/coda/proc/coda_implant_resize
|
||||
H.verbs += /obj/item/implant/fluff/coda/proc/coda_implant_resize
|
||||
implanted_in = source
|
||||
START_PROCESSING(SSobj, src)
|
||||
|
||||
/obj/item/weapon/implant/fluff/coda/process()
|
||||
/obj/item/implant/fluff/coda/process()
|
||||
if(implanted_in && (src.imp_in != implanted_in)) //If the implant is removed.
|
||||
implanted_in.setBrainLoss(200)
|
||||
visible_message("<b>\The [src] shorts and sparks during removal, frying itself!</b>")
|
||||
@@ -638,7 +638,7 @@
|
||||
icon_state = "implant_melted"
|
||||
malfunction = MALFUNCTION_PERMANENT
|
||||
|
||||
/obj/item/weapon/implant/fluff/coda/proc/coda_implant_resize(var/mob/living/carbon/human/H)
|
||||
/obj/item/implant/fluff/coda/proc/coda_implant_resize(var/mob/living/carbon/human/H)
|
||||
set name = "Resize (Implant)"
|
||||
set desc = "Change your size between two different preset options."
|
||||
set category = "IC"
|
||||
@@ -654,7 +654,7 @@
|
||||
// *************
|
||||
// Dopiotl
|
||||
// *************
|
||||
/obj/item/weapon/storage/secure/briefcase/fluff/jeans
|
||||
/obj/item/storage/secure/briefcase/fluff/jeans
|
||||
name = "Sweet Ebony"
|
||||
desc = "An ebony/wooden secure case lined with gold. It looks thick, heavy, expensive, and incredibly sturdy. The design is sleek and elegant, adorned in intricate markings on the side, with hand-crafted artwork of a constellation you can't quite seem to recollect. It is surprisingly cold to the touch."
|
||||
icon = 'icons/vore/custom_items_yw.dmi'
|
||||
@@ -665,21 +665,21 @@
|
||||
slot_r_hand_str = 'icons/vore/custom_items_right_hand_yw.dmi',
|
||||
)
|
||||
var/list/has_items = list(
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar,
|
||||
)
|
||||
|
||||
/obj/item/weapon/storage/secure/briefcase/fluff/jeans/New() //this is entierly nessicary to spawn stuff. "FUN" -luke
|
||||
/obj/item/storage/secure/briefcase/fluff/jeans/New() //this is entierly nessicary to spawn stuff. "FUN" -luke
|
||||
storage_slots = has_items.len
|
||||
allowed = list()
|
||||
for(var/P in has_items)
|
||||
allowed += P
|
||||
new P(src)
|
||||
..()
|
||||
return
|
||||
return
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/obj/item/device/modkit_conversion/fluff/sheri_rig_kit
|
||||
/obj/item/modkit_conversion/fluff/sheri_rig_kit
|
||||
name = "Sheri's modkit"
|
||||
desc = "A kit containing all the needed tools and parts to modify a Research Director rig suit. It has a snake painted on it."
|
||||
owner_ckey = "esperkin"
|
||||
@@ -6,10 +6,10 @@
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_state = "modkit"
|
||||
|
||||
from_suit = /obj/item/weapon/rig/hazmat
|
||||
to_suit = /obj/item/weapon/rig/hazmat/fluff/sheri
|
||||
from_suit = /obj/item/rig/hazmat
|
||||
to_suit = /obj/item/rig/hazmat/fluff/sheri
|
||||
|
||||
/obj/item/weapon/rig/hazmat/fluff/sheri
|
||||
/obj/item/rig/hazmat/fluff/sheri
|
||||
name = "AHS-VPR Control Module"
|
||||
desc = "This is the control module for a prototype hazardous environment suit, designed to protect the wearer from radiation, pressure, and hostile aliens alike. This particular suit was designed to fit a naga, and is labeled as the model 'Viper'. A small tag on it marks it as belonging to a 'Sheri Calen'"
|
||||
icon = 'icons/vore/rig_yw/rigs_module.dmi'
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
|
||||
|
||||
/obj/item/weapon/rig/medical/equipped/fluff/saur
|
||||
/obj/item/rig/medical/equipped/fluff/saur
|
||||
name = "AMR-DRGN"
|
||||
desc = "This seems to be a highly customized Medical RIG suit, coloured black and purple, and with an added extendable plating to include a pair of wings and a tail comfortably within the suits protection. There's a nametag on the chest piece, and on the control module itself, with the name 'Saur Darastrix' on it."
|
||||
icon = 'icons/vore/rig_yw/rigs_module.dmi'
|
||||
@@ -85,4 +85,4 @@
|
||||
|
||||
/obj/item/clothing/gloves/gauntlets/rig/fluff/saur
|
||||
icon = 'icons/vore/rig_yw/rigs_gauntlets.dmi'
|
||||
icon_override = 'icons/vore/rig_yw/rigs_gauntlets_onmob.dmi'
|
||||
icon_override = 'icons/vore/rig_yw/rigs_gauntlets_onmob.dmi'
|
||||
|
||||
Reference in New Issue
Block a user