Skip to content

Commit

Permalink
oh i have to add it HERE
Browse files Browse the repository at this point in the history
  • Loading branch information
SECBATON-GRIFFON committed Dec 31, 2024
1 parent c853e38 commit cc03cdc
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions nano/templates/exofab.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Used In File(s): \code\game\mecha\mech_fabricator.dm
#define MECH_SCREEN_PHAZON 36
#define MECH_SCREEN_NANOTRASEN 37
#define MECH_SCREEN_CLARKE 38
#define MECH_SCREEN_ROSWELL 39

#define MECH_SCREEN_MISC 41

Expand Down Expand Up @@ -100,6 +101,7 @@ Used In File(s): \code\game\mecha\mech_fabricator.dm
</div>
<div class="line">
{{:helper.link('Phazon', 'gear',{'screen':36},(data.screen==36)?'linkOn':'', 'fixedLeft')}}
{{:helper.link('Roswell', 'gear',{'screen':39},(data.screen==39)?'linkOn':'', 'fixedLeft')}}
</div>
{{if data.parts.Nanotrasen.length > 1}}
<div class="line">
Expand Down Expand Up @@ -602,6 +604,34 @@ Used In File(s): \code\game\mecha\mech_fabricator.dm
</div>
{{/if}}

{{if data.screen == 39}}
<div class="item">
<div class="itemLabel">
Roswell Parts
</div>
<div class="line">
{{:helper.link('Quick Roswell', 'gear', {'queue_part_set':'Roswell'}, null, 'fixedLeftWidest')}}
</div>
<div class="itemContentWide" style="width:100%;">
<div class="statusDisplay">
<div class="line">
{{for data.parts.Roswell}}
<div class="line">
<div class="statusValue">
{{:helper.link(value.name, 'gear', value.command2, null, null, 'misc')}}
{{:helper.link(value.cost, null, null, null, null, 'cost')}}
{{:helper.link('Queue', 'gear', value.command1, null, 'fixedLeft')}}
</div>
</div>
{{empty}}
<i>No parts in memory</i>
{{/for}}
</div>
</div>
</div>
</div>
{{/if}}

{{if data.screen == 41}}
<div class="item">
<div class="itemLabel">
Expand Down

0 comments on commit cc03cdc

Please sign in to comment.