From db7589be291d20875fe1c3b76791f50cc364c900 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Wed, 28 Sep 2016 13:25:58 -0300 Subject: [PATCH] Custom items 27/09/2016 (#1017) Items included in this update: Atlas Overcoat - Vittorio Giurifiglio - tytostyris CERN Labcoat - Helmut Kronigernischultz - pyrociraptor Marching Sandals - Sslazhir Yinzr - alberyk Jeweled Broach - Aji'Rah Laikov - nebulaflare Akela's Family Photo - Akela Ha'kim - moltenkore Also tweaked sprite to Sayyidah's dress and some naming with items. --- code/modules/customitems/item_defines.dm | 73 ++++++++++++++++++--- icons/obj/custom_items/akela_photo.dmi | Bin 0 -> 1231 bytes icons/obj/custom_items/helmut_labcoat.dmi | Bin 0 -> 1181 bytes icons/obj/custom_items/laikov_broach.dmi | Bin 0 -> 1928 bytes icons/obj/custom_items/sayyidah_dress.dmi | Bin 683 -> 685 bytes icons/obj/custom_items/vittorio_jacket.dmi | Bin 0 -> 706 bytes icons/obj/custom_items/yinzr_sandals.dmi | Bin 0 -> 1188 bytes 7 files changed, 65 insertions(+), 8 deletions(-) create mode 100644 icons/obj/custom_items/akela_photo.dmi create mode 100644 icons/obj/custom_items/helmut_labcoat.dmi create mode 100644 icons/obj/custom_items/laikov_broach.dmi create mode 100644 icons/obj/custom_items/vittorio_jacket.dmi create mode 100644 icons/obj/custom_items/yinzr_sandals.dmi diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index c2777808970..e27162f877e 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1,6 +1,9 @@ /// Aurora custom items /// -// Add custom items to this file, their sprites into their own dmi. in the icons/obj/custom_items -// Clothing items will probably require contained sprites +/*basic guidelines: +Custom items must be accepted at some point in the forums by the staff handling them. +Add custom items to this file, their sprites into their own dmi. in the icons/obj/custom_items. +All custom items with worn sprites must follow the contained sprite system: http://forums.aurorastation.org/viewtopic.php?f=23&t=6798 +*/ /obj/item/clothing/accessory/fluff/antique_pocket_watch //Antique Pocket Watch - Eric Derringer - xelnagahunter - Done name = "antique pocket watch" @@ -23,7 +26,7 @@ /obj/item/clothing/head/soft/sec/corp/fluff/mendoza_cap //Mendoza's cap - Chance Mendoza - loow - DONE - name = "Mendoza's corporate security cap" + name = "well-worn corporate security cap" desc = "A baseball hat in corporate colors.'C. Mendoza' is embroidered in fine print on the bill. On the underside of the cap, in dark ink, the phrase 'Gamble till you're Lucky!' is written in loopy cursive handwriting." @@ -339,7 +342,7 @@ /obj/item/weapon/fluff/moon_baton //Tiger Claw - Zander Moon - omnivac - DONE name = "tiger claw" - desc = "A small energy dagger given to Golden Tigers." + desc = "A small cerimonial energy dagger given to Golden Tigers." icon = 'icons/obj/custom_items/moon_baton.dmi' icon_state = "tigerclaw" item_state = "tigerclaw" @@ -364,7 +367,7 @@ icon_state = initial(icon_state) item_state = icon_state slot_flags = initial(slot_flags) - attack_verb = list() + attack_verb = list("prodded") user.regenerate_icons() @@ -438,7 +441,7 @@ icon_state = "kir_bandanna" item_state = "kir_bandanna" contained_sprite = 1 - + /obj/item/clothing/suit/storage/toggle/bomber/fluff/ash_jacket //Hand-me-down Bomber Jacket - superballs - Ash LaCroix - DONE name = "hand-me-down bomber jacket" @@ -488,8 +491,8 @@ icon_state = "stone_ring" item_state = "stone_ring" contained_sprite = 1 - - + + /obj/item/clothing/under/dress/fluff/sayyidah_dress //Traditional Jumper Dress - Sayyidah Al-Kateb - alberyk - DONE name = "traditional jumper dress" desc = "A light summer-time dress, decorated neatly with black and silver colors, it seems to be rather old." @@ -497,3 +500,57 @@ icon_state = "sayyidah_dress" item_state = "sayyidah_dress" contained_sprite = 1 + + +/obj/item/clothing/suit/storage/fluff/vittorio_jacket //Atlas Overcoat - Vittorio Giurifiglio - tytostyris - DONE + name = "atlas overcoat" + desc = "A classy black militaristic uniform, which is adorned with a sash and an eagle." + icon = 'icons/obj/custom_items/vittorio_jacket.dmi' + icon_state = "vittorio_jacket" + item_state = "vittorio_jacket" + contained_sprite = 1 + + +/obj/item/clothing/suit/storage/toggle/labcoat/fluff/helmut_labcoat //CERN Labcoat - Helmut Kronigernischultz - pyrociraptor - DONE + name = "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 = 1 + + +/obj/item/clothing/shoes/jackboots/unathi/fluff/yinzr_sandals //Marching Sandals - Sslazhir Yinzr - alberyk - DONE + 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 = 1 + + +/obj/item/clothing/accessory/fluff/laikov_broach //Jeweled Broach - Aji'Rah Laikov - nebulaflare - DONE + 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 = 1 + +/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/weapon/fluff/akela_photo // Akela's Family Photo - Akela Ha'kim - moltenkore - DONE + 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'." + icon = 'icons/obj/custom_items/akela_photo.dmi' + icon_state = "akela_photo" + w_class = 2 diff --git a/icons/obj/custom_items/akela_photo.dmi b/icons/obj/custom_items/akela_photo.dmi new file mode 100644 index 0000000000000000000000000000000000000000..3985c92f4be2806107f60546a103cb1440bc6e0d GIT binary patch literal 1231 zcmV;=1Tg!FP)ErY9?&;;*(L`?&$UN@34+?gij^0 zepJ<$YtfZyp>9WySubN(O?7p1xVp7NLPJPPOFce5YHDiN*Vg&?_Vx1Z_V)1Z>fxq+ zT!&92wUm0vpn%AuhNpyRiBBV6RZTuSK5}bw$jQiASy_UCfx*JSJUBC*l!pEN{`L0u z)zHS1ZcBPfC5dB1drvKsVKr@DQAAHeLR&zyv9r6oyUNMPpQN!-QAlrBGLn5)nSxe% zWJ79LJ5yCwcw$1LfKQx*R##b5XkbulXkJHIMkP)oWM5;+%E`{n%Xx&fdwFnkTs(SR zGKOO-Xi+nff@oiDcx+opv4~xhppZ3nl`l$BKwW5UYHhBkud1xA!^FhL#l@PSsg{(F zd1OJ0Z&;LcWpi9Pm5h2-TVh;#dw!FTgrTBHUSf20bar}sTUuD4otVkQzrw=7j+B+4 ztFWV?n1F3gfo)BXhH|O0w@y=3NM2QYi-Apih5$E8Xiq?DV_Z*8PFYq|Xk=kzWMpM! zWmj2RU}I!!ZEj#+TwYvRXJ}|cR8dX_dq^Gt0004W zQchCV=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ> zRWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5DKR@WCo#StBflhHiHkEOv#1y- zYRJWzR+N~V3SlcNxca$(4F>=K100e@>PJ2R00A#aL_t(IjbmUK1tbARCT12^Hg*n9 zE^ba9UOs*SK_OHH!Xlz#;u4Zl(lRo#a`Fm_@=D663RG0p)HO7J5Uwu z+_ihp-hKNI96WUR$kAiRPn~|KQ=H t$4{O@$m3RM@OZkqNAgu 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 literal 0 HcmV?d00001 diff --git a/icons/obj/custom_items/sayyidah_dress.dmi b/icons/obj/custom_items/sayyidah_dress.dmi index 4e99764acd2da831631459c05f8d69da9c512480..dd133411133c248231f89c32faba70f177379e12 100644 GIT binary patch delta 436 zcmV;l0Zaa?1+4|J1Ob1PNklu$p!425IBTwKzoA@BdJ1KRD+Fd(vM+Qgx) znjVKwwxh}{%hc4={}KopKc#?iU!mfC4QP~920;(|#v0ytpo~c`aHWVo-&TAJWQ;V1 zz!oCdEUU$oT_^N&kH{66NBRPoLE8U)1}lK}laqR+o275#rD{{%0+uLk^^2Y)O2 z%X(iI@PrDl(__>eg{A`0Cm5kM6yw$ zy59znYBag-|8@_M-s>Vi{?otLMgH{}OifKqP5li$RsbPt5kdg0kKz5dH4!WyVblKW zHcHr>a{y@B`yYQ60bfIyMFCWCj!`+b+N}mS}g53vh0aC3>C!q#jT$14=zO z1JJ3-JRmh$p8%v|LpTmT;yA*>oi4fn_Xt46M<|Sd`!FESl!4g6EY5Bez5+)8@kSp+ zEdvq!D{c?~eh*m70K@KK7?9@g(CR^`jOTp-emG9^^A9WlsFnep12m`av*UT={Lm55 e(B&CSmGl91au*b|013PR0000u$p!425IBTwKzoA@BdJ1D5?721FK3n>e&l z)8p{Tc2${WnVOpVUjiZHRSFpQ6)N7>fJRAW5cIHbtl@nJ%9!*5SBmKKZN;}h#zsk!+Nx z?zaJ?8cnYIzug0*bKT^}fBJLXl2Y{A+{$+m=AO>xNfHec8V^gqBW0O$5tqW1+r>H*a7onpi~v-8gu)1T4g<0Rv4dHh-6&kyI}NQqh*}0B z_%m<_0O0q4wG1%qKA$rO3EqcR4?<-;?*s6|ahjih06;3W4Cor5IelLp&l~55j(~=4 c&tR&g4`hZH5E8uNGXMYp07*qoM6N<$g6FEwZ~y=R diff --git a/icons/obj/custom_items/vittorio_jacket.dmi b/icons/obj/custom_items/vittorio_jacket.dmi new file mode 100644 index 0000000000000000000000000000000000000000..02ddc9055f6ee30f6c5eb309c0864fa2d45d1b58 GIT binary patch literal 706 zcmV;z0zLhSP)P)t-s_lox} zGcIs)a5XhGA0ZzmC?C13ymC^BGNU|e^1 zFL8o`D=jNE9u8417LAsT_lox*`Elj|0004WQchCV=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pS zoZ^zil2jm5sVuXkB)=##KRzolIXksPiHkEOv#1y-W5~ssR+N~V3Sr|?A75OG&|-q3 zMOnes&jsuz0HpISl@&;?sQ>^0oJmAMR9J=Wm*H;0FbsrK?5=6&3iu1Q*}4$D3ldm?|HOX8ZG%qyE!gl(Hn3L~j{NAhF_A$-jK-kh}KMy7r?w_B$ ztEWWq7z_XX35sb?q>ZNB(T|zVP@pB~zBfx@>dDR^J8edVd2?79=KQTp&ABf1_=J6+ z=!Pl#^h`1r#+kD9U0r=FLjC^K{k#V(Z~tIOIG_Kob0tIi*V3}v9j_D_UVPzu%Q&M; zJ^ka4d%8C>Y7af~vMLbVFTU=bM~BbxS67@bXUQ}aSCtDjEYj%ud%Sn6>gwdb-yT1W zcV_>)TR4!>{IYh?RW`F;h{okgZ zk)iwS-ET4ss#8z?y=$cF+I!^L6^|UxtI8Fze|JRWvQq zl%=w4#l(m!{{NEerFL!D;4rIRN$Y_IavH;t^oSDvxYc^sl=JVt#&MOHFMkEJGGIPq z*|(?Pi*F=zFzpxpu^h2uVxZ6CKKI$0YU|Nr0@$fc_jwanDe e|M!>Ak{&0-UR!=jz6>mO7(8A5T-G@yGywoSI3LCU literal 0 HcmV?d00001