From 128c014e06c89995c515cdaef06411b1271657df Mon Sep 17 00:00:00 2001 From: naut <55491249+nauticall@users.noreply.github.com> Date: Mon, 13 May 2024 03:02:33 +0800 Subject: [PATCH] Aayun Kaiser's custom ESS rig (#19117) Adds Aayun Kaiser (Lmwevil's character)'s custom item into the game: a prototype ESS suit clad in black and purple. Comes with a nice built-in scarf. Additionally mods the stock offworlder ESS rig to be able to dispense RMT. See https://forums.aurorastation.org/topic/20316-aayun-kaisers-prototype-scarab-ess/ for relevant canon app. ![image](https://github.com/Aurorastation/Aurora.3/assets/55491249/4f4c7f15-90e8-4b7d-b822-d8a43f99b0f4) ![image](https://github.com/Aurorastation/Aurora.3/assets/55491249/baecc922-4476-42eb-a8a7-9654d61e0e88) ![image](https://github.com/Aurorastation/Aurora.3/assets/55491249/e37b8189-2b6b-420a-9b15-b125522dbffc) ![image](https://github.com/Aurorastation/Aurora.3/assets/55491249/de84dffe-3c78-45d9-8367-33626903fb95) --- .../spacesuits/rig/modules/utility.dm | 5 +- code/modules/customitems/item_defines.dm | 20 ++++++ html/changelogs/nauticall-aayunsuit.yml | 59 ++++++++++++++++++ icons/obj/custom_items/aayun_suit.dmi | Bin 0 -> 7199 bytes 4 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/nauticall-aayunsuit.yml create mode 100644 icons/obj/custom_items/aayun_suit.dmi diff --git a/code/modules/clothing/spacesuits/rig/modules/utility.dm b/code/modules/clothing/spacesuits/rig/modules/utility.dm index df5c82fe460..25137278086 100644 --- a/code/modules/clothing/spacesuits/rig/modules/utility.dm +++ b/code/modules/clothing/spacesuits/rig/modules/utility.dm @@ -340,8 +340,9 @@ desc = "A complex web of tubing and needles suitable for hardsuit use." charges = list( - list("dexalin", "dexalin", /singleton/reagent/dexalin, 5), - list("inaprovaline", "inaprovaline", /singleton/reagent/inaprovaline, 5) + list("dexalin", "dexalin", /singleton/reagent/dexalin, 5), + list("inaprovaline", "inaprovaline", /singleton/reagent/inaprovaline, 5), + list("RMT supplement", "RMT supplement", /singleton/reagent/rmt, 25), ) interface_name = "chem dispenser" diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 51c91b0a4be..a2daeecad01 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -2036,3 +2036,23 @@ All custom items with worn sprites must follow the contained sprite system: http /obj/item/device/versebook/fluff/guilty_men/Initialize() . = ..() randomquip = file2list("code/modules/customitems/imogen_guiltymen.txt") + +/obj/item/rig/light/offworlder/fluff/aayun + name = "prototype exo-stellar skeleton module" + suit_type = "exoskeleton voidsuit" + desc = "A prototype exo-stellar skeleton suit, made of extremely expensive, custom-made and proprietary parts, allowing for the comfortable existence of an off-worlder in normal worlder conditions. \ + Features microdoses of medicine in the air supply to aid in lung pain, electrostimulants to assist in muscle rehabilitation, and innumerable other features. Unfortunately, due to design limitations, \ + it is only capable of maintaining a lower internal pressure when exposed to normal environments, and is not spaceworthy nor immune to environmental conditions. This particular model bears a small mark \ + of Zeng-Hu Pharmaceuticals on the main back piece, and was largely designed by a collaborative effort of experts in their fields on the Horizon. A new future for off-worlders, or a money pit?" + icon = 'icons/obj/custom_items/aayun_suit.dmi' + icon_state = "aayun_rig" + helm_type = /obj/item/clothing/head/lightrig/offworlder + chest_type = /obj/item/clothing/suit/lightrig/offworlder + glove_type = /obj/item/clothing/gloves/lightrig + boot_type = /obj/item/clothing/shoes/lightrig + + + + + + diff --git a/html/changelogs/nauticall-aayunsuit.yml b/html/changelogs/nauticall-aayunsuit.yml new file mode 100644 index 00000000000..a12e3a38458 --- /dev/null +++ b/html/changelogs/nauticall-aayunsuit.yml @@ -0,0 +1,59 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: nauticall + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added Aayun Kaiser's custom item, a custom offworlder ESS suit." + - qol: "The ESS injector module now comes with RMT." diff --git a/icons/obj/custom_items/aayun_suit.dmi b/icons/obj/custom_items/aayun_suit.dmi new file mode 100644 index 0000000000000000000000000000000000000000..4dd32c1e65ea8e9411d678e48d3042e963a1e97c GIT binary patch literal 7199 zcmbtZ2T&AIlb$695fI5qf&@jPNM->^N|q!UBxfXpz^;G@xa6E9N)D29#sCr|=O{sf zB4NQ@SoVhh?*6*_>+0&Nu4;E@X5YM?e*L4;yAWAp&x9f2w~YiE5wOOEK!z7tov~mZ$74jz&;6lTx0eR|d1OSYz zPZZ_#{Ih@M1iRec$@$VvI%j?uc(ngJ;?o@bagQaT1Ib2_D)D8KIXiX!4FA_qfZCLu zVY%^Hma2}AqRt0X&9*b|X#Nk+hVE`;ZaB9pj)>~}6eSd}YFxc!0d>`-9!i8sk()inKfhqj(C3ha(WUA7~^i#Y@Uw^t!$BGb8C#aPC-eD-!t+A#ctpfgVhzNy`$F7szY0rJ{-9!v&VK1NlVqsnG$V^32q} z;M_>{&lES`o}TwblH)M{x@d^emqOOF*3wW0xM`RvaMIua>KgpLQ#Kuxv{7$7ocC@i z|3+@Sk*P^H=Qh~gvFX8Oe*4e@<0&%{6N4`#>SG9F%|P@Tc1v4RH9ntv-bfXrANRs~ zT612BH*nyIo5skG=LU6@zN?&9p2cbw*fbHdj~86El{OqRQ_}DMbl?uQp#G$7U_IIHzlHLS8%{H_p4!aJkCDVLv3a(qi;s^XoHLdtc z#B0ur#Q2FElpjop2+99F| z8mxU0h!JrxZ)3Koff4-DV&y|e3cLetPLad1^Xe*6+aD*EMC$h4_&=U{bCe`nYe8eI z5P;)6P^Z4dabs;` z$~U%UPs`-T^;&>wk~>!_sZLF=BU>ERq~Y!0-^l`g067Z__deejt>0R2N8gf@L-r#~ z6bI4Gt56~_xU7=KoEvhlxZ~8Tjo_4gIlLxBqP*M*GLU7pOvSqXuKneYYlk)LX1dDH zYP~!N-2}D1wmEs)?|8H1f}Lx3hfLR~q;z$ei|15_rwJBiY~K&R$_|uI;#dotARTh< z>HG2WfC5^?!!YWE@{C21|)@WspaF*#Pox|YsXbDE`hXP6>Q;|RMANZa% zu}%#!Z~bNWKv#^hIvi#Pz2o8oGT61*j4kc2ztFYLIxqO-rJyBLdGFpNS_L&PANh}KgA6{#&oc#;IQ!3Q?>?qZN(j3Ar04GUU*m+k={2o0RS$6rVlpgUYVY{Gw$ak8`F#9d6hgh0506#)OXg$EB0!%EfE z2#Lx)|Dc7Nh#w{>&s8ayn}WUurS)vVaMket9iqO&|K%3d(J@@#hQmoPTw~Y%KA1A# zpTvg99!Hgl=-5u2w*=E2TYRDMV;n8ZDLt=x7|d1a-SBInN~S5`ezmtx{^+mXc&y}J z@O_;C_r@-P*sg%NL{FyR-|1WrKhvJ?F7!JAjK;l;Si?*nHif_uRGIHlYtsLf8zp{x~z;C?wPw?>6r47-{r)BkHKk5w{W?Jwdc({``S;- z5nl`P%FxOSzQ1M$j1GM(8Oi6fYC9xkr3@@A1Y((Cg?COinO0zmRJ!@A2RC`eoU^%r$kOBV3F3aC@#J5CZR)m0?~!wxd;8CkD9(jAHQ)Y@}Ty zG5I01Kq7}<=I+e#_6Iq?dN&H48CGTy_c}{!OpX89`SaE$njUZ8J2S8=B(wtZ%Ee%bad^BNKFkNbUx`VU6t}Aco)I&vL2eZV@DBXHFOW2g@J(krFi(2e)2Tt z1|paMC_PRt1Ow%#KgD#)WPKQ|ut0=P1*l5l5BaH98E}+4*{8aw96JU>y0&1^k7v4{ zAalpzK5pcoRd1Y;7cA-AR3h%#GL__zQn#?Ed7oOgq!SCO65dBu>h3|Y}@ zb4Ow>{Z4YLsC5rjSkzNG16*<6OEMFedx>81b>oN35@ATP#SIkdhJBAzQV-|=Kba-0 zqh#ah^bz(_E@EK(EHnNypG6`P(!=`B{)dJvZuFMj9;48ENQ}Lt67g+5p-8y{ck2&~-)#P= z>_K>xasjbf#dRQGcos2@W)9TDCwC`QaOs+Jof)N#EKULC`voG$Cs8)^pfF1Np7A3~ z1+i{%!E8-K`OG{8wFB4>>|&F1^CPnvQLh=Re>VaGUUn@7}4hMZD1M0eRbi5ikbX)AIcr|znxw*1PAfmp=X9Y}jC`#vER1@hlD z@_+tKwy7WK!rT6%7vzFS=C< z+55}K`o;GM>S~%LBA;Ctm;`83Q)`xxLW6&ZPLc!p0={*%bs%u!0Kb#*`6g-U?#m@B z9pK*oa)%+nYV3aIcf1X3b5Hqepb{%?2MVV2$U13{R4$-9U>yLd%`Lo*g5(V{Sse@r z@ZY)ZOSfvKx)L7=`XdbDM*M+zcOKi2|U&8eV8mxiYl1^-J? z!I;m##7jEhHO>~|`eKWRX$HnrzYlfB4cS48HqDgVYww&{J}0vTMaE)(`z+3NLT*$* zz^HJj3jAER9p{3vQT`GJ`Xe1Pxv?yfICZo2GO_JPhWQJNrVwGfX_)3LJni$!W6;@h z77H!@rb=ya;P$Ok@W*tf`N`L?T> zIvlr=t8Shgzf(a9ML|&|h4_pFVys9~vzsD~0gNvo$KZ%)npfGC#O?PyrNrhTN2PYz z;a_#E1X@D0#v19ru?E=WY;6geWD%HJ24TOdWzO!)gZRH>-Ym-+Re;AAOmZisD=!}1 z2Ozsr{sfk=LZ2lApq39r^Qjj)2u$U!iCp5|0h;q;dBMgt1Ox|nf`E(U-l&>750pXc z(Y@FN1+5_i`DO_LE4Y;?{Jxo)b~3nO7dTx?lE()_};!!3f`l+SY{4DR1% z#fWnczM|t3-tb+3^OD*t|9Mpn4_j_7KE;;b1p`mDGY^TD=F2hZCnCJ0{Jd{Ak zNH74{X2wdKhYk&a6R+#M{h6w_u&;5*eUn==W}OT87M2AT$u1ml}=g zE+*>eBJsg__~%RS{6Bc9V(q7!@!+`~&9U4UwqFa46?9p2uVG(n1X#1^o(P75y4OZg znzs8=gR99fAecuN`46^J6>Fn*5r5xa{``I6GHu9u5wkz>K+FVs`~B1^c=gR` zya#$Ak{sZ}#WHU!2j^A^cOkx2IfarWL0{O^rJ`D!WQfP-9U|FW zg|CKFVYm9{ekz_pud8!La6f*5R&-iNR^FShTHM-=f5qE1R!S~%jn9J?oI6TpWLCQe zFTA^tr0n))t(YI_K~sF&$)>gPZ|>jfdaTNIycf=Utwr!qiAAUL0N3FpCifmTi6Sxl zsLxMjyaa)Bw|I#ACpa}CLHyW^ZtPz0v+PY}dpGXf95 zXOnvcvYXpP^4j>a02Aci*ZZ8F1lf5UE3H5y>?NFsxbzOcO_fcXOcCW_uKiy+8viU8 z0#+l^wNUFe`?PIL!i`a_n?8)8sNHC8D070^D1l8#+s2TV%4XuE=$(^EYKss__O$G3 zNJcKdrqEUihv#4gRm6YZt*P;yihH%`4F}ub14bR+FG+vIn24!4p=MzHx$AA^EgcEw z*g}#l;gh@f{6i$IWD__v58f4Lx~A?vns%8y_v>`O3!<3L&e>1O3_fYkSopA(p($!N z()2il;aVpSs9Dp&{E1mrb-4jnTAD_Y^A_yp)Vjx=<+k&cixghlq$+pnAf~9{q4W2z zo;X)pRKsp+Xuhyw9hquuGUTLk*Lso(9D@W9dmw+Q#!B^2G+thW!}b-)8Y*xHgl>(&;;No*); z>!u-9fe)STGikn+CBg5>&V<(?Ng-sa6NyU|MCvNZ-unZ+upcwP!3SHfXu0dLw*{2! zl;;20E&Hc${iAkuB~qv>Dh$qTB2qhTg-dF6Iy)~mnouQKFMmms7`xd^q^e4DO;`a- zvJWer(uJs&KQhSmmlOCeb!G1qe}E8Y;0yh-5oZc5FQw3ZOad1CU@ipaP}3=m5*hIt z+6r}dn25I;-5!bGilB%BSNbo#yZ@%m|J>gDf8UajomhXphIut6$CJWO#q2+&k#3r( z@nd>zyKfk&$ki5#Y^hY7R}D)*jl1*=X9`At$#=Tj zj`HSjN2?m@ADTpgj0vt1f4qSmYQ~Sg&gEuc1_TYl;Qit`{5McF989q#5%-d-=V$@2 zH7K~*eY0dzpF+dvI*Ga${o$(KEi^Wk@Wj}j`tjBNL_?COl2PSA`K9-KADAW$qwPb$ zCTF6bfWzT>KW~5Vj`Ib{1Wj6%RwVr}FU}c@Y^5l(lpSs{`DIgD<^G#2cXar0N{8pb z;r>!h=d!OU^t+VBVhQze&-E0eO_!d{FetsXRx?f-H}tC$<#D#(r7RiwGL=xna^ag#K7Ud0g0Va0e~ z<4>aGYt{zr4cc~ouAhwGgG9u7n0}B<5nJmw6a_ zM7WK4Vk0E!Ey_mNVng+{n#c`Df{fv`O6)gidJSk18{3{Hv-U=^73M!v)j+&|P8w=W z%)V5+`2C0;`g3osLhg9nu!>zLfx2jq&js4vhpJd4SFqQVEPm)RlTq@DIy;1;P|24a4iwE%_oAxo0z+ET~|hcsIVq6lPCn`pUJH5$-;O3`i3(b(VmjMbY&D=g39?W9NKlLPxmQ0UW00AR6r$J z6t%`gWzZxDE*nlxa3aC&Vl{Iv^_JdtTu_xi^J1fso*Q|zgk9yO63mxn!?`YfdgwUm zx|_f)@0hK8;=v&HDoD&o!`{#Wz0A8^_4Fl3;u6zH#HjA!0)o=8!%ie$PG1kKS?$x~ z<59}SxY0xj<&W`IAF=@$0YO*zCQ-8MDPT~5nVtV|+AdV_XQXvbR zo(nJU91(5)gkzABCo9Y%ea!z?dZqir{O>gA4F*Ad)QOe*g}kf#MQ=7DbIfn}Ql=iM zi}7t+ZGI{?={{yq-0Ea(gykih15<=l7x;YU%hzi$$>$LK`G>eM+aj5uhLeOFBeU<{ zJM-39BxO{Id4uw*tn_jBmRLG2H^wV{e|{5SnFg;wv=ZF1e0cT#21d_jf!oI|jylm1 zCN+ymB7IYerEg{nCw}Jhg08H(^37P6(7L4hFqPwyvfyIl^Lr=s-J}DBCiif98QWyz z9r&yR5DDUol#&U9bWGG|l{Fkn^BhUFl}%#=O5ytFB;G z)mWpQ@F&w{iK9Vsmus{&l~3WP+iJ4Jku0O?=s`LuZ$ypD(D~?KGg$tEUI$h|cF1l; z4jr&{0A~Asnq8tL7cq6n6W%21%#4u5A#5|n1=Nbi_!vnm=o$*HUNCcjPJV)U__M_A zq^uNWsv_q=hGy#hSAo^L#aSak;lqBXTt8j7RJj(zWLwM9;!ue~XF(G|Hf%}0JjQjq z&t$9w8Oy3ad5R*0LeEZ33)fY35@z6o30mp=t0g4DW`)cvFiuzZaZ?}Sj4>OGTy+Xz zw@?Asx!#0#QF=xr?ZY(wi=YfOt-EZb8Ofb_p)P@v#B8Xf&GB>Zn7C3JEih}eR1>uLiWUz>qO_o-6SJ7_O@6(Lp*9%7~7PB+EqPD z8vjRM3AL%>r8mb~dg*O|?FLh92f6K%EX?%=J$cz5Ab+>tXq?4mj`aUVNms0!t))pb U6yj>&8$aNQlBQy{f@SEx0jeUxNB{r; literal 0 HcmV?d00001