From c5841df0b9ae3f4d33d0d24a774f8d9d3ec2bbc2 Mon Sep 17 00:00:00 2001 From: ForrestWick <54997375+ForrestWick@users.noreply.github.com> Date: Tue, 3 Aug 2021 16:49:58 -0400 Subject: [PATCH] [MODULAR][READY] Ashwalker Village (#7358) * ashwalker village again * Update lavaland.dm Co-authored-by: Gandalf --- code/datums/ruins/lavaland.dm | 3 +- .../code/item/clothing/hands/hands.dm | 14 ++ .../code/item/clothing/head/head.dm | 8 + .../code/item/clothing/shoes/shoes.dm | 22 +++ .../code/item/clothing/suits/misc.dm | 16 ++ .../code/item/clothing/under/costumes.dm | 49 +++++ .../code/vendors/ash_clothing_vendor.dm | 24 +++ .../ashwalkers/icons/mob/clothing/feet.dmi | Bin 0 -> 704 bytes .../icons/mob/clothing/feet_digi.dmi | Bin 0 -> 748 bytes .../ashwalkers/icons/mob/clothing/hands.dmi | Bin 0 -> 443 bytes .../ashwalkers/icons/mob/clothing/head.dmi | Bin 0 -> 1272 bytes .../ashwalkers/icons/mob/clothing/suit.dmi | Bin 0 -> 1078 bytes .../icons/mob/clothing/suit_digi.dmi | Bin 0 -> 1078 bytes .../ashwalkers/icons/mob/clothing/uniform.dmi | Bin 0 -> 5056 bytes .../icons/mob/clothing/uniform_digi.dmi | Bin 0 -> 5167 bytes .../ashwalkers/icons/obj/clothing/gloves.dmi | Bin 0 -> 613 bytes .../ashwalkers/icons/obj/clothing/hats.dmi | Bin 0 -> 421 bytes .../ashwalkers/icons/obj/clothing/shoes.dmi | Bin 0 -> 638 bytes .../ashwalkers/icons/obj/clothing/suits.dmi | Bin 0 -> 689 bytes .../icons/obj/clothing/uniforms.dmi | Bin 0 -> 2103 bytes .../ashwalkers/icons/vendor/vending.dmi | Bin 0 -> 1845 bytes .../lavaland_surface_ash_walker1_skyrat.dmm | 167 ++++++++++++++++++ tgstation.dme | 8 +- 23 files changed, 309 insertions(+), 2 deletions(-) create mode 100644 modular_skyrat/modules/ashwalkers/code/item/clothing/hands/hands.dm create mode 100644 modular_skyrat/modules/ashwalkers/code/item/clothing/head/head.dm create mode 100644 modular_skyrat/modules/ashwalkers/code/item/clothing/shoes/shoes.dm create mode 100644 modular_skyrat/modules/ashwalkers/code/item/clothing/suits/misc.dm create mode 100644 modular_skyrat/modules/ashwalkers/code/item/clothing/under/costumes.dm create mode 100644 modular_skyrat/modules/ashwalkers/code/vendors/ash_clothing_vendor.dm create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet_digi.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/hands.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/head.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/suit.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/suit_digi.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform_digi.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/obj/clothing/gloves.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/obj/clothing/hats.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/obj/clothing/shoes.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/obj/clothing/suits.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi create mode 100644 modular_skyrat/modules/ashwalkers/icons/vendor/vending.dmi create mode 100644 modular_skyrat/modules/mapping/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1_skyrat.dmm diff --git a/code/datums/ruins/lavaland.dm b/code/datums/ruins/lavaland.dm index e5f03fc2efd..cfd47e28374 100644 --- a/code/datums/ruins/lavaland.dm +++ b/code/datums/ruins/lavaland.dm @@ -49,7 +49,8 @@ id = "ash-walker" description = "A race of unbreathing lizards live here, that run faster than a human can, worship a broken dead city, and are capable of reproducing by something involving tentacles? \ Probably best to stay clear." - suffix = "lavaland_surface_ash_walker1.dmm" + prefix = "modular_skyrat/modules/mapping/_maps/RandomRuins/LavaRuins/" // SKYRAT ADDITION + suffix = "lavaland_surface_ash_walker1_skyrat.dmm" // SKYRAT EDIT - ORIGINAL: lavaland_surface_ash_walker1.dmm always_place = TRUE //SKYRAT EDIT CHANGE allow_duplicates = FALSE //SKYRAT EDIT REMOVAL BEGIN - MAPPING diff --git a/modular_skyrat/modules/ashwalkers/code/item/clothing/hands/hands.dm b/modular_skyrat/modules/ashwalkers/code/item/clothing/hands/hands.dm new file mode 100644 index 00000000000..89b58f3f93b --- /dev/null +++ b/modular_skyrat/modules/ashwalkers/code/item/clothing/hands/hands.dm @@ -0,0 +1,14 @@ +/obj/item/clothing/gloves/military/ashwalk + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/gloves.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/hands.dmi' + name = "ash coated bronze gloves" + desc = "Some sort of thin material with the backing of bronze plates." + icon_state = "legionlegat" + +/obj/item/clothing/gloves/military/claw + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/gloves.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/hands.dmi' + name = "tribal claw glove" + desc = "A gauntlet fashioned from the hand of a long-dead creature. Judging by the claws, whoever brought the beast down must have had a hard fight." + icon_state = "claw" + diff --git a/modular_skyrat/modules/ashwalkers/code/item/clothing/head/head.dm b/modular_skyrat/modules/ashwalkers/code/item/clothing/head/head.dm new file mode 100644 index 00000000000..e6b1d35798b --- /dev/null +++ b/modular_skyrat/modules/ashwalkers/code/item/clothing/head/head.dm @@ -0,0 +1,8 @@ +/obj/item/clothing/head/shamanash + name = "shaman skull" + desc = "The skull of a long dead animal bolted to the front of a repurposed pan." + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/hats.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/head.dmi' + icon_state = "shamskull" + mutant_variants = NONE + diff --git a/modular_skyrat/modules/ashwalkers/code/item/clothing/shoes/shoes.dm b/modular_skyrat/modules/ashwalkers/code/item/clothing/shoes/shoes.dm new file mode 100644 index 00000000000..a84a6c4fb19 --- /dev/null +++ b/modular_skyrat/modules/ashwalkers/code/item/clothing/shoes/shoes.dm @@ -0,0 +1,22 @@ +/obj/item/clothing/shoes/jackboots/ashwalker + name = "ash coated bronze boots" + desc = "Boots decorated with poorly forged metal." + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/shoes.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet.dmi' + icon_state = "legionmetal" + mutant_variants = NONE + +/obj/item/clothing/shoes/jackboots/ashwalker/legate + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/shoes.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet.dmi' + icon_state = "legionlegat" + mutant_variants = NONE + +/obj/item/clothing/shoes/wraps/ashwalker + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/shoes.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet.dmi' + name = "ash coated foot wraps" + desc = "May hurt for less than normal legs." + icon_state = "rag" + mutant_variants = NONE + diff --git a/modular_skyrat/modules/ashwalkers/code/item/clothing/suits/misc.dm b/modular_skyrat/modules/ashwalkers/code/item/clothing/suits/misc.dm new file mode 100644 index 00000000000..82dc5a98a02 --- /dev/null +++ b/modular_skyrat/modules/ashwalkers/code/item/clothing/suits/misc.dm @@ -0,0 +1,16 @@ +/obj/item/clothing/suit/ashwalkermantle + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/suits.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/suit.dmi' + name = "tanned hide" + desc = "The tanned hide of some brown furred creature." + icon_state = "mantle_liz" + mutant_variants = NONE + +/obj/item/clothing/suit/ashwalkermantle/cape + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/suits.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/suit.dmi' + name = "brown leather cape" + desc = "An ash coated cloak." + icon_state = "desertcloak" + mutant_variants = NONE + diff --git a/modular_skyrat/modules/ashwalkers/code/item/clothing/under/costumes.dm b/modular_skyrat/modules/ashwalkers/code/item/clothing/under/costumes.dm new file mode 100644 index 00000000000..4c057f38b4c --- /dev/null +++ b/modular_skyrat/modules/ashwalkers/code/item/clothing/under/costumes.dm @@ -0,0 +1,49 @@ +/obj/item/clothing/under/costume/gladiator/ash_walker/greentrib + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "ash covered leaves" + desc = "Green leaves coated with a thick layer of ash. Praise the Nercopolis." + icon_state = "tribal_m" + +/obj/item/clothing/under/costume/gladiator/ash_walker/yellow + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "ash walker rags" + desc = "Rags from Lavaland, coated with light ash. This one seems to be for the juniors of a tribe. Praise the Nercopolis." + icon_state = "tribalrags" + +/obj/item/clothing/under/costume/gladiator/ash_walker/chiefrags + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "old ash walker rags" + desc = "Rags from Lavaland, coated with heavy ash. This one seems to be for the elders of a tribe. Praise the Nercopolis." + icon_state = "chiefrags" + +/obj/item/clothing/under/costume/gladiator/ash_walker/shaman + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "decorated ash walker rags" + desc = "Rags from Lavaland, drenched with ash, it has fine jewel coated bones sewn around the neck. This one seems to be for the shaman of a tribe. Praise the Nercopolis." + icon_state = "chiefrags" + +/obj/item/clothing/under/costume/gladiator/ash_walker/robe + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "ash walker robes" + desc = "A robe from the ashlands. This one seems to be for ...Everyone, really. Praise the Nercopolis." + icon_state = "robe_liz" + +/obj/item/clothing/under/costume/gladiator/ash_walker/tribal + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "ash walker tin" + desc = "Thin tin bolted over poorly tanned leather." + icon_state = "tribal" + +/obj/item/clothing/under/costume/gladiator/ash_walker/white + icon = 'modular_skyrat/modules/ashwalkers/icons/obj/clothing/uniforms.dmi' + worn_icon = 'modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi' + name = "white ash walker rags" + desc = "A poorly sewn dress made of white materials." + icon_state = "lizcheo" + diff --git a/modular_skyrat/modules/ashwalkers/code/vendors/ash_clothing_vendor.dm b/modular_skyrat/modules/ashwalkers/code/vendors/ash_clothing_vendor.dm new file mode 100644 index 00000000000..1fe18476229 --- /dev/null +++ b/modular_skyrat/modules/ashwalkers/code/vendors/ash_clothing_vendor.dm @@ -0,0 +1,24 @@ +/obj/machinery/vending/ashclothingvendor + name = "\improper Ashland Clothing Storage" + desc = "A large container, filled with various clothes for the Ash Walkers." + product_ads = "Praise the Necropolis" + icon = 'modular_skyrat/modules/ashwalkers/icons/vendor/vending.dmi' + icon_state = "ashclothvendor" + icon_deny = "necrocrate" + + products = list( //Relatively normal to have, I GUESS + /obj/item/clothing/under/costume/gladiator/ash_walker/tribal = 15, + /obj/item/clothing/under/costume/gladiator/ash_walker/robe = 15, + /obj/item/clothing/under/costume/gladiator/ash_walker/shaman = 15, + /obj/item/clothing/under/costume/gladiator/ash_walker/chiefrags = 15, + /obj/item/clothing/under/costume/gladiator/ash_walker/yellow = 15, + /obj/item/clothing/suit/ashwalkermantle = 12, + /obj/item/clothing/suit/ashwalkermantle/cape = 12, + /obj/item/clothing/shoes/jackboots/ashwalker = 12, + /obj/item/clothing/shoes/jackboots/ashwalker/legate = 12, + /obj/item/clothing/shoes/wraps/ashwalker = 10, + /obj/item/clothing/head/shamanash = 3, + /obj/item/clothing/gloves/military/claw = 5, + /obj/item/clothing/gloves/military/ashwalk = 10 + ) + diff --git a/modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet.dmi b/modular_skyrat/modules/ashwalkers/icons/mob/clothing/feet.dmi new file mode 100644 index 0000000000000000000000000000000000000000..e5401383ce6e34da0ccaa3950be181fce6981ee2 GIT binary patch literal 704 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 literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/mob/clothing/suit_digi.dmi b/modular_skyrat/modules/ashwalkers/icons/mob/clothing/suit_digi.dmi new file mode 100644 index 0000000000000000000000000000000000000000..2f42b3b1b1aed471c4b874c0c5d18576501c1c9b GIT binary patch literal 1078 zcmV-61j+k}P)V=-0C=2JR&a84 z_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5DK{~% zBqudKC$mb4i!&v&s2HS^i!-e#F*g;&Hbf{*Ni9w-DoM`CPs}DoZF~tX)yfL4elB2F z0{|$tH*{MQ*B1Z)0~bj|K~!jg?O1`X+aL@C64K_46v*=b-?}qNy7tu$q|;VS@>Ok8 z+1SU~fP^s$g+igY!@BP;yuEY15W#o+$S1hY3;Flq)_XRN+rxK*kl(_^!cojkvw#cF zz+cE_VTKc9AG+a~fw#jjbcKbGpK^C_5*S?lrSl$fcrz-nGw@sukRMJ1>fkL;0NK46 zU=$c!%+*mHg%UxQag&%;U>!%Hg&s0Ab|vRIiOm%hycg0N(>JQ?`$f2x2n#|n@Jw&)-ocgC>1`35j@!una$H#g5p{cXUNHjJR$mxY+ z&Au@p3POp=AyRr?A&i|j`gkUWz_GpfWTL>^_8^p=FW`a zCXxX&+w(7s#FTmtWP!?j39t@Z6c9J^LLjUJxSenz0t*pXq|+$15D;9d1h9ONJ%U3L zjuVPrKaSrgu+T{q=se==8-ZGWV?>d#!R!Qtv!?un{Z(?QqRmU8P$(3Nk3jDS^nO6^ w2lReG?+5OG^nO6^2lReG?+5gLK=Ci}3!ivccV;?{0000007*qoM6N<$f-N@OVE_OC literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi b/modular_skyrat/modules/ashwalkers/icons/mob/clothing/uniform.dmi new file mode 100644 index 0000000000000000000000000000000000000000..49bb0bdda55f329fec1c528295fa76702a91f96d GIT binary patch literal 5056 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 aK~nMiKC-dGKmV?w04+6L)f#2nsQ&;G#sSp; literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/obj/clothing/gloves.dmi b/modular_skyrat/modules/ashwalkers/icons/obj/clothing/gloves.dmi new file mode 100644 index 0000000000000000000000000000000000000000..38e4afe1b6c8bb3f948aabca3324ffa61103a898 GIT binary patch literal 613 zcmV-r0-F7aP)j!2C>k#)8d4eJL;wH)0d!JMQvg8b*k%9#0Cjp)Sad{X zb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1V_YE&u@PUnbjUWDJ=A00BWsL_t(YiS3fnZi6rkMPmXs1Soa3725y*(A|XYB{+22 z+oT$`Qbo@3wNvNb^&g9aw=%j`e48wJQ?@E{c;WCiJ<|A3GyB+K^kH{Tcd(Y zm*7Q}%o7~?eyJKXUjRO$F{*urhY;q9K_x~Kfkh*7*ai;s_;F=69OzF`K?>o!ZkRv6 zreQiNRFonNx(BElc)W#h8!x=Bg+MjpLD5rCGYmO^bK6!35Mk%B!o){44ZPf^dk*k8 z2t@M)yCKK11ZaO@w-y2N62J<&rXjG-^wSc6=Ja29JW4}~oEY4PJ_A{To>#|f*?%|a zPZ-$+#v!mS(OcQSP`OHf)JwXEbF5#`?<(sXSi}%ZyT_eZ00000NkvXXu0mjfsH^!L literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/obj/clothing/hats.dmi b/modular_skyrat/modules/ashwalkers/icons/obj/clothing/hats.dmi new file mode 100644 index 0000000000000000000000000000000000000000..48b4f872d7143a73c448987c306905683db25729 GIT binary patch literal 421 zcmV;W0b2fvP)|aFnVA60%(#nBm~Jh4QWZ8SDO%mRMgRZ+0d!JMQvg8b*k%9#0C9R$ zSad{Xb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1IywCl@L$g!XEkDnQ#prO}Oy|A!tHGZ^Dx==msROiOh?yX!`;wo<4MdfdhF5 zfR`8}?V;c{MsOT~D|rB+hivx)0$_M>VAa7=#`xAy1on&ZDuAqY%L$o=~r P00000NkvXXu0mjf2wbrt literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/obj/clothing/shoes.dmi b/modular_skyrat/modules/ashwalkers/icons/obj/clothing/shoes.dmi new file mode 100644 index 0000000000000000000000000000000000000000..828f246068e31ac80d0f2373b9ed6239f9d55ab4 GIT binary patch literal 638 zcmV-^0)hRBP)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ> zRWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5Nr{UyC9|j)$TZ~QOe;#vO@*-G z3W^fb3989SO$XYUn_7~XL!??DnOK5Lt+Ilvp9|PG0Fui*I~w_WX#fBLKuJVFR9J=W zl3{OyAP|NN=bh~Y*`Gj4N+83( zXxsK%3nu6~O3(!j?djC^=d){(1eYr%xLl)xK~YnY1ad2Z>id4sYJjGL0^C7I2_gbL z-az1LBmo=&6NHcOqW}_^tpuYQl~S&Hg8Kvb!1CyfF`q%faMM~t9kiF=4vR4cEA(eb zU=eK{pz-F-*F3yEeSw{(X`ZoCj|z-Kt_2py+&uJUu`7Y}hzaJI1d9zVX#?w#C@B1G YUb>PSO|F(cD*ylh07*qoM6N<$f)R}bNB{r; literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/obj/clothing/suits.dmi b/modular_skyrat/modules/ashwalkers/icons/obj/clothing/suits.dmi new file mode 100644 index 0000000000000000000000000000000000000000..405556ec1cc533e1a62c836cf4656cd1764dc924 GIT binary patch literal 689 zcmV;i0#5yjP)V=-0C=2JR&a84 z_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5DK{~% zBqudKC$mb4i!&v&s2C_{$i;{X5wlSxEDR9J=WmEmr~APj^9*hvVG7TEhg>&|r3Hr0*0YX25@5lGX0 z90qjLbkEh;Q~&`tqefCKD4P1<8*te;CBU$2i|BP)t-s0001( zgG1H3ZQI6#;m??~omI%ELC~{Zv6)V`mNmPjW6`x?DJdz&ua$RZRF8CFJv}{3OG}`A zR%%^NlzL$RW@bSyDKRlI?AX2a>)laDJgJd*wxf!)poWiqXQ-Bcw4a2+s*C`cnKv8& zrI2@NT~4>3f4`=Rg>+%Pq=n76oVlTfTw6(oa$DQOq{Xn3v6y*CDua!ndMkEpdjCNtivXi)~m|tICcXeKDYgMhBhPkDT!>o+Ltc|&( zi=l&KHZU8qo`$WMc(Gx8}k4F00DGTPE!Ct=GbNc006RjR9JLGWpiV4X>fFDZ*Bkp zc$|&V&kBM-5C-t`?o%v!kF2g;!Uzxf3Np5%GvFVXT@!lxG$HX&diy^3eV3WgT&}ky zHSs;sPZY;(W6tKZ+iTUc^)!^@K`TNo$xp?3@HoUk+8ncrUx8MZ#f>|y3V|BO9L>-R z=TOZoS}-Npb7Pki0k$Yvh2RP0*YwM6Zo5_F2x@2qO1DZM#8_;SL|x-iHreS8|7d8g zY5aM{8|CSBe~_>7_5c6{-AP12RA_U=05_ig;=SpzKAc{XPpOU=O(wJP*6jQ>JRN?^_8x zZoFhIA~2Ua3A|Ae3?My;0rK`!A><-u{38{z&pIvw5Cd~H7YUHwlt6j|P$5DLpcECr z0E*qq2LLcV(1&^fHCYED!B#c1ugb{Ir4zL zK$WlOUg!e?W0*>y1_~|n2mr#W?@PYRW`GZ?berV_2tcv}6pR2hU9k(0i^v0H!S`=y z=mA2cevARAk100*7r+3eq@F3y)uA$fzkl;418v6=*pi=Y9A5BLaxI%yGrV=k$f>DD7N06^Ai z0pE$p$${ct496*9mK@{(G?!GU@*t?zB#05|Yt?`e5P(#!fief+8yU?d`7DEHt6YQU zB3?^4S8VyB?h03xt_9Z_LD8aZYJ`H?uXb5qN-3qh{4!>GU#}xgg9TpKoSmif>}(U- zA1}SH&&>mZMq^=N0TQ$pXPeDdv$?p~0`@~raOn&xSQ^=1o?o^TG*)gl78*BK06}Z@ zl~-T8_4?Wyt9AfSMYJUIy$H>h?WLt9ZvWi;{G8ndOhESS0Ik*Aoi}g2wf^=y?^+4+ z^k2gCp8!afM4ikp*EcNIM+A-0|1SaDS>Nn*?%sZH^Zh#zAoM~Eu(icbXxFLzA6y2A zV`JHvZftig0BfDz=H`c+o4wAOH3ppiM>2xxzu3A*1ozuJ_4>wTfbMoTK5uz9jxE=> znjiIgANP8nH0^!Br2ipK{~2Iuw|!qE$;N{R7YSk#x(OPBKXJp_5u2ah{p|BEzI+I7 zLzCV|j`V(OtKHt+70KS-+{VV-1tocaj}>B|Fm!D(5Y4Z?-v8#?hx;~wC<;ZI1}tex zzakq!duL~lobN|De_C_ieRv`k%3+0eS$DJbjiN^2r9!FkyH^eUV#l z8w>iapML)3*WZ3$|HBS&mi`j~wEr~ON}kyXgbBkFj)E=z2H?-Xj{ZLS=id$j$kYEc zLjY|59uok7!SV6&$+0#5IYGaF)H>?J2#nHymj{x=LlgrBI5{2+y4xoM08k)j=|A)U z5m5h25@etH0C_)-Q3whFM(IEF01+f-C#&#aBnI0s1O;-I{$mdmNtbPR>#|;Ot&vDmqzAvo76Ldu zRgT^7{0T!eQRU-^W`I-I_PfUq7~pMq5Vq1#5Oa2WrYIRhl&AYp1>l#^0m-u1_6}j z)8qhRXof=E2_;()&;vsA$5#^rcsvhDF?58WxDpD&6ib>R|AT!-4) literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/ashwalkers/icons/vendor/vending.dmi b/modular_skyrat/modules/ashwalkers/icons/vendor/vending.dmi new file mode 100644 index 0000000000000000000000000000000000000000..2b412f25d7eda5bc885b72eb872d5f527f5de6e9 GIT binary patch literal 1845 zcmV-52g>+~P)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex7wuvIWN;^NFm z%}mcIfpCgT5=&AQY!#H0xHwZXi;5L&6%4sJ(~1&vQz2})g2dvC8!G z%9Ryd{ah4Wd_B1Ut*R!Ct&#C>000JbNkly{8rxm2sVXxX$+>$Wu2wolWPY5mY{)23z87Hv~ibx|g*4Xf1AZfjB0 zCV-6bc2!Ma3LCa)@*~&Dqz^0x&i) z_E3&_D}b%bCe)hi*wNC=sb8F;+*FQXi-ANkL2x;kotum%+#WXyxq@&g41ib=)A!{* zMlKFBGkxQsB8VRuqyG}EZLO4OG}!Hzh{j@(bRtb87{TxH^RM%rZI7c-7W0KC_foFa zvwz<{0OT?m-96nTQ%P)HHsL{i^40-I4j&d~Z`>ph3ZXNUQD1A$xzF!krtiRhF8}03 zBnS2r35GEmO#sX|olJ~grLMMy4=#L=lWSfIpexe}&mMgi%eH#n92h{9Ns|#WB$KI! zhMzkzk0W#ib45*V@vGTqXnH)z{7ti9{&dvW0-xho)2mAmkDuZyeBIX%G^L1fOf) ziK(K3@yT)AE;pHUhVLJ%!QpFS(w;@$8I zhr%4(mA~?u~w?XQq)CD$r|7_~H*<0N|w;U*?Hj?U*V|xLxjby(N#5 z=!4*2_W#)LTRyp?rJ2E(e#+A)j#IgHD;CW-y}do8Q&Hw`d5KbmT3v)ruccZarMgm& zrJ)I84u-}8fQX|->R`2hl+=~0 zcpOtKzHyGK{riwB03K$h%1$P0DZ8o-+h1tOo1xKzsCpZ|=;yX%(+|G`2eMy*=K&B)4zo_Qs} zwNI{b?)82;fkVmy)*$PGhQ=N1L`bgsvNeFDR*y``ph#ypf8u-0J=Vn6zj-WMUy3Jk z_RK2*6bc0ZjhQw49uI%{(GWj8-HWWC1iy1|!~WW;CQ|Vre?E8yeNiz{r3#ghAy8II zow@e@_liZVWpY0b4_) zAp*J8iYS>vBoX8N>i_^5Kqirp5poNVHx8&URtQR^5`dL&Jx5t4!~E&ra=68Wte}Jo z_G=i+Rd|-7+0k6rOe!>q?By>ZI`%52)>iECB!bC=?1>+giEjg6Zos*?N)gF@Wr) z@ZOqC)69+8IRN?&^zr-O{Q-c$sb2%&bk6hnCwnnl%oNIGtVLrRdgqM;j(y{6#N%<6 zmb|=w{(XEtKhOMaktXXZ-96n*Ul(K9rU5ieU!TFUEycOlX94)tnMI!a?m^rx*WFq@ zA5DIQ$L+!Ga?`nIH)rRZIs4|t)8O&r$Au}!6mvJ{P^nau-nFXhmW$@jU4%kmT;t

C-&^Y?e?&+uz*ghB@&I|^ZIZv jy7PkbCN{B&{J=i}8aJqUKQVL700000NkvXXu0mjfHO7bG literal 0 HcmV?d00001 diff --git a/modular_skyrat/modules/mapping/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1_skyrat.dmm b/modular_skyrat/modules/mapping/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1_skyrat.dmm new file mode 100644 index 00000000000..cbaf7c2a9d4 --- /dev/null +++ b/modular_skyrat/modules/mapping/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1_skyrat.dmm @@ -0,0 +1,167 @@ +"aK" = (/obj/structure/water_source/puddle,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"bc" = (/obj/structure/stone_tile/cracked{dir = 8},/obj/machinery/smartfridge/drying_rack{idle_power_usage = 0; use_power = 0},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered) +"bH" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile/block{dir = 1},/obj/structure/table/bronze,/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"cm" = (/obj/structure/stone_tile/block/cracked{dir = 1},/obj/structure/stone_tile/block,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"cC" = (/obj/structure/stone_tile,/obj/structure/decorative/shelf,/obj/item/restraints/handcuffs/cable/sinew,/obj/item/restraints/handcuffs/cable/sinew,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"cP" = (/obj/structure/geyser/random,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"dw" = (/obj/structure/stone_tile/slab,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"dU" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile{dir = 4},/obj/machinery/smartfridge/drying_rack{idle_power_usage = 0; use_power = 0},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered) +"ei" = (/obj/structure/stone_tile/block/cracked,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"eC" = (/obj/structure/table/optable,/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"eE" = (/obj/item/reagent_containers/glass/bucket/wooden,/obj/item/reagent_containers/glass/bucket/wooden,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"eO" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile/cracked{dir = 4},/obj/structure/stone_tile/cracked{dir = 1},/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"eU" = (/obj/structure/stone_tile/block,/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"fe" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile/cracked{dir = 4},/obj/structure/stone_tile/cracked{dir = 8},/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"fY" = (/turf/open/water,/area/ruin/unpowered/ash_walkers) +"gJ" = (/obj/item/stack/sheet/mineral/sandstone/thirty,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"hL" = (/obj/item/reagent_containers/glass/bucket/wooden,/obj/item/reagent_containers/glass/bucket/wooden,/obj/item/reagent_containers/glass/bucket/wooden,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"hX" = (/obj/structure/stone_tile/block/cracked,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"hY" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"iI" = (/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile/cracked{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"iJ" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block{dir = 8},/obj/structure/rack,/obj/item/spear/bonespear,/obj/item/spear/bonespear,/obj/item/spear{pixel_x = 5},/obj/item/spear{pixel_x = 5},/obj/item/kitchen/knife/combat/bone{pixel_x = -8},/obj/item/kitchen/knife/combat/bone{pixel_x = -8},/obj/item/kitchen/knife/combat/bone{pixel_x = -8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"iP" = (/obj/structure/stone_tile/block/cracked{dir = 1},/obj/structure/stone_tile/block/cracked,/obj/structure/destructible/cult/talisman{desc = "A bloodstained altar dedicated to the Necropolis."},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"iZ" = (/obj/effect/mapping_helpers/no_lava,/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors) +"jC" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile/block{dir = 1},/obj/structure/table/bronze,/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"kx" = (/obj/structure/stone_tile/block/cracked{dir = 4},/obj/structure/stone_tile/cracked{dir = 4},/obj/structure/stone_tile{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"kE" = (/obj/structure/stone_tile/surrounding_tile/cracked,/obj/structure/stone_tile/center,/obj/structure/stone_tile/surrounding_tile{dir = 1},/obj/structure/stone_tile/surrounding_tile{dir = 8},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"mc" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile/cracked{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"mh" = (/obj/structure/stone_tile/surrounding_tile/cracked{dir = 4},/turf/closed/indestructible/riveted/boss,/area/ruin/unpowered/ash_walkers) +"mu" = (/obj/structure/stone_tile/block,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"mv" = (/turf/template_noop,/area/template_noop) +"mZ" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"nj" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"no" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/table/bronze,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"nt" = (/obj/structure/stone_tile/block/cracked,/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"nx" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"nI" = (/obj/structure/stone_tile/block/cracked{dir = 1},/obj/structure/stone_tile/block/cracked,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"nL" = (/obj/structure/stone_tile/cracked{dir = 4},/obj/item/seeds/cannabis/white,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"nR" = (/obj/structure/stone_tile,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"oe" = (/obj/structure/stone_tile/block{dir = 8},/obj/machinery/iv_drip,/obj/item/reagent_containers/food/drinks/waterbottle/large,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"pD" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block{dir = 8},/mob/living/simple_animal/hostile/asteroid/gutlunch/grublunch,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"pE" = (/turf/closed/indestructible/riveted/boss,/area/ruin/unpowered/ash_walkers) +"pV" = (/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 4},/obj/effect/decal/cleanable/blood,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"qr" = (/obj/effect/mapping_helpers/no_lava,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"qs" = (/obj/structure/lavaland/ash_walker,/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"qy" = (/obj/structure/stone_tile/block{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"qW" = (/obj/structure/stone_tile/block{dir = 8},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"rz" = (/obj/structure/stone_tile/block{dir = 8},/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 1},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"rD" = (/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile{dir = 4},/obj/structure/table/wood,/obj/item/candle/infinite,/obj/item/reagent_containers/food/drinks/bottle/lizardwine{pixel_x = 4; pixel_y = 15},/obj/item/food/rootroll{pixel_x = 10},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"rE" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block{dir = 8},/obj/structure/table/bronze,/obj/item/clothing/gloves/military/claw{desc = "Legend says an ancient Ashwalker tribesman wielded this claw into numerous battles and hunts. It remains a precious artifact to future generations."; name = "kal'trop"},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"rQ" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/closet/crate/wooden,/obj/item/seeds/tower,/obj/item/seeds/tower,/obj/item/seeds/reishi,/obj/item/seeds/reishi,/obj/item/seeds/cabbage,/obj/item/seeds/cabbage,/obj/item/seeds/carrot,/obj/item/seeds/carrot,/obj/item/seeds/chanter,/obj/item/seeds/chanter,/obj/item/seeds/chili,/obj/item/seeds/chili,/obj/item/seeds/garlic,/obj/item/seeds/garlic,/obj/item/seeds/korta_nut,/obj/item/seeds/korta_nut,/obj/item/seeds/korta_nut,/obj/item/seeds/korta_nut,/obj/item/seeds/onion,/obj/item/seeds/onion,/obj/item/seeds/potato,/obj/item/seeds/potato,/obj/item/seeds/lavaland/cactus,/obj/item/seeds/lavaland/cactus,/obj/item/seeds/lavaland/cactus,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"rR" = (/obj/structure/stone_tile{dir = 4},/obj/structure/closet/crate/medical,/obj/item/storage/firstaid/regular,/obj/item/reagent_containers/blood/random,/obj/item/reagent_containers/blood/lizard,/obj/item/reagent_containers/blood/lizard,/obj/item/stack/sheet/cloth/ten,/obj/item/reagent_containers/blood/lizard,/obj/item/reagent_containers/blood/lizard,/obj/item/circular_saw,/obj/item/hemostat,/obj/item/retractor,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"se" = (/obj/structure/stone_tile/cracked{dir = 4},/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile{dir = 8},/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"ss" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile/block{dir = 1},/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/obj/item/flashlight/flare/torch,/obj/structure/table/bronze,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"sI" = (/obj/structure/stone_tile/block/burnt,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"tg" = (/obj/structure/stone_tile/block/cracked,/obj/structure/stone_tile/block{dir = 1},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"tl" = (/obj/structure/stone_tile/block,/obj/structure/stone_tile/block{dir = 1},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"tm" = (/obj/structure/stone_tile/block,/obj/structure/table/bronze,/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"tH" = (/obj/structure/stone_tile/block/cracked{dir = 4},/obj/structure/stone_tile/block{dir = 8},/obj/structure/table/bronze,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/flashlight/lantern,/obj/item/soap/homemade,/obj/item/soap/homemade,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"ug" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"uE" = (/obj/structure/stone_tile/cracked{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"uM" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 4},/obj/structure/chair/wood{dir = 8},/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"wa" = (/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile{dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"wp" = (/obj/structure/stone_tile/block/cracked{dir = 4},/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile/cracked{dir = 4},/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/wood{amount = 50},/obj/item/stack/sheet/iron/fifty,/obj/item/stack/sheet/iron/fifty,/obj/item/stack/sheet/leather{amount = 35},/obj/item/stack/sheet/mineral/wood{amount = 50},/obj/item/stack/sheet/leather{amount = 35},/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/grown/log,/obj/item/stack/rods/fifty,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"ww" = (/obj/structure/railing/stone,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"wM" = (/obj/structure/stone_tile/block,/obj/structure/stone_tile{dir = 1},/obj/effect/decal/cleanable/blood,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"wS" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile,/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/decorative/shelf,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/iron/twenty,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"xW" = (/obj/structure/stone_tile/block/cracked{dir = 1},/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile/cracked,/obj/item/cultivator/rake,/obj/item/cultivator/rake,/obj/item/shovel,/obj/item/shovel,/obj/item/secateurs,/obj/item/secateurs,/obj/structure/closet/crate/wooden,/obj/item/clothing/gloves/botanic_leather,/obj/item/clothing/gloves/botanic_leather,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"yJ" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors) +"yL" = (/obj/structure/statue/bone/rib{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"yR" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/block{dir = 4},/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Ao" = (/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Av" = (/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Az" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile/cracked{dir = 1},/obj/item/seeds/glowshroom,/obj/item/seeds/glowshroom,/obj/item/seeds/replicapod,/obj/item/seeds/replicapod,/obj/item/seeds/cotton,/obj/item/seeds/cotton,/obj/item/seeds/cotton,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"AG" = (/obj/structure/stone_tile/surrounding/cracked{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Bc" = (/obj/structure/stone_tile/surrounding_tile/cracked{dir = 4},/obj/structure/stone_tile/center/cracked,/obj/structure/stone_tile/surrounding_tile,/obj/structure/stone_tile/surrounding_tile{dir = 1},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"BJ" = (/obj/structure/stone_tile/block{dir = 1},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Ch" = (/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile,/obj/structure/stone_tile/cracked{dir = 8},/obj/structure/stone_tile/cracked{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Cl" = (/obj/structure/stone_tile/block,/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Cp" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/block{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"DJ" = (/obj/structure/stone_tile/surrounding_tile/cracked,/obj/structure/stone_tile/surrounding_tile/cracked{dir = 4},/obj/structure/stone_tile/center,/obj/structure/stone_tile/surrounding_tile{dir = 8},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"EH" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/block/cracked{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"EL" = (/obj/structure/stone_tile/block{dir = 8},/obj/structure/stone_tile/block/cracked{dir = 4},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Fz" = (/obj/structure/stone_tile/block/cracked{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"FA" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile,/obj/machinery/vending/ashclothingvendor,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"FL" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/table/bronze,/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"GG" = (/obj/structure/stone_tile/surrounding_tile/cracked{dir = 8},/obj/structure/stone_tile/center,/obj/structure/stone_tile/surrounding_tile{dir = 1},/obj/structure/stone_tile/surrounding_tile{dir = 4},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"GX" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/block/cracked{dir = 4},/obj/structure/table/bronze,/obj/item/storage/toolbox/syndicate{pixel_y = 5},/obj/item/storage/toolbox/syndicate,/obj/item/weldingtool/experimental,/obj/item/weldingtool/experimental,/obj/item/construction/rcd/loaded{pixel_x = 3; pixel_y = 3},/obj/item/construction/rcd/loaded{pixel_x = 3; pixel_y = 3},/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Hx" = (/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"HF" = (/obj/structure/stone_tile/block{dir = 8},/obj/structure/stone_tile/cracked{dir = 1},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Ie" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile,/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile/cracked{dir = 8},/obj/item/stack/marker_beacon/ten,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Jo" = (/obj/item/storage/box/rxglasses,/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"JD" = (/obj/structure/stone_tile/block/cracked{dir = 4},/turf/open/lava/smooth/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"JN" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Kr" = (/obj/effect/mob_spawn/human/miner/explorer,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"KS" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/cracked{dir = 1},/obj/item/storage/bag/ore,/obj/item/storage/bag/ore,/obj/item/storage/bag/ore,/obj/item/storage/bag/ore,/obj/item/storage/bag/ore,/obj/structure/closet/crate,/obj/item/pickaxe/mini,/obj/item/pickaxe/mini,/obj/item/pickaxe/mini,/obj/item/pickaxe/mini,/obj/item/pickaxe/mini,/obj/item/pickaxe/mini,/obj/item/mining_scanner,/obj/item/mining_scanner,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"KU" = (/obj/structure/stone_tile,/obj/structure/stone_tile/cracked{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"La" = (/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile/cracked{dir = 8},/obj/machinery/vending/ashclothingvendor,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Ly" = (/turf/closed/wall/mineral/wood,/area/ruin/unpowered/ash_walkers) +"LE" = (/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile/burnt,/obj/structure/stone_tile{dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"LI" = (/obj/structure/stone_tile/block/cracked{dir = 4},/obj/structure/stone_tile/block{dir = 8},/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"LM" = (/obj/structure/bonfire/dense,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"LO" = (/obj/structure/stone_tile/cracked{dir = 8},/obj/item/storage/bag/plants,/obj/item/storage/bag/plants,/obj/item/storage/bag/plants,/obj/item/storage/bag/plants/portaseeder,/obj/item/storage/bag/plants/portaseeder,/obj/structure/closet/crate/wooden,/obj/item/reagent_containers/glass/bottle/nutrient/rh,/obj/item/reagent_containers/glass/bottle/nutrient/rh,/obj/item/reagent_containers/glass/bottle/nutrient/rh,/obj/item/reagent_containers/glass/bottle/nutrient/rh,/obj/item/reagent_containers/glass/bottle/nutrient/l4z,/obj/item/reagent_containers/glass/bottle/nutrient/l4z,/obj/item/reagent_containers/glass/bottle/nutrient/l4z,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/obj/item/plant_analyzer,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"LT" = (/obj/structure/stone_tile/block/cracked{dir = 4},/obj/structure/stone_tile/block{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Mv" = (/obj/machinery/hydroponics/soil,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"MD" = (/obj/structure/stone_tile/block/cracked{dir = 1},/obj/structure/stone_tile{dir = 8},/obj/effect/decal/cleanable/blood,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"MI" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile/cracked{dir = 4},/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"MR" = (/obj/structure/stone_tile/block{dir = 1},/obj/structure/stone_tile,/obj/structure/stone_tile/cracked{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Ne" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"NB" = (/obj/structure/closet/crate/miningcar,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"NP" = (/obj/structure/stone_tile/slab/cracked,/obj/effect/decal/cleanable/blood,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"NV" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block/cracked{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Oc" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile{dir = 4},/obj/item/flashlight/lantern,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Os" = (/obj/structure/stone_tile/cracked,/obj/structure/stone_tile{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Ox" = (/obj/structure/stone_tile/slab/cracked,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"OJ" = (/obj/structure/stone_tile/burnt,/obj/machinery/processor,/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile{dir = 8},/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered) +"ON" = (/obj/effect/mob_spawn/human/miner,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"OR" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile/cracked,/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile/cracked{dir = 8},/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Pr" = (/obj/structure/stone_tile/surrounding_tile{dir = 8},/obj/structure/stone_tile/block{dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"PB" = (/obj/structure/stone_tile/slab,/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"PF" = (/turf/closed/indestructible/riveted/boss/see_through,/area/ruin/unpowered/ash_walkers) +"PJ" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile{dir = 1},/obj/item/stack/rods/fifty,/obj/structure/closet/crate/wooden,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl/mushroom_bowl,/obj/item/reagent_containers/glass/bowl/mushroom_bowl,/obj/item/reagent_containers/glass/bowl/mushroom_bowl,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"PK" = (/obj/structure/necropolis_gate,/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/fans/tiny/invisible,/obj/effect/decal/cleanable/blood,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"PN" = (/obj/structure/stone_tile/block{dir = 4},/obj/structure/stone_tile/block{dir = 8},/obj/structure/rack,/obj/item/gun/ballistic/tribalbow,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Qw" = (/obj/structure/stone_tile/slab/cracked,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"QG" = (/obj/structure/stone_tile/slab,/obj/structure/mineral_door/wood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Ra" = (/obj/effect/mob_spawn/human/corpse/damaged,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Rb" = (/obj/effect/mob_spawn/human/corpse/assistant,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"RG" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"RK" = (/obj/structure/headpike/bone,/obj/effect/mapping_helpers/no_lava,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"St" = (/obj/structure/chair/stool/directional,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"SE" = (/obj/structure/stone_tile/cracked{dir = 1},/obj/structure/stone_tile/burnt,/obj/structure/stone_tile{dir = 4},/obj/structure/fermenting_barrel,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Ul" = (/obj/structure/necropolis_gate,/obj/structure/stone_tile/slab,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Vr" = (/obj/structure/stone_tile/block/cracked{dir = 8},/obj/structure/stone_tile/block/cracked{dir = 4},/obj/item/malf_upgrade,/obj/structure/safe,/obj/item/retractor/alien,/obj/item/stack/spacecash/c10000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/turf/open/indestructible/boss,/area/ruin/unpowered/ash_walkers) +"Vw" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"VI" = (/obj/structure/statue/bone/rib,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"VX" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"WB" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 4},/obj/structure/decorative/shelf,/obj/item/kitchen/knife/combat/bone{pixel_x = 5},/obj/item/kitchen/rollingpin,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/soap/homemade,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"WD" = (/obj/structure/stone_tile{dir = 8},/obj/structure/table/wood{desc = "A large mortar and pestle set, capable of rapidly transfering contents to a beaker. One might assume it works like a blender, but an Ashwalker wouldn't know what that is... right?"; name = "large mortar"},/obj/machinery/reagentgrinder,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered) +"WH" = (/obj/structure/stone_tile{dir = 4},/obj/item/food/egg,/obj/structure/decorative/shelf,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/food/egg,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/obj/item/storage/fancy/egg_box,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"WN" = (/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile/cracked{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"WW" = (/obj/structure/stone_tile{dir = 1},/obj/structure/stone_tile,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"Xs" = (/obj/structure/stone_tile,/obj/structure/stone_tile{dir = 8},/obj/structure/chair/wood,/obj/structure/stone_tile{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) +"XV" = (/obj/effect/mapping_helpers/no_lava,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors) +"ZO" = (/obj/structure/stone_tile{dir = 4},/obj/structure/stone_tile{dir = 4},/obj/structure/bonfire,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered/ash_walkers) + +(1,1,1) = {" +mvmvRGRGRGRGLyLyLyLyLyLyLyLyLyLyLyLyLyLyLyLyLypEpEpEmhpEpEpEpEpEpEpEpEpEpEpEpEpE +mvmvRGRGRGmZmZmZmZmZmZmZMvMvmZaKLybcdUeieCrRLypEbHmusItghXcmssiPjCcmnIsItgtltmpE +mvRGRGRGmZmZmZfYfYmZmZmZmZmZmZeELynLHxJonRoeLypEnoEHqyJNFzeOeUwMClfeCpJNLTEHrEpE +mvRGRGRGmZmZfYfYfYfYmZLMgJmZmZMvLyrQAzAGsetHLypEFLCpCpFzCpkxkEntDJnxJNEHELJNFLpE +mvRGRGmZmZmZfYfYfYfYmZgJmZmZmZMvLywpIeuEChKSLypEpEpDLICpJNpVJDqsqWrzFzJNJNFzpEpE +mvRGRGmZmZmZmZfYfYmZhLmZmZmZmZMvLyLOMRNPxWORLywwpEpEyRLICpAvBcBJGGHFLTCpCppEpELy +mvRGRGmZmZmZmZmZmZaKmZmZmZLMmZMvLyLyLyQGLyLyLyNBNBpEpEpEpEOcOsOxMDMIpEpEpEpEmZLy +mvRGRGmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZNBNBpEpEpEpEpENVpEpEpEpEpEmZmZLy +mvRGRGmZmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZdwmZmZmZmZmZmZPrPBpEpEPFPKPFpEpEQwmZmZmZLy +mvRGRGmZmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZdwmZmZmZmZmZmZmZmZmZRamZmZmZmZmZmZRamZmZLy +mvRGRGRGmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZdwmZmZmZmZmZmZmZRbmZmZmZdwmZmZRamZmZmZKrLy +mvmvRGRGRGmZmZmZmZdwmZmZmZmZdwdwdwdwdwdwdwdwdwdwdwdwdwdwdwdwdwdwONmZmZmZmZmZmZLy +mvmvRGRGRGRGmZmZmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZmZmZmZmZStmZLyLyQGLyLyLyLyVXLyLyLy +mvmvRGRGRGRGmZmZmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZmZmZmZmZmZKrLySEVwWBWDLywSnjhYiJLy +mvmvRGRGRGRGmZcPmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZmZmZmZmZmZmZLyWHAoNeuELycCiIWWPNLy +mvmvRGRGRGRGRGmZmZmZmZmZmZmZmZmZmZmZdwmZmZmZmZmZmZmZmZmZmZLyXswaLEPJLyFAWNugGXLy +mvmvRGRGRGRGRGmZcPmZmZmZmZmZLyLyLydwdwdwLyLyLymZmZmZmZmZmZLyrDuMOJZOLyLamcKUVrLy +mvRGRGRGRGRGLyLyLyLyLyLyLyLyLyyLLyLyUlLyLyVILyLyLyLyLyLyLyLyLyLyLyLyLyLyLyLyLyLy +RGRGRGXVXVXVXVXVXVXVXVXVXVXVXVXVRKqrqrqrRKXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXV +iZiZiZXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVXVyJyJyJyJyJXVXV +"} diff --git a/tgstation.dme b/tgstation.dme index 9b7ec4b1f03..a967a008311 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3723,8 +3723,8 @@ #include "code\modules\wiremod\components\utility\clock.dm" #include "code\modules\wiremod\components\utility\combiner.dm" #include "code\modules\wiremod\components\utility\delay.dm" -#include "code\modules\wiremod\components\utility\router.dm" #include "code\modules\wiremod\components\utility\ram.dm" +#include "code\modules\wiremod\components\utility\router.dm" #include "code\modules\wiremod\components\utility\typecast.dm" #include "code\modules\wiremod\components\utility\typecheck.dm" #include "code\modules\wiremod\preset\hello_world.dm" @@ -3946,6 +3946,12 @@ #include "modular_skyrat\modules\antagonists\eldritch_cult\knowledge\ash_lore_skyrat.dm" #include "modular_skyrat\modules\antagonists\eldritch_cult\knowledge\flesh_lore_skyrat.dm" #include "modular_skyrat\modules\ashwalkers\Ashwalker\Ashwalkers.dm" +#include "modular_skyrat\modules\ashwalkers\code\item\clothing\hands\hands.dm" +#include "modular_skyrat\modules\ashwalkers\code\item\clothing\head\head.dm" +#include "modular_skyrat\modules\ashwalkers\code\item\clothing\shoes\shoes.dm" +#include "modular_skyrat\modules\ashwalkers\code\item\clothing\suits\misc.dm" +#include "modular_skyrat\modules\ashwalkers\code\item\clothing\under\costumes.dm" +#include "modular_skyrat\modules\ashwalkers\code\vendors\ash_clothing_vendor.dm" #include "modular_skyrat\modules\autotransfer\code\autotransfer.dm" #include "modular_skyrat\modules\autotransfer\code\autotransfer_config.dm" #include "modular_skyrat\modules\autotransfer\code\shuttle.dm"