diff --git a/code/datums/trading/ai.dm b/code/datums/trading/ai.dm index 3260ca52858..eafde4e8b34 100644 --- a/code/datums/trading/ai.dm +++ b/code/datums/trading/ai.dm @@ -104,9 +104,7 @@ They sell generic supplies and ask for generic supplies. /obj/item/clothing/glasses/sunglasses/blindfold/tape = TRADER_BLACKLIST, // Literally just tape over someone's eyes /obj/item/clothing/glasses/chameleon = TRADER_BLACKLIST, // traitor stuff /obj/item/clothing/glasses/sunglasses/bst = TRADER_BLACKLIST, // BlueSpaceTech glasses - /obj/item/clothing/glasses/fluff = TRADER_BLACKLIST_ALL, // Custom items - /obj/item/clothing/glasses/welding/fluff = TRADER_BLACKLIST_ALL, // Custom items - /obj/item/clothing/glasses/regular/fluff = TRADER_BLACKLIST_ALL // Custom items + /obj/item/clothing/glasses/welding/fluff = TRADER_BLACKLIST_ALL // Custom items ) insult_drop = 0 diff --git a/code/datums/trading/goods.dm b/code/datums/trading/goods.dm index 624b573efc9..981f5e3a7f4 100644 --- a/code/datums/trading/goods.dm +++ b/code/datums/trading/goods.dm @@ -165,7 +165,6 @@ /obj/item/clothing/shoes/magboots = TRADER_BLACKLIST_ALL, /obj/item/clothing/shoes/swat = TRADER_BLACKLIST, /obj/item/clothing/shoes/syndigaloshes = TRADER_BLACKLIST, - /obj/item/clothing/shoes/jackboots/toeless/fluff = TRADER_BLACKLIST_ALL, /obj/item/clothing/shoes/black/bst = TRADER_BLACKLIST ) @@ -184,8 +183,6 @@ /obj/item/clothing/gloves/rig = TRADER_BLACKLIST_ALL, /obj/item/clothing/gloves/chameleon = TRADER_BLACKLIST, /obj/item/clothing/gloves/force = TRADER_BLACKLIST_ALL, - /obj/item/clothing/gloves/swat/fluff = TRADER_BLACKLIST_ALL, - /obj/item/clothing/gloves/black/fluff = TRADER_BLACKLIST_ALL, /obj/item/clothing/gloves/swat/bst = TRADER_BLACKLIST, /obj/item/clothing/gloves/watch/fluff = TRADER_BLACKLIST_ALL, /obj/item/clothing/gloves/fluff = TRADER_BLACKLIST_ALL, diff --git a/code/modules/cargo/random_stock/t1_common.dm b/code/modules/cargo/random_stock/t1_common.dm index 9ea87fafad3..41e16845179 100644 --- a/code/modules/cargo/random_stock/t1_common.dm +++ b/code/modules/cargo/random_stock/t1_common.dm @@ -234,8 +234,6 @@ STOCK_ITEM_COMMON(gloves, 3.3) /obj/item/clothing/gloves, /obj/item/clothing/gloves/fluff, /obj/item/clothing/gloves/swat/bst, - /obj/item/clothing/gloves/swat/fluff/hawk_gloves, - /obj/item/clothing/gloves/black/fluff/kathleen_glove, /obj/item/clothing/gloves/powerfist, /obj/item/clothing/gloves/claws ) @@ -243,7 +241,6 @@ STOCK_ITEM_COMMON(gloves, 3.3) exclusion += typesof(/obj/item/clothing/gloves/lightrig) exclusion += typesof(/obj/item/clothing/gloves/watch) exclusion += typesof(/obj/item/clothing/gloves/fluff) - exclusion += typesof(/obj/item/clothing/gloves/yellow/fluff) exclusion += typesof(/obj/item/clothing/gloves/ballistic) allgloves -= exclusion diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 6fbdb43400f..83cbb303198 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -43,73 +43,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/suit/unathi/mantle/fluff/yinzr_mantle //Heirloom Unathi Mantle - Sslazhir Yinzr - alberyk - name = "heirloom unathi mantle" - desc = "A withered mantle sewn from threshbeast's hides, the pauldrons that holds it on the shoulders seems to be the remains of some kind of old armor." - icon = 'icons/obj/custom_items/yinzr_mantle.dmi' - icon_state = "yinzr_mantle" //special thanks to Araskael - item_state = "yinzr_mantle" - species_restricted = list("Unathi") //forged for lizardmen - contained_sprite = TRUE - - -/obj/item/clothing/glasses/fluff/nebula_glasses //chich eyewear - Roxy Wallace - nebulaflare - name = "chic eyewear" - desc = "A stylish pair of glasses. They look custom made." - icon = 'icons/obj/custom_items/nebula_glasses.dmi' - icon_state = "nebula_glasses" - item_state = "nebula_glasses" - contained_sprite = TRUE - var/obj/item/disk/chip - -/obj/item/clothing/glasses/fluff/nebula_glasses/Initialize() - . = ..() - chip = new /obj/item/disk/fluff/nebula_chip() - -/obj/item/clothing/glasses/fluff/nebula_glasses/Destroy() - QDEL_NULL(chip) - return ..() - -/obj/item/clothing/glasses/fluff/nebula_glasses/attack_self(mob/user as mob) - if(chip) - user.put_in_hands(chip) - to_chat(user, "You eject a small, concealed data chip from a small slot in the frames of \the [src].") - chip = null - -/obj/item/clothing/glasses/fluff/nebula_glasses/attackby(obj/item/W as obj, mob/user as mob) - if(istype(W, /obj/item/disk/fluff/nebula_chip) && !chip) - //user.u_equip(W) - user.drop_from_inventory(W,src) - chip = W - W.add_fingerprint(user) - add_fingerprint(user) - to_chat(user, "You slot \the [W] back into its place in the frames of \the [src].") - -/obj/item/disk/fluff/nebula_chip //data chip - Roxy Wallace - nebulaflare - name = "data chip" - desc = "A small green chip." - icon = 'icons/obj/custom_items/nebula_chip.dmi' - icon_state = "nebula_chip" - w_class = 1 - - -/obj/item/clothing/gloves/swat/fluff/hawk_gloves //Sharpshooter gloves - Hawk Silverstone - nebulaflare - name = "sharpshooter gloves" - desc = "These tactical gloves are tailor made for a marksman." - icon = 'icons/obj/custom_items/hawk_gloves.dmi' - icon_state = "hawk_gloves" - item_state = "swat_gl" - - -/obj/item/clothing/accessory/fluff/karima_datadrive //Data Drive Pendant - Kyyir'ry'avii Mo'Taki - nebulaflare - name = "data drive" - desc = "A small necklace, the pendant flips open to reveal a data drive." - icon = 'icons/obj/custom_items/motaki_datadrive.dmi' - icon_state = "motaki_datadrive" - item_state = "holobadge-cord" - slot_flags = SLOT_MASK | SLOT_TIE - - /obj/item/fluff/kiara_altar //Pocket Altar - Kiara Branwen - nursiekitty name = "pocket altar" desc = "A black tin box with a symbol painted over it. It shimmers in the light." @@ -128,36 +61,6 @@ All custom items with worn sprites must follow the contained sprite system: http desc = "A black tin box with a symbol painted over it. It shimmers in the light." -/obj/item/clothing/head/det/fluff/bell_hat //Brown Hat - Avery Bell - serveris6 - name = "brown hat" - desc = "A worn mid 20th century brown hat. It seems to have aged very well." - icon = 'icons/obj/custom_items/bell_coat.dmi' - icon_state = "bell_hat" - item_state = "bell_hat" - contained_sprite = TRUE - -/obj/item/clothing/suit/storage/toggle/det_trench/fluff/bell_coat //Pinned Brown Coat - Avery Bell - serveris6 - name = "pinned brown coat" - desc = "A worn mid 20th century brown trenchcoat. If you look closely at the breast, you can see an ID flap stitched into the leather - \"Avery Bell, Silhouette Co\"." - icon = 'icons/obj/custom_items/bell_coat.dmi' - icon_state = "bell_coat" - item_state = "bell_coat" - icon_open = "bell_coat" - icon_closed = "bell_coat" - contained_sprite = TRUE - allowed = list(/obj/item/tank/emergency_oxygen, /obj/item/device/flashlight,/obj/item/gun/energy,/obj/item/gun/projectile,/obj/item/ammo_magazine,/obj/item/ammo_casing, - /obj/item/melee/baton,/obj/item/handcuffs,/obj/item/storage/fancy/cigarettes,/obj/item/flame/lighter,/obj/item/device/taperecorder, /obj/item/clothing/accessory/badge/fluff/bell_badge) - - -/obj/item/melee/fluff/tina_knife //Consecrated Athame - Tina Kaekel - tainavaa - name = "consecrated athame" - desc = "An athame used in occult rituals. The double-edged dagger is dull. The handle is black with a pink/white occult design strewn about it, and \"Tina\" is inscribed into it in decorated letters." - icon = 'icons/obj/custom_items/tina_knife.dmi' - icon_state = "tina_knife" - item_state = "knife" - slot_flags = SLOT_BELT - w_class = 1 - /obj/item/cane/fluff/usiki_cane //Inscribed Silver-handled Cane - Usiki Guwan - fireandglory name = "inscribed silver-handled cane" desc = "This silver-handled cane has letters carved into the sides." @@ -173,92 +76,6 @@ All custom items with worn sprites must follow the contained sprite system: http to_chat(user, "This cane has the words \"A new and better life\" carved into the side, the other side has some unreadable carvings.") -/obj/item/clothing/gloves/black/fluff/kathleen_glove //Black Left Glove - Kathleen Mistral - valkywalky2 - name = "black left glove" - desc = "A pretty normal looking glove to be worn on the left hand." - icon = 'icons/obj/custom_items/kathleen_glove.dmi' - icon_state = "kathleen_glove" - item_state = "kathleen_glove" - contained_sprite = TRUE - gender = NEUTER - body_parts_covered = null - fingerprint_chance = 50 - -/obj/structure/bed/chair/wheelchair/fluff/nomak_scooter //Mobility Scooter - Dubaku Nomak - demonofthefall - name = "mobility scooter" - desc = "A battery powered scooters designed to carry fatties." - icon = 'icons/obj/custom_items/nomak_scooter.dmi' - icon_state = "nomak_scooter" - -/obj/structure/bed/chair/wheelchair/fluff/nomak_scooter/update_icon() - return - -/obj/item/coin/fluff/yoiko_coin //Sobriety Chip - Yurick Ali - raineko - name = "sobriety chip" - desc = "A red coin, made from plastic. A triangle is engraved, surrounding it is the words: \"TO THINE OWN SELF BE TRUE\"." - icon = 'icons/obj/custom_items/yoiko_coin.dmi' - icon_state = "coin_yoiko_heads" //thanks fireandglory for the sprites - cmineral = "yoiko" - -/obj/item/flame/lighter/zippo/fluff/locke_zippo //Fire Extinguisher Zippo - Jacob Locke - completegarbage - name = "fire extinguisher lighter" - desc = "Most fire extinguishers on the station are way too heavy. This one's a little lighter." - icon = 'icons/obj/custom_items/locke_zippo.dmi' - icon_state = "locke_zippo" - - -/obj/item/clipboard/fluff/zakiya_sketchpad //Sketchpad - Zakiya Ahmad - sierrakomodo - name = "sketchpad" - desc = "A simple sketchpad, about the size of a regular sheet of paper." - icon = 'icons/obj/custom_items/zakiya_sketchpad.dmi' //thanks superballs for the sprites - icon_state = "zakiya_sketchpad" - -/obj/item/clipboard/fluff/zakiya_sketchpad/New() - ..() - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - new /obj/item/paper(src) - -/obj/item/clipboard/fluff/zakiya_sketchpad/update_icon() - if(toppaper) - icon_state = "zakiya_sketchpad1" - else - icon_state = "zakiya_sketchpad" - return - -/obj/item/pen/fluff/zakiya_pen //Sketching pencil - Zakiya Ahmad - sierrakomodo - name = "sketching pencil" - desc = "A graphite sketching pencil." - icon = 'icons/obj/custom_items/zakiya_pen.dmi' - icon_state = "zakiya_pen" - - -/obj/item/melee/fluff/zah_mandible //Broken Vaurca Mandible - Ka'Akaix'Zah Zo'ra - sleepywolf - name = "broken vaurca mandible" - desc = "A black, four inch long piece of a Vaurca mandible. It seems dulled, and looks like it was shot off." - icon = 'icons/obj/custom_items/zah_mandible.dmi' - icon_state = "zah_mandible" - slot_flags = SLOT_BELT - w_class = 1 - force = 2 - - -/obj/item/clothing/suit/chaplain_hoodie/fluff/nioathi_hoodie //Shaman Hoodie - Fereydoun Nioathi - marlonphoenix - name = "shaman hoodie" - desc = "A slightly faded robe. It's worn by some Unathi shamans." - icon = 'icons/obj/custom_items/nioathi_hoodie.dmi' - icon_state = "nioathi_hoodie" - item_state = "nioathi_hoodie" - contained_sprite = TRUE - - /obj/item/implanter/fluff //snowflake implanters for snowflakes var/allowed_ckey = "" var/implant_type = null @@ -278,71 +95,6 @@ All custom items with worn sprites must follow the contained sprite system: http ..() -/obj/item/fluff/moon_baton //Tiger Claw - Zander Moon - omnivac - name = "tiger claw" - desc = "A small ceremonial energy dagger given to Golden Tigers." - icon = 'icons/obj/custom_items/moon_baton.dmi' - icon_state = "tigerclaw" - item_state = "tigerclaw" - slot_flags = SLOT_BELT - force = 2 - w_class = 2 - contained_sprite = TRUE - var/active = FALSE - -/obj/item/fluff/moon_baton/attack_self(mob/user) - active= !active - if(active) - playsound(user, 'sound/weapons/saberon.ogg', 50, 1) - to_chat(user, "\The [src] is now energised.") - icon_state = "tigerclaw_active" - item_state = icon_state - slot_flags = null - attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") - else - playsound(user, 'sound/weapons/saberoff.ogg', 50, 1) - to_chat(user, "\The [src] is now de-energised.") - icon_state = initial(icon_state) - item_state = icon_state - slot_flags = initial(slot_flags) - attack_verb = list("prodded") - - user.update_inv_l_hand(FALSE) - user.update_inv_r_hand() - - -/obj/item/clothing/suit/armor/vest/fabian_coat //NT APF Armor - Fabian Goellstein - mirkoloio - name = "NT APF armor" - desc = "This is a NT Asset Protection Force Armor, it is fashioned as a jacket in NT Security Colors. The nameplate carries the Name \"Goellstein\"." - icon = 'icons/obj/custom_items/fabian_coat.dmi' - icon_state = "fabian_coat_open" - item_state = "fabian_coat_open" - contained_sprite = TRUE - -/obj/item/clothing/suit/armor/vest/fabian_coat/verb/toggle() - set name = "Toggle Coat Zipper" - set category = "Object" - set src in usr - - if(!usr.canmove || usr.stat || usr.restrained()) - return 0 - - switch(icon_state) - if("fabian_coat_open") - icon_state = "fabian_coat_closed" - item_state = icon_state - to_chat(usr, "You zip up \the [src].") - if("fabian_coat_closed") - icon_state = "fabian_coat_open" - item_state = icon_state - to_chat(usr, "You unzip \the [src].") - else - to_chat(usr, "You attempt to button-up the velcro on \the [src], before promptly realising how silly you are.") - return - - usr.update_inv_wear_suit() - - /obj/item/clothing/head/fluff/vittorio_fez //Black Fez - Vittorio Giurifiglio - tytostyris name = "black fez" desc = "It is a black fez, it bears an Emblem of the Astronomical symbol of Earth, It also has some nice tassels." @@ -371,19 +123,7 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/suit/storage/toggle/bomber/fluff/ash_jacket //Hand-me-down Bomber Jacket - Ash LaCroix - superballs - name = "hand-me-down bomber jacket" - desc = "A custom tailored bomber jacket that seems to have been through some action. A silver badge is pinned to it, along with a black and blue strip covering it halfway. \ - The badge reads, \"Christopher LaCroix, Special Agent, Mendell City, E.O.W. 10-7-38, 284\"." - icon = 'icons/obj/custom_items/ash_jacket.dmi' - icon_state = "ash_jacket" - item_state = "ash_jacket" - icon_open = "ash_jacket_open" - icon_closed = "ash_jacket" - contained_sprite = TRUE - - -/obj/item/clothing/accessory/badge/fluff/dylan_tags //Dog Tags - Dylan Wright - sircatnip +/obj/item/clothing/accessory/badge/fluff/dylan_tags //Dog Tags - Dylan Sutton - sircatnip name = "dog tags" desc = "Some black dog tags, engraved on them is the following: \"Wright, Dylan L, O POS, Pacific Union Special Forces\"." icon = 'icons/obj/custom_items/dylan_tags.dmi' @@ -394,81 +134,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE slot_flags = SLOT_MASK | SLOT_TIE - -/obj/item/clothing/ears/fluff/rico_stripes //Racing Stripes - Ricochet - nebulaflare - name = "racing stripes" - desc = "A pair of fancy racing stripes." - icon = 'icons/obj/custom_items/rico_stripes.dmi' - icon_state = "rico_stripes" - item_state = "rico_stripes" - contained_sprite = TRUE - canremove = FALSE - abstract = TRUE - species_restricted = list("Machine") - autodrobe_no_remove = TRUE - - -/obj/item/reagent_containers/food/drinks/flask/fluff/barcia_flask //First Shot - Gabriel Barcia - mrgabol100 - name = "first shot" - desc = "A flask. Smells of absinthe, maybe vodka. The bottom left corner has a silver bar. The bottom is engraved, it reads: \"The First Shot\"." - icon = 'icons/obj/custom_items/barcia_flask.dmi' - icon_state = "barcia_flask" - - -/obj/item/clothing/ring/fluff/stone_ring //Thunder Dome Pendant Ring - Jerimiah Stone - dominicthemafiaso - name = "thunder dome pendant ring" - desc = "It appears to be a Collectors edition Thunder dome Pendant ring from the IGTDL's show rumble in the red planet in 2444. It has a decorative diamond center with a image of the Intergalactic belt in the center." - icon = 'icons/obj/custom_items/stone_ring.dmi' - icon_state = "stone_ring" - item_state = "stone_ring" - contained_sprite = TRUE - - -/obj/item/clothing/under/dress/fluff/sayyidah_dress //Traditional Jumper Dress - Sayyidah Al-Kateb - alberyk - name = "traditional jumper dress" - desc = "A light summer-time dress, decorated neatly with black and silver colors, it seems to be rather old." - icon = 'icons/obj/custom_items/sayyidah_dress.dmi' //special thanks to Coalf for the sprites - icon_state = "sayyidah_dress" - item_state = "sayyidah_dress" - contained_sprite = TRUE - -/obj/item/clothing/suit/storage/toggle/labcoat/fluff/helmut_labcoat //CERN Labcoat - Helmut Kronigernischultz - pyrociraptor - name = "\improper CERN labcoat" - desc = "A Labcoat with a blue pocket and blue collar. On the pocket, you can read \"C.E.R.N.\"." - icon = 'icons/obj/custom_items/helmut_labcoat.dmi' - icon_state = "helmut_labcoat" - item_state = "helmut_labcoat" - icon_open = "helmut_labcoat_open" - icon_closed = "helmut_labcoat" - contained_sprite = TRUE - - -/obj/item/clothing/shoes/jackboots/toeless/fluff/yinzr_sandals //Marching Sandals - Sslazhir Yinzr - alberyk - name = "marching sandals" - desc = "A pair of sturdy marching sandals made of layers of leather and with a reinforced sole, they are also rather big." - icon = 'icons/obj/custom_items/yinzr_sandals.dmi' - item_state = "yinzr_sandals" - icon_state = "yinzr_sandals" - contained_sprite = TRUE - - -/obj/item/clothing/accessory/fluff/laikov_broach //Jeweled Broach - Aji'Rah Laikov - nebulaflare - name = "jeweled broach" - desc = "A jeweled broach, inlaid with semi-precious gems. The clasp appears to have been replaced." - icon = 'icons/obj/custom_items/laikov_broach.dmi' - item_state = "laikov_broach" - icon_state = "laikov_broach" - contained_sprite = TRUE - -/obj/item/clothing/accessory/fluff/laikov_broach/attack_self(mob/user as mob) - if(isliving(user)) - user.visible_message("[user] displays their [src.name]. It glitters in many colors.") - -/obj/item/clothing/accessory/fluff/laikov_broach/attack(mob/living/carbon/human/M, mob/living/user) - if(isliving(user)) - user.visible_message("[user] thrust the [src.name] into [M]'s face.") - - /obj/item/fluff/akela_photo //Akela's Family Photo - Akela Ha'kim - moltenkore name = "family photo" desc = "You see on the photo a tajaran couple holding a small kit in their arms, while looking very happy. On the back it is written; \"Nasir, Akela and Ishka\", with a little gold mark that reads: \"Two months\"." @@ -519,81 +184,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/fluff/messa_pressing //Pressing of Messa's Tears - Poslan Kur'yer-Isra - jboy2000000 - name = "pressing of Messa's tears" - desc = "As Messa looked at the pain and death wrought on the world she had given life, she cried, and from her tears sprouted these leaves." - icon = 'icons/obj/custom_items/cat_religion.dmi' - icon_state = "messa" - w_class = 2 - -/obj/item/fluff/srendarr_pressing //Pressing of S'Rendarr's Hand - Poslan Kur'yer-Isra - jboy2000000 - name = "pressing of S'Rendarr's hand" - desc = "As S'Rendarr watched his sister cry, he felt rage never known to him before. His fists clashed with those who upset his sister, and from their blood came these." - icon = 'icons/obj/custom_items/cat_religion.dmi' - icon_state = "srendarr" - w_class = 2 - -/obj/item/clothing/suit/chaplain_hoodie/fluff/poslan_jacket //Twin Suns Throw-over - Poslan Kur'yer-Isra - jboy2000000 - name = "twin suns throw-over" - desc = "A light black jacket, on one side of its breast is the design of a yellow sun, and on the other side there is a smaller blue sun." - icon = 'icons/obj/custom_items/cat_religion.dmi' - icon_state = "poslan_jacket" - item_state = "poslan_jacket" - contained_sprite = TRUE - - -/obj/item/sign/fluff/alexis_degree //Xenonuerology Doctorate - Alexis Shaw - tenenza - name = "xenonuerology degree" - desc = "Certification for a doctorate in Xenonuerology, made out to Alexis Shaw by the St. Grahelm University of Biesel, authenticated by watermarking." - icon_state = "alexis_degree" - sign_state = "alexis_degree" - w_class = 2 - - -/obj/item/clothing/mask/fluff/rur_collar //Tagging Collar - R.U.R - coalf - name = "tagging collar" - desc = "A steel tagging collar, a giant golden D is imprinted on the front." - icon = 'icons/obj/custom_items/rur_collar.dmi' - icon_state = "rur_collar" - item_state = "rur_collar" - contained_sprite = TRUE - body_parts_covered = 0 - canremove = FALSE - species_restricted = list("Machine") - autodrobe_no_remove = TRUE - var/emagged = FALSE - -/obj/item/clothing/mask/fluff/rur_collar/emag_act(var/remaining_charges, var/mob/user) - if (!emagged) - to_chat(user, "You short out \the [src]'s locking mechanism.") - src.icon_state = "rur_collar_broken" - src.canremove = TRUE - src.emagged = TRUE - playsound(src.loc, 'sound/effects/sparks1.ogg', 100, 0) - return 1 - - -/obj/item/clothing/mask/bluescarf/fluff/simon_scarf //Fancy Scarf - Simon Greene - icydew - name = "fancy scarf" - desc = "A very smooth, dark blue scarf with a golden trim. It feels really new and clean." - icon = 'icons/obj/custom_items/simon_scarf.dmi' - icon_state = "simon_scarf" - item_state = "simon_scarf" - contained_sprite = TRUE - body_parts_covered = FACE - item_flags = FLEXIBLEMATERIAL - w_class = 2 - gas_transfer_coefficient = 0.90 - - -/obj/item/sign/fluff/triaka_atimono //Framed Zatimono - Azkuyua Triaka - marlonphoenix - name = "framed zatimono" - desc = "A framed Zatimono, a Unathi standard worn into battle similar to an old-Earth Sashimono. This one is slightly faded." - icon_state = "triaka_atimono" - sign_state = "triaka_atimono" - w_class = 2 - - /obj/item/fluff/cac_picture //Photo of a spider and a robot - CAC - fireandglory name = "photo of a spider and a robot" desc = "It is a photo of a cyan IPC holding a thick fuzzy spider of the size of a football." @@ -610,14 +200,6 @@ All custom items with worn sprites must follow the contained sprite system: http icon_state = "coin_raymond_heads" cmineral = "raymond" -/obj/item/clothing/under/fluff/zohjar_uniform //Republic Noble Clothing - Zohjar Rasateir - lordraven001 - name = "republic noble clothing" - desc = "A sophisticated white undersuit, it looks worn and ancient. The fabrics is excellently sewn and soft. It resembles a traditional tajaran nobleman suit." - icon = 'icons/obj/custom_items/zohjar_clothing.dmi' - icon_state = "zohjar_uniform" - item_state = "zohjar_uniform" - contained_sprite = TRUE - /obj/item/sign/fluff/iskanz_atimono //Framed Zatimono - Iskanz Sal'Dans - zundy name = "framed zatimono" @@ -645,39 +227,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/melee/fluff/rook_whip //Ceremonial Whip - Rook Jameson - hivefleetchicken - name = "ceremonial whip" - desc = "A traditional cat o'nine tails whip made of jet black leather and embroidered with a few golden touches, made on Earth. It looks ceremoniously robust." - icon = 'icons/obj/custom_items/rook_whip.dmi' - icon_state = "rook_whip" - item_state = "rook_whip" - slot_flags = SLOT_BELT - contained_sprite = TRUE - w_class = 3 - force = 2 - attack_verb = list("flogged", "whipped", "lashed", "disciplined") - - -/obj/item/clothing/suit/storage/toggle/labcoat/fluff/lilith_coat //Black Labcoat - LiLITH - ladyofravens - name = "black labcoat" - desc = "A sleek black labcoat made from durable synthetics. A tag inside the collar reads \"Property of LiLITH\" in red block letters." - icon = 'icons/obj/custom_items/lilith_coat.dmi' - icon_state = "lilith_coat" - item_state = "lilith_coat" - icon_open = "lilith_coat_open" - icon_closed = "lilith_coat" - contained_sprite = TRUE - - -/obj/item/clothing/head/fluff/sayyidah_tiara //Jeweled Tiara - Sayyidah Al-Kateb - alberyk - name = "jeweled tiara" - desc = "A headdress in the shape of a tiara, it is adorned by not so valuable jewels and spots a translucid veil on the back. There is room for pointy ears in the sides of the piece, as it was molded for a tajara." - icon = 'icons/obj/custom_items/sayyidah_dress.dmi' //special thanks to TheGreatJorge for the sprites - icon_state = "sayyidah_tiara" - item_state = "sayyidah_tiara" - contained_sprite = TRUE - - /obj/item/clothing/accessory/fluff/jeyne_pendant //Jeyne's Pendant - Jeyne Kahale - themuncorn name = "black choker with pendant" desc = "A simple black choker, with a small pendant on the front. The pendant is carefully inscribed with some simple Sinta'Unathi script in white." @@ -688,42 +237,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/basil_coat //Consortium Magister's Robes - Basil Drabardi - aimlessanalyst - name = "consortium magister's robes" - desc = "Deep red robes belonging to a Consortium Magister. A curious symbol is displayed on the black tabard down it's front." - icon = 'icons/obj/custom_items/basil_coat.dmi' - icon_state = "basil_coat" - item_state = "basil_coat" - body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS - contained_sprite = TRUE - hoodtype = /obj/item/clothing/head/winterhood/fluff/basil_hood - -/obj/item/clothing/head/winterhood/fluff/basil_hood - name = "consortium magister's hood" - desc = "A hood beloging to a consortium magister's robes." - icon = 'icons/obj/custom_items/basil_coat.dmi' - icon_state = "basil_hood" - - -/obj/item/clothing/under/fluff/iskra_uniform //Worn People's Republic Service Uniform - Iskra Ayrat - alberyk - name = "worn people's republic service uniform" - desc = "A well-worn shirt with blue strips, coupled with brown uniform pants. It seems to be part of the people's republic of Adhomai service uniform." - icon = 'icons/obj/custom_items/iskra_clothing.dmi' - icon_state = "iskra_clothing" - item_state = "iskra_clothing" - contained_sprite = TRUE - - -/obj/item/clothing/suit/storage/fluff/tsali_coat //Mariziite Shroud - Cruz Tsali - serveris6 - name = "mariziite shroud" - desc = "A worn duster coat frayed near the bottom, with a dark-hide shoulder cape thrown over the torso bearing the mark of a Mariziite warrior priest. \ - Commonly known as the garb worn by members of the Mariziite Order in the performance of their duties." - icon = 'icons/obj/custom_items/tsali_coat.dmi' - icon_state = "tsali_coat" - item_state = "tsali_coat" - contained_sprite = TRUE - - /obj/item/clothing/under/fluff/ana_uniform //Retired Uniform - Ana Roh'hi'tin - suethecake name = "retired uniform" desc = "A silken blouse paired with dark-colored slacks. It has the words \"Chief Investigator\" embroidered into the shoulder bar." @@ -816,47 +329,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/accessory/badge/fluff/bell_badge //Detective's Credentials - Avery Bell - serveris6 - name = "detective's credentials" - desc = "A laminated card, verifying the denoted as a private investigator licensed in Biesel. A photo of a tan-skinned human male dressed in a brown coat and hat is imprinted." - icon = 'icons/obj/custom_items/bell_coat.dmi' - icon_state = "bell_badge" - item_state = "bell_badge" - contained_sprite = TRUE - stored_name = "Avery Bell" - badge_string = "Silhouette Co. Consulting Detective" - - var/investigator = "Avery Bell" - var/occupation = "Consulting Detective" - var/birth_year = "8/8/2426" - var/licensed_systems = "Republic of Biesel, Sol Alliance, Nralakk" - var/supplementary_endorsements = "Licensed Medical Examiner; Sol Alliance, Republic of Biesel - Concealed firearm carry; Sol Alliance, Republic of Biesel" - var/citizenship = "Republic of Biesel" - -/obj/item/clothing/accessory/badge/fluff/bell_badge/verb/read() - set name = "Review credentials" - set category = "Object" - set src in usr - - to_chat(usr, "\icon[] []: The detective's credentials show:") - to_chat(usr, "The investigator registered to the credentials is [investigator].") - to_chat(usr, "The assignment registered on the card is [occupation].") - to_chat(usr, "The birth date on the card displays [birth_year].") - to_chat(usr, "The citizenship registered on the card is [citizenship].") - to_chat(usr, "The systems that the credentials show the user is licensed to investigate in are [licensed_systems].") - to_chat(usr, "Additional endorsements registered on the card show: [supplementary_endorsements].") - return - - -/obj/item/clothing/head/beret/engineering/fluff/karlan_beret //Family Beret - Kar'lan Sel'ler - toasterstrudes - name = "family beret" - desc = "A brown beret with an orange patch. The patch have the initials; \"K.S.\" sewn into it." - icon = 'icons/obj/custom_items/karlan_beret.dmi' - icon_state = "karlan_beret" - item_state = "karlan_beret" - contained_sprite = TRUE - - /obj/item/clothing/under/fluff/guskov_uniform //Tajaran Service Uniform - Guskov Andrei - fireandglory name = "tajaran service uniform" desc = "This is obviously a military service uniform, there are signs that it is of Tajaran make, modified to be a bit less warm, although it doesn't look like any uniform used by the People's Republic of Adhomai." @@ -880,17 +352,6 @@ All custom items with worn sprites must follow the contained sprite system: http playsound(src.loc, "pageturn", 50, 1) -/obj/item/clothing/suit/storage/toggle/fluff/fay_jacket //Emergency Response Team Duty Jacket - Fai Sinsa - soundscopes - name = "emergency response team duty jacket" - desc = "A militaristic duty jacket worn by members of the NanoTrasen Emergency Response Teams. The nameplate reads: \"Tpr Sinsa\"." - icon = 'icons/obj/custom_items/fai_jacket.dmi' - icon_state = "fai_jacket" - item_state = "fai_jacket" - icon_open = "fai_jacket_open" - icon_closed = "fai_jacket" - contained_sprite = TRUE - - /obj/item/clothing/under/fluff/faysal_uniform //Old Tajaran Nobleman Suit - Faysal Al-Shennawi - alberyk name = "old tajaran nobleman suit" desc = "A fancy looking suit, made of white line, adorned with golden details and buttons bearing long forgotten meanings. A blue sash decorates this piece of clothing." @@ -941,25 +402,6 @@ All custom items with worn sprites must follow the contained sprite system: http w_class = 3 -/obj/item/clothing/suit/fluff/eul_robe //Well Made Robe - Uelak Eul - lordraven001 - name = "well made robe" - desc = "A well made brown robe fashioned from viscose fabric with a white jabot dangling from the neck. There is a tail whole cut out in the back and the sleeves and lower skirt of the robe have been elongated. \ - It looks old from wear and tear." - icon = 'icons/obj/custom_items/eul_clothing.dmi' - icon_state = "eul_robe" - item_state = "eul_robe" - body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS - contained_sprite = TRUE - -/obj/item/clothing/glasses/regular/fluff/eul_glasses //Chained Wooden Spectacles - Uelak Eul - lordraven001 - name = "chained wooden spectacles" - desc = "A pair of wooden spectacles with a long bronze chain out the back of them. They have been bejeweled by benitoite and look elder from use." - icon = 'icons/obj/custom_items/eul_clothing.dmi' - icon_state = "eul_glasses" - item_state = "eul_glasses" - contained_sprite = TRUE - - /obj/item/clothing/accessory/poncho/fluff/flaming_poncho //Stitched Heart White Poncho - Flaming Hearts Love Stars - sleepywolf name = "stitched heart white poncho" desc = "A white poncho stitched together shoddily, with a pink heart made of flame patterned on the front. The fabric is rough, like chainmail." @@ -989,26 +431,6 @@ All custom items with worn sprites must follow the contained sprite system: http icon_state = "oz_plushie" -/obj/item/clothing/suit/storage/fluff/vizili_mantle //Maraziite Throw Over - Urzkrauzi Vizili - marlonphoenix - name = "maraziite throw over" - desc = "A worn, grey poncho exclusively worn by members of the Maraziite Order." - icon = 'icons/obj/custom_items/vizili_clothing.dmi' - icon_state = "vizili_mantle" - item_state = "vizili_mantle" - contained_sprite = TRUE - -/obj/item/clothing/mask/fluff/vizili_mask //Iron Mask - Urzkrauzi Vizili - marlonphoenix - name = "iron mask" - desc = "A mask made of iron worn by members of the Maraziite Order. It can strike dread in the hearts of Unathi that don't toe the line of Sk'akh orthodoxy." - icon = 'icons/obj/custom_items/vizili_clothing.dmi' - icon_state = "vizili_mask" - item_state = "vizili_mask" - contained_sprite = TRUE - flags_inv = HIDEEARS|HIDEFACE - body_parts_covered = FACE - w_class = 3.0 - - /obj/item/reagent_containers/food/drinks/teapot/fluff/brianne_teapot //Ceramic Teapot - Sean Brianne - zelmana name = "ceramic teapot" desc = "A blue ceramic teapot, gilded with the abbreviation for NanoTrasen." @@ -1016,14 +438,6 @@ All custom items with worn sprites must follow the contained sprite system: http icon_state = "brianne_teapot" -/obj/item/reagent_containers/food/drinks/flask/fluff/nasser_flask //Workers Flask - Nasser Antonov - sonicgotnuked - name = "workers flask" - desc = "A steel fold down flask that is dented and scratched. It looks like some parts are welded together, making it so it can not fold down anymore. It smells strongly of vodka.." - icon = 'icons/obj/custom_items/nasser_flask.dmi' - icon_state = "nasser_flask" - volume = 55 - - /obj/item/clothing/head/beret/engineering/fluff/make_beret //Tan Engineering Beret - M.A.K.E - toasterstrudes name = "tan engineering beret" desc = "An engineering beret that appears to have been dyed tan, with an orange patch sewn into the middle of it." @@ -1077,15 +491,6 @@ All custom items with worn sprites must follow the contained sprite system: http icon_state = "leonce_cognac" -/obj/item/clothing/under/fluff/birkin_uniform //White Suit - Joseph Birkin - unknownmurder - name = "white suit" - desc = "This collared uniform appears to be little wrinkled and the tie is a bit loose from the collar. The jean seems to be neatly straight with the leather belt attached." - icon = 'icons/obj/custom_items/birkin_uniform.dmi' - icon_state = "birkin_uniform" - item_state = "birkin_uniform" - contained_sprite = TRUE - - /obj/item/clothing/suit/storage/fluff/sonorous_mantle //Maraziite Throw Over - Sonorous Zouzoror - sleepywolf name = "maraziite throw over" desc = "A grey poncho, exclusively warn by members of the Maraziite Order. This one has the flag of the Izweski Hegemony stitched on." @@ -1218,23 +623,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/under/rank/medical/fluff/jurlkiitajr_scrubs //IAC Scrubs - Rajii'rkalahk Jurlkiitajr - marlonphoenix - name = "\improper IAA scrubs" - desc = "A change of sterile medical scrubs worn by IAC workers. This one is specific for Tajara Aid workers." - icon = 'icons/obj/custom_items/jurlkiitajr_items.dmi' - icon_state = "jurlkiitajr_scrubs" - item_state = "jurlkiitajr_scrubs" - contained_sprite = TRUE - -/obj/item/clothing/suit/apron/surgery/fluff/jurlkiitajr_vest //IAC Vest - Rajii'rkalahk Jurlkiitajr - marlonphoenix - name = "\improper IAA vest" - desc = "A vest designed to distinguish medical workers in the Interstellar Aid Corps." - icon = 'icons/obj/custom_items/jurlkiitajr_items.dmi' - icon_state = "jurlkiitajr_vest" - item_state = "jurlkiitajr_vest" - contained_sprite = TRUE - - /obj/item/clothing/under/fluff/zilosnish_uniform //Exotic Purple Robe - Zilosnish Szu - sleepywolf name = "exotic purple robe" desc = "An extravagant display of wealth, hand-tailored with Unathi craftmanship. There are intricate designs of hammers, cactus flowers, and coins etched into the cloth." @@ -1268,53 +656,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/glasses/regular/fluff/harley_glasses //Chic Sunglasses - Harley O'Ryan - ornias - name = "chic sunglasses" - desc = "A relatively expensive set of Phoenixport-manufactured sunglasses. They do not look like they would provide much protection." - icon = 'icons/obj/custom_items/harley_clothing.dmi' - icon_state = "harley_glasses" - item_state = "harley_glasses" - contained_sprite = TRUE - -/obj/item/clothing/under/fluff/harley_uniform //Phoenixport Shirt - Harley O'Ryan - ornias - name = "\improper Phoenixport shirt" - desc = "A white t-shirt with the writing \"Eiffel Tower Diner\" on it in a small font, below a recreation of the famous monument in question, the Eiffel Tower." - icon = 'icons/obj/custom_items/harley_clothing.dmi' - icon_state = "harley_uniform" - item_state = "harley_uniform" - contained_sprite = TRUE - -/obj/item/clothing/under/fluff/harley_uniform/verb/change_tshirt() - set name = "Change the shirt style" - set desc = "Change the style of your shirt." - set category = "Object" - set src in usr - - if (use_check_and_message(usr)) return - - var/style = input("You change the shirt to;","Change the shirt style") as null|anything in list("Eiffel Tower Diner","Pyramids of Giza Café","Phoenixport","New Parthenon") - switch(style) - if("Eiffel Tower Diner") - item_state = "harley_uniform" - desc = "A white t-shirt with the writing \"Eiffel Tower Diner\" on it in a small font, below a recreation of the famous monument in question, the Eiffel Tower." - - if("Pyramids of Giza Café") - item_state = "harley_uniform_1" - desc = "A white t-shirt with \"GIZA CAFÉ\" written in large, retro font, with a small background. It looks slightly well-worn." - - if("Phoenixport") - item_state = "harley_uniform_2" - desc = "A black vintage shirt with \"PHOENIXPORT\" written on it in a font. A small icon of an orange phoenix is perched on the \"O\"." - - if("New Parthenon") - item_state = "harley_uniform_3" - desc = "A grey t-shirt with a stylistic white, faded depiction of the Parthenon on it. It has been cut in half, displaying the inside, with sections clearly labelled in small font." - - usr.update_inv_w_uniform() - usr.visible_message("[usr] fumbles with \the [src], changing the shirt..", - "You change \the [src]'s style to be '[style]'.") - - /obj/item/clothing/gloves/watch/fluff/rex_watch //Engraved Wristwatch - Rex Winters - tailson name = "engraved wristwatch" desc = "A fine gold watch. On the inside is an engraving that reads \"Happy birthday dad, thinking of you always\"." @@ -1331,22 +672,6 @@ All custom items with worn sprites must follow the contained sprite system: http icon_off = "hadley_camera_off" -/obj/item/clothing/accessory/medal/silver/fluff/kalren_medal //Silver Star of Merit - Kalren Halstere - brutishcrab51 - name = "silver star of merit" - desc = "The Biesel Silver Star of Merit, rewarded for bravery and professionalism in the line of duty." - icon_state = "silver_sword" - - -/obj/item/clothing/mask/gas/fluff/karihaakaki_mask //Wooden Mask - Keziah Green/Karihaakaki - dronzthewolf - name = "wooden mask" - desc = "A wooden mask for non-human proportions, it has craftsmanship of uncanny precision." - icon = 'icons/obj/custom_items/karihaakaki_mask.dmi' - icon_state = "karihaakaki_mask" - item_state = "karihaakaki_mask" - species_restricted = list("Vox") - contained_sprite = TRUE - - /obj/item/storage/wallet/fluff/muhawir_wallet //Pineapple Wallet - Muhawir Nawfal - menown name = "pineapple wallet" desc = "A rather small, cheaply made felt wallet with a zipper near the top. It looks like a pineapple." @@ -1364,16 +689,6 @@ All custom items with worn sprites must follow the contained sprite system: http icon_state = "sukhoi_folder" -/obj/item/clothing/suit/fluff/diamond_cloak //Ragged Purple Cloak - Diamond With Flaw - burgerbb - name = "ragged purple cloak" - desc = "An old, worn down cloak that smells of dirt and stories." - icon = 'icons/obj/custom_items/diamond_cloak.dmi' - icon_state = "diamond_cloak" - item_state = "diamond_cloak" - body_parts_covered = UPPER_TORSO|LOWER_TORSO - contained_sprite = TRUE - - /obj/item/fluff/jennifer_wardrobe_kit //Portable Wardrobe Kit - Jennifer Beal - synnono name = "portable wardrobe kit" desc = "A kit containing a change of casual clothes, packaged for easy transport. This one advertises some sort of cartoon featuring slimes. It is labeled \"J. Beal.\"" @@ -1489,87 +804,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/accessory/badge/fluff/jamie_tags //Elyran Navy Holotags - Jamie Knight - superballs - name = "elyran navy holotags" - desc = "A pair of standard issue holotags issued to all Elyran servicemen. The tags read, \"KNIGHT JAMES 627810021-EN O-NEG CATHOLIC\". \ - Contains both analog and digital information on the serviceman. The digital information seems to be deactivated and non-functional." - icon = 'icons/obj/custom_items/jamie_tags.dmi' - icon_state = "jamie_tags" - item_state = "jamie_tags" - stored_name = "Knight, James" - badge_string = "Elyran Navy" - contained_sprite = TRUE - slot_flags = SLOT_MASK | SLOT_TIE - var/separated = FALSE - -/obj/item/fluff/jamie_tag //Single Elyran Navy Holotag - Jamie Knight - superballs - name = "elyran navy holotag" - desc = "A single tag of a set of holotags issued to all Elyran servicemen. The tags read, \"KNIGHT JAMES 627810021-EN O-NEG CATHOLIC\". \ - Contains both analog and digital information on the serviceman. The digital information seems to be deactivated and non-functional. It is missing it's other pair." - icon = 'icons/obj/custom_items/jamie_tags.dmi' - icon_state = "jamie_tag" - w_class = 1 - -/obj/item/clothing/accessory/badge/fluff/jamie_tags/update_icon() - if(separated) - icon_state = "[icon_state]_single" - item_state = "[item_state]_single" - else - icon_state = initial(icon_state) - item_state = initial(item_state) - -/obj/item/clothing/accessory/badge/fluff/jamie_tags/verb/separate() - set name = "Retrieve the Fallen" - set category = "Object" - set src in usr - - if(use_check_and_message(usr)) return - - if(src.separated) - return - - usr.visible_message("[usr] yanks apart \the [src]!") - var/obj/item/fluff/jamie_tag/tag = new(get_turf(usr)) - usr.put_in_hands(tag) - src.separated = TRUE - src.update_icon() - -/obj/item/clothing/accessory/badge/fluff/jamie_tags/attackby(var/obj/item/fluff/jamie_tag/W, var/mob/user) - if(src.separated && istype(W)) - qdel(W) - src.separated = FALSE - src.update_icon() - else - ..() - - -/obj/item/clothing/under/fluff/halstere_uniform //Martian Militia Dress Uniform - Kalren Halstere - brutishcrab51 - name = "martian militia dress uniform" - desc = "A brick-red uniform with golden shoulder-scrubbers, a crisp tie, and golden buttons, complete with steel-grey slacks. An image of Olympus Mons is stamped on the left bicep." - icon = 'icons/obj/custom_items/halstere_clothing.dmi' - icon_state = "halstere_uniform" - item_state = "halstere_uniform" - contained_sprite = TRUE - -/obj/item/clothing/head/fluff/halstere_cap //Martian Militia Dress Cap - Kalren Halstere - brutishcrab51 - name = "martian militia dress cap" - desc = "A red and black peak cap with a golden Officer Corps indicator on the brow." - icon = 'icons/obj/custom_items/halstere_clothing.dmi' - icon_state = "halstere_cap" - item_state = "halstere_cap" - contained_sprite = TRUE - -/obj/item/clothing/suit/storage/toggle/fluff/halstere_coat //Martian Militia Officer Coat - Kalren Halstere - brutishcrab51 - name = "martian militia officer coat" - desc = "A decorated military coat with an aiguillette, arm-bars, and golden buttons. Made of a thick material." - icon = 'icons/obj/custom_items/halstere_clothing.dmi' - icon_state = "halstere_jacket" - item_state = "halstere_jacket" - icon_open = "halstere_jacket_open" - icon_closed = "halstere_jacket" - contained_sprite = TRUE - - /obj/item/clothing/head/beret/fluff/chunley_beret //Sol's Dog Handler Beret - Freya Chunley - thesmiley name = "sol's dog handler beret" desc = "A scarlet military beret worn by the Sol Alliance Military Police dog handling unit. The symbol on the cap is that of a grey wolf's head on white. It quivers menacingly. \ @@ -1580,35 +814,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/clothing/suit/storage/fluff/keorat_mantle //Worn Maraziite Shroud - Iksaeors Keorat - dasfox - name = "worn maraziite shroud" - desc = "A brown, armored looking trenchcoat. There appears to be a fur cloak over the top of it, draping down to the sleeve. The cloak shows the obvious insignia of the Maraziite Order upon it. It looks worn." - icon = 'icons/obj/custom_items/keorat_clothing.dmi' - icon_state = "keorat_mantle" - item_state = "keorat_mantle" - contained_sprite = TRUE - -/obj/item/clothing/mask/fluff/keorat_mask //Charred Iron Mask - Iksaeors Keorat - dasfox - name = "charred iron mask" - desc = "This is an iron mask used by those of the Maraziite Order. It appears to be entirely charred, perhaps there's a story behind that." - icon = 'icons/obj/custom_items/keorat_clothing.dmi' - icon_state = "keorat_mask" - item_state = "keorat_mask" - contained_sprite = TRUE - flags_inv = HIDEEARS|HIDEFACE - body_parts_covered = FACE - w_class = 3 - - -/obj/item/crowbar/fluff/grajahn_crowbar //Crowbar of Divine Strength - Es'tana Grajahn - ezuo - name = "crowbar of divine strength" - desc = "An ordinary crowbar that has been painted red, and had some lights rigged to it. It pulsates a yellow light." - icon = 'icons/obj/custom_items/grajahn_crowbar.dmi' - icon_state = "grajahn_crowbar" - item_state = "grajahn_crowbar" - contained_sprite = TRUE - - /obj/item/storage/wallet/fluff/raymond_wallet //Black Leather Wallet - Raymond Hawkins - aboshehab name = "black leather wallet" desc = "A sleek black leather wallet, with the initials of \"J.H.\" visible at the front side. It's got an old yet maintained look to it." @@ -1709,56 +914,6 @@ All custom items with worn sprites must follow the contained sprite system: http contained_sprite = TRUE -/obj/item/paper/fluff/jawdat_paper //Manifesto of the PRA - Rrazujun Rrhazkal-Jawdat - marlonphoenix - name = "manifesto of the PRA" - desc = "This is the manifesto of the People's Republic of Adhomai, written by many different Tajara thinkers in the 2430's. Depending on who you ask it is either an enlightening document that showcases the great \ - intellectual and cultural genius of Tajara civilization, or a dense collection of gibberish commie nonsense." - icon = 'icons/obj/custom_items/jawdat_paper.dmi' - icon_state = "jawdat_paper" - info = "