mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-05 15:04:21 +00:00
Vore Updates and merges
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
// ToDo: Alphabetize by ckey.
|
||||
|
||||
// BEGIN - DO NOT EDIT PROTOTYPE
|
||||
/obj/item/weapon/storage/box/fluff
|
||||
name = "Undefined Fluff Box"
|
||||
@@ -109,8 +111,6 @@
|
||||
new /obj/item/clothing/head/helmet/space/fluff/joan(src)
|
||||
new /obj/item/clothing/suit/space/fluff/joan(src)
|
||||
|
||||
|
||||
|
||||
//joanrisu:Katarina Eine
|
||||
/obj/item/weapon/storage/backpack/dufflebag/sec/fluff/katarina
|
||||
name = "Katarina's Workbag"
|
||||
@@ -138,6 +138,15 @@
|
||||
/obj/item/clothing/gloves/white,
|
||||
)
|
||||
|
||||
// Draycu: Schae Yonra
|
||||
/obj/item/weapon/storage/box/fluff/yonra
|
||||
name = "Yonra's Starting Kit"
|
||||
desc = "A small box containing Yonra's personal effects"
|
||||
has_items = list(
|
||||
/obj/item/weapon/melee/fluff/holochain/mass,
|
||||
/obj/item/weapon/implanter/reagent_generator/yonra,
|
||||
/obj/item/clothing/accessory/medal/silver/unity)
|
||||
|
||||
//Razerwing:Archer Maximus
|
||||
/obj/item/weapon/storage/box/fluff/archermaximus
|
||||
desc = "Personal Effects"
|
||||
@@ -221,11 +230,17 @@
|
||||
// Mewchild: Phi Vietsi
|
||||
/obj/item/weapon/storage/box/fluff/vietsi
|
||||
name = "Phi's Personal Items"
|
||||
desc = "A small box containing Phi's small things"
|
||||
has_items = list(
|
||||
/obj/item/clothing/accessory/medal/bronze_heart,
|
||||
/obj/item/clothing/gloves/ring/seal/signet/fluff/vietsi)
|
||||
|
||||
// Tabiranth: Ascian
|
||||
/obj/item/weapon/grenade/spawnergrenade/spirit
|
||||
name = "spirit's pet carrier"
|
||||
desc = "Contains kitten."
|
||||
spawner_type = /mob/living/simple_animal/cat/fluff/tabiranth
|
||||
deliveryamt = 1
|
||||
|
||||
/*
|
||||
Swimsuits, for general use, to avoid arriving to work with your swimsuit.
|
||||
*/
|
||||
|
||||
@@ -79,7 +79,7 @@
|
||||
/obj/item/clothing/suit/storage/hooded/wintercoat/roiz/proc/RemoveHood_roiz()
|
||||
icon_state = "coatroiz"
|
||||
item_state = "coatroiz_mob"
|
||||
suittoggled = 0
|
||||
hood_up = 0
|
||||
if(ishuman(hood.loc))
|
||||
var/mob/living/carbon/H = hood.loc
|
||||
H.unEquip(hood, 1)
|
||||
@@ -87,7 +87,7 @@
|
||||
hood.loc = src
|
||||
|
||||
/obj/item/clothing/suit/storage/hooded/wintercoat/roiz/proc/ToggleHood_roiz()
|
||||
if(!suittoggled)
|
||||
if(!hood_up)
|
||||
if(ishuman(loc))
|
||||
var/mob/living/carbon/human/H = loc
|
||||
if(H.wear_suit != src)
|
||||
@@ -98,7 +98,7 @@
|
||||
return
|
||||
else
|
||||
H.equip_to_slot_if_possible(hood,slot_head,0,0,1)
|
||||
suittoggled = 1
|
||||
hood_up = 1
|
||||
icon_state = "coatroiz_t"
|
||||
item_state = "coatroiz_mob_t"
|
||||
H.update_inv_wear_suit()
|
||||
@@ -730,11 +730,11 @@
|
||||
|
||||
/obj/item/weapon/storage/belt/utility/fluff/vulpine/New()
|
||||
..()
|
||||
new /obj/item/weapon/screwdriver(src)
|
||||
new /obj/item/weapon/wrench(src)
|
||||
new /obj/item/weapon/tool/screwdriver(src)
|
||||
new /obj/item/weapon/tool/wrench(src)
|
||||
new /obj/item/weapon/weldingtool(src)
|
||||
new /obj/item/weapon/crowbar(src)
|
||||
new /obj/item/weapon/wirecutters(src)
|
||||
new /obj/item/weapon/tool/crowbar(src)
|
||||
new /obj/item/weapon/tool/wirecutters(src)
|
||||
new /obj/item/device/multitool(src)
|
||||
new /obj/item/stack/cable_coil(src, 30, "red")
|
||||
|
||||
@@ -1546,7 +1546,7 @@ Departamental Swimsuits, for general use
|
||||
/obj/item/clothing/suit/storage/hooded/wintercoat/kilanocoat/proc/RemoveHood_kilano()
|
||||
icon_state = "kilanocoat"
|
||||
item_state = "kilanocoat_mob"
|
||||
suittoggled = 0
|
||||
hood_up = 0
|
||||
if(ishuman(hood.loc))
|
||||
var/mob/living/carbon/H = hood.loc
|
||||
H.unEquip(hood, 1)
|
||||
@@ -1554,7 +1554,7 @@ Departamental Swimsuits, for general use
|
||||
hood.loc = src
|
||||
|
||||
/obj/item/clothing/suit/storage/hooded/wintercoat/kilanocoat/proc/ToggleHood_kilano()
|
||||
if(!suittoggled)
|
||||
if(!hood_up)
|
||||
if(ishuman(loc))
|
||||
var/mob/living/carbon/human/H = loc
|
||||
if(H.wear_suit != src)
|
||||
@@ -1565,7 +1565,7 @@ Departamental Swimsuits, for general use
|
||||
return
|
||||
else
|
||||
H.equip_to_slot_if_possible(hood,slot_head,0,0,1)
|
||||
suittoggled = 1
|
||||
hood_up = 1
|
||||
icon_state = "kilanocoat_t"
|
||||
item_state = "kilanocoat_mob_t"
|
||||
H.update_inv_wear_suit()
|
||||
@@ -1683,7 +1683,7 @@ Departamental Swimsuits, for general use
|
||||
name = "Phi Vietsi's Bone Signet Ring"
|
||||
desc = "A signet ring belonging to Phi Vietsi, carved from the bones of something long extinct, as a ward against bad luck."
|
||||
var/signet_name = "Phi Vietsi"
|
||||
|
||||
|
||||
icon = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_state = "vietsi_ring"
|
||||
|
||||
|
||||
@@ -618,6 +618,7 @@
|
||||
name = "\improper SMG magazine (9mm armor-piercing)"
|
||||
ammo_type = /obj/item/ammo_casing/a9mm/ap
|
||||
|
||||
/* Seems to have been de-coded?
|
||||
/obj/item/ammo_magazine/m9mml/flash
|
||||
name = "\improper SMG magazine (9mm flash)"
|
||||
ammo_type = /obj/item/ammo_casing/a9mmf
|
||||
@@ -629,6 +630,7 @@
|
||||
/obj/item/ammo_magazine/m9mml/practice
|
||||
name = "\improper SMG magazine (9mm practice)"
|
||||
ammo_type = /obj/item/ammo_casing/a9mmp
|
||||
*/
|
||||
|
||||
//.357 special ammo
|
||||
/obj/item/ammo_magazine/s357/stun
|
||||
|
||||
@@ -1224,8 +1224,8 @@
|
||||
for(var/obj/item/device/perfect_tele_beacon/B in beacons)
|
||||
B.tele_hand = null
|
||||
beacons.Cut()
|
||||
qdel_null(power_source)
|
||||
qdel_null(spk)
|
||||
QDEL_NULL(power_source)
|
||||
QDEL_NULL(spk)
|
||||
return ..()
|
||||
|
||||
/obj/item/device/perfect_tele/update_icon()
|
||||
|
||||
Reference in New Issue
Block a user