Ok Custom item stuffs

This commit is contained in:
SoundScopes
2015-11-23 09:38:42 +00:00
parent 7c4366aa8f
commit 775d8fac02
6 changed files with 58 additions and 0 deletions
+58
View File
@@ -1359,3 +1359,61 @@ END R I P HAZERI
/obj/item/weapon/soap/fluff/jace_toothbrush/attack(mob/target as mob, mob/user as mob)
return
// Inis Truesight's Medical Wristband - Gollee
/obj/item/clothing/gloves/fluff/inis_medicalwristband
name = "medical wristband - EPILEPSY"
desc = "A stainless steel tag on a plastic wristband. The tag reads 'ABSENCE EPILEPSY-2U CITALOPRAM'"
icon = 'icons/obj/custom_items/inis_medicalwristband.dmi'
icon_state = "inis_medicalwristband"
contained_sprite = 1
species_restricted = list("exclude") // So that any species can wear it (It's a wristband, not full-fingered gloves).
sprite_sheets = list() // To remove the 'Vox' entry that would override the sprite if worn by a vox
gender = "neuter" // Makes it read 'Has a medical wristband on his hands' instead of 'Has some medical wristband on his hands'
// Halo O'Kyle's Research Notebook - Nogo3
/obj/item/weapon/folder/fluff/halo_researchnotebook
name = "research notebook"
desc = "A plain notebook with a blue binding that has 'RESEARCH NOTES' sprawled on the cover, and the letters 'H.K.' dotting the bottom right. Post-it notes and loose papers stick out haphazardly, and it looks like it's been repaired with tape more than once."
icon = 'icons/obj/custom_items/halo_researchnotebook.dmi'
icon_state = "halo_researchnotebook"
contained_sprite = 1
// Lua Saudosa's 'Lucky' chip - Killerhurtz
/obj/item/fluff/lua_luckychip
name = "'Lucky' chip"
desc = "A round, grey, plastic object - a chip or coin of some sort. On one side there is a logo engraved into it, though it is not familiar. On the other, the words 'One key, ten thousand minds' surround engraved text much too small to read."
icon = 'icons/obj/custom_items/lua_luckychip.dmi'
icon_state = "lua_luckychip"
contained_sprite = 1
slot_flags = SLOT_EARS
// Miko Du'Razhu's sake bottle - Jakers457
/obj/item/weapon/reagent_containers/food/drinks/bottle/fluff/miko_sakebottle
name = "sake bottle"
desc = "A stone bottle of Sake with a Blue Moon painted on it."
icon = 'icons/obj/custom_items/miko_sakebottle.dmi'
icon_state = "miko_sakebottle"
isGlass = 0 // Description says stone bottle, not glass
New()
..()
reagents.add_reagent("sake", 100)
// Lori Alvarez's pink screwdriver - NebulaFlare
/obj/item/weapon/screwdriver/fluff/lori_pinkscrewdriver
name = "Pink Screwdriver"
desc = "A pink screwdriver. 'Margrite' is etched into the handle."
icon = 'icons/obj/items.dmi'
icon_state = "screwdriver3"
item_state = "screwdriver_purple"
/obj/item/weapon/screwdriver/fluff/lori_pinkscrewdriver/New()
if (prob(75))
src.pixel_y = rand(0, 16)
return