From c3f71aefa226cd16be5f95f82450a0811d678dc3 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 03:04:31 -0400 Subject: [PATCH 01/15] Added new sprites for the RCD, changed cs to reflect new location, Changed construction menu YML to display delta-V sprite instead of upstream one --- .../RCD/RCDMenuBoundUserInterface.cs | 4 +-- .../Doors/Airlocks/base_assembly.yml | 2 +- Resources/Prototypes/RCD/rcd.yml | 12 +++---- .../Recipes/Construction/structures.yml | 30 +++++++++--------- .../_DV/Interface/Radial/RCD/airlock.png | Bin 0 -> 579 bytes .../_DV/Interface/Radial/RCD/airlocks.png | Bin 0 -> 715 bytes .../_DV/Interface/Radial/RCD/directional.png | Bin 0 -> 202 bytes .../Radial/RCD/directional_reinforced.png | Bin 0 -> 234 bytes .../Interface/Radial/RCD/glass_airlock.png | Bin 0 -> 611 bytes .../_DV/Interface/Radial/RCD/window.png | Bin 0 -> 342 bytes .../Radial/RCD/window_reinforced.png | Bin 0 -> 541 bytes .../Radial/RCD/windows_and_grilles.png | Bin 0 -> 986 bytes 12 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/airlock.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/airlocks.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/directional.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/directional_reinforced.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/glass_airlock.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/window.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/window_reinforced.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/windows_and_grilles.png diff --git a/Content.Client/RCD/RCDMenuBoundUserInterface.cs b/Content.Client/RCD/RCDMenuBoundUserInterface.cs index d599c324e17..ad75d2d2085 100644 --- a/Content.Client/RCD/RCDMenuBoundUserInterface.cs +++ b/Content.Client/RCD/RCDMenuBoundUserInterface.cs @@ -17,8 +17,8 @@ public sealed class RCDMenuBoundUserInterface : BoundUserInterface = new Dictionary { ["WallsAndFlooring"] = ("rcd-component-walls-and-flooring", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/walls_and_flooring.png"))), - ["WindowsAndGrilles"] = ("rcd-component-windows-and-grilles", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/windows_and_grilles.png"))), - ["Airlocks"] = ("rcd-component-airlocks", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/airlocks.png"))), + ["WindowsAndGrilles"] = ("rcd-component-windows-and-grilles", new SpriteSpecifier.Texture(new ResPath("/Textures/_DV/Interface/Radial/RCD/windows_and_grilles.png"))), // Delta-V - Path changed to new sprites reflecting Delta-V resprites + ["Airlocks"] = ("rcd-component-airlocks", new SpriteSpecifier.Texture(new ResPath("/Textures/_DV/Interface/Radial/RCD/airlocks.png"))), // Delta-V - Path changed to new sprites reflecting Delta-V resprites ["Electrical"] = ("rcd-component-electrical", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/multicoil.png"))), ["Lighting"] = ("rcd-component-lighting", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/lighting.png"))), }; diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml index 375c5ce37cb..4a14bbabaf4 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml @@ -7,7 +7,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/basic.rsi + sprite: _DV/Structures/Doors/Airlocks/Standard/basic.rsi #Delta V - Resprite Doors state: "assembly" - type: Physics - type: Fixtures diff --git a/Resources/Prototypes/RCD/rcd.yml b/Resources/Prototypes/RCD/rcd.yml index f476f06dc48..960a9c952df 100644 --- a/Resources/Prototypes/RCD/rcd.yml +++ b/Resources/Prototypes/RCD/rcd.yml @@ -103,7 +103,7 @@ - type: rcd id: Window category: WindowsAndGrilles - sprite: /Textures/Interface/Radial/RCD/window.png + sprite: /Textures/_DV/Interface/Radial/RCD/window.png # Delta-v - Changed to reflect window resprites mode: ConstructObject prototype: Window cost: 3 @@ -117,7 +117,7 @@ - type: rcd id: WindowDirectional category: WindowsAndGrilles - sprite: /Textures/Interface/Radial/RCD/directional.png + sprite: /Textures/_DV/Interface/Radial/RCD/directional.png # Delta-v - Changed to reflect window resprites mode: ConstructObject prototype: WindowDirectional cost: 2 @@ -132,7 +132,7 @@ - type: rcd id: ReinforcedWindow category: WindowsAndGrilles - sprite: /Textures/Interface/Radial/RCD/window_reinforced.png + sprite: /Textures/_DV/Interface/Radial/RCD/window_reinforced.png # Delta-v - Changed to reflect window resprites mode: ConstructObject prototype: ReinforcedWindow cost: 4 @@ -146,7 +146,7 @@ - type: rcd id: WindowReinforcedDirectional category: WindowsAndGrilles - sprite: /Textures/Interface/Radial/RCD/directional_reinforced.png + sprite: /Textures/_DV/Interface/Radial/RCD/directional_reinforced.png # Delta-v - Changed to reflect window resprites mode: ConstructObject prototype: WindowReinforcedDirectional cost: 3 @@ -162,7 +162,7 @@ - type: rcd id: Airlock category: Airlocks - sprite: /Textures/Interface/Radial/RCD/airlock.png + sprite: /Textures/_DV/Interface/Radial/RCD/airlock.png # Delta-v - Changed to reflect airlock resprites mode: ConstructObject prototype: Airlock cost: 4 @@ -174,7 +174,7 @@ - type: rcd id: AirlockGlass category: Airlocks - sprite: /Textures/Interface/Radial/RCD/glass_airlock.png + sprite: /Textures/_DV/Interface/Radial/RCD/glass_airlock.png # Delta-v - Changed to reflect airlock resprites mode: ConstructObject prototype: AirlockGlass cost: 4 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 2fbb3561f07..724bda60747 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -387,7 +387,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/window.rsi + sprite: _DV/Structures/Windows/window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -406,7 +406,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/window_diagonal.rsi + sprite: _DV/Structures/Windows/window_diagonal.rsi #Delta V - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -424,7 +424,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/reinforced_window.rsi + sprite: _DV/Structures/Windows/reinforced_window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -443,7 +443,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/reinforced_window_diagonal.rsi + sprite: _DV/Structures/Windows/reinforced_window_diagonal.rsi #Delta V - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -461,7 +461,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/tinted_window.rsi + sprite: _DV/Structures/Windows/tinted_window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -517,7 +517,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/plasma_window.rsi + sprite: _DV/Structures/Windows/plasma_window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -536,7 +536,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/reinforced_plasma_window.rsi + sprite: _DV/Structures/Windows/reinforced_plasma_window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -574,7 +574,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/plasma_diagonal.rsi + sprite: _DV/Structures/Windows/plasma_diagonal.rsi #Delta V - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -592,7 +592,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + sprite: _DV/Structures/Windows/reinforced_plasma_diagonal.rsi #Delta V - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -700,7 +700,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/uranium_window.rsi + sprite: _DV/Structures/Windows/uranium_window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -719,7 +719,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/reinforced_uranium_window.rsi + sprite: _DV/Structures/Windows/reinforced_uranium_window.rsi #Delta V - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -738,7 +738,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/uranium_window_diagonal.rsi + sprite: _DV/Structures/Windows/uranium_window_diagonal.rsi #Delta V - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -756,7 +756,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + sprite: _DV/Structures/Windows/reinforced_uranium_diagonal.rsi #Delta V - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -1271,7 +1271,7 @@ category: construction-category-structures description: It opens, it closes, and maybe crushes you. icon: - sprite: Structures/Doors/Airlocks/Standard/basic.rsi + sprite: _DV/Structures/Doors/Airlocks/Standard/basic.rsi # Delta-V - Changed to match delta-v specific door sprite state: assembly objectType: Structure placementMode: SnapgridCenter @@ -1288,7 +1288,7 @@ category: construction-category-structures description: It opens, it closes, and maybe crushes you. icon: - sprite: Structures/Doors/Airlocks/Glass/glass.rsi + sprite: _DV/Structures/Doors/Airlocks/Glass/glass.rsi # Delta-V - Changed to match delta-v specific door sprite state: assembly objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/airlock.png b/Resources/Textures/_DV/Interface/Radial/RCD/airlock.png new file mode 100644 index 0000000000000000000000000000000000000000..47c697f2e07785ab0f9d8895aad71532ffcdc7dd GIT binary patch literal 579 zcmV-J0=)f+P)Px${YgYYR9J=WmOo3wKp4g!{|yx}Amuu=2Z|_~f)!K5&COl9I_Veiv-CSS3Z1$* zxr&8WXeE`Xa60q|6+sjf(V<+tB$r&$iY|SYOYYvh&o8<6E(eS?)<0`P)wxl!z6$vq z9v*vmdwm%YtUzdoV98fo24Qw%L>IX z#sC1eZHLB`0J&`!fZ;PpD#jQ%=Kugg2sq~;gupaS)a&(R06|@zK1Ys~D~7UPnCqkk zxIBGEHk(zBxvr}<7z%*WW#9ec?nfx*{(L4jvH0|yb5Kgt0Wju-AY?-okSs!o@4C@w zM8;0WX8I+`KtUxcLLuFoTbAW5xlX6!^_!+SIzZ6ebzR?b1%T$$3F!J@>K@K|UVph_ zU~0}89w1n7!d%ozt=fgPKNYH*)s-c5Z|-7qr>=pd<^Z(jK*|~r3YvZ1uHp5?UuZ{% zJKihveeFm6j$0;uM5RH^=wkpPVSESbII`BX;YZRM5_5;-N> z8tAhLY#qEyJ@e>COs~BE%dHHQ8bCnkL@D)tI>B~mfLgVigb&SD8_iZbHfFO_Ob*by z$U?xct}Fonip8GPx%g-Jv~R9J=WmOp3{Q5?rVuh`ODAwdmEZ5s@hYX+NENN_6-1`CdMbP=3%vEY*3 zEu%wA1#xl7P!IxwV{nj|5{K3ywpS{rm854&O-L(6&mmql$-6(PLYI7}d++`3_x=3d zzdPuur&E@Ybxutu%(2lhpFUSOXdL{Lflu)I7d5-j;ZYsCrX%kvlOpwp#PY&Q@zBuB8ktmDrwm2VX1+6!JxaR8`05~>J3&F=Phd{IX_xe}- zgUuW7+hMaGAux7!{x5*tnh*Q^$Ir^Z07E_#y;^5?Z_hSY*T+!Pw62fZtxJpD0kmI2 zmQHfc-6RFjb?x~1#=O79T$s+EX8>WE9C?TX4|`x&7ZeHw9w`7;QupKvpjB$%GGnd) z*-VK$wHjK@)$>Gh1juGeY;SKf|GGhR_RlAI>s9jxwEFDYp&125QHU0Q+ImR$K;>#aK|ZxH|h002ovPDHLkV1l%>QK|p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/directional.png b/Resources/Textures/_DV/Interface/Radial/RCD/directional.png new file mode 100644 index 0000000000000000000000000000000000000000..c7c49b8ccc74c8932c4b6a62686a330ed4b157ca GIT binary patch literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}EuJopArY-_ zFD>LfY#`A3aDULjlPlKtHiHK9UXrdr=Haee!Nup2+%zYp00i_>zopr03dl( AI{*Lx literal 0 HcmV?d00001 diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/directional_reinforced.png b/Resources/Textures/_DV/Interface/Radial/RCD/directional_reinforced.png new file mode 100644 index 0000000000000000000000000000000000000000..1a1a97a40435bd6e9fd6441fd26ec2ba50bd0395 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}OFUg1Ln2y} z6C_v{Cy4Yk1sZU%NfGa7-w@woQl zuGzC^E19vgvo|+39<0wPODvt*+IqBJ)p)&Rj8YK~Q(7PxE<7B aV7L?)`&4hu+^sPx%9Z5t%R9J=WmQQaIK^VrLiXLd1BE}9x7!o5kxWrPk#P-&YU`+c7^h@v&dgeQL z=OPymp4)`*rvcp6wb7}jOh|h%?P*gFWR_)jc4v2O>V+pEv-8gIK0lauW)@g#ssF4M zS#YbS-xLcuoc)^M`s(_h4AQG<6bm_6mIcEwe17+3Un&-IsPAV`M+T4RO{l>Io8@dZ zO>Eby&~@E6hcN~KFbu;tCI!g7o&v}$7(^9g44iWS03igNa}YwHX&Tz?b~FI5PL3*v zL1Qm>zBFWUVXl%A;N+-sxcO=;B^xul16%2k1c1_KzS#NCZ&})NjYdvf)3nBG*|2;SXd#`Ky??jsJhL%_%^v_bz8!!l62+*}oovIfBUuU{ zTTj)=r;_ZJ3CC4>YniLwSR*b4Rz#tm;Q$lQGei`ESk z8z9WkElR0#>3G}30IjAOg%7>{5WW5|bk26I8XaJA{1^gWoMzSPJi%}{Gjks_s(I7t xR0@#zr8K>oUg(F-6S)TcPQ3TKrIxx2{RO#i*W}-iX<7gP002ovPDHLkV1m)c6ZQZA literal 0 HcmV?d00001 diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/window.png b/Resources/Textures/_DV/Interface/Radial/RCD/window.png new file mode 100644 index 0000000000000000000000000000000000000000..1b34dff63ada7c00c9c69153b0355fa64963a5f4 GIT binary patch literal 342 zcmV-c0jd6pP)Px$5J^NqR9J=WmN9OGFc3w5qAf;LwnaJO1UUd_$Vv97oL~=tTq2-C?lz4bvB);V z?j|&TEo1-3$nqE{6i((N^`ULsyL0X>Aw-0(>!MkgRQT8T^|lN>s=BeSgfBzSRowu< zJth$qaL&PpV;On|@T>&;J&@|=XKH0tH#SHB;8((PU5s{Mg$*tAoe&ekvD3Xhfd>fy zP}*dR=V=50QMgp#7o`p6Y0Pe_wBaBjK`ao${h#HqN*fl`0mvM}|Dp&Kfg&Kj2j*#n z(q?xs{n;M1&07*qoM6N<$f{ZAQ(EtDd literal 0 HcmV?d00001 diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/window_reinforced.png b/Resources/Textures/_DV/Interface/Radial/RCD/window_reinforced.png new file mode 100644 index 0000000000000000000000000000000000000000..6deef48778d360ec67d38f6d4d2e357e920f6331 GIT binary patch literal 541 zcmV+&0^Px$*GWV{R9J=WmOYP~KoEwXL@6-aum~wqgeXo*Q=!S3)qe!@R@nFtadY#*Oi2Xd#Z{$Lsa_S4bSkVZYz^ za=jfQS4!bHPV2f{F7;iWyK+-6mr{y2jvxED-t{Tv%U8+fSQZ&>5aj@ebh}<9o82MZ zuB-K(=tUMAfU?L!H;6c-+vQL;djk+uS|fYtL!a*D}V}h5CER``S9`cv1!nh&*lWw*~zDz4+db2;gD|EclXIo zbe{G(o71RMPy3++0Z;W|jA5}@yet5%HLGMJ`&pAu?J1CZ+7HD}3iHK9C>f9f>!y7Q zKfXOIfu*&Uu?+O~f!D-yx1jG27{&WfUyeXt^?|`H_4P)Px&lu1NER9J=WmS1bzRv5;AjpO9VM}MqL(@oL6vz z8+>Bin$~C-#<}adq-pw5CJ{p5c^+XHUYT!U+6%7hBBewKQMi&M$?w_o`+TxJyQGx3 zt~)ij#c7S%mv8>?6YYZ+oR^df!P~`hcfi}d&>ubFxZTcqrdjR|0H$0bU8wNpk6&kI zb7}@M^gBn0s)Me{W*Yh2`Q`y>OORpJaX5{9-VXbSs)J$} zl&cQv`h7~JQr>U0exJc$fMFP2jz4R#v4f@?^rMh83Q6KVgFl}V1ObXNJrgsRz%)(1dhi$kt!gzj-QaKkm^AXy z)Jh|beAK0Jfk)jIe(Qkxy^SV-Wm#D64yI|&%)r!hU~6mZJV_Ev(?m)MK>fSN_^kud z=-v0%9EVoBXfmPO*tI$bzyAV29LISE_V@R%%s1BqlQ0Z}#j(SwEO9y<(&=<^&9W?( z%VhwTbsM3oA3E&p08G$S@gZZ+ZRl+04Oejzc#d{XZU< z#N?U-S3IG9EDu=j4r$~UPCF>B`7{g$11hx*lDLnxW?#<(K@iZnEHYZvYWAZLp|2ox zoBHO%hR|(lch?IX#l)`FSy-y%=Rn8XB?y9f?d|PzDdoi^69|F;(=>BaWkqI^XMHA-jkUM8 z_hBAbTU+Ds@bJpkQ51zVP4m*4>61L`^FBOp&QHM&ZtyAb558f!Y$WW&!~g&Q07*qo IM6N<$f*A4U@&Et; literal 0 HcmV?d00001 From bcf5655fc7c2d8221306928502bf860d6b82405f Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 03:22:35 -0400 Subject: [PATCH 02/15] added artibutions.yml for new RCD sprites --- .../_DV/Interface/Radial/RCD/attributions.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml new file mode 100644 index 00000000000..0c54b643cf0 --- /dev/null +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -0,0 +1,11 @@ +# Delta-V RCD sprites for the interaction wheel + +- files: ["airlock.png","airlocks.png","directional.png","directional_reinforced.png","glass_airlock.png","window.png","window_reinforced.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by SubspaceEmber for Delta-V" + source: "https://github.com/subspaceember" + +- files: ["windows_and_grilles.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified existing grille sprite from upstream with new window from SubspaceEmber" + source: "https://github.com/subspaceember" \ No newline at end of file From ccd0c560ab97ea11928d8ab364553c412175a4bd Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 04:04:46 -0400 Subject: [PATCH 03/15] Added recipies for directional uranium window and directional reinforced uranium window --- .../Recipes/Construction/structures.yml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 724bda60747..1d1dd3a5a6a 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -687,6 +687,44 @@ objectType: Structure placementMode: SnapgridCenter + # Delta-V - added recipe for uranium directional window +- type: construction + name: directional uranium window + id: UraniumWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: _DV/Structures/Windows/directional.rsi + state: uranium_window + objectType: Structure + placementMode: SnapgridCenter + + # Delta-V - added recipe for uranium directional reinforced window +- type: construction + name: directional reinforced uranium window + id: UraniumReinforcedWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumReinforcedWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: _DV/Structures/Windows/directional.rsi + state: uranium_reinforced_window + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: uranium window id: UraniumWindow From 643f0419cbd4dd71735cb81624d6e5fcbd496274 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 04:09:48 -0400 Subject: [PATCH 04/15] Decided to move uranium windows to new branch/pr since it's a seperate issue --- .../Recipes/Construction/structures.yml | 38 ------------------- 1 file changed, 38 deletions(-) diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 1d1dd3a5a6a..724bda60747 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -687,44 +687,6 @@ objectType: Structure placementMode: SnapgridCenter - # Delta-V - added recipe for uranium directional window -- type: construction - name: directional uranium window - id: UraniumWindowDirectional - graph: WindowDirectional - startNode: start - targetNode: uraniumWindowDirectional - category: construction-category-structures - canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. - conditions: - - !type:EmptyOrWindowValidInTile - - !type:NoWindowsInTile - icon: - sprite: _DV/Structures/Windows/directional.rsi - state: uranium_window - objectType: Structure - placementMode: SnapgridCenter - - # Delta-V - added recipe for uranium directional reinforced window -- type: construction - name: directional reinforced uranium window - id: UraniumReinforcedWindowDirectional - graph: WindowDirectional - startNode: start - targetNode: uraniumReinforcedWindowDirectional - category: construction-category-structures - canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. - conditions: - - !type:EmptyOrWindowValidInTile - - !type:NoWindowsInTile - icon: - sprite: _DV/Structures/Windows/directional.rsi - state: uranium_reinforced_window - objectType: Structure - placementMode: SnapgridCenter - - type: construction name: uranium window id: UraniumWindow From ea89da29a2ba12fc7ddf85e422a40f618d1359fc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 08:16:48 +0000 Subject: [PATCH 05/15] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml index 0c54b643cf0..538b2a28005 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -1,4 +1,4 @@ -# Delta-V RCD sprites for the interaction wheel +# Delta-V RCD sprites for the interaction wheel - files: ["airlock.png","airlocks.png","directional.png","directional_reinforced.png","glass_airlock.png","window.png","window_reinforced.png"] license: "CC-BY-SA-3.0" @@ -8,4 +8,4 @@ - files: ["windows_and_grilles.png"] license: "CC-BY-SA-3.0" copyright: "Modified existing grille sprite from upstream with new window from SubspaceEmber" - source: "https://github.com/subspaceember" \ No newline at end of file + source: "https://github.com/subspaceember" From 3e6e8395a455eb67f9fa53bae6f1a6a7b672b02d Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 04:27:46 -0400 Subject: [PATCH 06/15] Added recipies for directional uranium window and directional reinforced uranium window --- .../Recipes/Construction/structures.yml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 2fbb3561f07..9faa5612a7d 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -687,6 +687,43 @@ objectType: Structure placementMode: SnapgridCenter + # Delta-V - added recipe for uranium directional window +- type: construction + name: directional uranium window + id: UraniumWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: _DV/Structures/Windows/directional.rsi + state: uranium_window + objectType: Structure + placementMode: SnapgridCenter + # Delta-V - added recipe for uranium directional reinforced window +- type: construction + name: directional reinforced uranium window + id: UraniumReinforcedWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumReinforcedWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: _DV/Structures/Windows/directional.rsi + state: uranium_reinforced_window + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: uranium window id: UraniumWindow From 6994d0d9603ff64966a1d8fa591e0c8ca7cd0da3 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 04:34:52 -0400 Subject: [PATCH 07/15] New line --- Resources/Prototypes/Recipes/Construction/structures.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 9faa5612a7d..a510a5274f6 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -705,6 +705,7 @@ state: uranium_window objectType: Structure placementMode: SnapgridCenter + # Delta-V - added recipe for uranium directional reinforced window - type: construction name: directional reinforced uranium window From 62bf328cf74a6f1507d938eefe07c496f0282217 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 17:06:20 -0400 Subject: [PATCH 08/15] Relocated additions to _DV --- .../Recipes/Construction/structures.yml | 38 ------------------- .../_DV/Recipes/Construction/structures.yml | 37 ++++++++++++++++++ 2 files changed, 37 insertions(+), 38 deletions(-) create mode 100644 Resources/Prototypes/_DV/Recipes/Construction/structures.yml diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index a510a5274f6..2fbb3561f07 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -687,44 +687,6 @@ objectType: Structure placementMode: SnapgridCenter - # Delta-V - added recipe for uranium directional window -- type: construction - name: directional uranium window - id: UraniumWindowDirectional - graph: WindowDirectional - startNode: start - targetNode: uraniumWindowDirectional - category: construction-category-structures - canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. - conditions: - - !type:EmptyOrWindowValidInTile - - !type:NoWindowsInTile - icon: - sprite: _DV/Structures/Windows/directional.rsi - state: uranium_window - objectType: Structure - placementMode: SnapgridCenter - - # Delta-V - added recipe for uranium directional reinforced window -- type: construction - name: directional reinforced uranium window - id: UraniumReinforcedWindowDirectional - graph: WindowDirectional - startNode: start - targetNode: uraniumReinforcedWindowDirectional - category: construction-category-structures - canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. - conditions: - - !type:EmptyOrWindowValidInTile - - !type:NoWindowsInTile - icon: - sprite: _DV/Structures/Windows/directional.rsi - state: uranium_reinforced_window - objectType: Structure - placementMode: SnapgridCenter - - type: construction name: uranium window id: UraniumWindow diff --git a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml new file mode 100644 index 00000000000..d903b2dae09 --- /dev/null +++ b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml @@ -0,0 +1,37 @@ +# Delta-V - recipe for uranium directional window +- type: construction + name: directional uranium window + id: UraniumWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: _DV/Structures/Windows/directional.rsi + state: uranium_window + objectType: Structure + placementMode: SnapgridCenter + + # Delta-V - recipe for uranium directional reinforced window +- type: construction + name: directional reinforced uranium window + id: UraniumReinforcedWindowDirectional + graph: WindowDirectional + startNode: start + targetNode: uraniumReinforcedWindowDirectional + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: _DV/Structures/Windows/directional.rsi + state: uranium_reinforced_window + objectType: Structure + placementMode: SnapgridCenter From fa3b5123ee0f1cd9d9bb48cebbad43e0506f3056 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Thu, 24 Apr 2025 18:14:03 -0400 Subject: [PATCH 09/15] Formatting --- Resources/Prototypes/_DV/Recipes/Construction/structures.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml index d903b2dae09..4a6fc560dda 100644 --- a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml @@ -1,4 +1,4 @@ -# Delta-V - recipe for uranium directional window +# DeltaV - recipe for uranium directional window - type: construction name: directional uranium window id: UraniumWindowDirectional @@ -17,7 +17,7 @@ objectType: Structure placementMode: SnapgridCenter - # Delta-V - recipe for uranium directional reinforced window + # DeltaV - recipe for uranium directional reinforced window - type: construction name: directional reinforced uranium window id: UraniumReinforcedWindowDirectional From 3fdbefb1518a69363e56c0587abc009b5b18a9f9 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Sat, 26 Apr 2025 17:40:06 -0400 Subject: [PATCH 10/15] Added additional deconstruct.png sprite added. attributions.yml updated with correct attributions. Formatting fixes. --- .../RCD/RCDMenuBoundUserInterface.cs | 4 +- Resources/Prototypes/RCD/rcd.yml | 14 +++---- .../Recipes/Construction/structures.yml | 38 +++++++++--------- .../_DV/Interface/Radial/RCD/attributions.yml | 17 +++++--- .../_DV/Interface/Radial/RCD/deconstruct.png | Bin 0 -> 1090 bytes .../_DV/Interface/Radial/RCD/meta.json | 35 ++++++++++++++++ 6 files changed, 74 insertions(+), 34 deletions(-) create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/deconstruct.png create mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/meta.json diff --git a/Content.Client/RCD/RCDMenuBoundUserInterface.cs b/Content.Client/RCD/RCDMenuBoundUserInterface.cs index ad75d2d2085..21686f6acf5 100644 --- a/Content.Client/RCD/RCDMenuBoundUserInterface.cs +++ b/Content.Client/RCD/RCDMenuBoundUserInterface.cs @@ -17,8 +17,8 @@ public sealed class RCDMenuBoundUserInterface : BoundUserInterface = new Dictionary { ["WallsAndFlooring"] = ("rcd-component-walls-and-flooring", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/walls_and_flooring.png"))), - ["WindowsAndGrilles"] = ("rcd-component-windows-and-grilles", new SpriteSpecifier.Texture(new ResPath("/Textures/_DV/Interface/Radial/RCD/windows_and_grilles.png"))), // Delta-V - Path changed to new sprites reflecting Delta-V resprites - ["Airlocks"] = ("rcd-component-airlocks", new SpriteSpecifier.Texture(new ResPath("/Textures/_DV/Interface/Radial/RCD/airlocks.png"))), // Delta-V - Path changed to new sprites reflecting Delta-V resprites + ["WindowsAndGrilles"] = ("rcd-component-windows-and-grilles", new SpriteSpecifier.Texture(new ResPath("/Textures/_DV/Interface/Radial/RCD/windows_and_grilles.png"))), // DeltaV - Path changed to new sprites reflecting Delta-V resprites + ["Airlocks"] = ("rcd-component-airlocks", new SpriteSpecifier.Texture(new ResPath("/Textures/_DV/Interface/Radial/RCD/airlocks.png"))), // DeltaV - Path changed to new sprites reflecting Delta-V resprites ["Electrical"] = ("rcd-component-electrical", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/multicoil.png"))), ["Lighting"] = ("rcd-component-lighting", new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Radial/RCD/lighting.png"))), }; diff --git a/Resources/Prototypes/RCD/rcd.yml b/Resources/Prototypes/RCD/rcd.yml index 960a9c952df..487c149cd27 100644 --- a/Resources/Prototypes/RCD/rcd.yml +++ b/Resources/Prototypes/RCD/rcd.yml @@ -7,7 +7,7 @@ id: Deconstruct name: rcd-component-deconstruct category: WallsAndFlooring - sprite: /Textures/Interface/Radial/RCD/deconstruct.png + sprite: /Textures/_DV/Interface/Radial/RCD/deconstruct.png # DeltaV - Changed to reflect airlock resprites mode: Deconstruct prototype: EffectRCDDeconstructPreview rotation: Camera @@ -103,7 +103,7 @@ - type: rcd id: Window category: WindowsAndGrilles - sprite: /Textures/_DV/Interface/Radial/RCD/window.png # Delta-v - Changed to reflect window resprites + sprite: /Textures/_DV/Interface/Radial/RCD/window.png # DeltaV - Changed to reflect window resprites mode: ConstructObject prototype: Window cost: 3 @@ -117,7 +117,7 @@ - type: rcd id: WindowDirectional category: WindowsAndGrilles - sprite: /Textures/_DV/Interface/Radial/RCD/directional.png # Delta-v - Changed to reflect window resprites + sprite: /Textures/_DV/Interface/Radial/RCD/directional.png # DeltaV - Changed to reflect window resprites mode: ConstructObject prototype: WindowDirectional cost: 2 @@ -132,7 +132,7 @@ - type: rcd id: ReinforcedWindow category: WindowsAndGrilles - sprite: /Textures/_DV/Interface/Radial/RCD/window_reinforced.png # Delta-v - Changed to reflect window resprites + sprite: /Textures/_DV/Interface/Radial/RCD/window_reinforced.png # DeltaV - Changed to reflect window resprites mode: ConstructObject prototype: ReinforcedWindow cost: 4 @@ -146,7 +146,7 @@ - type: rcd id: WindowReinforcedDirectional category: WindowsAndGrilles - sprite: /Textures/_DV/Interface/Radial/RCD/directional_reinforced.png # Delta-v - Changed to reflect window resprites + sprite: /Textures/_DV/Interface/Radial/RCD/directional_reinforced.png # DeltaV - Changed to reflect window resprites mode: ConstructObject prototype: WindowReinforcedDirectional cost: 3 @@ -162,7 +162,7 @@ - type: rcd id: Airlock category: Airlocks - sprite: /Textures/_DV/Interface/Radial/RCD/airlock.png # Delta-v - Changed to reflect airlock resprites + sprite: /Textures/_DV/Interface/Radial/RCD/airlock.png # DeltaV - Changed to reflect airlock resprites mode: ConstructObject prototype: Airlock cost: 4 @@ -174,7 +174,7 @@ - type: rcd id: AirlockGlass category: Airlocks - sprite: /Textures/_DV/Interface/Radial/RCD/glass_airlock.png # Delta-v - Changed to reflect airlock resprites + sprite: /Textures/_DV/Interface/Radial/RCD/glass_airlock.png # DeltaV - Changed to reflect airlock resprites mode: ConstructObject prototype: AirlockGlass cost: 4 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 724bda60747..44709b77779 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -387,7 +387,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -406,7 +406,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/window_diagonal.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/window_diagonal.rsi #DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -424,7 +424,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/reinforced_window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -443,7 +443,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_window_diagonal.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/reinforced_window_diagonal.rsi #DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -461,7 +461,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/tinted_window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/tinted_window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -517,7 +517,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/plasma_window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/plasma_window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -536,7 +536,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_plasma_window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/reinforced_plasma_window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -574,7 +574,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/plasma_diagonal.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/plasma_diagonal.rsi #DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -592,7 +592,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_plasma_diagonal.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/reinforced_plasma_diagonal.rsi #DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -610,7 +610,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows state: window objectType: Structure placementMode: SnapgridCenter @@ -628,7 +628,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows state: reinforced_window objectType: Structure placementMode: SnapgridCenter @@ -664,7 +664,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows state: plasma_window objectType: Structure placementMode: SnapgridCenter @@ -682,7 +682,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows state: plasma_reinforced_window objectType: Structure placementMode: SnapgridCenter @@ -700,7 +700,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/uranium_window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/uranium_window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -719,7 +719,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_uranium_window.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/reinforced_uranium_window.rsi #DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -738,7 +738,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/uranium_window_diagonal.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/uranium_window_diagonal.rsi #DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -756,7 +756,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_uranium_diagonal.rsi #Delta V - Resprite windows + sprite: _DV/Structures/Windows/reinforced_uranium_diagonal.rsi #DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -1271,7 +1271,7 @@ category: construction-category-structures description: It opens, it closes, and maybe crushes you. icon: - sprite: _DV/Structures/Doors/Airlocks/Standard/basic.rsi # Delta-V - Changed to match delta-v specific door sprite + sprite: _DV/Structures/Doors/Airlocks/Standard/basic.rsi # DeltaV - Changed to match DeltaV specific door sprite state: assembly objectType: Structure placementMode: SnapgridCenter @@ -1288,7 +1288,7 @@ category: construction-category-structures description: It opens, it closes, and maybe crushes you. icon: - sprite: _DV/Structures/Doors/Airlocks/Glass/glass.rsi # Delta-V - Changed to match delta-v specific door sprite + sprite: _DV/Structures/Doors/Airlocks/Glass/glass.rsi # DeltaV - Changed to match DeltaV specific door sprite state: assembly objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml index 538b2a28005..38623fab7d8 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -1,11 +1,16 @@ -# Delta-V RCD sprites for the interaction wheel +#DeltaV RCD menu wheel resprites -- files: ["airlock.png","airlocks.png","directional.png","directional_reinforced.png","glass_airlock.png","window.png","window_reinforced.png"] +- files: ["airlock.png, glass_airlock.png"] license: "CC-BY-SA-3.0" - copyright: "Created by SubspaceEmber for Delta-V" + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites standard/basic.rsi and glass/basic.rsi from https://github.com/tgstation." source: "https://github.com/subspaceember" - -- files: ["windows_and_grilles.png"] + +- files: ["deconstruct.png, directional.png, directional_reinforced.png, window.png, window_reinforced.png"] license: "CC-BY-SA-3.0" - copyright: "Modified existing grille sprite from upstream with new window from SubspaceEmber" + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites external.rsi, window.rsi, directional.rsi, reinforced_window.rsi, reinforced_directional.rsi from https://github.com/ParadiseSS13/Paradise/." source: "https://github.com/subspaceember" + +- files: ["airlocks.png, windows_and_grilles.png"] + license: "CC-BY-SA-3.0" + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Modified from sprites airlocks.png and windows_and_grilles.png from https://github.com/space-wizards/space-station-14." + source: "https://github.com/subspaceember" \ No newline at end of file diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/deconstruct.png b/Resources/Textures/_DV/Interface/Radial/RCD/deconstruct.png new file mode 100644 index 0000000000000000000000000000000000000000..792d4361f2d946186ba9cad4964d1ae60413c208 GIT binary patch literal 1090 zcmV-I1ikx-P)Px&{7FPXR9J=WmQPF^RUF4ZPr4NwCQVF?AqzIO$jpQ;M$H;dl;X)AtIFkG)PtgFQ`%~(BpYL(;_Sn18eldXHTAMVAuEgrcGlfx zX1Dgz3*TfizxVsiyzlq@-uwM#U=MqE$Pi9WRaGt9ZfpE2FLv(Is(AOUrz|(Sb9_x) zXs-?dPj`;5^;njLrfH|7lpp7GRTqGVrIXh+J~u##kaT2hid5hJoHu(-cBDQe?5OSkNZ- zD+&P7REk$?pKyA#H*;?Sdi{z*&@cpmWmyOzP*wEBf1{;E6UHUv6vVW0?V>Q zFcWk;3$6lwTl+g}*ES?sp0CUbu@TYrfsEM#BwAy!>$!2UBf>rdZ%8Sp3VB?s;L-95 z0M2f%@7jW7I*qxpVY`OL5{bS^O>2&(QcYutL|=#3>jC~5OC&7I`ma)*vfwJf=ku}r z>s`)nuJ4LRQ>onH5O5=NSg!$Xt+CjI9jt%$g|gab4qMaH)7wr0T&tk2t}aWKOsDfM zzoIZ|n&Rq#gIqmuaNVycP04iH7c>l!OsA{gIdUWn(Bbtyzqs(@*38U|BYDvb1Ofp* z|KdyDdwgqGd?mTTS4WQmu(0q8-DTSxsw@XM4U`?9`)Mk7|NHy92j zA5@i>@A7xti|-g!`8a+e5K0ZU6uKz<|2 z#r$ga9GvNj$1g^7eYn!&>7LZIEnuiM7E9;M^`Vq9;55$zRY3t}ffVq1&@jYEO--oM z<2jT}r^A&V&vwu-T=yS}WT556-?=-x4T|F0h=4)h3UJGAN?q}I9$Tr8k!uw^S^Zen zwuv29?++Tr_rNQ#(-}umh)yczhzF>t(qO z=z#>}wqm;tZ>}7+%PkL?@4?CI&Ci80E+K?qQqx{5C7@&(7IZx~-*KQbXc!Zj_+=mv zO{Go(pB9_H=oVb7sK^_iw=B*(r?wNgAcR2Ew9u$&20Fandf=3*s;7%_l>8|zgp^Wb zel#t1N-zra=f+i4{TTQGxF@B&tg7lhpifHKS4_+v_V7^fFYYM8I;!W7IsgCw07*qo IM6N<$g44JRZU6uP literal 0 HcmV?d00001 diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/meta.json b/Resources/Textures/_DV/Interface/Radial/RCD/meta.json new file mode 100644 index 00000000000..c2c09e17164 --- /dev/null +++ b/Resources/Textures/_DV/Interface/Radial/RCD/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Airlock sprites based on https://github.com/tgstation ports. Window sprites based on https://github.com/ParadiseSS13/Paradise/ ports. Airlocks and Windows and grilles include original sprites from https://github.com/space-wizards/space-station-14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "airlock" + }, + { + "name": "airlocks" + }, + { + "name": "directional" + }, + { + "name": "directional_reinforced" + }, + { + "name": "glass_airlock" + }, + { + "name": "window" + }, + { + "name": "window_reinforced" + }, + { + "name": "windows_and_grilles" + } + ] +} From 3ecb9196f860d5f7557c73a0a002ef4acc92e639 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 26 Apr 2025 21:40:48 +0000 Subject: [PATCH 11/15] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .../_DV/Recipes/Construction/structures.yml | 6 +- .../_DV/Interface/Radial/RCD/attributions.yml | 6 +- .../_DV/Interface/Radial/RCD/meta.json | 64 +++++++++---------- 3 files changed, 38 insertions(+), 38 deletions(-) diff --git a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml index 4a6fc560dda..165196e8458 100644 --- a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml @@ -1,4 +1,4 @@ -# DeltaV - recipe for uranium directional window +# DeltaV - recipe for uranium directional window - type: construction name: directional uranium window id: UraniumWindowDirectional @@ -16,8 +16,8 @@ state: uranium_window objectType: Structure placementMode: SnapgridCenter - - # DeltaV - recipe for uranium directional reinforced window + + # DeltaV - recipe for uranium directional reinforced window - type: construction name: directional reinforced uranium window id: UraniumReinforcedWindowDirectional diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml index 38623fab7d8..0cf1448fba7 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -4,13 +4,13 @@ license: "CC-BY-SA-3.0" copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites standard/basic.rsi and glass/basic.rsi from https://github.com/tgstation." source: "https://github.com/subspaceember" - + - files: ["deconstruct.png, directional.png, directional_reinforced.png, window.png, window_reinforced.png"] license: "CC-BY-SA-3.0" copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites external.rsi, window.rsi, directional.rsi, reinforced_window.rsi, reinforced_directional.rsi from https://github.com/ParadiseSS13/Paradise/." source: "https://github.com/subspaceember" - + - files: ["airlocks.png, windows_and_grilles.png"] license: "CC-BY-SA-3.0" copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Modified from sprites airlocks.png and windows_and_grilles.png from https://github.com/space-wizards/space-station-14." - source: "https://github.com/subspaceember" \ No newline at end of file + source: "https://github.com/subspaceember" diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/meta.json b/Resources/Textures/_DV/Interface/Radial/RCD/meta.json index c2c09e17164..56d1a668153 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/meta.json +++ b/Resources/Textures/_DV/Interface/Radial/RCD/meta.json @@ -1,35 +1,35 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Airlock sprites based on https://github.com/tgstation ports. Window sprites based on https://github.com/ParadiseSS13/Paradise/ ports. Airlocks and Windows and grilles include original sprites from https://github.com/space-wizards/space-station-14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "airlock" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Airlock sprites based on https://github.com/tgstation ports. Window sprites based on https://github.com/ParadiseSS13/Paradise/ ports. Airlocks and Windows and grilles include original sprites from https://github.com/space-wizards/space-station-14", + "size": { + "x": 32, + "y": 32 }, - { - "name": "airlocks" - }, - { - "name": "directional" - }, - { - "name": "directional_reinforced" - }, - { - "name": "glass_airlock" - }, - { - "name": "window" - }, - { - "name": "window_reinforced" - }, - { - "name": "windows_and_grilles" - } - ] + "states": [ + { + "name": "airlock" + }, + { + "name": "airlocks" + }, + { + "name": "directional" + }, + { + "name": "directional_reinforced" + }, + { + "name": "glass_airlock" + }, + { + "name": "window" + }, + { + "name": "window_reinforced" + }, + { + "name": "windows_and_grilles" + } + ] } From 21ab283778fe2378a715b57c4d087bba8c7581f0 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Sun, 27 Apr 2025 17:33:15 -0400 Subject: [PATCH 12/15] removed unneeded files and fixed formatting --- .../Doors/Airlocks/base_assembly.yml | 2 +- .../Recipes/Construction/structures.yml | 34 ++++++++--------- .../_DV/Recipes/Construction/structures.yml | 37 ------------------- .../_DV/Interface/Radial/RCD/meta.json | 35 ------------------ 4 files changed, 18 insertions(+), 90 deletions(-) delete mode 100644 Resources/Prototypes/_DV/Recipes/Construction/structures.yml delete mode 100644 Resources/Textures/_DV/Interface/Radial/RCD/meta.json diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml index 4a14bbabaf4..b8cb694bf40 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_assembly.yml @@ -7,7 +7,7 @@ - type: Clickable - type: InteractionOutline - type: Sprite - sprite: _DV/Structures/Doors/Airlocks/Standard/basic.rsi #Delta V - Resprite Doors + sprite: _DV/Structures/Doors/Airlocks/Standard/basic.rsi # Delta V - Resprite Doors state: "assembly" - type: Physics - type: Fixtures diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 44709b77779..3d80938e707 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -387,7 +387,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -406,7 +406,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/window_diagonal.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/window_diagonal.rsi # DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -424,7 +424,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/reinforced_window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -443,7 +443,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_window_diagonal.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/reinforced_window_diagonal.rsi # DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -461,7 +461,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/tinted_window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/tinted_window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -517,7 +517,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/plasma_window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/plasma_window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -536,7 +536,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_plasma_window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/reinforced_plasma_window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -574,7 +574,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/plasma_diagonal.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/plasma_diagonal.rsi # DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -592,7 +592,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_plasma_diagonal.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/reinforced_plasma_diagonal.rsi # DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -610,7 +610,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi # DeltaV - Resprite windows state: window objectType: Structure placementMode: SnapgridCenter @@ -628,7 +628,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi # DeltaV - Resprite windows state: reinforced_window objectType: Structure placementMode: SnapgridCenter @@ -664,7 +664,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi # DeltaV - Resprite windows state: plasma_window objectType: Structure placementMode: SnapgridCenter @@ -682,7 +682,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/directional.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/directional.rsi # DeltaV - Resprite windows state: plasma_reinforced_window objectType: Structure placementMode: SnapgridCenter @@ -700,7 +700,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/uranium_window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/uranium_window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -719,7 +719,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_uranium_window.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/reinforced_uranium_window.rsi # DeltaV - Resprite windows state: full objectType: Structure placementMode: SnapgridCenter @@ -738,7 +738,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/uranium_window_diagonal.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/uranium_window_diagonal.rsi # DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter @@ -756,7 +756,7 @@ - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile icon: - sprite: _DV/Structures/Windows/reinforced_uranium_diagonal.rsi #DeltaV - Resprite windows + sprite: _DV/Structures/Windows/reinforced_uranium_diagonal.rsi # DeltaV - Resprite windows state: state1 objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml b/Resources/Prototypes/_DV/Recipes/Construction/structures.yml deleted file mode 100644 index 4a6fc560dda..00000000000 --- a/Resources/Prototypes/_DV/Recipes/Construction/structures.yml +++ /dev/null @@ -1,37 +0,0 @@ -# DeltaV - recipe for uranium directional window -- type: construction - name: directional uranium window - id: UraniumWindowDirectional - graph: WindowDirectional - startNode: start - targetNode: uraniumWindowDirectional - category: construction-category-structures - canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. - conditions: - - !type:EmptyOrWindowValidInTile - - !type:NoWindowsInTile - icon: - sprite: _DV/Structures/Windows/directional.rsi - state: uranium_window - objectType: Structure - placementMode: SnapgridCenter - - # DeltaV - recipe for uranium directional reinforced window -- type: construction - name: directional reinforced uranium window - id: UraniumReinforcedWindowDirectional - graph: WindowDirectional - startNode: start - targetNode: uraniumReinforcedWindowDirectional - category: construction-category-structures - canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. - conditions: - - !type:EmptyOrWindowValidInTile - - !type:NoWindowsInTile - icon: - sprite: _DV/Structures/Windows/directional.rsi - state: uranium_reinforced_window - objectType: Structure - placementMode: SnapgridCenter diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/meta.json b/Resources/Textures/_DV/Interface/Radial/RCD/meta.json deleted file mode 100644 index c2c09e17164..00000000000 --- a/Resources/Textures/_DV/Interface/Radial/RCD/meta.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Airlock sprites based on https://github.com/tgstation ports. Window sprites based on https://github.com/ParadiseSS13/Paradise/ ports. Airlocks and Windows and grilles include original sprites from https://github.com/space-wizards/space-station-14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "airlock" - }, - { - "name": "airlocks" - }, - { - "name": "directional" - }, - { - "name": "directional_reinforced" - }, - { - "name": "glass_airlock" - }, - { - "name": "window" - }, - { - "name": "window_reinforced" - }, - { - "name": "windows_and_grilles" - } - ] -} From 69a5148ea882293f9d9c522070553539f621af9d Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Sun, 27 Apr 2025 21:09:45 -0400 Subject: [PATCH 13/15] formatting part 2 --- Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml index 0cf1448fba7..a425259801e 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -1,5 +1,3 @@ -#DeltaV RCD menu wheel resprites - - files: ["airlock.png, glass_airlock.png"] license: "CC-BY-SA-3.0" copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites standard/basic.rsi and glass/basic.rsi from https://github.com/tgstation." From 49b08cdb94ffeedb91de667891a9505caaab48c0 Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Mon, 28 Apr 2025 03:50:49 -0400 Subject: [PATCH 14/15] updated with complete filepaths --- .../Textures/_DV/Interface/Radial/RCD/attributions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml index a425259801e..74dd8558fd3 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -1,14 +1,14 @@ - files: ["airlock.png, glass_airlock.png"] license: "CC-BY-SA-3.0" - copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites standard/basic.rsi and glass/basic.rsi from https://github.com/tgstation." + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/basic.rsi and Resources/Textures/_DV/Structures/Doors/Airlocks/Glass/glass.rsi from https://github.com/tgstation." source: "https://github.com/subspaceember" - files: ["deconstruct.png, directional.png, directional_reinforced.png, window.png, window_reinforced.png"] license: "CC-BY-SA-3.0" - copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites external.rsi, window.rsi, directional.rsi, reinforced_window.rsi, reinforced_directional.rsi from https://github.com/ParadiseSS13/Paradise/." + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/external.rsi, Resources/Textures/_DV/Structures/Windows/window.rsi, Resources/Textures/_DV/Structures/Windows/directional.rsi, Resources/Textures/_DV/Structures/Windows/reinforced_window.rsi from https://github.com/ParadiseSS13/Paradise/." source: "https://github.com/subspaceember" - files: ["airlocks.png, windows_and_grilles.png"] license: "CC-BY-SA-3.0" - copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Modified from sprites airlocks.png and windows_and_grilles.png from https://github.com/space-wizards/space-station-14." + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Modified from sprites Resources/Textures/Interface/Radial/RCD/airlocks.png and Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png from https://github.com/space-wizards/space-station-14." source: "https://github.com/subspaceember" From 5463cbf0a52d0d7bd4105d763b72df9fbd7a11bd Mon Sep 17 00:00:00 2001 From: SubspaceEmber Date: Tue, 29 Apr 2025 21:46:21 -0400 Subject: [PATCH 15/15] updated with permalinks --- .../Textures/_DV/Interface/Radial/RCD/attributions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml index 74dd8558fd3..936079099a4 100644 --- a/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml +++ b/Resources/Textures/_DV/Interface/Radial/RCD/attributions.yml @@ -1,14 +1,14 @@ - files: ["airlock.png, glass_airlock.png"] license: "CC-BY-SA-3.0" - copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/basic.rsi and Resources/Textures/_DV/Structures/Doors/Airlocks/Glass/glass.rsi from https://github.com/tgstation." + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/basic.rsi and Resources/Textures/_DV/Structures/Doors/Airlocks/Glass/glass.rsi from https://github.com/DeltaV-Station/Delta-v/tree/d9839a319a16ad48552393aa998fa51dc4377871/Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/basic.rsi and https://github.com/DeltaV-Station/Delta-v/tree/d9839a319a16ad48552393aa998fa51dc4377871/Resources/Textures/_DV/Structures/Doors/Airlocks/Glass/basic.rsi." source: "https://github.com/subspaceember" - files: ["deconstruct.png, directional.png, directional_reinforced.png, window.png, window_reinforced.png"] license: "CC-BY-SA-3.0" - copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/external.rsi, Resources/Textures/_DV/Structures/Windows/window.rsi, Resources/Textures/_DV/Structures/Windows/directional.rsi, Resources/Textures/_DV/Structures/Windows/reinforced_window.rsi from https://github.com/ParadiseSS13/Paradise/." + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. based on ported sprites Resources/Textures/_DV/Structures/Doors/Airlocks/Standard/external.rsi, Resources/Textures/_DV/Structures/Windows/window.rsi, Resources/Textures/_DV/Structures/Windows/directional.rsi, from https://github.com/ParadiseSS13/Paradise/blob/42099d95b1d3f271383e91ef8f9507c7581b57a0/icons/obj/doors/airlocks/external/external.dmi https://github.com/ParadiseSS13/Paradise/blob/42099d95b1d3f271383e91ef8f9507c7581b57a0/icons/obj/smooth_structures/windows/window.dmi Resources/Textures/_DV/Structures/Windows/reinforced_window.rsi https://github.com/ParadiseSS13/Paradise/blob/42099d95b1d3f271383e91ef8f9507c7581b57a0/icons/obj/smooth_structures/windows/window.dmi https://github.com/ParadiseSS13/Paradise/blob/42099d95b1d3f271383e91ef8f9507c7581b57a0/icons/obj/structures.dmi https://github.com/ParadiseSS13/Paradise/blob/42099d95b1d3f271383e91ef8f9507c7581b57a0/icons/obj/smooth_structures/windows/reinforced_window.dmi." source: "https://github.com/subspaceember" - files: ["airlocks.png, windows_and_grilles.png"] license: "CC-BY-SA-3.0" - copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Modified from sprites Resources/Textures/Interface/Radial/RCD/airlocks.png and Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png from https://github.com/space-wizards/space-station-14." + copyright: "RCD wheel sprites made for DeltaV by https://github.com/SubspaceEmber. Modified from sprites Resources/Textures/Interface/Radial/RCD/airlocks.png and Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png from https://github.com/space-wizards/space-station-14/blob/c96af2808f5565505e7d3823a68276552193b236/Resources/Textures/Interface/Radial/RCD/airlocks.png and https://github.com/space-wizards/space-station-14/blob/c96af2808f5565505e7d3823a68276552193b236/Resources/Textures/Interface/Radial/RCD/windows_and_grilles.png." source: "https://github.com/subspaceember"