Template:Amity Crew Figures: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 5: | Line 5: | ||
'''{{ #switch: {{{CO}}} | Rivi = 1 | #default = 1}}''' | '''{{ #switch: {{{CO}}} | Rivi = 1 | #default = 1}}''' | ||
<br/> {{ #switch: {{{DEPT}}} | FDC = Ambassador | #default= CO }} | <br/> {{ #switch: {{{DEPT}}} | FDC = Ambassador | #default= CO }} | ||
| | | style="width: 5px;" | | ||
|}} | |}} | ||
{{ #if: {{{OFFICERS|}}} | {{ #if: {{{OFFICERS|}}} | ||
Line 11: | Line 11: | ||
'''{{{OFFICERS}}}''' | '''{{{OFFICERS}}}''' | ||
<br/> {{ #switch: {{{DEPT}}} | FDC = Diplomats | #default= Officers }} | <br/> {{ #switch: {{{DEPT}}} | FDC = Diplomats | #default= Officers }} | ||
| | | style="width: 5px;" | | ||
|}} | |}} | ||
{{ #if: {{{ENLISTED|}}} | {{ #if: {{{ENLISTED|}}} | ||
Line 17: | Line 17: | ||
'''{{{ENLISTED}}}''' | '''{{{ENLISTED}}}''' | ||
<br/> {{ #switch: {{{DEPT}}} | FDC = Staff | #default= Enlisted }} | <br/> {{ #switch: {{{DEPT}}} | FDC = Staff | #default= Enlisted }} | ||
| | | style="width: 5px;" | | ||
|}} | |}} | ||
{{ #if: {{{CIVILIANS|}}} | {{ #if: {{{CIVILIANS|}}} |
Revision as of 15:32, 14 June 2022
Usage Notes
Basic Department Listing Syntax
{{ Amity Crew Figures | DEPT = | CO = 1 | OFFICERS = 50 | ENLISTED = 300 | CIVILIANS = 1,000 }}
Yields...
1
|
50
|
300
|
1,000
|
Excluding Any Duty Post
Simply remove any duty post / role (including CO) that you don't want to include. You can also set the # to 0 or leave it blank (your choice).
{{ Amity Crew Figures | OFFICERS = 10 | ENLISTED = 20 }}
Yields...
style="width: 5px;"
10
|
20
|
Switching Department
{{ Amity Crew Figures | DEPT = Command | OFFICERS = 10 | ENLISTED = 20 | CIVILIANS = 100 }}
Yields...
style="width: 5px;"
10
|
20
|
100
|
{{ Amity Crew Figures | DEPT = Ops | OFFICERS = 10 | ENLISTED = 20 | CIVILIANS = 100 }}
Yields...
style="width: 5px;"
10
|
20
|
100
|
{{ Amity Crew Figures | DEPT = Science | OFFICERS = 10 | ENLISTED = 20 | CIVILIANS = 100 }}
Yields...
style="width: 5px;"
10
|
20
|
100
|
{{ Amity Crew Figures | DEPT = FDC | CO = 1 | OFFICERS = 10 | ENLISTED = 20 | CIVILIANS = 100 }}
Yields...
1
|
10
|
20
|
100
|
Note: Switching DEPT to FDC changes "CO" to "Ambassador", "Officers" to "Diplomats", "Enlisted" to "Staff", and "Civilians" to "Others" (since they're all technically civilians).
{{ Amity Crew Figures | DEPT = FDC | CO = Rivi | OFFICERS = 10 | ENLISTED = 20 | CIVILIANS = 100 }}
Yields...
1
|
10
|
20
|
100
|