Skip to navigation

Elite on the BBC Micro and NES

Elite H encyclopedia source

[Elite-A]

ELITE H FILE
CODE_H% = P% LOAD_H% = LOAD% + P% - CODE%
Name: info_menu [Show more] Type: Subroutine Category: Encyclopedia Summary: Show the Encyclopedia screen Deep dive: The Encyclopedia Galactica
Context: See this subroutine on its own page References: This subroutine is called as follows: * TT102 calls info_menu

Other entry points: jmp_start3 Make a short, high beep, delay for one second, and go to the docking bay (i.e. show the Encyclopedia screen)
\ --- Mod: Code added for Elite-A: --------------------> .info_menu LDX #0 \ Call menu with X = 0 to show menu 0, the main menu for JSR menu \ the Encyclopedia Galactica, and return the choice in A CMP #1 \ If A <> 1, skip the following instruction to check the BNE n_shipsag \ other options JMP ships_ag \ Option 1 was chosen, so jump to ships_ag with A = 1 to \ show the Ships A-G menu .n_shipsag CMP #2 \ If A <> 2, skip the following instruction to check the BNE n_shipskw \ other options JMP ships_kw \ Option 2 was chosen, so jump to ships_kw with A = 2 to \ show the Ships K-W menu .n_shipskw CMP #3 \ If A <> 3, skip the following instruction to check the BNE n_equipdat \ other options JMP equip_data \ Option 3 was chosen, so jump to equip_data to show the \ Equipment menu .n_equipdat CMP #4 \ If A <> 4, skip the following instruction to check the BNE n_controls \ other options JMP controls \ Option 4 was chosen, so jump to controls to show the \ Controls menu .n_controls CMP #5 \ If A <> 5, skip the following instruction and jump to BNE jmp_start3 \ jmp_start3 to make a beep and show the main menu JMP trading \ Option 5 was chosen, so jump to trading to pause and \ show the main menu (there is no option 5 in the main \ menu, so this code is never reached and is presumably \ a remnant of a fifth menu about trading that was \ removed) .jmp_start3 JSR dn2 \ Call dn2 to make a short, high beep and delay for 1 \ second JMP BAY \ Jump to BAY to go to the docking bay (i.e. show the \ Encyclopedia screen) \ --- End of added code ------------------------------->
Name: ships_ag [Show more] Type: Subroutine Category: Encyclopedia Summary: Show the Ships A-G or Ships K-W menu and display the chosen ship card Deep dive: The Encyclopedia Galactica
Context: See this subroutine on its own page References: This subroutine is called as follows: * info_menu calls ships_ag * info_menu calls via ships_kw

Arguments: A The menu to show: * 1 = Show the Ships A-G menu * 2 = Show the Ships K-W menu C flag Set if this is the second menu (Ships K-W)
Other entry points: ships_kw Does exactly the same as a call to ships_kw
\ --- Mod: Code added for Elite-A: --------------------> .ships_ag .ships_kw PHA \ Store the menu number on the stack TAX \ Call menu with X = A to show the correct menu, so A JSR menu \ is now set to the type of ship card we need to show, \ depending on which ships menu we just displayed: \ \ * 1 for Adder to 14 for Ghavial \ * 1 for Iguana to 14 for Worm SBC #0 \ Decrement A so it is now in the range 0 to 13 (as menu \ clears the C flag when the number entered is within \ range), so we now have: \ \ * 0 for Adder to 13 for Ghavial \ * 0 for Iguana to 13 for Worm PLP \ Pull the menu number from the stack into the processor \ flags, which will set the C flag to bit 0 of the value \ on the stack (so if we called the routine with A = 1, \ the C flag will be set, and if we called it with A = 2 \ it will be clear) BCS ship_over \ If the C flag is set, then we called the routine with \ A = 1, so jump to ship_over as the choice number is \ already correct (i.e. 0 for Adder to 13 for Ghavial) ADC menu_entry+1 \ We just showed the second menu, so the choice number \ is currently: \ \ * 0 for Iguana to 13 for Worm \ \ which is not right - we want the range to follow on \ from the end of the first menu. To fix this, we need \ to add the number of entries in the first menu to A \ to get the correct choice number. The menu_entry table \ contains the menu sizes, and menu_entry+1 contains the \ size of menu 1 (the Ships A-G menu), so this adds the \ number of entries in the first menu to give the \ correct choice range, as follows: \ \ * 14 for Iguana to 27 for Worm .ship_over STA TYPE \ A contains the ship that we just chose from the Ships \ menu, so store it in TYPE, so TYPE is now: \ \ * 0 for Adder to 27 for Worm CLC \ Store type + 7 on the stack, to give the token number ADC #7 \ of the title to show for the relevant ship card, from PHA \ Adder (token 7) to Worm (token 34) LDA #32 \ Clear the top part of the screen, draw a white border, JSR TT66 \ and set the current view type in QQ11 to 32 JSR MT1 \ Switch to ALL CAPS when printing extended tokens LDX TYPE \ Set A to the letter of the relevant ship blueprints LDA ship_file,X \ file that we need to load for this ship card (fetched \ from the ship_file table) CMP ship_load+4 \ If the fifth character of the OS command in ship_load BEQ ship_skip \ already matches the ship blueprints file letter, then \ we've already loaded this file, so jump to ship_skip \ to skip the following instruction STA ship_load+4 \ Store the file letter in the fifth byte of ship_load, \ which replaces the "0" in "L.S.0" with the relevant \ letter (so if the letter is M, for example, the \ command will become "L.S.M" to load the S.M file) LDX #LO(ship_load) \ Set (Y X) to point to ship_load (the updated "L.S.0" LDY #HI(ship_load) \ command) JSR OSCLI \ Call OSCLI to run the OS command in ship_load, which \ loads the ship blueprints file that contains the ship \ we want to display .ship_skip LDX TYPE \ Set A to the card's title x-coordinate (fetched from LDA ship_centre,X \ the ship_centre table) STA XC \ Move the text cursor to the correct column for the \ title PLA \ Pull the token number for the title from the stack JSR write_msg3 \ (type + 7) and print it JSR NLIN4 \ Draw a horizontal line at pixel row 19 to box in the \ title JSR ZINF \ Call ZINF to reset the INWK ship workspace, so we can \ spawn a rotating ship to display in the centre of the \ ship card LDA #&60 \ Set byte #14 (nosev_z_hi) to 1 (&60), so the ship will STA INWK+14 \ be pointing away from us LDA #176 \ Set z_hi = 176 (very far away) STA INWK+7 LDX #127 \ Set roll counter = 127, so don't dampen the roll and STX INWK+29 \ make the roll direction clockwise STX INWK+30 \ Set pitch counter = 127, so don't dampen the pitch and \ set the pitch direction to dive INX \ Set X = 128 STA QQ17 \ Set QQ17 = %10110000, which has bit 7 set, to \ switch standard tokens to Sentence Case LDA TYPE \ Call write_card to display the ship card for the ship JSR write_card \ type in TYPE LDX TYPE \ Set A to the number of this ship blueprint within the LDA ship_posn,X \ ship blueprints file that we loaded (fetched from the \ ship_posn table) JSR NWSHP \ Add a new ship of type A to the local bubble (or, in \ this case, the encyclopedia ship card) .l_release JSR RDKEY \ Scan the keyboard for a key press and return the \ internal key number in X (or 0 for no key press) BNE l_release \ If a key is being pressed, loop back to l_release \ until it is released .l_395a LDX TYPE \ Set A to the closest distance that we want to show the LDA ship_dist,X \ ship (fetched from the ship_dist table) CMP INWK+7 \ If z_hi (the ship's distance) is equal to A, skip the BEQ P%+4 \ following decrement, as the ship is already close \ enough DEC INWK+7 \ Decrement the ship's distance, to bring the ship \ a bit closer to us JSR MVEIT \ Move the ship in space according to the orientation \ vectors and the new value in z_hi LDA #128 \ Set z_lo = 128, so the closest the ship gets to us is STA INWK+6 \ z_hi * 256 + 128 (where z_hi is the value in the \ ship_dist table) ASL A \ Set A = 0 STA INWK \ Set x_lo = 0, so the ship remains in the screen centre STA INWK+3 \ Set y_lo = 0, so the ship remains in the screen centre JSR LL9 \ Call LL9 to display the ship DEC MCNT \ Decrement the main loop counter JSR WSCAN \ Call WSCAN to wait for the vertical sync, so the ship \ rotates smoothly JSR RDKEY \ Scan the keyboard for a key press and return the \ internal key number in X (or 0 for no key press) BEQ l_395a \ If no key is being pressed, loop back to l_395a to \ keep rotating the ship JMP BAY \ Otherwise a key was pressed, so jump to BAY to go to \ the docking bay (i.e. show the Encyclopedia screen) \ --- End of added code ------------------------------->
Name: controls [Show more] Type: Subroutine Category: Encyclopedia Summary: Show the Controls menu and display the chosen page Deep dive: The Encyclopedia Galactica
Context: See this subroutine on its own page References: This subroutine is called as follows: * info_menu calls controls
\ --- Mod: Code added for Elite-A: --------------------> .controls LDX #3 \ Call menu with X = 3 to show menu 3, the Controls JSR menu \ menu, and return the choice in A, so A is now: \ \ * 1 = Flight \ * 2 = Combat \ * 3 = Navigation \ * 4 = Trading ADC #86 \ Store the choice + 86 on the stack, to give the token PHA \ number of the body to show for the relevant choice, \ from flight controls (token 87) to trading controls \ (token 90) ADC #4 \ Store the choice + 90 on the stack, to give the token PHA \ number of the title to show for the relevant choice, \ from flight controls (token 91) to trading controls \ (token 94) LDA #32 \ Clear the top part of the screen, draw a white border, JSR TT66 \ and set the current view type in QQ11 to 32 JSR MT1 \ Switch to ALL CAPS when printing extended tokens LDA #11 \ Move the text cursor to column 11 STA XC PLA \ Pull the token number for the title from the stack JSR write_msg3 \ (choice + 90) and print it JSR NLIN4 \ Draw a horizontal line at pixel row 19 to box in the \ title JSR MT2 \ Switch to Sentence Case when printing extended tokens INC YC \ Move the text cursor down one line PLA \ Pull the token number for the body from the stack JSR write_msg3 \ (choice + 86) and print it JMP l_restart \ Jump to l_restart to wait until a key is pressed and \ show the Encyclopedia screen \ --- End of added code ------------------------------->
Name: equip_data [Show more] Type: Subroutine Category: Encyclopedia Summary: Show the Equipment menu and display the chosen page
Context: See this subroutine on its own page References: This subroutine is called as follows: * info_menu calls equip_data
\ --- Mod: Code added for Elite-A: --------------------> .equip_data LDX #4 \ Call menu with X = 4 to show menu 4, the Equipment JSR menu \ menu, and return the choice in A, so A is now: \ \ * 1 = Missiles \ * 2 = I.F.F. system \ * 3 = E.C.M. system \ * 4 = Pulse lasers \ * 5 = Beam lasers \ * 6 = Fuel scoops \ * 7 = Escape pod \ * 8 = Hyperspace unit \ * 9 = Energy unit \ * 10 = Docking computers \ * 11 = Galactic hyperdrive \ * 12 = Military lasers \ * 13 = Mining lasers ADC #107 \ Store the choice + 107 on the stack, to give the token PHA \ number of the body to show for the relevant choice, \ from missiles (token 108) to mining lasers (token 120) SBC #12 \ Store the choice + 94 on the stack, to give the token PHA \ number of the title to show for the relevant choice, \ from missiles (token 95) to mining lasers (token 107) LDA #32 \ Clear the top part of the screen, draw a white border, JSR TT66 \ and set the current view type in QQ11 to 32 JSR MT1 \ Switch to ALL CAPS when printing extended tokens LDA #11 \ Move the text cursor to column 11 STA XC PLA \ Pull the token number for the title from the stack JSR write_msg3 \ (choice + 95) and print it JSR NLIN4 \ Draw a horizontal line at pixel row 19 to box in the \ title JSR MT2 \ Switch to Sentence Case when printing extended tokens \ (though this gets overridden by the following \ instruction, so this has no effect) JSR MT13 \ Switch to lower case when printing extended tokens, so \ the text is shown in justified paragraphs of lower \ case text INC YC \ Move the text cursor down two lines INC YC LDA #1 \ Move the text cursor to column 1 STA XC PLA \ Pull the token number for the body from the stack JSR write_msg3 \ (choice + 107) and print it JMP l_restart \ Jump to l_restart to wait until a key is pressed and \ show the Encyclopedia screen \ --- End of added code ------------------------------->
Name: trading [Show more] Type: Subroutine Category: Encyclopedia Summary: Wait until a key is pressed and show the Encyclopedia screen
Context: See this subroutine on its own page References: This subroutine is called as follows: * info_menu calls trading * controls calls via l_restart * equip_data calls via l_restart

Other entry points: l_restart Does exactly the same as a call to trading
\ --- Mod: Code added for Elite-A: --------------------> .trading .l_restart JSR PAUSE2 \ Call PAUSE2 to wait until a key is pressed, ignoring \ any existing key press JMP BAY \ Jump to BAY to go to the docking bay (i.e. show the \ Encyclopedia screen) \ --- End of added code ------------------------------->
Name: write_card [Show more] Type: Subroutine Category: Encyclopedia Summary: Display a ship card in the encyclopedia Deep dive: The Encyclopedia Galactica
Context: See this subroutine on its own page References: This subroutine is called as follows: * ships_ag calls write_card

Arguments: A The number of the ship whose card we want to display, in the range 0 to 27 (see card_addr for a list of ship numbers)
\ --- Mod: Code added for Elite-A: --------------------> .write_card ASL A \ Set Y = A * 2, so we can use it as an index into the TAY \ card_addr table (which has two bytes per entry) LDA card_addr,Y \ Set V(1 0) to the Y-th entry from card_addr, so it STA V \ points to the data for the ship card that we want to LDA card_addr+1,Y \ show STA V+1 .card_repeat \ We now loop around card_repeat, with each iteration \ printing a different section of the ship card. We \ update V(1 0) so it always points to the data to print \ in the ship card, and we look up the corresponding \ section of the card_pattern table to see how to lay \ out the card (card_pattern contains text coordinates \ and label data that describe the layout of the ship \ cards) JSR MT1 \ Switch to ALL CAPS when printing extended tokens LDY #0 \ Fetch the byte at V(1 0) into X, which will either be LDA (V),Y \ the number of a card section (e.g. 1 for inservice TAX \ date, 2 for combat factor and so on), or a 0 if we \ have reached the end of the card data BEQ quit_card \ If the byte we just fetched is a zero, jump to \ quit_card to return from the subroutine, as we have \ reached the end of the card data BNE card_check \ Otherwise we have found a valid card section, so jump \ to card_check to start looking for the corresponding \ layout pattern in card_pattern (the BNE is effectively \ a JMP as we just passed through a BEQ) .card_find \ If we get here than we want to increment Y until it \ points to the start of the next pattern that comes \ after our current position of card_pattern + Y INY \ Increment Y by 3 to step to the next line of data (as INY \ the card_pattern table is made up of lines of 3 bytes INY \ each) LDA card_pattern-1,Y \ Fetch the last byte of the previous 3-byte line BNE card_find \ If it is non-zero then we are still in the same \ pattern as in the previous iteration, so loop back to \ move onto the next line of 3 bytes \ Otherwise we have moved onto the next pattern, so now \ we check whether we have reached the pattern we seek .card_check \ When we first jump here from above, we want to search \ through the card_pattern table for the pattern that \ corresponds to card section X, where X starts at 1. We \ also jump here with Y set to 0 \ \ We find what we are looking for by stepping through \ each pattern, decreasing X as we go past each pattern, \ and increasing Y so that Y points to the start of the \ next pattern to check (as an offset from card_pattern) \ \ So as we iterate round the loop, at any one point, we \ want to skip over X - 1 more patterns, starting from \ the pattern at card_pattern + Y DEX \ Decrement the section number in X BNE card_find \ If X hasn't reached 0, then we haven't stepped through \ the right number of patterns yet, so jump to card_find \ to increment Y so that it points to the start of the \ next pattern in card_pattern .card_found \ When we get here, we have stepped through the correct \ number of patterns for the card section we want to \ print, and Y will point to the pattern within the \ card_pattern table that corresponds to the section we \ want to print, so we now fetch the pattern from \ card_pattern and print the data in that pattern \ \ The pattern for each section is made up of multiple \ lines of 3 bytes each, with each line consisting of: \ \ * Text column \ * Text row \ * What to print (i.e. a label or ship data) LDA card_pattern,Y \ The first byte of each 3-byte line in the pattern is STA XC \ the x-coordinate where we should print the text, so \ move the text cursor to the correct column LDA card_pattern+1,Y \ The second byte of each 3-byte line in the pattern STA YC \ is the y-coordinate where we should print the text, so \ move the text cursor to the correct row LDA card_pattern+2,Y \ The third byte of each 3-byte line in the pattern is \ either a text token to print for the label (if it's \ non-zero) or it denotes that we should print the \ relevant ship data (if it's zero), so fetch the value \ into A BEQ card_details \ If A = 0 then we should print the relevant ship data, \ so jump to card_details to do just that JSR write_msg3 \ Otherwise this is a label, so print the text token in \ A, which prints the label in the right place INY \ We now need to fetch the next line of the pattern, so INY \ we increment Y by 3 to step to the next 3-byte line of INY \ pattern data BNE card_found \ Loop back to card_found to move onto the next line in \ the pattern (the BNE is effectively a JMP as Y is \ never zero) .card_details \ If we get here, then we have printed all the labels in \ the pattern, and it's time to print the ship data, \ which is at V(1 0) (the first time we get here, V(1 0) \ points to the start of the ship data, and as we loop \ through each bit of data, we update V(1 0) so that it \ always points to the next bit of data to print) JSR MT2 \ Switch to Sentence Case when printing extended tokens LDY #0 \ We now loop through each character or token in the \ ship data, which is stored as a recursive token, so \ set a counter in Y for each character or token in the \ ship data (we start this at 0 and increment it \ straight away, as the first byte in the ship data at \ V(1 0) is the section number, rather than the data \ itself .card_loop INY \ Increment the character counter to point to the next \ character or token in the ship data LDA (V),Y \ Set A to the next character or token to print BEQ card_end \ If A = 0 then we have reached the end of this bit of \ ship data, so jump to card_end to move onto the next \ one BMI card_msg \ If A > 127 then this is a recursive token, so jump to \ card_msg to print it CMP #32 \ If A < 32 then this is a jump token, so jump to BCC card_macro \ card_macro to print it JSR DTS \ Otherwise this is a character rather than a token, so \ call DTS to print it in the correct case JMP card_loop \ Jump back to card_loop to print the next token in the \ ship data .card_macro JSR DT3 \ Call DT3 to print the jump token given in A JMP card_loop \ Jump back to card_loop to print the next token in the \ ship data .card_msg CMP #215 \ If A >= 215, then this is a two-letter token, so jump BCS card_pairs \ to card_pairs to print it AND #%01111111 \ This is a recursive token and A is in the range 128 to \ 214, so clear bit 7 to reduce it to the range 0 to 86, \ which corresponds to tokens in the msg_3 table (as we \ set bit 7 when inserting msg_3 tokens into the ship \ data with the CTOK macro) JSR write_msg3 \ Print the extended token in A JMP card_loop \ Jump back to card_loop to print the next token in the \ ship data .card_pairs JSR msg_pairs \ Print the extended two-letter token in A JMP card_loop \ Jump back to card_loop to print the next token in the \ ship data .card_end \ We have now printed this bit of ship data and the last \ character we printed was at V(1 0) + Y, so we now \ update V(1 0) so that it points to the first byte of \ the next bit of ship data, by doing this: \ \ V(1 0) = V(1 0) + Y + 1 TYA \ First we add the low bytes, setting the C flag to add SEC \ an extra 1 ADC V STA V BCC card_repeat \ If the above addition didn't overflow, we are done, so \ loop back to card_repeat to move onto the next bit of \ ship data INC V+1 \ The addition overflowed, so increment the high byte, \ as V(1 0) just passed a page boundary BCS card_repeat \ Loop back to card_repeat to move onto the next bit of \ ship data (this BCS is effectively a JMP as we passed \ through the BCC above) .quit_card RTS \ Return from the subroutine \ --- End of added code ------------------------------->
Name: ship_load [Show more] Type: Variable Category: Encyclopedia Summary: The OS command string for loading a ship blueprints file Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * ships_ag uses ship_load
\ --- Mod: Code added for Elite-A: --------------------> .ship_load EQUS "L.S.0" \ This is short for "*LOAD S.0" EQUB 13 \ --- End of added code ------------------------------->
Name: ship_file [Show more] Type: Variable Category: Encyclopedia Summary: Table containing the letter of the relevant ship blueprints file that we load for each ship card Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * ships_ag uses ship_file
\ --- Mod: Code added for Elite-A: --------------------> .ship_file EQUB 'A' \ Adder EQUB 'H' \ Anaconda EQUB 'I' \ Asp Mk II EQUB 'K' \ Boa EQUB 'J' \ Bushmaster EQUB 'P' \ Chameleon EQUB 'B' \ Cobra Mk I EQUB 'N' \ Cobra Mk III EQUB 'A' \ Coriolis station EQUB 'B' \ Dodo station EQUB 'A' \ Escape Pod EQUB 'M' \ Fer-de-Lance EQUB 'E' \ Gecko EQUB 'B' \ Ghavial EQUB 'G' \ Iguana EQUB 'I' \ Krait EQUB 'M' \ Mamba EQUB 'A' \ Monitor EQUB 'O' \ Moray EQUB 'F' \ Ophidian EQUB 'E' \ Python EQUB 'L' \ Shuttle EQUB 'L' \ Sidewinder EQUB 'C' \ Thargoid EQUB 'C' \ Thargon EQUB 'P' \ Transporter EQUB 'A' \ Viper EQUB 'H' \ Worm \ --- End of added code ------------------------------->
Name: ship_posn [Show more] Type: Variable Category: Encyclopedia Summary: Table containing the number of this ship blueprint within the ship blueprints file that we load for each ship card Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * ships_ag uses ship_posn
\ --- Mod: Code added for Elite-A: --------------------> .ship_posn EQUB 19 \ Adder EQUB 14 \ Anaconda EQUB 27 \ Asp Mk II EQUB 11 \ Boa EQUB 20 \ Bushmaster EQUB 12 \ Chameleon EQUB 17 \ Cobra Mk I EQUB 11 \ Cobra Mk III EQUB 2 \ Coriolis station EQUB 2 \ Dodo station EQUB 3 \ Escape Pod EQUB 25 \ Fer-de-Lance EQUB 17 \ Gecko EQUB 11 \ Ghavial EQUB 20 \ Iguana EQUB 17 \ Krait EQUB 17 \ Mamba EQUB 11 \ Monitor EQUB 22 \ Moray EQUB 21 \ Ophidian EQUB 11 \ Python EQUB 9 \ Shuttle EQUB 17 \ Sidewinder EQUB 29 \ Thargoid EQUB 30 \ Thargon EQUB 10 \ Transporter EQUB 16 \ Viper EQUB 15 \ Worm \ --- End of added code ------------------------------->
Name: ship_dist [Show more] Type: Variable Category: Encyclopedia Summary: Table containing the closest distance to show the ship for each ship card Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * ships_ag uses ship_dist
\ --- Mod: Code added for Elite-A: --------------------> .ship_dist EQUB 1 \ Adder EQUB 2 \ Anaconda EQUB 1 \ Asp Mk II EQUB 2 \ Boa EQUB 1 \ Bushmaster EQUB 1 \ Chameleon EQUB 1 \ Cobra Mk I EQUB 2 \ Cobra Mk III EQUB 4 \ Coriolis station EQUB 4 \ Dodo station EQUB 1 \ Escape Pod EQUB 1 \ Fer-de-Lance EQUB 1 \ Gecko EQUB 2 \ Ghavial EQUB 1 \ Iguana EQUB 2 \ Krait EQUB 1 \ Mamba EQUB 2 \ Monitor EQUB 1 \ Moray EQUB 1 \ Ophidian EQUB 2 \ Python EQUB 1 \ Shuttle EQUB 1 \ Sidewinder EQUB 3 \ Thargoid EQUB 1 \ Thargon EQUB 1 \ Transporter EQUB 1 \ Viper EQUB 1 \ Worm \ --- End of added code ------------------------------->
Name: menu [Show more] Type: Subroutine Category: Encyclopedia Summary: Display a menu and ask for a choice Deep dive: The Encyclopedia Galactica
Context: See this subroutine on its own page References: This subroutine is called as follows: * controls calls menu * equip_data calls menu * info_menu calls menu * ships_ag calls menu

Arguments: X The number of the menu to display (0 to 4)
Returns: A The number entered R Also contains the number entered C flag Set if the number is too large, clear otherwise
\ --- Mod: Code added for Elite-A: --------------------> .menu LDA menu_entry,X \ Store the menu's size (i.e. the number of entries) in STA QQ25 \ QQ25 LDA menu_offset,X \ Store the token number of the menu's first item in STA QQ29 \ QQ29 LDA menu_query,X \ Store the menu's query token number on the stack, PHA \ which contains the query prompt we show at the bottom \ of the menu LDA menu_title,X \ Store the menu's title token number on the stack PHA LDA menu_titlex,X \ Store the menu's title x-coordinate on the stack PHA LDA #32 \ Clear the top part of the screen, draw a white border, JSR TT66 \ and set the current view type in QQ11 to 32 JSR MT1 \ Switch to ALL CAPS when printing extended tokens PLA \ Retrieve the menu's title x-coordinate from the stack STA XC \ and move the text cursor to it PLA \ Retrieve the menu's title token number from the stack JSR write_msg3 \ and print it (the menu tokens are in the msg_3 table) JSR NLIN4 \ Draw a horizontal line at pixel row 19 to box in the \ title JSR MT2 \ Switch to Sentence Case when printing extended tokens LDA #%10000000 \ Set bit 7 of QQ17 to switch standard tokens to STA QQ17 \ Sentence Case INC YC \ Move the text cursor down a line LDX #0 \ We are now going to work our way through the items in \ the menu, printing as we go, so set a counter in X to \ hold the number of the current item (starting from 0) .menu_loop STX XX13 \ Store the current menu item number in XX13 JSR TT67 \ Print a newline LDX XX13 \ Print the current item number + 1 to 3 digits, left- INX \ padding with spaces, and with no decimal point, so the CLC \ items are numbered from 1 JSR pr2 JSR TT162 \ Print a space CLC \ Set A = XX13 + QQ29 LDA XX13 \ ADC QQ29 \ This will contain the token number for the first entry \ in this menu, as QQ29 contains the number of the first \ token in this menu, and XX13 contains the number of \ this entry within the menu JSR write_msg3 \ Print the extended token for this menu item (the menu \ tokens are in the msg_3 table) LDX XX13 \ Fetch the menu item number from XX13 INX \ Increment the menu item number to point to the next \ item CPX QQ25 \ Loop back to menu_loop until we have shown all QQ25 BCC menu_loop \ menu items JSR CLYNS \ Clear the bottom three text rows of the upper screen, \ and move the text cursor to column 1 on row 21, i.e. \ the start of the top row of the three bottom rows PLA \ Retrieve the menu's query token number from the stack JSR write_msg3 \ and print it LDA #'?' \ Print a question mark JSR DASC JSR gnum \ Call gnum to get a number from the keyboard, which \ will be the menu item number of the menu item we want \ to show, returning the number entered in A and R, and \ setting the C flag if the number is bigger than the \ highest menu item number in QQ25 BEQ menu_start \ If no number was entered, jump to menu_start to show \ the cargo bay BCS menu_start \ If the number entered was too big, jump to menu_start \ show the cargo bay RTS \ Return from the subroutine .menu_start JMP BAY \ Jump to BAY to go to the docking bay (i.e. show the \ Encyclopedia screen) \ --- End of added code ------------------------------->
Name: menu_title [Show more] Type: Variable Category: Encyclopedia Summary: Table containing text token numbers for each menu's title Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * menu uses menu_title

Text tokens for the menu system can be found in the msg_3 table. The menus are as follows: 0 = Encyclopedia Galactica 1 = Ships A-G 2 = Ships I-W 3 = Controls 4 = Equipment
\ --- Mod: Code added for Elite-A: --------------------> .menu_title EQUB 1 \ Menu 0: Title is text token 1: \ \ "ENCYCLOPEDIA GALACTICA" EQUB 2 \ Menu 1: Title is text token 2: \ \ "SHIPS {all caps}A-G{sentence case}" EQUB 3 \ Menu 2: Title is text token 3: \ \ "SHIPS {all caps}I-W{sentence case}" EQUB 5 \ Menu 3: Title is text token 5: \ \ "CONTROLS" EQUB 4 \ Menu 4: Title is text token 4: \ \ "EQUIPMENT" \ --- End of added code ------------------------------->
Name: menu_titlex [Show more] Type: Variable Category: Encyclopedia Summary: Table containing column positions for each menu's title Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * menu uses menu_titlex

Text tokens for the menu system can be found in the msg_3 table. The menus are as follows: 0 = Encyclopedia Galactica 1 = Ships A-G 2 = Ships I-W 3 = Controls 4 = Equipment
\ --- Mod: Code added for Elite-A: --------------------> .menu_titlex EQUB 5 \ Menu 0: Show menu title at column 5 EQUB 12 \ Menu 1: Show menu title at column 12 EQUB 12 \ Menu 2: Show menu title at column 12 EQUB 12 \ Menu 3: Show menu title at column 12 EQUB 11 \ Menu 4: Show menu title at column 11 \ --- End of added code ------------------------------->
Name: menu_offset [Show more] Type: Variable Category: Encyclopedia Summary: Table containing token numbers for the first item in each menu Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * menu uses menu_offset

Text tokens for the menu system can be found in the msg_3 table. The menus are as follows: 0 = Encyclopedia Galactica 1 = Ships A-G 2 = Ships I-W 3 = Controls 4 = Equipment
\ --- Mod: Code added for Elite-A: --------------------> .menu_offset EQUB 2 \ Menu 0: First item is text token 2: \ \ "SHIPS {all caps}A-G{sentence case}" EQUB 7 \ Menu 1: First item is text token 7: \ \ "ADDER" EQUB 21 \ Menu 2: First item is text token 21: \ \ "KRAIT" EQUB 91 \ Menu 3: First item is text token 91: \ \ "FLIGHT" EQUB 95 \ Menu 4: First item is text token 95: \ \ "{standard tokens, sentence case} \ MISSILE{extended tokens}" \ --- End of added code ------------------------------->
Name: menu_entry [Show more] Type: Variable Category: Encyclopedia Summary: Table containing the number of entries in each menu Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * menu uses menu_entry * ships_ag uses menu_entry

Text tokens for the menu system can be found in the msg_3 table. The menus are as follows: 0 = Encyclopedia Galactica 1 = Ships A-G 2 = Ships I-W 3 = Controls 4 = Equipment
\ --- Mod: Code added for Elite-A: --------------------> .menu_entry EQUB 4 \ Menu 0: Contains 4 entries EQUB 14 \ Menu 1: Contains 14 entries EQUB 14 \ Menu 2: Contains 14 entries EQUB 4 \ Menu 3: Contains 4 entries EQUB 13 \ Menu 4: Contains 13 entries \ --- End of added code ------------------------------->
Name: menu_query [Show more] Type: Variable Category: Encyclopedia Summary: Table containing token numbers for each menu's query prompt Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * menu uses menu_query

Text tokens for the menu system can be found in the msg_3 table. The menus are as follows: 0 = Encyclopedia Galactica 1 = Ships A-G 2 = Ships I-W 3 = Controls 4 = Equipment
\ --- Mod: Code added for Elite-A: --------------------> .menu_query EQUB 6 \ Menu 0: Query prompt is text token 6: \ \ "INFORMATION" EQUB 67 \ Menu 1: Query prompt is text token 67: \ \ " SHIP" EQUB 67 \ Menu 2: Query prompt is text token 67: \ \ " SHIP" EQUB 5 \ Menu 3: Query prompt is text token 5: \ \ "CONTROLS" EQUB 4 \ Menu 4: Query prompt is text token 4: \ \ "EQUIPMENT" \ --- End of added code ------------------------------->
Name: SwitchToCharSet [Show more] Type: Subroutine Category: Utility routines Summary: Switch the MOS character definitions into memory at &C000 on a BBC Master
Context: See this subroutine on its own page References: This subroutine is called as follows: * DOENTRY calls SwitchToCharSet
\ --- Mod: Code added for Elite-A: --------------------> IF _BUG_FIX .SwitchToCharSet \ This routine switches the MOS character definitions \ into memory at &C000 on a BBC Master LDA #0 \ Call OSBYTE with A = 0 and X = 1 to fetch bit 0 of the LDX #1 \ operating system version into X JSR OSBYTE CPX #3 \ If X =< 3 then this is not a BBC Master, so jump to BCC char1 \ char1 to continue drawing the character JSR savews \ Call savews to put the character set in the correct \ place .char1 RTS \ Return from the subroutine ENDIF \ --- End of added code ------------------------------->
Name: EJMP [Show more] Type: Macro Category: Text Summary: Macro definition for jump tokens in the extended token table Deep dive: Extended text tokens
Context: See this macro on its own page References: This macro is used as follows: * adder uses EJMP * anaconda uses EJMP * asp_2 uses EJMP * boa uses EJMP * bushmaster uses EJMP * chameleon uses EJMP * cobra_1 uses EJMP * cobra_3 uses EJMP * fer_de_lance uses EJMP * gecko uses EJMP * ghavial uses EJMP * iguana uses EJMP * mamba uses EJMP * monitor uses EJMP * moray uses EJMP * msg_3 uses EJMP * ophidian uses EJMP * python uses EJMP * shuttle uses EJMP * sidewinder uses EJMP * TKN1 uses EJMP * viper uses EJMP * worm uses EJMP

The following macro is used when building the extended token table: EJMP n Insert a jump to address n in the JMTB table See the deep dive on "Printing extended text tokens" for details on how jump tokens are stored in the extended token table.
Arguments: n The jump number to insert into the table
MACRO EJMP n EQUB n EOR VE ENDMACRO
Name: ECHR [Show more] Type: Macro Category: Text Summary: Macro definition for characters in the extended token table Deep dive: Extended text tokens
Context: See this macro on its own page References: This macro is used as follows: * msg_3 uses ECHR * TKN1 uses ECHR

The following macro is used when building the extended token table: ECHR 'x' Insert ASCII character "x" To include an apostrophe, use a backtick character, as in ECHR '`'. See the deep dive on "Printing extended text tokens" for details on how characters are stored in the extended token table.
Arguments: 'x' The character to insert into the table
MACRO ECHR x IF x = '`' EQUB 39 EOR VE ELSE EQUB x EOR VE ENDIF ENDMACRO
Name: ETOK [Show more] Type: Macro Category: Text Summary: Macro definition for recursive tokens in the extended token table Deep dive: Extended text tokens
Context: See this macro on its own page References: This macro is used as follows: * msg_3 uses ETOK * TKN1 uses ETOK

The following macro is used when building the extended token table: ETOK n Insert extended recursive token [n] See the deep dive on "Printing extended text tokens" for details on how recursive tokens are stored in the extended token table.
Arguments: n The number of the recursive token to insert into the table, in the range 129 to 214
MACRO ETOK n EQUB n EOR VE ENDMACRO
Name: ETWO [Show more] Type: Macro Category: Text Summary: Macro definition for two-letter tokens in the extended token table Deep dive: Extended text tokens
Context: See this macro on its own page References: This macro is used as follows: * adder uses ETWO * anaconda uses ETWO * asp_2 uses ETWO * boa uses ETWO * bushmaster uses ETWO * chameleon uses ETWO * cobra_1 uses ETWO * cobra_3 uses ETWO * escape_pod uses ETWO * fer_de_lance uses ETWO * gecko uses ETWO * ghavial uses ETWO * iguana uses ETWO * krait uses ETWO * mamba uses ETWO * monitor uses ETWO * moray uses ETWO * msg_3 uses ETWO * ophidian uses ETWO * python uses ETWO * shuttle uses ETWO * sidewinder uses ETWO * thargoid uses ETWO * thargon uses ETWO * TKN1 uses ETWO * transporter uses ETWO * viper uses ETWO

The following macro is used when building the extended token table: ETWO 'x', 'y' Insert two-letter token "xy" The newline token can be entered using ETWO '-', '-'. See the deep dive on "Printing extended text tokens" for details on how two-letter tokens are stored in the extended token table.
Arguments: 'x' The first letter of the two-letter token to insert into the table 'y' The second letter of the two-letter token to insert into the table
MACRO ETWO t, k IF t = '-' AND k = '-' : EQUB 215 EOR VE : ENDIF IF t = 'A' AND k = 'B' : EQUB 216 EOR VE : ENDIF IF t = 'O' AND k = 'U' : EQUB 217 EOR VE : ENDIF IF t = 'S' AND k = 'E' : EQUB 218 EOR VE : ENDIF IF t = 'I' AND k = 'T' : EQUB 219 EOR VE : ENDIF IF t = 'I' AND k = 'L' : EQUB 220 EOR VE : ENDIF IF t = 'E' AND k = 'T' : EQUB 221 EOR VE : ENDIF IF t = 'S' AND k = 'T' : EQUB 222 EOR VE : ENDIF IF t = 'O' AND k = 'N' : EQUB 223 EOR VE : ENDIF IF t = 'L' AND k = 'O' : EQUB 224 EOR VE : ENDIF IF t = 'N' AND k = 'U' : EQUB 225 EOR VE : ENDIF IF t = 'T' AND k = 'H' : EQUB 226 EOR VE : ENDIF IF t = 'N' AND k = 'O' : EQUB 227 EOR VE : ENDIF IF t = 'A' AND k = 'L' : EQUB 228 EOR VE : ENDIF IF t = 'L' AND k = 'E' : EQUB 229 EOR VE : ENDIF IF t = 'X' AND k = 'E' : EQUB 230 EOR VE : ENDIF IF t = 'G' AND k = 'E' : EQUB 231 EOR VE : ENDIF IF t = 'Z' AND k = 'A' : EQUB 232 EOR VE : ENDIF IF t = 'C' AND k = 'E' : EQUB 233 EOR VE : ENDIF IF t = 'B' AND k = 'I' : EQUB 234 EOR VE : ENDIF IF t = 'S' AND k = 'O' : EQUB 235 EOR VE : ENDIF IF t = 'U' AND k = 'S' : EQUB 236 EOR VE : ENDIF IF t = 'E' AND k = 'S' : EQUB 237 EOR VE : ENDIF IF t = 'A' AND k = 'R' : EQUB 238 EOR VE : ENDIF IF t = 'M' AND k = 'A' : EQUB 239 EOR VE : ENDIF IF t = 'I' AND k = 'N' : EQUB 240 EOR VE : ENDIF IF t = 'D' AND k = 'I' : EQUB 241 EOR VE : ENDIF IF t = 'R' AND k = 'E' : EQUB 242 EOR VE : ENDIF IF t = 'A' AND k = '?' : EQUB 243 EOR VE : ENDIF IF t = 'E' AND k = 'R' : EQUB 244 EOR VE : ENDIF IF t = 'A' AND k = 'T' : EQUB 245 EOR VE : ENDIF IF t = 'E' AND k = 'N' : EQUB 246 EOR VE : ENDIF IF t = 'B' AND k = 'E' : EQUB 247 EOR VE : ENDIF IF t = 'R' AND k = 'A' : EQUB 248 EOR VE : ENDIF IF t = 'L' AND k = 'A' : EQUB 249 EOR VE : ENDIF IF t = 'V' AND k = 'E' : EQUB 250 EOR VE : ENDIF IF t = 'T' AND k = 'I' : EQUB 251 EOR VE : ENDIF IF t = 'E' AND k = 'D' : EQUB 252 EOR VE : ENDIF IF t = 'O' AND k = 'R' : EQUB 253 EOR VE : ENDIF IF t = 'Q' AND k = 'U' : EQUB 254 EOR VE : ENDIF IF t = 'A' AND k = 'N' : EQUB 255 EOR VE : ENDIF ENDMACRO
Name: ERND [Show more] Type: Macro Category: Text Summary: Macro definition for random tokens in the extended token table Deep dive: Extended text tokens
Context: See this macro on its own page References: This macro is used as follows: * TKN1 uses ERND

The following macro is used when building the extended token table: ERND n Insert recursive token [n] * Tokens 0-123 get stored as n + 91 See the deep dive on "Printing extended text tokens" for details on how random tokens are stored in the extended token table.
Arguments: n The number of the random token to insert into the table, in the range 0 to 37
MACRO ERND n EQUB (n + 91) EOR VE ENDMACRO
Name: TOKN [Show more] Type: Macro Category: Text Summary: Macro definition for standard tokens in the extended token table Deep dive: Printing text tokens
Context: See this macro on its own page References: This macro is used as follows: * msg_3 uses TOKN

The following macro is used when building the recursive token table: TOKN n Insert recursive token [n] * Tokens 0-95 get stored as n + 160 * Tokens 128-145 get stored as n - 114 * Tokens 96-127 get stored as n See the deep dive on "Printing text tokens" for details on how recursive tokens are stored in the recursive token table.
Arguments: n The number of the recursive token to insert into the table, in the range 0 to 145
MACRO TOKN n IF n >= 0 AND n <= 95 t = n + 160 ELIF n >= 128 t = n - 114 ELSE t = n ENDIF EQUB t EOR VE ENDMACRO
Name: TKN1 [Show more] Type: Variable Category: Text Summary: The first extended token table for recursive tokens 0-255 (DETOK) Deep dive: Extended text tokens
Context: See this variable on its own page References: This variable is used as follows: * DETOK uses TKN1
.TKN1 EQUB VE \ Token 0: "" \ \ Encoded as: "" EQUB VE \ Token 1: "" \ \ Encoded as: "" EQUB VE \ Token 2: "" \ \ Encoded as: "" EQUB VE \ Token 3: "" \ \ Encoded as: "" ETOK 150 \ Token 4: "{clear screen} ETOK 151 \ {draw box around title} ECHR ' ' \ {all caps} EJMP 16 \ {tab 6}DRIVE {drive number} CATALOGUE ETOK 152 \ {crlf} ETWO '-', '-' \ " EQUB VE \ \ Encoded as: "[150][151] {16}[152]<215>" ETOK 176 \ Token 5: "{lower case} ERND 18 \ {justify} ETOK 202 \ {single cap}[86-90] IS [140-144].{cr} ERND 19 \ {left align}" ETOK 177 \ EQUB VE \ Encoded as: "[176][18?][202][19?][177]" EQUB VE \ Token 6: "" \ \ Encoded as: "" EQUB VE \ Token 7: "" \ \ Encoded as: "" ETOK 154 \ Token 8: "{single cap}COMMANDER'S NAME? " ECHR '`' \ ECHR 'S' \ Encoded as: "[154]'S[200]" ETOK 200 EQUB VE EQUB VE \ Token 9: "" \ \ Encoded as: "" EJMP 22 \ Token 10: "{tab 16}" EQUB VE \ \ Encoded as: "{22}" ETWO 'L', 'E' EQUB VE \ Token 11: "" \ \ Encoded as: "" EQUB VE \ Token 12: "" \ \ Encoded as: "" EQUB VE \ Token 13: "" \ \ Encoded as: "" EJMP 21 \ Token 14: "{clear bottom of screen} ETOK 145 \ PLANET NAME? ETOK 200 \ {fetch line input from keyboard}" EJMP 26 \ EQUB VE \ Encoded as: "{21}[145][200]{26}" EQUB VE \ Token 15: "" \ \ Encoded as: "" ECHR 'F' \ Token 16: "FABLED" ETWO 'A', 'B' \ ETWO 'L', 'E' \ Encoded as: "F<216><229>D" ECHR 'D' EQUB VE ETWO 'N', 'O' \ Token 17: "NOTABLE" ECHR 'T' \ ETWO 'A', 'B' \ Encoded as: "<227>T<216><229>" ETWO 'L', 'E' EQUB VE ECHR 'W' \ Token 18: "WELL KNOWN" ECHR 'E' \ ECHR 'L' \ Encoded as: "WELL K<227>WN" ECHR 'L' ECHR ' ' ECHR 'K' ETWO 'N', 'O' ECHR 'W' ECHR 'N' EQUB VE ECHR 'F' \ Token 19: "FAMOUS" ECHR 'A' \ ECHR 'M' \ Encoded as: "FAMO<236>" ECHR 'O' ETWO 'U', 'S' EQUB VE ETWO 'N', 'O' \ Token 20: "NOTED" ECHR 'T' \ ETWO 'E', 'D' \ Encoded as: "<227>T<252>" EQUB VE ETWO 'V', 'E' \ Token 21: "VERY" ECHR 'R' \ ECHR 'Y' \ Encoded as: "<250>RY" EQUB VE ECHR 'M' \ Token 22: "MILDLY" ETWO 'I', 'L' \ ECHR 'D' \ Encoded as: "M<220>DLY" ECHR 'L' ECHR 'Y' EQUB VE ECHR 'M' \ Token 23: "MOST" ECHR 'O' \ ETWO 'S', 'T' \ Encoded as: "MO<222>" EQUB VE ETWO 'R', 'E' \ Token 24: "REASONABLY" ECHR 'A' \ ECHR 'S' \ Encoded as: "<242>AS<223><216>LY" ETWO 'O', 'N' ETWO 'A', 'B' ECHR 'L' ECHR 'Y' EQUB VE EQUB VE \ Token 25: "" \ \ Encoded as: "" ETOK 165 \ Token 26: "ANCIENT" EQUB VE \ \ Encoded as: "[165]" ERND 23 \ Token 27: "[130-134]" EQUB VE \ \ Encoded as: "[23?]" ECHR 'G' \ Token 28: "GREAT" ETWO 'R', 'E' \ ETWO 'A', 'T' \ Encoded as: "G<242><245>" EQUB VE ECHR 'V' \ Token 29: "VAST" ECHR 'A' \ ETWO 'S', 'T' \ Encoded as: "VA<222>" EQUB VE ECHR 'P' \ Token 30: "PINK" ETWO 'I', 'N' \ ECHR 'K' \ Encoded as: "P<240>K" EQUB VE EJMP 2 \ Token 31: "{sentence case}[190-194] [185-189] ERND 28 \ {lower case} PLANTATIONS" ECHR ' ' \ ERND 27 \ Encoded as: "{2}[28?] [27?]{13} [185]A<251><223>S" EJMP 13 ECHR ' ' ETOK 185 ECHR 'A' ETWO 'T', 'I' ETWO 'O', 'N' ECHR 'S' EQUB VE ETOK 156 \ Token 32: "MOUNTAINS" ECHR 'S' \ EQUB VE \ Encoded as: "[156]S" ERND 26 \ Token 33: "[180-184]" EQUB VE \ \ Encoded as: "[26?]" ERND 37 \ Token 34: "[125-129] FORESTS" ECHR ' ' \ ECHR 'F' \ Encoded as: "[37?] F<253><237>TS" ETWO 'O', 'R' ETWO 'E', 'S' ECHR 'T' ECHR 'S' EQUB VE ECHR 'O' \ Token 35: "OCEANS" ETWO 'C', 'E' \ ETWO 'A', 'N' \ Encoded as: "O<233><255>S" ECHR 'S' EQUB VE ECHR 'S' \ Token 36: "SHYNESS" ECHR 'H' \ ECHR 'Y' \ Encoded as: "SHYN<237>S" ECHR 'N' ETWO 'E', 'S' ECHR 'S' EQUB VE ECHR 'S' \ Token 37: "SILLINESS" ETWO 'I', 'L' \ ECHR 'L' \ Encoded as: "S<220>L<240><237>S" ETWO 'I', 'N' ETWO 'E', 'S' ECHR 'S' EQUB VE ETWO 'M', 'A' \ Token 38: "MATING TRADITIONS" ECHR 'T' \ ETOK 195 \ Encoded as: "<239>T[195]T<248><241><251><223>S" ECHR 'T' ETWO 'R', 'A' ETWO 'D', 'I' ETWO 'T', 'I' ETWO 'O', 'N' ECHR 'S' EQUB VE ETWO 'L', 'O' \ Token 39: "LOATHING OF [41-45]" ETWO 'A', 'T' \ ECHR 'H' \ Encoded as: "<224><245>H[195]OF [9?]" ETOK 195 ECHR 'O' ECHR 'F' ECHR ' ' ERND 9 EQUB VE ETWO 'L', 'O' \ Token 40: "LOVE FOR [41-45]" ETWO 'V', 'E' \ ECHR ' ' \ Encoded as: "<224><250> F<253> [9?]" ECHR 'F' ETWO 'O', 'R' ECHR ' ' ERND 9 EQUB VE ECHR 'F' \ Token 41: "FOOD BLENDERS" ECHR 'O' \ ECHR 'O' \ Encoded as: "FOOD B<229>ND<244>S" ECHR 'D' ECHR ' ' ECHR 'B' ETWO 'L', 'E' ECHR 'N' ECHR 'D' ETWO 'E', 'R' ECHR 'S' EQUB VE ECHR 'T' \ Token 42: "TOURISTS" ETWO 'O', 'U' \ ECHR 'R' \ Encoded as: "T<217>RI<222>S" ECHR 'I' ETWO 'S', 'T' ECHR 'S' EQUB VE ECHR 'P' \ Token 43: "POETRY" ECHR 'O' \ ETWO 'E', 'T' \ Encoded as: "PO<221>RY" ECHR 'R' ECHR 'Y' EQUB VE ETWO 'D', 'I' \ Token 44: "DISCOS" ECHR 'S' \ ECHR 'C' \ Encoded as: "<241>SCOS" ECHR 'O' ECHR 'S' EQUB VE ERND 17 \ Token 45: "[81-85]" EQUB VE \ \ Encoded as: "[17?]" ECHR 'W' \ Token 46: "WALKING TREE" ETWO 'A', 'L' \ ECHR 'K' \ Encoded as: "W<228>K[195][158]" ETOK 195 ETOK 158 EQUB VE ECHR 'C' \ Token 47: "CRAB" ETWO 'R', 'A' \ ECHR 'B' \ Encoded as: "C<248>B" EQUB VE ECHR 'B' \ Token 48: "BAT" ETWO 'A', 'T' \ EQUB VE \ Encoded as: "B<245>" ETWO 'L', 'O' \ Token 49: "LOBST" ECHR 'B' \ ETWO 'S', 'T' \ Encoded as: "<224>B<222>" EQUB VE EJMP 18 \ Token 50: "{random 1-8 letter word}" EQUB VE \ \ Encoded as: "{18}" ETWO 'B', 'E' \ Token 51: "BESET" ECHR 'S' \ ETWO 'E', 'T' \ Encoded as: "<247>S<221>" EQUB VE ECHR 'P' \ Token 52: "PLAGUED" ETWO 'L', 'A' \ ECHR 'G' \ Encoded as: "P<249>GU<252>" ECHR 'U' ETWO 'E', 'D' EQUB VE ETWO 'R', 'A' \ Token 53: "RAVAGED" ECHR 'V' \ ECHR 'A' \ Encoded as: "<248>VAG<252>" ECHR 'G' ETWO 'E', 'D' EQUB VE ECHR 'C' \ Token 54: "CURSED" ECHR 'U' \ ECHR 'R' \ Encoded as: "CURS<252>" ECHR 'S' ETWO 'E', 'D' EQUB VE ECHR 'S' \ Token 55: "SCOURGED" ECHR 'C' \ ETWO 'O', 'U' \ Encoded as: "SC<217>RG<252>" ECHR 'R' ECHR 'G' ETWO 'E', 'D' EQUB VE ERND 22 \ Token 56: "[135-139] CIVIL WAR" ECHR ' ' \ ECHR 'C' \ Encoded as: "[22?] CIV<220> W<238>" ECHR 'I' ECHR 'V' ETWO 'I', 'L' ECHR ' ' ECHR 'W' ETWO 'A', 'R' EQUB VE ERND 13 \ Token 57: "[170-174] [155-159] [160-164]S" ECHR ' ' \ ERND 4 \ Encoded as: "[13?] [4?] [5?]S" ECHR ' ' ERND 5 ECHR 'S' EQUB VE ECHR 'A' \ Token 58: "A [170-174] DISEASE" ECHR ' ' \ ERND 13 \ Encoded as: "A [13?] <241><218>A<218>" ECHR ' ' ETWO 'D', 'I' ETWO 'S', 'E' ECHR 'A' ETWO 'S', 'E' EQUB VE ERND 22 \ Token 59: "[135-139] EARTHQUAKES" ECHR ' ' \ ECHR 'E' \ Encoded as: "[22?] E<238><226><254>AK<237>" ETWO 'A', 'R' ETWO 'T', 'H' ETWO 'Q', 'U' ECHR 'A' ECHR 'K' ETWO 'E', 'S' EQUB VE ERND 22 \ Token 60: "[135-139] SOLAR ACTIVITY" ECHR ' ' \ ETWO 'S', 'O' \ Encoded as: "[22?] <235><249>R AC<251>V<219>Y" ETWO 'L', 'A' ECHR 'R' ECHR ' ' ECHR 'A' ECHR 'C' ETWO 'T', 'I' ECHR 'V' ETWO 'I', 'T' ECHR 'Y' EQUB VE ETOK 175 \ Token 61: "ITS [26-30] [31-35]" ERND 2 \ ECHR ' ' \ Encoded as: "[175][2?] [3?]" ERND 3 EQUB VE ETOK 147 \ Token 62: "THE {system name adjective} [155-159] EJMP 17 \ [160-164]" ECHR ' ' \ ERND 4 \ Encoded as: "[147]{17} [4?] [5?]" ECHR ' ' ERND 5 EQUB VE ETOK 175 \ Token 63: "ITS INHABITANTS' [165-169] [36-40]" ETOK 193 \ ECHR 'S' \ Encoded as: "[175][193]S' [7?] [8?]" ECHR '`' ECHR ' ' ERND 7 ECHR ' ' ERND 8 EQUB VE EJMP 2 \ Token 64: "{sentence case}[235-239]{lower case}" ERND 31 \ EJMP 13 \ Encoded as: "{2}[31?]{13}" EQUB VE ETOK 175 \ Token 65: "ITS [76-80] [81-85]" ERND 16 \ ECHR ' ' \ Encoded as: "[175][16?] [17?]" ERND 17 EQUB VE ECHR 'J' \ Token 66: "JUICE" ECHR 'U' \ ECHR 'I' \ Encoded as: "JUI<233>" ETWO 'C', 'E' EQUB VE ECHR 'B' \ Token 67: "BRANDY" ETWO 'R', 'A' \ ECHR 'N' \ Encoded as: "B<248>NDY" ECHR 'D' ECHR 'Y' EQUB VE ECHR 'W' \ Token 68: "WATER" ETWO 'A', 'T' \ ETWO 'E', 'R' \ Encoded as: "W<245><244>" EQUB VE ECHR 'B' \ Token 69: "BREW" ETWO 'R', 'E' \ ECHR 'W' \ Encoded as: "B<242>W" EQUB VE ECHR 'G' \ Token 70: "GARGLE BLASTERS" ETWO 'A', 'R' \ ECHR 'G' \ Encoded as: "G<238>G<229> B<249><222><244>S" ETWO 'L', 'E' ECHR ' ' ECHR 'B' ETWO 'L', 'A' ETWO 'S', 'T' ETWO 'E', 'R' ECHR 'S' EQUB VE EJMP 18 \ Token 71: "{random 1-8 letter word}" EQUB VE \ \ Encoded as: "{18}" EJMP 17 \ Token 72: "{system name adjective} [160-164]" ECHR ' ' \ ERND 5 \ Encoded as: "{17} [5?]" EQUB VE EJMP 17 \ Token 73: "{system name adjective} {random 1-8 ECHR ' ' \ letter word}" EJMP 18 \ EQUB VE \ Encoded as: "{17} {18}" EJMP 17 \ Token 74: "{system name adjective} [170-174]" ECHR ' ' \ ERND 13 \ Encoded as: "{17} [13?]" EQUB VE ERND 13 \ Token 75: "[170-174] {random 1-8 letter word}" ECHR ' ' \ EJMP 18 \ Encoded as: "[13?] {18}" EQUB VE ECHR 'F' \ Token 76: "FABULOUS" ETWO 'A', 'B' \ ECHR 'U' \ Encoded as: "F<216>U<224><236>" ETWO 'L', 'O' ETWO 'U', 'S' EQUB VE ECHR 'E' \ Token 77: "EXOTIC" ECHR 'X' \ ECHR 'O' \ Encoded as: "EXO<251>C" ETWO 'T', 'I' ECHR 'C' EQUB VE ECHR 'H' \ Token 78: "HOOPY" ECHR 'O' \ ECHR 'O' \ Encoded as: "HOOPY" ECHR 'P' ECHR 'Y' EQUB VE ECHR 'U' \ Token 79: "UNUSUAL" ETWO 'N', 'U' \ ECHR 'S' \ Encoded as: "U<225>SU<228>" ECHR 'U' ETWO 'A', 'L' EQUB VE ECHR 'E' \ Token 80: "EXCITING" ECHR 'X' \ ECHR 'C' \ Encoded as: "EXC<219><240>G" ETWO 'I', 'T' ETWO 'I', 'N' ECHR 'G' EQUB VE ECHR 'C' \ Token 81: "CUISINE" ECHR 'U' \ ECHR 'I' \ Encoded as: "CUIS<240>E" ECHR 'S' ETWO 'I', 'N' ECHR 'E' EQUB VE ECHR 'N' \ Token 82: "NIGHT LIFE" ECHR 'I' \ ECHR 'G' \ Encoded as: "NIGHT LIFE" ECHR 'H' ECHR 'T' ECHR ' ' ECHR 'L' ECHR 'I' ECHR 'F' ECHR 'E' EQUB VE ECHR 'C' \ Token 83: "CASINOS" ECHR 'A' \ ECHR 'S' \ Encoded as: "CASI<227>S" ECHR 'I' ETWO 'N', 'O' ECHR 'S' EQUB VE ECHR 'S' \ Token 84: "SIT COMS" ETWO 'I', 'T' \ ECHR ' ' \ Encoded as: "S<219> COMS" ECHR 'C' ECHR 'O' ECHR 'M' ECHR 'S' EQUB VE EJMP 2 \ Token 85: "{sentence case}[235-239]{lower case}" ERND 31 \ EJMP 13 \ Encoded as: "{2}[31?]{13}" EQUB VE EJMP 3 \ Token 86: "{selected system name}" EQUB VE \ \ Encoded as: "{3}" ETOK 147 \ Token 87: "THE PLANET {selected system name}" ETOK 145 \ ECHR ' ' \ Encoded as: "[147][145] {3}" EJMP 3 EQUB VE ETOK 147 \ Token 88: "THE WORLD {selected system name}" ETOK 146 \ ECHR ' ' \ Encoded as: "[147][146] {3}" EJMP 3 EQUB VE ETOK 148 \ Token 89: "THIS PLANET" ETOK 145 \ EQUB VE \ Encoded as: "[148][145]" ETOK 148 \ Token 90: "THIS WORLD" ETOK 146 \ EQUB VE \ Encoded as: "[148][146]" ECHR 'S' \ Token 91: "SON OF A BITCH" ETWO 'O', 'N' \ ECHR ' ' \ Encoded as: "S<223> OF[208]B<219>CH" ECHR 'O' ECHR 'F' ETOK 208 ECHR 'B' ETWO 'I', 'T' ECHR 'C' ECHR 'H' EQUB VE ECHR 'S' \ Token 92: "SCOUNDREL" ECHR 'C' \ ETWO 'O', 'U' \ Encoded as: "SC<217>ND<242>L" ECHR 'N' ECHR 'D' ETWO 'R', 'E' ECHR 'L' EQUB VE ECHR 'B' \ Token 93: "BLACKGUARD" ETWO 'L', 'A' \ ECHR 'C' \ Encoded as: "B<249>CKGU<238>D" ECHR 'K' ECHR 'G' ECHR 'U' ETWO 'A', 'R' ECHR 'D' EQUB VE ECHR 'R' \ Token 94: "ROGUE" ECHR 'O' \ ECHR 'G' \ Encoded as: "ROGUE" ECHR 'U' ECHR 'E' EQUB VE ECHR 'W' \ Token 95: "WHORESON BEETLE HEADFLAP EAR'D ECHR 'H' \ KNAVE" ETWO 'O', 'R' \ ETWO 'E', 'S' \ Encoded as: "WH<253><237><223> <247><221><229> HEAD ETWO 'O', 'N' \ [198]F<249>P E<238>'D KNA<250>" ECHR ' ' ETWO 'B', 'E' ETWO 'E', 'T' ETWO 'L', 'E' ECHR ' ' ECHR 'H' ECHR 'E' ECHR 'A' ECHR 'D' ETOK 198 ECHR 'F' ETWO 'L', 'A' ECHR 'P' ECHR ' ' ECHR 'E' ETWO 'A', 'R' ECHR '`' ECHR 'D' ECHR ' ' ECHR 'K' ECHR 'N' ECHR 'A' ETWO 'V', 'E' EQUB VE ECHR 'N' \ Token 96: "N UNREMARKABLE" ECHR ' ' \ ECHR 'U' \ Encoded as: "N UN<242><239>RK<216><229>" ECHR 'N' ETWO 'R', 'E' ETWO 'M', 'A' ECHR 'R' ECHR 'K' ETWO 'A', 'B' ETWO 'L', 'E' EQUB VE ECHR ' ' \ Token 97: " BORING" ECHR 'B' \ ETWO 'O', 'R' \ Encoded as: " B<253><240>G" ETWO 'I', 'N' ECHR 'G' EQUB VE ECHR ' ' \ Token 98: " DULL" ECHR 'D' \ ECHR 'U' \ Encoded as: " DULL" ECHR 'L' ECHR 'L' EQUB VE ECHR ' ' \ Token 99: " TEDIOUS" ECHR 'T' \ ECHR 'E' \ Encoded as: " TE<241>O<236>" ETWO 'D', 'I' ECHR 'O' ETWO 'U', 'S' EQUB VE ECHR ' ' \ Token 100: " REVOLTING" ETWO 'R', 'E' \ ECHR 'V' \ Encoded as: " <242>VOLT<240>G" ECHR 'O' ECHR 'L' ECHR 'T' ETWO 'I', 'N' ECHR 'G' EQUB VE ETOK 145 \ Token 101: "PLANET" EQUB VE \ \ Encoded as: "[145]" ETOK 146 \ Token 102: "WORLD" EQUB VE \ \ Encoded as: "[146]" ECHR 'P' \ Token 103: "PLACE" ETWO 'L', 'A' \ ETWO 'C', 'E' \ Encoded as: "P<249><233>" EQUB VE ECHR 'L' \ Token 104: "LITTLE PLANET" ETWO 'I', 'T' \ ECHR 'T' \ Encoded as: "L<219>T<229> [145]" ETWO 'L', 'E' ECHR ' ' ETOK 145 EQUB VE ECHR 'D' \ Token 105: "DUMP" ECHR 'U' \ ECHR 'M' \ Encoded as: "DUMP" ECHR 'P' EQUB VE EQUB VE \ Token 106: "" \ \ Encoded as: "" EQUB VE \ Token 107: "" \ \ Encoded as: "" EQUB VE \ Token 108: "" \ \ Encoded as: "" EQUB VE \ Token 109: "" \ \ Encoded as: "" EQUB VE \ Token 110: "" \ \ Encoded as: "" EQUB VE \ Token 111: "" \ \ Encoded as: "" EQUB VE \ Token 112: "" \ \ Encoded as: "" EQUB VE \ Token 113: "" \ \ Encoded as: "" EQUB VE \ Token 114: "" \ \ Encoded as: "" ECHR 'W' \ Token 115: "WASP" ECHR 'A' \ ECHR 'S' \ Encoded as: "WASP" ECHR 'P' EQUB VE ECHR 'M' \ Token 116: "MOTH" ECHR 'O' \ ETWO 'T', 'H' \ Encoded as: "MO<226>" EQUB VE ECHR 'G' \ Token 117: "GRUB" ECHR 'R' \ ECHR 'U' \ Encoded as: "GRUB" ECHR 'B' EQUB VE ETWO 'A', 'N' \ Token 118: "ANT" ECHR 'T' \ EQUB VE \ Encoded as: "<255>T" EJMP 18 \ Token 119: "{random 1-8 letter word}" EQUB VE \ \ Encoded as: "{18}" ECHR 'P' \ Token 120: "POET" ECHR 'O' \ ETWO 'E', 'T' \ Encoded as: "PO<221>" EQUB VE ETWO 'A', 'R' \ Token 121: "ARTS GRADUATE" ECHR 'T' \ ECHR 'S' \ Encoded as: "<238>TS G<248>DU<245>E" ECHR ' ' ECHR 'G' ETWO 'R', 'A' ECHR 'D' ECHR 'U' ETWO 'A', 'T' ECHR 'E' EQUB VE ECHR 'Y' \ Token 122: "YAK" ECHR 'A' \ ECHR 'K' \ Encoded as: "YAK" EQUB VE ECHR 'S' \ Token 123: "SNAIL" ECHR 'N' \ ECHR 'A' \ Encoded as: "SNA<220>" ETWO 'I', 'L' EQUB VE ECHR 'S' \ Token 124: "SLUG" ECHR 'L' \ ECHR 'U' \ Encoded as: "SLUG" ECHR 'G' EQUB VE ECHR 'T' \ Token 125: "TROPICAL" ECHR 'R' \ ECHR 'O' \ Encoded as: "TROPIC<228>" ECHR 'P' ECHR 'I' ECHR 'C' ETWO 'A', 'L' EQUB VE ECHR 'D' \ Token 126: "DENSE" ETWO 'E', 'N' \ ETWO 'S', 'E' \ Encoded as: "D<246><218>" EQUB VE ETWO 'R', 'A' \ Token 127: "RAIN" ETWO 'I', 'N' \ EQUB VE \ Encoded as: "<248><240>" ECHR 'I' \ Token 128: "IMPENETRABLE" ECHR 'M' \ ECHR 'P' \ Encoded as: "IMP<246><221><248>B<229>" ETWO 'E', 'N' ETWO 'E', 'T' ETWO 'R', 'A' ECHR 'B' ETWO 'L', 'E' EQUB VE ECHR 'E' \ Token 129: "EXUBERANT" ECHR 'X' \ ECHR 'U' \ Encoded as: "EXU<247><248>NT" ETWO 'B', 'E' ETWO 'R', 'A' ECHR 'N' ECHR 'T' EQUB VE ECHR 'F' \ Token 130: "FUNNY" ECHR 'U' \ ECHR 'N' \ Encoded as: "FUNNY" ECHR 'N' ECHR 'Y' EQUB VE ECHR 'W' \ Token 131: "WIERD" ECHR 'I' \ ETWO 'E', 'R' \ Encoded as: "WI<244>D" ECHR 'D' EQUB VE ECHR 'U' \ Token 132: "UNUSUAL" ETWO 'N', 'U' \ ECHR 'S' \ Encoded as: "U<225>SU<228>" ECHR 'U' ETWO 'A', 'L' EQUB VE ETWO 'S', 'T' \ Token 133: "STRANGE" ETWO 'R', 'A' \ ECHR 'N' \ Encoded as: "<222><248>N<231>" ETWO 'G', 'E' EQUB VE ECHR 'P' \ Token 134: "PECULIAR" ECHR 'E' \ ECHR 'C' \ Encoded as: "PECULI<238>" ECHR 'U' ECHR 'L' ECHR 'I' ETWO 'A', 'R' EQUB VE ECHR 'F' \ Token 135: "FREQUENT" ETWO 'R', 'E' \ ETWO 'Q', 'U' \ Encoded as: "F<242><254><246>T" ETWO 'E', 'N' ECHR 'T' EQUB VE ECHR 'O' \ Token 136: "OCCASIONAL" ECHR 'C' \ ECHR 'C' \ Encoded as: "OCCASI<223><228>" ECHR 'A' ECHR 'S' ECHR 'I' ETWO 'O', 'N' ETWO 'A', 'L' EQUB VE ECHR 'U' \ Token 137: "UNPREDICTABLE" ECHR 'N' \ ECHR 'P' \ Encoded as: "UNP<242><241>CT<216><229>" ETWO 'R', 'E' ETWO 'D', 'I' ECHR 'C' ECHR 'T' ETWO 'A', 'B' ETWO 'L', 'E' EQUB VE ECHR 'D' \ Token 138: "DREADFUL" ETWO 'R', 'E' \ ECHR 'A' \ Encoded as: "D<242>ADFUL" ECHR 'D' ECHR 'F' ECHR 'U' ECHR 'L' EQUB VE ETOK 171 \ Token 139: "DEADLY" EQUB VE \ \ Encoded as: "[171]" ERND 1 \ Token 140: "[21-25] [16-20] FOR [61-65]" ECHR ' ' \ ERND 0 \ Encoded as: "[1?] [0?] F<253> [10?]" ECHR ' ' ECHR 'F' ETWO 'O', 'R' ECHR ' ' ERND 10 EQUB VE ETOK 140 \ Token 141: "[21-25] [16-20] FOR [61-65] AND ETOK 178 \ [61-65]" ERND 10 \ EQUB VE \ Encoded as: "[140][178][10?]" ERND 11 \ Token 142: "[51-55] BY [56-60]" ECHR ' ' \ ECHR 'B' \ Encoded as: "[11?] BY [12?]" ECHR 'Y' ECHR ' ' ERND 12 EQUB VE ETOK 140 \ Token 143: "[21-25] [16-20] FOR [61-65] BUT [51-55] ECHR ' ' \ BY [56-60]" ECHR 'B' \ ECHR 'U' \ Encoded as: "[140] BUT [142]" ECHR 'T' ECHR ' ' ETOK 142 EQUB VE ECHR ' ' \ Token 144: " A[96-100] [101-105]" ECHR 'A' \ ERND 20 \ Encoded as: " A[20?] [21?]" ECHR ' ' ERND 21 EQUB VE ECHR 'P' \ Token 145: "PLANET" ECHR 'L' \ ETWO 'A', 'N' \ Encoded as: "PL<255><221>" ETWO 'E', 'T' EQUB VE ECHR 'W' \ Token 146: "WORLD" ETWO 'O', 'R' \ ECHR 'L' \ Encoded as: "W<253>LD" ECHR 'D' EQUB VE ETWO 'T', 'H' \ Token 147: "THE " ECHR 'E' \ ECHR ' ' \ Encoded as: "<226>E " EQUB VE ETWO 'T', 'H' \ Token 148: "THIS " ECHR 'I' \ ECHR 'S' \ Encoded as: "<226>IS " ECHR ' ' EQUB VE ETWO 'L', 'O' \ Token 149: "LOAD NEW {single cap}COMMANDER" ECHR 'A' \ ECHR 'D' \ Encoded as: "<224>AD[210][154]" ETOK 210 ETOK 154 EQUB VE EJMP 9 \ Token 150: "{clear screen} EJMP 11 \ {draw box around title} EJMP 1 \ {all caps} EJMP 8 \ {tab 6}" EQUB VE \ \ Encoded as: "{9}{11}{1}{8}" ECHR 'D' \ Token 151: "DRIVE" ECHR 'R' \ ECHR 'I' \ Encoded as: "DRI<250>" ETWO 'V', 'E' EQUB VE ECHR ' ' \ Token 152: " CATALOGUE" ECHR 'C' \ ETWO 'A', 'T' \ Encoded as: " C<245>A<224>GUE" ECHR 'A' ETWO 'L', 'O' ECHR 'G' ECHR 'U' ECHR 'E' EQUB VE ECHR 'I' \ Token 153: "IAN" ETWO 'A', 'N' \ EQUB VE \ Encoded as: "I<255>" EJMP 19 \ Token 154: "{single cap}COMMANDER" ECHR 'C' \ ECHR 'O' \ Encoded as: "{19}COMM<255>D<244>" ECHR 'M' ECHR 'M' ETWO 'A', 'N' ECHR 'D' ETWO 'E', 'R' EQUB VE ERND 13 \ Token 155: "[170-174]" EQUB VE \ \ Encoded as: "[13?]" ECHR 'M' \ Token 156: "MOUNTAIN" ETWO 'O', 'U' \ ECHR 'N' \ Encoded as: "M<217>NTA<240>" ECHR 'T' ECHR 'A' ETWO 'I', 'N' EQUB VE ETWO 'E', 'D' \ Token 157: "EDIBLE" ECHR 'I' \ ECHR 'B' \ Encoded as: "<252>IB<229>" ETWO 'L', 'E' EQUB VE ECHR 'T' \ Token 158: "TREE" ETWO 'R', 'E' \ ECHR 'E' \ Encoded as: "T<242>E" EQUB VE ECHR 'S' \ Token 159: "SPOTTED" ECHR 'P' \ ECHR 'O' \ Encoded as: "SPOTT<252>" ECHR 'T' ECHR 'T' ETWO 'E', 'D' EQUB VE ERND 29 \ Token 160: "[225-229]" EQUB VE \ \ Encoded as: "[29?]" ERND 30 \ Token 161: "[230-234]" EQUB VE \ \ Encoded as: "[30?]" ERND 6 \ Token 162: "[46-50]OID" ECHR 'O' \ ECHR 'I' \ Encoded as: "[6?]OID" ECHR 'D' EQUB VE ERND 36 \ Token 163: "[120-124]" EQUB VE \ \ Encoded as: "[36?]" ERND 35 \ Token 164: "[115-119]" EQUB VE \ \ Encoded as: "[35?]" ETWO 'A', 'N' \ Token 165: "ANCIENT" ECHR 'C' \ ECHR 'I' \ Encoded as: "<255>CI<246>T" ETWO 'E', 'N' ECHR 'T' EQUB VE ECHR 'E' \ Token 166: "EXCEPTIONAL" ECHR 'X' \ ETWO 'C', 'E' \ Encoded as: "EX<233>P<251><223><228>" ECHR 'P' ETWO 'T', 'I' ETWO 'O', 'N' ETWO 'A', 'L' EQUB VE ECHR 'E' \ Token 167: "ECCENTRIC" ECHR 'C' \ ETWO 'C', 'E' \ Encoded as: "EC<233>NTRIC" ECHR 'N' ECHR 'T' ECHR 'R' ECHR 'I' ECHR 'C' EQUB VE ETWO 'I', 'N' \ Token 168: "INGRAINED" ECHR 'G' \ ETWO 'R', 'A' \ Encoded as: "<240>G<248><240><252>" ETWO 'I', 'N' ETWO 'E', 'D' EQUB VE ERND 23 \ Token 169: "[130-134]" EQUB VE \ \ Encoded as: "[23?]" ECHR 'K' \ Token 170: "KILLER" ETWO 'I', 'L' \ ECHR 'L' \ Encoded as: "K<220>L<244>" ETWO 'E', 'R' EQUB VE ECHR 'D' \ Token 171: "DEADLY" ECHR 'E' \ ECHR 'A' \ Encoded as: "DEADLY" ECHR 'D' ECHR 'L' ECHR 'Y' EQUB VE ECHR 'E' \ Token 172: "EVIL" ECHR 'V' \ ETWO 'I', 'L' \ Encoded as: "EV<220>" EQUB VE ETWO 'L', 'E' \ Token 173: "LETHAL" ETWO 'T', 'H' \ ETWO 'A', 'L' \ Encoded as: "<229><226><228>" EQUB VE ECHR 'V' \ Token 174: "VICIOUS" ECHR 'I' \ ECHR 'C' \ Encoded as: "VICIO<236>" ECHR 'I' ECHR 'O' ETWO 'U', 'S' EQUB VE ETWO 'I', 'T' \ Token 175: "ITS " ECHR 'S' \ ECHR ' ' \ Encoded as: "<219>S " EQUB VE EJMP 13 \ Token 176: "{lower case} EJMP 14 \ {justify} EJMP 19 \ {single cap}" EQUB VE \ \ Encoded as: "{13}{14}{19}" ECHR '.' \ Token 177: ".{cr} EJMP 12 \ {left align}" EJMP 15 \ EQUB VE \ Encoded as: ".{12}{15}" ECHR ' ' \ Token 178: " AND " ETWO 'A', 'N' \ ECHR 'D' \ Encoded as: " <255>D " ECHR ' ' EQUB VE ECHR 'Y' \ Token 179: "YOU" ETWO 'O', 'U' \ EQUB VE \ Encoded as: "Y<217>" ECHR 'P' \ Token 180: "PARKING METERS" ETWO 'A', 'R' \ ECHR 'K' \ Encoded as: "P<238>K[195]M<221><244>S" ETOK 195 ECHR 'M' ETWO 'E', 'T' ETWO 'E', 'R' ECHR 'S' EQUB VE ECHR 'D' \ Token 181: "DUST CLOUDS" ETWO 'U', 'S' \ ECHR 'T' \ Encoded as: "D<236>T C<224>UDS" ECHR ' ' ECHR 'C' ETWO 'L', 'O' ECHR 'U' ECHR 'D' ECHR 'S' EQUB VE ECHR 'I' \ Token 182: "ICE BERGS" ETWO 'C', 'E' \ ECHR ' ' \ Encoded as: "I<233> <247>RGS" ETWO 'B', 'E' ECHR 'R' ECHR 'G' ECHR 'S' EQUB VE ECHR 'R' \ Token 183: "ROCK FORMATIONS" ECHR 'O' \ ECHR 'C' \ Encoded as: "ROCK F<253><239><251><223>S" ECHR 'K' ECHR ' ' ECHR 'F' ETWO 'O', 'R' ETWO 'M', 'A' ETWO 'T', 'I' ETWO 'O', 'N' ECHR 'S' EQUB VE ECHR 'V' \ Token 184: "VOLCANOES" ECHR 'O' \ ECHR 'L' \ Encoded as: "VOLCA<227><237>" ECHR 'C' ECHR 'A' ETWO 'N', 'O' ETWO 'E', 'S' EQUB VE ECHR 'P' \ Token 185: "PLANT" ECHR 'L' \ ETWO 'A', 'N' \ Encoded as: "PL<255>T" ECHR 'T' EQUB VE ECHR 'T' \ Token 186: "TULIP" ECHR 'U' \ ECHR 'L' \ Encoded as: "TULIP" ECHR 'I' ECHR 'P' EQUB VE ECHR 'B' \ Token 187: "BANANA" ETWO 'A', 'N' \ ETWO 'A', 'N' \ Encoded as: "B<255><255>A" ECHR 'A' EQUB VE ECHR 'C' \ Token 188: "CORN" ETWO 'O', 'R' \ ECHR 'N' \ Encoded as: "C<253>N" EQUB VE EJMP 18 \ Token 189: "{random 1-8 letter word}WEED" ECHR 'W' \ ECHR 'E' \ Encoded as: "{18}WE<252>" ETWO 'E', 'D' EQUB VE EJMP 18 \ Token 190: "{random 1-8 letter word}" EQUB VE \ \ Encoded as: "{18}" EJMP 17 \ Token 191: "{system name adjective} {random 1-8 ECHR ' ' \ letter word}" EJMP 18 \ EQUB VE \ Encoded as: "{17} {18}" EJMP 17 \ Token 192: "{system name adjective} [170-174]" ECHR ' ' \ ERND 13 \ Encoded as: "{17} [13?]" EQUB VE ETWO 'I', 'N' \ Token 193: "INHABITANT" ECHR 'H' \ ECHR 'A' \ Encoded as: "<240>HA<234>T<255>T" ETWO 'B', 'I' ECHR 'T' ETWO 'A', 'N' ECHR 'T' EQUB VE ETOK 191 \ Token 194: "{system name adjective} {random 1-8 EQUB VE \ letter word}" \ \ Encoded as: "[191]" ETWO 'I', 'N' \ Token 195: "ING " ECHR 'G' \ ECHR ' ' \ Encoded as: "<240>G " EQUB VE ETWO 'E', 'D' \ Token 196: "ED " ECHR ' ' \ EQUB VE \ Encoded as: "<252> " EQUB VE \ Token 197: "" \ \ Encoded as: "" EQUB VE \ Token 198: "" \ \ Encoded as: "" EQUB VE \ Token 199: "" \ \ Encoded as: "" ECHR ' ' \ Token 200: " NAME? " ECHR 'N' \ ECHR 'A' \ Encoded as: " NAME? " ECHR 'M' ECHR 'E' ECHR '?' ECHR ' ' EQUB VE ECHR ' ' \ Token 201: " TO " ECHR 'T' \ ECHR 'O' \ Encoded as: " TO " ECHR ' ' EQUB VE ECHR ' ' \ Token 202: " IS " ECHR 'I' \ ECHR 'S' \ Encoded as: " IS " ECHR ' ' EQUB VE ECHR 'W' \ Token 203: "WAS LAST SEEN AT {single cap}" ECHR 'A' \ ECHR 'S' \ Encoded as: "WAS <249><222> <218><246> <245> {19}" ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'T' ECHR ' ' ETWO 'S', 'E' ETWO 'E', 'N' ECHR ' ' ETWO 'A', 'T' ECHR ' ' EJMP 19 EQUB VE ECHR '.' \ Token 204: ".{cr} EJMP 12 \ {single cap}" ECHR ' ' \ EJMP 19 \ Encoded as: ".{12} {19}" EQUB VE ECHR 'D' \ Token 205: "DOCKED" ECHR 'O' \ ECHR 'C' \ Encoded as: "DOCK<252>" ECHR 'K' ETWO 'E', 'D' EQUB VE EJMP 1 \ Token 206: "{all caps}(Y/N)?" ECHR '(' \ ECHR 'Y' \ Encoded as: "{1}(Y/N)?" ECHR '/' ECHR 'N' ECHR ')' ECHR '?' EQUB VE ECHR 'S' \ Token 207: "SHIP" ECHR 'H' \ ECHR 'I' \ Encoded as: "SHIP" ECHR 'P' EQUB VE ECHR ' ' \ Token 208: " A " ECHR 'A' \ ECHR ' ' \ Encoded as: " A " EQUB VE ECHR ' ' \ Token 209: " ERRIUS" ETWO 'E', 'R' \ ECHR 'R' \ Encoded as: " <244>RI<236>" ECHR 'I' ETWO 'U', 'S' EQUB VE ECHR ' ' \ Token 210: " NEW " ECHR 'N' \ ECHR 'E' \ Encoded as: " NEW " ECHR 'W' ECHR ' ' EQUB VE EQUB VE \ Token 211: "" \ \ Encoded as: "" ETOK 177 \ Token 212: ".{cr} EJMP 8 \ {left align} EJMP 1 \ {tab 6}{all caps} MESSAGE ENDS" ECHR ' ' \ ECHR ' ' \ Encoded as: "[177]{8}{1} M<237>SA<231> <246>DS" ECHR 'M' ETWO 'E', 'S' ECHR 'S' ECHR 'A' ETWO 'G', 'E' ECHR ' ' ETWO 'E', 'N' ECHR 'D' ECHR 'S' EQUB VE EQUB VE \ Token 213: "" \ \ Encoded as: "" EQUB VE \ Token 214: "" \ \ Encoded as: "" EJMP 15 \ Token 215: "{left align} UNKNOWN PLANET" ECHR ' ' \ ECHR 'U' \ Encoded as: "{15} UNK<227>WN [145]" ECHR 'N' ECHR 'K' ETWO 'N', 'O' ECHR 'W' ECHR 'N' ECHR ' ' ETOK 145 EQUB VE EJMP 9 \ Token 216: "{clear screen} EJMP 8 \ {tab 6} EJMP 23 \ {move to row 10, white, lower case} EJMP 1 \ {all caps} ETWO 'I', 'N' \ INCOMING MESSAGE" ECHR 'C' \ ECHR 'O' \ Encoded as: "{9}{8}{23}{1}<240>COM[195]M<237>SA ECHR 'M' \ <231>" ETOK 195 ECHR 'M' ETWO 'E', 'S' ECHR 'S' ECHR 'A' ETWO 'G', 'E' EQUB VE EQUB VE \ Token 217: "" \ \ Encoded as: "" EQUB VE \ Token 218: "" \ \ Encoded as: "" ECHR 'F' \ Token 219: "FORTESQUE" ETWO 'O', 'R' \ ECHR 'T' \ Encoded as: "F<253>T<237><254>E" ETWO 'E', 'S' ETWO 'Q', 'U' ECHR 'E' EQUB VE ETOK 203 \ Token 220: "WAS LAST SEEN AT {single cap}REESDICE" ETWO 'R', 'E' \ ETWO 'E', 'S' \ Encoded as: "[203]<242><237><241><233>" ETWO 'D', 'I' ETWO 'C', 'E' EQUB VE EQUB VE \ Token 221: "" \ \ Encoded as: "" EQUB VE \ Token 222: "" \ \ Encoded as: "" EQUB VE \ Token 223: "" \ \ Encoded as: "" EQUB VE \ Token 224: "" \ \ Encoded as: "" ECHR 'S' \ Token 225: "SHREW" ECHR 'H' \ ETWO 'R', 'E' \ Encoded as: "SH<242>W" ECHR 'W' EQUB VE ETWO 'B', 'E' \ Token 226: "BEAST" ECHR 'A' \ ETWO 'S', 'T' \ Encoded as: "<247>A<222>" EQUB VE ETWO 'B', 'I' \ Token 227: "BISON" ECHR 'S' \ ETWO 'O', 'N' \ Encoded as: "<234>IS<223>" EQUB VE ECHR 'S' \ Token 228: "SNAKE" ECHR 'N' \ ECHR 'A' \ Encoded as: "SNAKE" ECHR 'K' ECHR 'E' EQUB VE ECHR 'W' \ Token 229: "WOLF" ECHR 'O' \ ECHR 'L' \ Encoded as: "WOLF" ECHR 'F' EQUB VE ETWO 'L', 'E' \ Token 230: "LEOPARD" ECHR 'O' \ ECHR 'P' \ Encoded as: "<229>OP<238>D" ETWO 'A', 'R' ECHR 'D' EQUB VE ECHR 'C' \ Token 231: "CAT" ETWO 'A', 'T' \ EQUB VE \ Encoded as: "C<245>" ECHR 'M' \ Token 232: "MONKEY" ETWO 'O', 'N' \ ECHR 'K' \ Encoded as: "M<223>KEY" ECHR 'E' ECHR 'Y' EQUB VE ECHR 'G' \ Token 233: "GOAT" ECHR 'O' \ ETWO 'A', 'T' \ Encoded as: "GO<245>" EQUB VE ECHR 'F' \ Token 234: "FISH" ECHR 'I' \ ECHR 'S' \ Encoded as: "FISH" ECHR 'H' EQUB VE ERND 15 \ Token 235: "[71-75] [66-70]" ECHR ' ' \ ERND 14 \ Encoded as: "[15?] [14?]" EQUB VE EJMP 17 \ Token 236: "{system name adjective} [225-229] ECHR ' ' \ [240-244]" ERND 29 \ ECHR ' ' \ Encoded as: "{17} [29?] [32?]" ERND 32 EQUB VE ETOK 175 \ Token 237: "ITS [76-80] [230-234] [240-244]" ERND 16 \ ECHR ' ' \ Encoded as: "[175][16?] [30?] [32?]" ERND 30 ECHR ' ' ERND 32 EQUB VE ERND 33 \ Token 238: "[245-249] [250-254]" ECHR ' ' \ ERND 34 \ Encoded as: "[33?] [34?]" EQUB VE ERND 15 \ Token 239: "[71-75] [66-70]" ECHR ' ' \ ERND 14 \ Encoded as: "[15?] [14?]" EQUB VE ECHR 'M' \ Token 240: "MEAT" ECHR 'E' \ ETWO 'A', 'T' \ Encoded as: "ME<245>" EQUB VE ECHR 'C' \ Token 241: "CUTLET" ECHR 'U' \ ECHR 'T' \ Encoded as: "CUTL<221>" ECHR 'L' ETWO 'E', 'T' EQUB VE ETWO 'S', 'T' \ Token 242: "STEAK" ECHR 'E' \ ECHR 'A' \ Encoded as: "<222>EAK" ECHR 'K' EQUB VE ECHR 'B' \ Token 243: "BURGERS" ECHR 'U' \ ECHR 'R' \ Encoded as: "BURG<244>S" ECHR 'G' ETWO 'E', 'R' ECHR 'S' EQUB VE ETWO 'S', 'O' \ Token 244: "SOUP" ECHR 'U' \ ECHR 'P' \ Encoded as: "<235>UP" EQUB VE ECHR 'I' \ Token 245: "ICE" ETWO 'C', 'E' \ EQUB VE \ Encoded as: "I<233>" ECHR 'M' \ Token 246: "MUD" ECHR 'U' \ ECHR 'D' \ Encoded as: "MUD" EQUB VE ECHR 'Z' \ Token 247: "ZERO-{single cap}G" ETWO 'E', 'R' \ ECHR 'O' \ Encoded as: "Z<244>O-{19}G" ECHR '-' EJMP 19 ECHR 'G' EQUB VE ECHR 'V' \ Token 248: "VACUUM" ECHR 'A' \ ECHR 'C' \ Encoded as: "VACUUM" ECHR 'U' ECHR 'U' ECHR 'M' EQUB VE EJMP 17 \ Token 249: "{system name adjective} ULTRA" ECHR ' ' \ ECHR 'U' \ Encoded as: "{17} ULT<248>" ECHR 'L' ECHR 'T' ETWO 'R', 'A' EQUB VE ECHR 'H' \ Token 250: "HOCKEY" ECHR 'O' \ ECHR 'C' \ Encoded as: "HOCKEY" ECHR 'K' ECHR 'E' ECHR 'Y' EQUB VE ECHR 'C' \ Token 251: "CRICKET" ECHR 'R' \ ECHR 'I' \ Encoded as: "CRICK<221>" ECHR 'C' ECHR 'K' ETWO 'E', 'T' EQUB VE ECHR 'K' \ Token 252: "KARATE" ETWO 'A', 'R' \ ETWO 'A', 'T' \ Encoded as: "K<238><245>E" ECHR 'E' EQUB VE ECHR 'P' \ Token 253: "POLO" ECHR 'O' \ ETWO 'L', 'O' \ Encoded as: "PO<224>" EQUB VE ECHR 'T' \ Token 254: "TENNIS" ETWO 'E', 'N' \ ECHR 'N' \ Encoded as: "T<246>NIS" ECHR 'I' ECHR 'S' EQUB VE EQUB VE \ Token 255: "" \ \ Encoded as: ""
Name: msg_3 [Show more] Type: Variable Category: Text Summary: The second extended token table for recursive tokens 0-255 (write_msg3) Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * write_msg3 uses msg_3
\ --- Mod: Code added for Elite-A: --------------------> .msg_3 EQUB VE \ Token 0: "" \ \ Encoded as: "" ETWO 'E', 'N' \ Token 1: "ENCYCLOPEDIA GALACTICA" ECHR 'C' \ ECHR 'Y' \ Encoded as: "<246>CYC<224>P<252>IA G<228>AC<251>CA" ECHR 'C' ETWO 'L', 'O' ECHR 'P' ETWO 'E', 'D' ECHR 'I' ECHR 'A' ECHR ' ' ECHR 'G' ETWO 'A', 'L' ECHR 'A' ECHR 'C' ETWO 'T', 'I' ECHR 'C' ECHR 'A' EQUB VE ETOK 207 \ Token 2: "SHIPS {all caps}A-G{sentence case}" ECHR 'S' \ ECHR ' ' \ Encoded as: "[207]S {1}A-G{2}" EJMP 1 ECHR 'A' ECHR '-' ECHR 'G' EJMP 2 EQUB VE ETOK 207 \ Token 3: "SHIPS {all caps}I-W{sentence case}" ECHR 'S' \ ECHR ' ' \ Encoded as: "[207]S {1}I-W{2}" EJMP 1 ECHR 'I' ECHR '-' ECHR 'W' EJMP 2 EQUB VE ECHR 'E' \ Token 4: "EQUIPMENT" ETWO 'Q', 'U' \ ECHR 'I' \ Encoded as: "E<254>IPM<246>T" ECHR 'P' ECHR 'M' ETWO 'E', 'N' ECHR 'T' EQUB VE ECHR 'C' \ Token 5: "CONTROLS" ETWO 'O', 'N' \ ECHR 'T' \ Encoded as: "C<223>TROLS" ECHR 'R' ECHR 'O' ECHR 'L' ECHR 'S' EQUB VE ETWO 'I', 'N' \ Token 6: "INFORMATION" ECHR 'F' \ ETWO 'O', 'R' \ Encoded as: "<240>F<253><239><251><223>" ETWO 'M', 'A' ETWO 'T', 'I' ETWO 'O', 'N' EQUB VE ECHR 'A' \ Token 7: "ADDER" ECHR 'D' \ ECHR 'D' \ Encoded as: "ADD<244>" ETWO 'E', 'R' EQUB VE ETWO 'A', 'N' \ Token 8: "ANACONDA" ECHR 'A' \ ECHR 'C' \ Encoded as: "<255>AC<223>DA" ETWO 'O', 'N' ECHR 'D' ECHR 'A' EQUB VE ECHR 'A' \ Token 9: "ASP MK2" ECHR 'S' \ ECHR 'P' \ Encoded as: "ASP MK2" ECHR ' ' ECHR 'M' ECHR 'K' ECHR '2' EQUB VE ECHR 'B' \ Token 10: "BOA" ECHR 'O' \ ECHR 'A' \ Encoded as: "BOA" EQUB VE ECHR 'B' \ Token 11: "BUSHMASTER" ECHR 'U' \ ECHR 'S' \ Encoded as: "BUSHMASTER" ECHR 'H' ECHR 'M' ECHR 'A' ECHR 'S' ECHR 'T' ECHR 'E' ECHR 'R' EQUB VE ECHR 'C' \ Token 12: "CHAMELEON" ECHR 'H' \ ECHR 'A' \ Encoded as: "CHAMELEON" ECHR 'M' ECHR 'E' ECHR 'L' ECHR 'E' ECHR 'O' ECHR 'N' EQUB VE ECHR 'C' \ Token 13: "COBRA MK1" ECHR 'O' \ ECHR 'B' \ Encoded as: "COB<248> MK1" ETWO 'R', 'A' ECHR ' ' ECHR 'M' ECHR 'K' ECHR '1' EQUB VE ECHR 'C' \ Token 14: "COBRA MK3" ECHR 'O' \ ECHR 'B' \ Encoded as: "COB<248> MK3" ETWO 'R', 'A' ECHR ' ' ECHR 'M' ECHR 'K' ECHR '3' EQUB VE ECHR 'C' \ Token 15: "CORIOLIS STATION" ETWO 'O', 'R' \ ECHR 'I' \ Encoded as: "C<253>IOLIS <222><245>I<223>" ECHR 'O' ECHR 'L' ECHR 'I' ECHR 'S' ECHR ' ' ETWO 'S', 'T' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' EQUB VE ECHR 'D' \ Token 16: "DODECAGON STATION" ECHR 'O' \ ECHR 'D' \ Encoded as: "DODECAG<223> <222><245>I<223>" ECHR 'E' ECHR 'C' ECHR 'A' ECHR 'G' ETWO 'O', 'N' ECHR ' ' ETWO 'S', 'T' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' EQUB VE ETWO 'E', 'S' \ Token 17: "ESCAPE CAPSULE" ECHR 'C' \ ECHR 'A' \ Encoded as: "<237>CAPE CAPSU<229>" ECHR 'P' ECHR 'E' ECHR ' ' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'S' ECHR 'U' ETWO 'L', 'E' EQUB VE ECHR 'F' \ Token 18: "FER-DE-{single cap}LANCE" ETWO 'E', 'R' \ ECHR '-' \ Encoded as: "F<244>-DE-{19}<249>N<233>" ECHR 'D' ECHR 'E' ECHR '-' EJMP 19 ETWO 'L', 'A' ECHR 'N' ETWO 'C', 'E' EQUB VE ETWO 'G', 'E' \ Token 19: "GECKO" ECHR 'C' \ ECHR 'K' \ Encoded as: "<231>CKO" ECHR 'O' EQUB VE ECHR 'G' \ Token 20: "GHAVIAL" ECHR 'H' \ ECHR 'A' \ Encoded as: "GHAVI<228>" ECHR 'V' ECHR 'I' ETWO 'A', 'L' EQUB VE ECHR 'I' \ Token 21: "IGUANA" ECHR 'G' \ ECHR 'U' \ Encoded as: "IGUANA" ECHR 'A' ECHR 'N' ECHR 'A' EQUB VE ECHR 'K' \ Token 22: "KRAIT" ETWO 'R', 'A' \ ETWO 'I', 'T' \ Encoded as: "K<248><219>" EQUB VE ETWO 'M', 'A' \ Token 23: "MAMBA" ECHR 'M' \ ECHR 'B' \ Encoded as: "<239>MBA" ECHR 'A' EQUB VE ECHR 'M' \ Token 24: "MONITOR" ETWO 'O', 'N' \ ETWO 'I', 'T' \ Encoded as: "M<223><219><253>" ETWO 'O', 'R' EQUB VE ECHR 'M' \ Token 25: "MORAY" ECHR 'O' \ ETWO 'R', 'A' \ Encoded as: "MO<248>Y" ECHR 'Y' EQUB VE ECHR 'O' \ Token 26: "OPHIDIAN" ECHR 'P' \ ECHR 'H' \ Encoded as: "OPHI<241><255>" ECHR 'I' ETWO 'D', 'I' ETWO 'A', 'N' EQUB VE ECHR 'P' \ Token 27: "PYTHON" ECHR 'Y' \ ETWO 'T', 'H' \ Encoded as: "PY<226><223>" ETWO 'O', 'N' EQUB VE ECHR 'S' \ Token 28: "SHUTTLE" ECHR 'H' \ ECHR 'U' \ Encoded as: "SHUTT<229>" ECHR 'T' ECHR 'T' ETWO 'L', 'E' EQUB VE ECHR 'S' \ Token 29: "SIDEWINDER" ECHR 'I' \ ECHR 'D' \ Encoded as: "SIDEW<240>D<244>" ECHR 'E' ECHR 'W' ETWO 'I', 'N' ECHR 'D' ETWO 'E', 'R' EQUB VE ETWO 'T', 'H' \ Token 30: "THARGOID" ETWO 'A', 'R' \ ECHR 'G' \ Encoded as: "<226><238>GOID" ECHR 'O' ECHR 'I' ECHR 'D' EQUB VE ETWO 'T', 'H' \ Token 31: "THARGON" ETWO 'A', 'R' \ ECHR 'G' \ Encoded as: "<226><238>G<223>" ETWO 'O', 'N' EQUB VE ECHR 'T' \ Token 32: "TRANSPORTER" ETWO 'R', 'A' \ ECHR 'N' \ Encoded as: "T<248>NSP<253>T<244>" ECHR 'S' ECHR 'P' ETWO 'O', 'R' ECHR 'T' ETWO 'E', 'R' EQUB VE ECHR 'V' \ Token 33: "VIPER" ECHR 'I' \ ECHR 'P' \ Encoded as: "VIP<244>" ETWO 'E', 'R' EQUB VE ECHR 'W' \ Token 34: "WORM" ETWO 'O', 'R' \ ECHR 'M' \ Encoded as: "W<253>M" EQUB VE ETWO 'A', 'R' \ Token 35: "ARMAMENTS:" ETWO 'M', 'A' \ ECHR 'M' \ Encoded as: "<238><239>M<246>TS:" ETWO 'E', 'N' ECHR 'T' ECHR 'S' ECHR ':' EQUB VE ECHR 'S' \ Token 36: "SPEED:" ECHR 'P' \ ECHR 'E' \ Encoded as: "SPE<252>:" ETWO 'E', 'D' ECHR ':' EQUB VE ETWO 'I', 'N' \ Token 37: "INSERVICE DATE:" ETWO 'S', 'E' \ ECHR 'R' \ Encoded as: "<240><218>RVI<233> D<245>E:" ECHR 'V' ECHR 'I' ETWO 'C', 'E' ECHR ' ' ECHR 'D' ETWO 'A', 'T' ECHR 'E' ECHR ':' EQUB VE ECHR 'C' \ Token 38: "COMBAT" ECHR 'O' \ ECHR 'M' \ Encoded as: "COMB<245>" ECHR 'B' ETWO 'A', 'T' EQUB VE ECHR 'C' \ Token 39: "CREW:" ETWO 'R', 'E' \ ECHR 'W' \ Encoded as: "C<242>W:" ECHR ':' EQUB VE ETOK 151 \ Token 40: "DRIVE MOTORS:" ECHR ' ' \ ECHR 'M' \ Encoded as: "[151] MOT<253>S:" ECHR 'O' ECHR 'T' ETWO 'O', 'R' ECHR 'S' ECHR ':' EQUB VE ETWO 'R', 'A' \ Token 41: "RANGE:" ECHR 'N' \ ETWO 'G', 'E' \ Encoded as: "<248>N<231>:" ECHR ':' EQUB VE ECHR 'F' \ Token 42: "FT" ECHR 'T' \ EQUB VE \ Encoded as: "FT" ETWO 'D', 'I' \ Token 43: "DIMENSIONS:" ECHR 'M' \ ETWO 'E', 'N' \ Encoded as: "<241>M<246>SI<223>S:" ECHR 'S' ECHR 'I' ETWO 'O', 'N' ECHR 'S' ECHR ':' EQUB VE ECHR 'H' \ Token 44: "HULL:" ECHR 'U' \ ECHR 'L' \ Encoded as: "HULL:" ECHR 'L' ECHR ':' EQUB VE ECHR 'S' \ Token 45: "SPACE:" ECHR 'P' \ ECHR 'A' \ Encoded as: "SPA<233>:" ETWO 'C', 'E' ECHR ':' EQUB VE ECHR ' ' \ Token 46: " MISSILES" ECHR 'M' \ ECHR 'I' \ Encoded as: " MISS<220><237>" ECHR 'S' ECHR 'S' ETWO 'I', 'L' ETWO 'E', 'S' EQUB VE ECHR 'F' \ Token 47: "FACTOR:" ECHR 'A' \ ECHR 'C' \ Encoded as: "FACT<253>:" ECHR 'T' ETWO 'O', 'R' ECHR ':' EQUB VE ETWO 'G', 'E' \ Token 48: "GERET STARSEEKER" ECHR 'R' \ ETWO 'E', 'T' \ Encoded as: "<231>R<221> <222><238><218>EK<244>" ECHR ' ' ETWO 'S', 'T' ETWO 'A', 'R' ETWO 'S', 'E' ECHR 'E' ECHR 'K' ETWO 'E', 'R' EQUB VE ECHR ' ' \ Token 49: " LASER" ETWO 'L', 'A' \ ETWO 'S', 'E' \ Encoded as: "<249><218>R" ECHR 'R' EQUB VE ECHR ' ' \ Token 50: " PULSE" ECHR 'P' \ ECHR 'U' \ Encoded as: "PUL<218>" ECHR 'L' ETWO 'S', 'E' EQUB VE ECHR ' ' \ Token 51: " SYSTEM" ECHR 'S' \ ECHR 'Y' \ Encoded as: " SY<222>EM" ETWO 'S', 'T' ECHR 'E' ECHR 'M' EQUB VE ETWO 'E', 'R' \ Token 52: "ERGON" ECHR 'G' \ ETWO 'O', 'N' \ Encoded as: "<244>G<223>" EQUB VE ETOK 151 \ Token 53: "DRIVE" EQUB VE \ \ Encoded as: "[151]" ETWO 'S', 'E' \ Token 54: "SEEK" ECHR 'E' \ ECHR 'K' \ Encoded as: "<218>EK" EQUB VE ECHR 'L' \ Token 55: "LIGHT" ECHR 'I' \ ECHR 'G' \ Encoded as: "LIGHT" ECHR 'H' ECHR 'T' EQUB VE ETWO 'I', 'N' \ Token 56: "INGRAM" ECHR 'G' \ ETWO 'R', 'A' \ Encoded as: "<240>G<248>M" ECHR 'M' EQUB VE ETWO 'L', 'A' \ Token 57: "LANCE & FERMAN" ECHR 'N' \ ETWO 'C', 'E' \ Encoded as: "<249>N<233> & F<244><239>N" ECHR ' ' ECHR '&' ECHR ' ' ECHR 'F' ETWO 'E', 'R' ETWO 'M', 'A' ECHR 'N' EQUB VE EJMP 19 \ Token 58: "{single cap}KRUGER " ECHR 'K' \ ECHR 'R' \ Encoded as: "{19}KRU<231>R " ECHR 'U' ETWO 'G', 'E' ECHR 'R' ECHR ' ' EQUB VE ECHR 'H' \ Token 59: "HASSONI" ECHR 'A' \ ECHR 'S' \ Encoded as: "HASS<223>I" ECHR 'S' ETWO 'O', 'N' ECHR 'I' EQUB VE ECHR 'V' \ Token 60: "VOLTAIRE" ECHR 'O' \ ECHR 'L' \ Encoded as: "VOLTAI<242>" ECHR 'T' ECHR 'A' ECHR 'I' ETWO 'R', 'E' EQUB VE ECHR 'C' \ Token 61: "CARGO" ETWO 'A', 'R' \ ECHR 'G' \ Encoded as: "C<238>GO" ECHR 'O' EQUB VE EJMP 1 \ Token 62: "{all caps}TC{sentence case}" ECHR 'T' \ ECHR 'C' \ Encoded as: "{1}TC{2}" EJMP 2 EQUB VE EJMP 1 \ Token 63: "{all caps}LY{sentence case}" ECHR 'L' \ ECHR 'Y' \ Encoded as: "{1}LY{2}" EJMP 2 EQUB VE EJMP 1 \ Token 64: "{all caps}LM{sentence case}" ECHR 'L' \ ECHR 'M' \ Encoded as: "{1}LM{2}" EJMP 2 EQUB VE ECHR 'C' \ Token 65: "CF" ECHR 'F' \ EQUB VE \ Encoded as: "CF" ETWO 'T', 'H' \ Token 66: "THRUST" ECHR 'R' \ ECHR 'U' \ Encoded as: "<226>RU<222>" ETWO 'S', 'T' EQUB VE ECHR ' ' \ Token 67: " SHIP" ETOK 207 \ EQUB VE \ Encoded as: " [207]" ETWO 'I', 'N' \ Token 68: "INVENTION" ECHR 'V' \ ETWO 'E', 'N' \ Encoded as: "<240>V<246><251><223>" ETWO 'T', 'I' ETWO 'O', 'N' EQUB VE ETWO 'O', 'U' \ Token 69: "OUTWORLD" ECHR 'T' \ ECHR 'W' \ Encoded as: "<217>TW<253>LD" ETWO 'O', 'R' ECHR 'L' ECHR 'D' EQUB VE ECHR 'Z' \ Token 70: "ZORGON PETTERSON)" ETWO 'O', 'R' \ ECHR 'G' \ Encoded as: "Z<253>G<223> P<221>T<244>S<223>)" ETWO 'O', 'N' ECHR ' ' ECHR 'P' ETWO 'E', 'T' ECHR 'T' ETWO 'E', 'R' ECHR 'S' ETWO 'O', 'N' ECHR ')' EQUB VE ECHR 'D' \ Token 71: "DE{single cap}LACY" ECHR 'E' \ EJMP 19 \ Encoded as: "DE{19}<249>CY" ETWO 'L', 'A' ECHR 'C' ECHR 'Y' EQUB VE EJMP 1 \ Token 72: "{all caps}4*C40KV{sentence case} AMES ECHR '4' \ DRIVE" ECHR '*' \ Encoded as: "{1}4*C40KV{2} AM<237> [151]" ECHR 'C' ECHR '4' ECHR '0' ECHR 'K' ECHR 'V' EJMP 2 ECHR ' ' ECHR 'A' ECHR 'M' ETWO 'E', 'S' ECHR ' ' ETOK 151 EQUB VE ECHR 'V' \ Token 73: "V & K " ECHR ' ' \ ECHR '&' \ Encoded as: "V & K " ECHR ' ' ECHR 'K' ECHR ' ' EQUB VE ECHR 'B' \ Token 74: "BLAST" ETWO 'L', 'A' \ ETWO 'S', 'T' \ Encoded as: "B<249><222>" EQUB VE ECHR ' ' \ Token 75: " ({single cap}GASEC LABS, VETITICE)" ECHR '(' \ EJMP 19 \ Encoded as: "({19}GA<218>C L<216>S, <250><251><251> ECHR 'G' \ <233>)" ECHR 'A' ETWO 'S', 'E' ECHR 'C' ECHR ' ' ECHR 'L' ETWO 'A', 'B' ECHR 'S' ECHR ',' ECHR ' ' ETWO 'V', 'E' ETWO 'T', 'I' ETWO 'T', 'I' ETWO 'C', 'E' ECHR ')' EQUB VE ECHR 'F' \ Token 76: "FEDERATION" ETWO 'E', 'D' \ ECHR 'E' \ Encoded as: "F<252>E<248><251><223>" ETWO 'R', 'A' ETWO 'T', 'I' ETWO 'O', 'N' EQUB VE ECHR 'S' \ Token 77: "SPACE" ECHR 'P' \ ECHR 'A' \ Encoded as: "SPA<233>" ETWO 'C', 'E' EQUB VE EJMP 19 \ Token 78: "{single cap}IONIC" ECHR 'I' \ ETWO 'O', 'N' \ Encoded as: "{19}I<223>IC" ECHR 'I' ECHR 'C' EQUB VE ECHR 'H' \ Token 79: "HUNT" ECHR 'U' \ ECHR 'N' \ Encoded as: "HUNT" ECHR 'T' EQUB VE ECHR 'P' \ Token 80: "PROSSET " ECHR 'R' \ ECHR 'O' \ Encoded as: "PROS<218>T " ECHR 'S' ETWO 'S', 'E' ECHR 'T' ECHR ' ' EQUB VE ECHR ' ' \ Token 81: " WORKSHOPS)" ECHR 'W' \ ETWO 'O', 'R' \ Encoded as: " W<253>KSHOPS)" ECHR 'K' ECHR 'S' ECHR 'H' ECHR 'O' ECHR 'P' ECHR 'S' ECHR ')' EQUB VE EJMP 1 \ Token 82: "{all caps}/1L{sentence case}" ECHR '/' \ ECHR '1' \ Encoded as: "{1}/1L{2}" ECHR 'L' EJMP 2 EQUB VE EJMP 1 \ Token 83: "{all caps}/2L{sentence case}" ECHR '/' \ ECHR '2' \ Encoded as: "{1}/2L{2}" ECHR 'L' EJMP 2 EQUB VE EJMP 1 \ Token 84: "{all caps}/4L{sentence case}" ECHR '/' \ ECHR '4' \ Encoded as: "{1}/4L{2}" ECHR 'L' EJMP 2 EQUB VE ECHR ' ' \ Token 85: " ({single cap}" ECHR '(' \ EJMP 19 \ Encoded as: " ({19}" EQUB VE EJMP 1 \ Token 86: "{all caps}IFS{sentence case} " ECHR 'I' \ ECHR 'F' \ Encoded as: "{1}IFS{2} " ECHR 'S' EJMP 2 ECHR ' ' EQUB VE EJMP 12 \ Token 87: "{cr} ECHR 'F' \ FLIGHT CONTROLS{crlf} ECHR 'L' \ <{tab 6}ANTI-CLOCKWISE ROLL{cr} ECHR 'I' \ >{tab 6}CLOCKWISE ROLL{cr} ECHR 'G' \ S{tab 6}DIVE{cr} ECHR 'H' \ X{tab 6}CLIMB{cr} ECHR 'T' \ {all caps}SPC{sentence case}{tab 6} ECHR ' ' \ INCREASE SPEED{cr} ECHR 'C' \ ?{tab 6}DECREASE SPEED{cr} ETWO 'O', 'N' \ {all caps}TAB{sentence case}{tab 6} ECHR 'T' \ HYPERSPACE ESCAPE{cr} ECHR 'R' \ {all caps}ESC{sentence case}{tab 6} ECHR 'O' \ ESCAPE CAPSULE{cr} ECHR 'L' \ F{tab 6}TOGGLE COMPASS{cr} ECHR 'S' \ V{tab 6}{standard tokens, sentence ETWO '-', '-' \ case} DOCKING COMPUTERS{extended ECHR '<' \ tokens}ON{cr} EJMP 8 \ P{tab 6}{standard tokens, sentence ETWO 'A', 'N' \ case} DOCKING COMPUTERS{extended ETWO 'T', 'I' \ tokens} OFF{cr} ECHR '-' \ J{tab 6}MICROJUMP{cr} ECHR 'C' \ {lower case}F0{sentence case}{tab 6} ETWO 'L', 'O' \ FRONT VIEW{cr} ECHR 'C' \ {lower case}F1{sentence case}{tab 6} ECHR 'K' \ REAR VIEW{cr} ECHR 'W' \ {lower case}F2{sentence case}{tab 6} ECHR 'I' \ LEFT VIEW{cr} ETWO 'S', 'E' \ {lower case}F3{sentence case}{tab 6} ECHR ' ' \ RIGHT VIEW{cr}" ECHR 'R' \ ECHR 'O' \ Encoded as: "{12}FLIGHT C<223>TROLS<215><{8}<255> ECHR 'L' \ <251>-C<224>CKWI<218> ROLL{12}>{8}C ECHR 'L' \ <224>CKWI<218> ROLL{12}S{8}<241><250> EJMP 12 \ {12}X{8}CLIMB{12}{1}SPC{2}{8}<240>C ECHR '>' \ <242>A<218> SPE<252>{12}?{8}DEC<242>A EJMP 8 \ <218> SPE<252>{12}{1}T<216>{2}{8}HYP ECHR 'C' \ <244>SPA<233> <237>CAPE{12}{1}<237>C{2} ETWO 'L', 'O' \ {8}<237>CAPE CAPSU<229>{12}F{8}TOGG ECHR 'C' \ <229> COMPASS{12}V{8}{4}[115]{5} <223> ECHR 'K' \ {12}P{8}{4}[115]{5} OFF{12}J{8}MICROJUM ECHR 'W' \ P{12}{13}F0{2}{8}FR<223>T VIEW{12}{13} ECHR 'I' \ F1{2}{8}<242><238> VIEW{12}{13}F2{2}{8} ETWO 'S', 'E' \ <229>FT VIEW{12}{13}F3{2}{8}RIGHT VIEW ECHR ' ' \ {12}" ECHR 'R' ECHR 'O' ECHR 'L' ECHR 'L' EJMP 12 ECHR 'S' EJMP 8 ETWO 'D', 'I' ETWO 'V', 'E' EJMP 12 ECHR 'X' EJMP 8 ECHR 'C' ECHR 'L' ECHR 'I' ECHR 'M' ECHR 'B' EJMP 12 EJMP 1 ECHR 'S' ECHR 'P' ECHR 'C' EJMP 2 EJMP 8 ETWO 'I', 'N' ECHR 'C' ETWO 'R', 'E' ECHR 'A' ETWO 'S', 'E' ECHR ' ' ECHR 'S' ECHR 'P' ECHR 'E' ETWO 'E', 'D' EJMP 12 ECHR '?' EJMP 8 ECHR 'D' ECHR 'E' ECHR 'C' ETWO 'R', 'E' ECHR 'A' ETWO 'S', 'E' ECHR ' ' ECHR 'S' ECHR 'P' ECHR 'E' ETWO 'E', 'D' EJMP 12 EJMP 1 ECHR 'T' ETWO 'A', 'B' EJMP 2 EJMP 8 ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ETWO 'E', 'S' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'E' EJMP 12 EJMP 1 ETWO 'E', 'S' ECHR 'C' EJMP 2 EJMP 8 ETWO 'E', 'S' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'E' ECHR ' ' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'S' ECHR 'U' ETWO 'L', 'E' EJMP 12 ECHR 'F' EJMP 8 ECHR 'T' ECHR 'O' ECHR 'G' ECHR 'G' ETWO 'L', 'E' ECHR ' ' ECHR 'C' ECHR 'O' ECHR 'M' ECHR 'P' ECHR 'A' ECHR 'S' ECHR 'S' EJMP 12 ECHR 'V' EJMP 8 EJMP 4 TOKN 115 EJMP 5 ECHR ' ' ETWO 'O', 'N' EJMP 12 ECHR 'P' EJMP 8 EJMP 4 TOKN 115 EJMP 5 ECHR ' ' ECHR 'O' ECHR 'F' ECHR 'F' EJMP 12 ECHR 'J' EJMP 8 ECHR 'M' ECHR 'I' ECHR 'C' ECHR 'R' ECHR 'O' ECHR 'J' ECHR 'U' ECHR 'M' ECHR 'P' EJMP 12 EJMP 13 ECHR 'F' ECHR '0' EJMP 2 EJMP 8 ECHR 'F' ECHR 'R' ETWO 'O', 'N' ECHR 'T' ECHR ' ' ECHR 'V' ECHR 'I' ECHR 'E' ECHR 'W' EJMP 12 EJMP 13 ECHR 'F' ECHR '1' EJMP 2 EJMP 8 ETWO 'R', 'E' ETWO 'A', 'R' ECHR ' ' ECHR 'V' ECHR 'I' ECHR 'E' ECHR 'W' EJMP 12 EJMP 13 ECHR 'F' ECHR '2' EJMP 2 EJMP 8 ETWO 'L', 'E' ECHR 'F' ECHR 'T' ECHR ' ' ECHR 'V' ECHR 'I' ECHR 'E' ECHR 'W' EJMP 12 EJMP 13 ECHR 'F' ECHR '3' EJMP 2 EJMP 8 ECHR 'R' ECHR 'I' ECHR 'G' ECHR 'H' ECHR 'T' ECHR ' ' ECHR 'V' ECHR 'I' ECHR 'E' ECHR 'W' EJMP 12 EQUB VE EJMP 12 \ Token 88: "{cr} ECHR 'C' \ COMBAT CONTROLS{crlf} ECHR 'O' \ A{tab 6}FIRE LASER{cr} ECHR 'M' \ T{tab 6}TARGET {standard tokens, ECHR 'B' \ sentence case} MISSILE{extended ETWO 'A', 'T' \ tokens}{cr} ECHR ' ' \ M{tab 6}FIRE {standard tokens, sentence ECHR 'C' \ case} MISSILE{extended tokens}{cr} ETWO 'O', 'N' \ U{tab 6}UNARM {standard tokens, ECHR 'T' \ sentence case} MISSILE{extended ECHR 'R' \ tokens}{cr} ECHR 'O' \ E{tab 6}TRIGGER E.C.M.{cr} ECHR 'L' \ {cr} ECHR 'S' \ I.F.F. COLOUR CODES{crlf} ETWO '-', '-' \ WHITE{tab 16}OFFICIAL SHIP{cr} ECHR 'A' \ BLUE{tab 16}LEGAL SHIP{cr} EJMP 8 \ BLUE/{single cap}WHITE{tab 16}DEBRIS ECHR 'F' \ {cr} ECHR 'I' \ BLUE/{single cap}RED{tab 16} ETWO 'R', 'E' \ NON-RESPONDENT{cr} ECHR ' ' \ WHITE/{single cap}RED{tab 16}{standard ETWO 'L', 'A' \ tokens, sentence case} MISSILE{extended ETWO 'S', 'E' \ tokens}{cr}" ECHR 'R' \ EJMP 12 \ Encoded as: "{12}COMB<245> C<223>TROLS<215>A{8}FI ECHR 'T' \ <242> <249><218>R{12}T{8}T<238>G<221> EJMP 8 \ {4}[106]{5}{12}M{8}FI<242> {4}[106]{5} ECHR 'T' \ {12}U{8}UN<238>M {4}[106]{5}{12}E{8}TRI ETWO 'A', 'R' \ G<231>R E.C.M.{12}{12}I.F.F. COL<217>R ECHR 'G' \ COD<237><215>WH<219>E{22}OFFICI<228> ETWO 'E', 'T' \ [207]{12}BLUE{22}<229>G<228> [207]{12} ECHR ' ' \ BLUE/{19}WH<219>E{22}DEBRIS{12}BLUE/ EJMP 4 \ {19}<242>D{22}N<223>-R<237>P<223>D<246> TOKN 106 \ T{12}WH<219>E/{19}<242>D{22}{4}[106]{5} EJMP 5 \ {12}" EJMP 12 ECHR 'M' EJMP 8 ECHR 'F' ECHR 'I' ETWO 'R', 'E' ECHR ' ' EJMP 4 TOKN 106 EJMP 5 EJMP 12 ECHR 'U' EJMP 8 ECHR 'U' ECHR 'N' ETWO 'A', 'R' ECHR 'M' ECHR ' ' EJMP 4 TOKN 106 EJMP 5 EJMP 12 ECHR 'E' EJMP 8 ECHR 'T' ECHR 'R' ECHR 'I' ECHR 'G' ETWO 'G', 'E' ECHR 'R' ECHR ' ' ECHR 'E' ECHR '.' ECHR 'C' ECHR '.' ECHR 'M' ECHR '.' EJMP 12 EJMP 12 ECHR 'I' ECHR '.' ECHR 'F' ECHR '.' ECHR 'F' ECHR '.' ECHR ' ' ECHR 'C' ECHR 'O' ECHR 'L' ETWO 'O', 'U' ECHR 'R' ECHR ' ' ECHR 'C' ECHR 'O' ECHR 'D' ETWO 'E', 'S' ETWO '-', '-' ECHR 'W' ECHR 'H' ETWO 'I', 'T' ECHR 'E' EJMP 22 ECHR 'O' ECHR 'F' ECHR 'F' ECHR 'I' ECHR 'C' ECHR 'I' ETWO 'A', 'L' ECHR ' ' ETOK 207 EJMP 12 ECHR 'B' ECHR 'L' ECHR 'U' ECHR 'E' EJMP 22 ETWO 'L', 'E' ECHR 'G' ETWO 'A', 'L' ECHR ' ' ETOK 207 EJMP 12 ECHR 'B' ECHR 'L' ECHR 'U' ECHR 'E' ECHR '/' EJMP 19 ECHR 'W' ECHR 'H' ETWO 'I', 'T' ECHR 'E' EJMP 22 ECHR 'D' ECHR 'E' ECHR 'B' ECHR 'R' ECHR 'I' ECHR 'S' EJMP 12 ECHR 'B' ECHR 'L' ECHR 'U' ECHR 'E' ECHR '/' EJMP 19 ETWO 'R', 'E' ECHR 'D' EJMP 22 ECHR 'N' ETWO 'O', 'N' ECHR '-' ECHR 'R' ETWO 'E', 'S' ECHR 'P' ETWO 'O', 'N' ECHR 'D' ETWO 'E', 'N' ECHR 'T' EJMP 12 ECHR 'W' ECHR 'H' ETWO 'I', 'T' ECHR 'E' ECHR '/' EJMP 19 ETWO 'R', 'E' ECHR 'D' EJMP 22 EJMP 4 TOKN 106 EJMP 5 EJMP 12 EQUB VE EJMP 12 \ Token 89: "{cr} ECHR 'N' \ NAVIGATION CONTROLS{crlf} ECHR 'A' \ H{tab 6}HYPERSPACE JUMP{cr} ECHR 'V' \ C-{single cap}H{tab 6}{standard tokens, ECHR 'I' \ sentence case} GALACTIC HYPERSPACE ECHR 'G' \ {extended tokens}{cr} ETWO 'A', 'T' \ CURSOR KEYS{cr} ECHR 'I' \ {tab 6}HYPERSPACE CURSOR CONTROL{cr} ETWO 'O', 'N' \ D{tab 6}DISTANCE TO SYSTEM{cr} ECHR ' ' \ O{tab 6}HOME CURSOR{cr} ECHR 'C' \ F{tab 6}FIND SYSTEM ({single cap}DOCKED ETWO 'O', 'N' \ ){cr} ECHR 'T' \ W{tab 6}FIND DESTINATION SYSTEM{cr} ECHR 'R' \ {lower case}F4{sentence case}{tab 6} ECHR 'O' \ GALACTIC MAP{cr} ECHR 'L' \ {lower case}F5{sentence case}{tab 6} ECHR 'S' \ SHORT RANGE MAP{cr} ETWO '-', '-' \ {lower case}F6{sentence case}{tab 6} ECHR 'H' \ DATA ON PLANET{cr}" EJMP 8 \ ECHR 'H' \ Encoded as: "{12}NAVIG<245>I<223> C<223>TROLS<215>H ECHR 'Y' \ {8}HYP<244>SPA<233> JUMP{12}C-{19}H{8} ECHR 'P' \ {4}[116]{5}{12}CUR<235>R KEYS{12}{8}HYP ETWO 'E', 'R' \ <244>SPA<233> CUR<235>R C<223>TROL{12}D ECHR 'S' \ {8}<241><222><255><233>[201]SY<222>EM ECHR 'P' \ {12}O{8}HOME CUR<235>R{12}F{8}F<240>D S ECHR 'A' \ Y<222>EM ({19}[205]){12}W{8}F<240>D DE ETWO 'C', 'E' \ <222><240><245>I<223> SY<222>EM{12}{13} ECHR ' ' \ F4{2}{8}G<228>AC<251>C <239>P{12}{13}F5 ECHR 'J' \ {2}{8}SH<253>T <248>N<231> <239>P{12} ECHR 'U' \ {13}F6{2}{8}D<245>A <223> [145]{12}" ECHR 'M' ECHR 'P' EJMP 12 ECHR 'C' ECHR '-' EJMP 19 ECHR 'H' EJMP 8 EJMP 4 TOKN 116 EJMP 5 EJMP 12 ECHR 'C' ECHR 'U' ECHR 'R' ETWO 'S', 'O' ECHR 'R' ECHR ' ' ECHR 'K' ECHR 'E' ECHR 'Y' ECHR 'S' EJMP 12 EJMP 8 ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ECHR 'C' ECHR 'U' ECHR 'R' ETWO 'S', 'O' ECHR 'R' ECHR ' ' ECHR 'C' ETWO 'O', 'N' ECHR 'T' ECHR 'R' ECHR 'O' ECHR 'L' EJMP 12 ECHR 'D' EJMP 8 ETWO 'D', 'I' ETWO 'S', 'T' ETWO 'A', 'N' ETWO 'C', 'E' ETOK 201 ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' EJMP 12 ECHR 'O' EJMP 8 ECHR 'H' ECHR 'O' ECHR 'M' ECHR 'E' ECHR ' ' ECHR 'C' ECHR 'U' ECHR 'R' ETWO 'S', 'O' ECHR 'R' EJMP 12 ECHR 'F' EJMP 8 ECHR 'F' ETWO 'I', 'N' ECHR 'D' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR ' ' ECHR '(' EJMP 19 ETOK 205 ECHR ')' EJMP 12 ECHR 'W' EJMP 8 ECHR 'F' ETWO 'I', 'N' ECHR 'D' ECHR ' ' ECHR 'D' ECHR 'E' ETWO 'S', 'T' ETWO 'I', 'N' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' EJMP 12 EJMP 13 ECHR 'F' ECHR '4' EJMP 2 EJMP 8 ECHR 'G' ETWO 'A', 'L' ECHR 'A' ECHR 'C' ETWO 'T', 'I' ECHR 'C' ECHR ' ' ETWO 'M', 'A' ECHR 'P' EJMP 12 EJMP 13 ECHR 'F' ECHR '5' EJMP 2 EJMP 8 ECHR 'S' ECHR 'H' ETWO 'O', 'R' ECHR 'T' ECHR ' ' ETWO 'R', 'A' ECHR 'N' ETWO 'G', 'E' ECHR ' ' ETWO 'M', 'A' ECHR 'P' EJMP 12 EJMP 13 ECHR 'F' ECHR '6' EJMP 2 EJMP 8 ECHR 'D' ETWO 'A', 'T' ECHR 'A' ECHR ' ' ETWO 'O', 'N' ECHR ' ' ETOK 145 EJMP 12 EQUB VE EJMP 12 \ Token 90: "{cr} ECHR 'T' \ TRADING CONTROLS{crlf} ETWO 'R', 'A' \ {lower case}F0{sentence case}{tab 6} ECHR 'D' \ LAUNCH FROM STATION{cr} ETOK 195 \ C-F0{sentence case}{tab 6}REMAIN DOCKED ECHR 'C' \ {cr} ETWO 'O', 'N' \ {lower case}F1{sentence case}{tab 6}BUY ECHR 'T' \ CARGO{cr} ECHR 'R' \ C-F1{tab 6}BUY SPECIAL CARGO{cr} ECHR 'O' \ {lower case}F2{sentence case}{tab 6} ECHR 'L' \ SELL CARGO{cr} ECHR 'S' \ C-F2{tab 6}SELL EQUIPMENT{cr} ETWO '-', '-' \ {lower case}F3{sentence case}{tab 6} EJMP 13 \ EQUIP SHIP{cr} ECHR 'F' \ C-F3{tab 6}BUY SHIP{cr} ECHR '0' \ C-F6{tab 6}ENCYCLOPEDIA{cr} EJMP 2 \ {lower case}F7{sentence case}{tab 6} EJMP 8 \ MARKET PRICES{cr} ETWO 'L', 'A' \ {lower case}F8{sentence case}{tab 6} ECHR 'U' \ STATUS PAGE{cr} ECHR 'N' \ {lower case}F9{sentence case}{tab 6} ECHR 'C' \ INVENTORY{cr}" ECHR 'H' \ ECHR ' ' \ Encoded as: "{12}T<248>D[195]C<223>TROLS<215>{13}F0 ECHR 'F' \ {2}{8}<249>UNCH FROM <222><245>I<223> ECHR 'R' \ {12}C-F0{2}{8}<242><239><240> [205]{12} ECHR 'O' \ {13}F1{2}{8}BUY C<238>GO{12}C-F1{8}BUY ECHR 'M' \ SPECI<228> C<238>GO{12}{13}F2{2}{8} ECHR ' ' \ <218>LL C<238>GO{12}C-F2{8}<218>LL EQUI ETWO 'S', 'T' \ PMENT{12}{13}F3{2}{8}EQUIP [207]{12}C-F ETWO 'A', 'T' \ 3{8}BUY [207]{12}C-F6{8}<246>CYC<224>P ECHR 'I' \ <252>IA{12}{13}F7{2}{8}M<238>K<221> PRI ETWO 'O', 'N' \ <233>S{12}{13}F8{2}{8}<222><245><236> P EJMP 12 \ A<231>{12}{13}F9{2}{8}<240>V<246>T<253> ECHR 'C' \ Y{12}" ECHR '-' ECHR 'F' ECHR '0' EJMP 2 EJMP 8 ETWO 'R', 'E' ETWO 'M', 'A' ETWO 'I', 'N' ECHR ' ' ETOK 205 EJMP 12 EJMP 13 ECHR 'F' ECHR '1' EJMP 2 EJMP 8 ECHR 'B' ECHR 'U' ECHR 'Y' ECHR ' ' ECHR 'C' ETWO 'A', 'R' ECHR 'G' ECHR 'O' EJMP 12 ECHR 'C' ECHR '-' ECHR 'F' ECHR '1' EJMP 8 ECHR 'B' ECHR 'U' ECHR 'Y' ECHR ' ' ECHR 'S' ECHR 'P' ECHR 'E' ECHR 'C' ECHR 'I' ETWO 'A', 'L' ECHR ' ' ECHR 'C' ETWO 'A', 'R' ECHR 'G' ECHR 'O' EJMP 12 EJMP 13 ECHR 'F' ECHR '2' EJMP 2 EJMP 8 ETWO 'S', 'E' ECHR 'L' ECHR 'L' ECHR ' ' ECHR 'C' ETWO 'A', 'R' ECHR 'G' ECHR 'O' EJMP 12 ECHR 'C' ECHR '-' ECHR 'F' ECHR '2' EJMP 8 ETWO 'S', 'E' ECHR 'L' ECHR 'L' ECHR ' ' ECHR 'E' ECHR 'Q' ECHR 'U' ECHR 'I' ECHR 'P' ECHR 'M' ECHR 'E' ECHR 'N' ECHR 'T' EJMP 12 EJMP 13 ECHR 'F' ECHR '3' EJMP 2 EJMP 8 ECHR 'E' ECHR 'Q' ECHR 'U' ECHR 'I' ECHR 'P' ECHR ' ' ETOK 207 EJMP 12 ECHR 'C' ECHR '-' ECHR 'F' ECHR '3' EJMP 8 ECHR 'B' ECHR 'U' ECHR 'Y' ECHR ' ' ETOK 207 EJMP 12 ECHR 'C' ECHR '-' ECHR 'F' ECHR '6' EJMP 8 ETWO 'E', 'N' ECHR 'C' ECHR 'Y' ECHR 'C' ETWO 'L', 'O' ECHR 'P' ETWO 'E', 'D' ECHR 'I' ECHR 'A' EJMP 12 EJMP 13 ECHR 'F' ECHR '7' EJMP 2 EJMP 8 ECHR 'M' ETWO 'A', 'R' ECHR 'K' ETWO 'E', 'T' ECHR ' ' ECHR 'P' ECHR 'R' ECHR 'I' ETWO 'C', 'E' ECHR 'S' EJMP 12 EJMP 13 ECHR 'F' ECHR '8' EJMP 2 EJMP 8 ETWO 'S', 'T' ETWO 'A', 'T' ETWO 'U', 'S' ECHR ' ' ECHR 'P' ECHR 'A' ETWO 'G', 'E' EJMP 12 EJMP 13 ECHR 'F' ECHR '9' EJMP 2 EJMP 8 ETWO 'I', 'N' ECHR 'V' ETWO 'E', 'N' ECHR 'T' ETWO 'O', 'R' ECHR 'Y' EJMP 12 EQUB VE ECHR 'F' \ Token 91: "FLIGHT" ECHR 'L' \ ECHR 'I' \ Encoded as: "FLIGHT" ECHR 'G' ECHR 'H' ECHR 'T' EQUB VE ECHR 'C' \ Token 92: "COMBAT" ECHR 'O' \ ECHR 'M' \ Encoded as: "COMB<245>" ECHR 'B' ETWO 'A', 'T' EQUB VE ECHR 'N' \ Token 93: "NAVIGATION" ECHR 'A' \ ECHR 'V' \ Encoded as: "NAVIG<245>I<223>" ECHR 'I' ECHR 'G' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' EQUB VE ECHR 'T' \ Token 94: "TRADING" ETWO 'R', 'A' \ ECHR 'D' \ Encoded as: "T<248>D<240>G" ETWO 'I', 'N' ECHR 'G' EQUB VE EJMP 4 \ Token 95: "{standard tokens, sentence case}MISSILE TOKN 106 \ {extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[106]{5}" EJMP 4 \ Token 96: "{standard tokens, sentence case}I.F.F. TOKN 107 \ SYSTEM{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[107]{5}" EJMP 4 \ Token 97: "{standard tokens, sentence case} TOKN 108 \ E.C.M.SYSTEM{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[108]{5}" EJMP 4 \ Token 98: "{standard tokens, sentence case}PULSE TOKN 103 \ LASER{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[103]{5}" EJMP 4 \ Token 99: "{standard tokens, sentence case}BEAM TOKN 104 \ LASER{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[104]{5}" EJMP 4 \ Token 100: "{standard tokens, sentence case}FUEL TOKN 111 \ SCOOPS{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[111]{5}" EJMP 4 \ Token 101: "{standard tokens, sentence case}ESCAPE TOKN 112 \ POD{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[112]{5}" EJMP 4 \ Token 102: "{standard tokens, sentence case} TOKN 113 \ HYPERSPACE UNIT{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[113]{5}" EJMP 4 \ Token 103: "{standard tokens, sentence case}ENERGY TOKN 114 \ UNIT{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[114]{5}" EJMP 4 \ Token 104: "{standard tokens, sentence case}DOCKING TOKN 115 \ COMPUTERS{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[115]{5}" EJMP 4 \ Token 105: "{standard tokens, sentence case} TOKN 116 \ GALACTIC HYPERSPACE {extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[116]{5}" EJMP 4 \ Token 106: "{standard tokens, sentence case} TOKN 117 \ MILITARY LASER{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[117]{5}" EJMP 4 \ Token 107: "{standard tokens, sentence case} TOKN 118 \ MINING LASER{extended tokens}" EJMP 5 \ EQUB VE \ Encoded as: "{4}[118]{5}" EJMP 14 \ Token 108: "{justify}{single cap}SELF HOMING EJMP 19 \ MISSILES MAY BE BOUGHT AT ANY SYSTEM. ETWO 'S', 'E' \ {crlf} ECHR 'L' \ {single cap}BEFORE A MISSILE CAN BE ECHR 'F' \ FIRED IT MUST BE LOCKED ONTO A TARGET. ECHR ' ' \ {crlf} ECHR 'H' \ {single cap}WHEN FIRED, IT WILL HOME IN ECHR 'O' \ TO THE TARGET UNLESS THE TARGET CAN ECHR 'M' \ OUTMANOEUVRE THE MISSILE, SHOOT IT, OR ETOK 195 \ USE ELECTRONIC COUNTER MEASURES ON IT. ECHR 'M' \ {cr} ECHR 'I' \ {left align}" ECHR 'S' \ ECHR 'S' \ Encoded as: "{14}{19}<218>LF HOM[195]MISS<220><237> ETWO 'I', 'L' \ <239>Y <247> B<217>GHT <245> <255>Y SY ETWO 'E', 'S' \ <222>EM.<215>{19}<247>FO<242>[208]MISS ECHR ' ' \ <220>E C<255> <247> FIR[196]<219> MU ETWO 'M', 'A' \ <222> <247> <224>CK[196]<223>TO A T ECHR 'Y' \ <238>G<221>.<215>{19}WH<246> FI<242>D, ECHR ' ' \ <219> W<220>L HOME <240>[201][147]T ETWO 'B', 'E' \ <238>G<221> UN<229>SS [147]T<238>G<221> ECHR ' ' \ C<255> <217>T<239><227>EUV<242> [147]M ECHR 'B' \ ISS<220>E, SHOOT <219>, <253> U<218> E ETWO 'O', 'U' \ <229>CTR<223>IC C<217>NT<244> MEASUR ECHR 'G' \ <237> <223> <219>[177]" ECHR 'H' ECHR 'T' ECHR ' ' ETWO 'A', 'T' ECHR ' ' ETWO 'A', 'N' ECHR 'Y' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'B', 'E' ECHR 'F' ECHR 'O' ETWO 'R', 'E' ETOK 208 ECHR 'M' ECHR 'I' ECHR 'S' ECHR 'S' ETWO 'I', 'L' ECHR 'E' ECHR ' ' ECHR 'C' ETWO 'A', 'N' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ECHR 'F' ECHR 'I' ECHR 'R' ETOK 196 ETWO 'I', 'T' ECHR ' ' ECHR 'M' ECHR 'U' ETWO 'S', 'T' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ETWO 'L', 'O' ECHR 'C' ECHR 'K' ETOK 196 ETWO 'O', 'N' ECHR 'T' ECHR 'O' ECHR ' ' ECHR 'A' ECHR ' ' ECHR 'T' ETWO 'A', 'R' ECHR 'G' ETWO 'E', 'T' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'W' ECHR 'H' ETWO 'E', 'N' ECHR ' ' ECHR 'F' ECHR 'I' ETWO 'R', 'E' ECHR 'D' ECHR ',' ECHR ' ' ETWO 'I', 'T' ECHR ' ' ECHR 'W' ETWO 'I', 'L' ECHR 'L' ECHR ' ' ECHR 'H' ECHR 'O' ECHR 'M' ECHR 'E' ECHR ' ' ETWO 'I', 'N' ETOK 201 ETOK 147 ECHR 'T' ETWO 'A', 'R' ECHR 'G' ETWO 'E', 'T' ECHR ' ' ECHR 'U' ECHR 'N' ETWO 'L', 'E' ECHR 'S' ECHR 'S' ECHR ' ' ETOK 147 ECHR 'T' ETWO 'A', 'R' ECHR 'G' ETWO 'E', 'T' ECHR ' ' ECHR 'C' ETWO 'A', 'N' ECHR ' ' ETWO 'O', 'U' ECHR 'T' ETWO 'M', 'A' ETWO 'N', 'O' ECHR 'E' ECHR 'U' ECHR 'V' ETWO 'R', 'E' ECHR ' ' ETOK 147 ECHR 'M' ECHR 'I' ECHR 'S' ECHR 'S' ETWO 'I', 'L' ECHR 'E' ECHR ',' ECHR ' ' ECHR 'S' ECHR 'H' ECHR 'O' ECHR 'O' ECHR 'T' ECHR ' ' ETWO 'I', 'T' ECHR ',' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'U' ETWO 'S', 'E' ECHR ' ' ECHR 'E' ETWO 'L', 'E' ECHR 'C' ECHR 'T' ECHR 'R' ETWO 'O', 'N' ECHR 'I' ECHR 'C' ECHR ' ' ECHR 'C' ETWO 'O', 'U' ECHR 'N' ECHR 'T' ETWO 'E', 'R' ECHR ' ' ECHR 'M' ECHR 'E' ECHR 'A' ECHR 'S' ECHR 'U' ECHR 'R' ETWO 'E', 'S' ECHR ' ' ETWO 'O', 'N' ECHR ' ' ETWO 'I', 'T' ETOK 177 EQUB VE EJMP 14 \ Token 109: "{justify}{single cap}AN IDENTIFICATION EJMP 19 \ FRIEND OR FOE SYSTEM CAN BE OBTAINED AT ETWO 'A', 'N' \ TECH LEVEL 2 OR ABOVE.{crlf} ECHR ' ' \ {single cap}AN {all caps}I.F.F.{lower ECHR 'I' \ case} SYSTEM WILL DISPLAY DIFFERENT ECHR 'D' \ TYPES OF OBJECT IN DIFFERENT COLOURS ON ETWO 'E', 'N' \ THE RADAR DISPLAY.{crlf} ETWO 'T', 'I' \ {single cap}SEE {single cap}CONTROLS ECHR 'F' \ ({single cap}COMBAT).{cr} ECHR 'I' \ {left align}" ECHR 'C' \ ETWO 'A', 'T' \ Encoded as: "{14}{19}<255> ID<246><251>FIC<245>I ECHR 'I' \ <223> FRI<246>D <253> FOE SY<222>EM C ETWO 'O', 'N' \ <255> <247> OBTA<240>[196]<245> TECH ECHR ' ' \ <229><250>L 2 <253> <216>O<250>.<215> ECHR 'F' \ {19}<255> {1}I.F.F.{13} SY<222>EM W ECHR 'R' \ <220>L <241>SP<249>Y <241>FFE<242>NT TY ECHR 'I' \ P<237> OF OBJECT <240> <241>FFE<242>NT ETWO 'E', 'N' \ COL<217>RS <223> [147]<248>D<238> ECHR 'D' \ <241>SP<249>Y.<215>{19}<218>E {19}C ECHR ' ' \ <223>TROLS ({19}COMB<245>)[177]" ETWO 'O', 'R' ECHR ' ' ECHR 'F' ECHR 'O' ECHR 'E' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR ' ' ECHR 'C' ETWO 'A', 'N' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ECHR 'O' ECHR 'B' ECHR 'T' ECHR 'A' ETWO 'I', 'N' ETOK 196 ETWO 'A', 'T' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '2' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ETWO 'A', 'B' ECHR 'O' ETWO 'V', 'E' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'A', 'N' ECHR ' ' EJMP 1 ECHR 'I' ECHR '.' ECHR 'F' ECHR '.' ECHR 'F' ECHR '.' EJMP 13 ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR ' ' ECHR 'W' ETWO 'I', 'L' ECHR 'L' ECHR ' ' ETWO 'D', 'I' ECHR 'S' ECHR 'P' ETWO 'L', 'A' ECHR 'Y' ECHR ' ' ETWO 'D', 'I' ECHR 'F' ECHR 'F' ECHR 'E' ETWO 'R', 'E' ECHR 'N' ECHR 'T' ECHR ' ' ECHR 'T' ECHR 'Y' ECHR 'P' ETWO 'E', 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'O' ECHR 'B' ECHR 'J' ECHR 'E' ECHR 'C' ECHR 'T' ECHR ' ' ETWO 'I', 'N' ECHR ' ' ETWO 'D', 'I' ECHR 'F' ECHR 'F' ECHR 'E' ETWO 'R', 'E' ECHR 'N' ECHR 'T' ECHR ' ' ECHR 'C' ECHR 'O' ECHR 'L' ETWO 'O', 'U' ECHR 'R' ECHR 'S' ECHR ' ' ETWO 'O', 'N' ECHR ' ' ETOK 147 ETWO 'R', 'A' ECHR 'D' ETWO 'A', 'R' ECHR ' ' ETWO 'D', 'I' ECHR 'S' ECHR 'P' ETWO 'L', 'A' ECHR 'Y' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'S', 'E' ECHR 'E' ECHR ' ' EJMP 19 ECHR 'C' ETWO 'O', 'N' ECHR 'T' ECHR 'R' ECHR 'O' ECHR 'L' ECHR 'S' ECHR ' ' ECHR '(' EJMP 19 ECHR 'C' ECHR 'O' ECHR 'M' ECHR 'B' ETWO 'A', 'T' ECHR ')' ETOK 177 EQUB VE EJMP 14 \ Token 110: "{justify}{single cap}AN ELECTRONIC EJMP 19 \ COUNTER MEASURES SYSTEM MAY BE BOUGHT ETWO 'A', 'N' \ AT ANY SYSTEM OF TECH LEVEL 3 OR ECHR ' ' \ HIGHER.{crlf} ECHR 'E' \ {single cap}WHEN ACTIVATED, THE {all ETWO 'L', 'E' \ caps}E.C.M.{lower case} SYSTEM WILL ECHR 'C' \ DISRUPT THE GUIDANCE SYSTEMS OF ALL ECHR 'T' \ MISSILES IN THE VICINITY, MAKING THEM ECHR 'R' \ SELF DESTRUCT.{cr} ETWO 'O', 'N' \ {left align}" ECHR 'I' \ ECHR 'C' \ Encoded as: "{14}{19}<255> E<229>CTR<223>IC C<217>NT ECHR ' ' \ <244> MEASUR<237> SY<222>EM <239>Y ECHR 'C' \ <247> B<217>GHT <245> <255>Y SY<222>EM ETWO 'O', 'U' \ OF TECH <229><250>L 3 <253> HIGH<244>. ECHR 'N' \ <215>{19}WH<246> AC<251>V<245><252>, ECHR 'T' \ [147]{1}E.C.M.{13} SY<222>EM W<220>L ETWO 'E', 'R' \ <241>SRUPT [147]GUID<255><233> SY<222> ECHR ' ' \ EMS OF <228>L MISS<220><237> <240> ECHR 'M' \ [147]VIC<240><219>Y, <239>K[195]<226>E ECHR 'E' \ M <218>LF DE<222>RUCT[177]" ECHR 'A' ECHR 'S' ECHR 'U' ECHR 'R' ETWO 'E', 'S' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR ' ' ETWO 'M', 'A' ECHR 'Y' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ECHR 'B' ETWO 'O', 'U' ECHR 'G' ECHR 'H' ECHR 'T' ECHR ' ' ETWO 'A', 'T' ECHR ' ' ETWO 'A', 'N' ECHR 'Y' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '3' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'H' ECHR 'I' ECHR 'G' ECHR 'H' ETWO 'E', 'R' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'W' ECHR 'H' ETWO 'E', 'N' ECHR ' ' ECHR 'A' ECHR 'C' ETWO 'T', 'I' ECHR 'V' ETWO 'A', 'T' ETWO 'E', 'D' ECHR ',' ECHR ' ' ETOK 147 EJMP 1 ECHR 'E' ECHR '.' ECHR 'C' ECHR '.' ECHR 'M' ECHR '.' EJMP 13 ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR ' ' ECHR 'W' ETWO 'I', 'L' ECHR 'L' ECHR ' ' ETWO 'D', 'I' ECHR 'S' ECHR 'R' ECHR 'U' ECHR 'P' ECHR 'T' ECHR ' ' ETOK 147 ECHR 'G' ECHR 'U' ECHR 'I' ECHR 'D' ETWO 'A', 'N' ETWO 'C', 'E' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ETWO 'A', 'L' ECHR 'L' ECHR ' ' ECHR 'M' ECHR 'I' ECHR 'S' ECHR 'S' ETWO 'I', 'L' ETWO 'E', 'S' ECHR ' ' ETWO 'I', 'N' ECHR ' ' ETOK 147 ECHR 'V' ECHR 'I' ECHR 'C' ETWO 'I', 'N' ETWO 'I', 'T' ECHR 'Y' ECHR ',' ECHR ' ' ETWO 'M', 'A' ECHR 'K' ETOK 195 ETWO 'T', 'H' ECHR 'E' ECHR 'M' ECHR ' ' ETWO 'S', 'E' ECHR 'L' ECHR 'F' ECHR ' ' ECHR 'D' ECHR 'E' ETWO 'S', 'T' ECHR 'R' ECHR 'U' ECHR 'C' ECHR 'T' ETOK 177 EQUB VE EJMP 14 \ Token 111: "{justify}{single cap}PULSE LASERS ARE EJMP 19 \ FOR SALE AT TECH LEVEL 4 OR ABOVE. ECHR 'P' \ {crlf} ECHR 'U' \ {single cap}PULSE LASERS FIRE ECHR 'L' \ INTERMITTENT LASER BEAMS.{cr} ETWO 'S', 'E' \ {left align}" ECHR ' ' \ ETWO 'L', 'A' \ Encoded as: "{14}{19}PUL<218> <249><218>RS <238>E ETWO 'S', 'E' \ F<253> S<228>E <245> TECH <229><250>L ECHR 'R' \ 4 <253> <216>O<250>.<215>{19}PUL<218> ECHR 'S' \ <249><218>RS FI<242> <240>T<244>M<219> ECHR ' ' \ T<246>T <249><218>R <247>AMS[177]" ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'F' ETWO 'O', 'R' ECHR ' ' ECHR 'S' ETWO 'A', 'L' ECHR 'E' ECHR ' ' ETWO 'A', 'T' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '4' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ETWO 'A', 'B' ECHR 'O' ETWO 'V', 'E' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'P' ECHR 'U' ECHR 'L' ETWO 'S', 'E' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ECHR 'F' ECHR 'I' ETWO 'R', 'E' ECHR ' ' ETWO 'I', 'N' ECHR 'T' ETWO 'E', 'R' ECHR 'M' ETWO 'I', 'T' ECHR 'T' ETWO 'E', 'N' ECHR 'T' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR ' ' ETWO 'B', 'E' ECHR 'A' ECHR 'M' ECHR 'S' ETOK 177 EQUB VE EJMP 14 \ Token 112: "{justify}{single cap}BEAM LASERS ARE EJMP 19 \ AVAILABLE AT SYSTEMS OF TECH LEVEL 5 OR ETWO 'B', 'E' \ HIGHER.{crlf} ECHR 'A' \ {single cap}BEAM LASERS FIRE CONTINUOUS ECHR 'M' \ LASER STRANDS, WITH MANY STRANDS IN ECHR ' ' \ PARALLEL.{crlf} ETWO 'L', 'A' \ {single cap}BEAM LASERS OVERHEAT MORE ETWO 'S', 'E' \ RAPIDLY THAN PULSE LASERS.{cr} ECHR 'R' \ {left align}" ECHR 'S' \ ECHR ' ' \ Encoded as: "{14}{19}<247>AM <249><218>RS <238>E AVA ETWO 'A', 'R' \ <220><216><229> <245> SY<222>EMS OF TEC ECHR 'E' \ H <229><250>L 5 <253> HIGH<244>.<215> ECHR ' ' \ {19}<247>AM <249><218>RS FI<242> C<223> ECHR 'A' \ <251><225><217>S <249><218>R <222><248> ECHR 'V' \ NDS, W<219>H <239>NY <222><248>NDS ECHR 'A' \ <240> P<238><228><229>L.<215>{19}<247> ETWO 'I', 'L' \ AM <249><218>RS OV<244>HE<245> MO<242> ETWO 'A', 'B' \ <248>PIDLY <226><255> PUL<218> <249> ETWO 'L', 'E' \ <218>RS[177]" ECHR ' ' ETWO 'A', 'T' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '5' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'H' ECHR 'I' ECHR 'G' ECHR 'H' ETWO 'E', 'R' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'B', 'E' ECHR 'A' ECHR 'M' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ECHR 'F' ECHR 'I' ETWO 'R', 'E' ECHR ' ' ECHR 'C' ETWO 'O', 'N' ETWO 'T', 'I' ETWO 'N', 'U' ETWO 'O', 'U' ECHR 'S' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR ' ' ETWO 'S', 'T' ETWO 'R', 'A' ECHR 'N' ECHR 'D' ECHR 'S' ECHR ',' ECHR ' ' ECHR 'W' ETWO 'I', 'T' ECHR 'H' ECHR ' ' ETWO 'M', 'A' ECHR 'N' ECHR 'Y' ECHR ' ' ETWO 'S', 'T' ETWO 'R', 'A' ECHR 'N' ECHR 'D' ECHR 'S' ECHR ' ' ETWO 'I', 'N' ECHR ' ' ECHR 'P' ETWO 'A', 'R' ETWO 'A', 'L' ETWO 'L', 'E' ECHR 'L' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'B', 'E' ECHR 'A' ECHR 'M' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'V' ETWO 'E', 'R' ECHR 'H' ECHR 'E' ETWO 'A', 'T' ECHR ' ' ECHR 'M' ECHR 'O' ETWO 'R', 'E' ECHR ' ' ETWO 'R', 'A' ECHR 'P' ECHR 'I' ECHR 'D' ECHR 'L' ECHR 'Y' ECHR ' ' ETWO 'T', 'H' ETWO 'A', 'N' ECHR ' ' ECHR 'P' ECHR 'U' ECHR 'L' ETWO 'S', 'E' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ETOK 177 EQUB VE EJMP 14 \ Token 113: "{justify}{single cap}FUEL SCOOPS ENABLE EJMP 19 \ A SHIP TO OBTAIN FREE HYPERSPACE FUEL ECHR 'F' \ BY 'SUN-SKIMMING' - FLYING CLOSE TO THE ECHR 'U' \ SUN.{crlf} ECHR 'E' \ {single cap}FUEL SCOOPS CAN ALSO BE ECHR 'L' \ USED TO PICK UP SPACE DEBRIS, SUCH AS ECHR ' ' \ CARGO BARRELS OR ASTEROID FRAGMENTS. ECHR 'S' \ {crlf} ECHR 'C' \ {single cap}FUEL SCOOPS ARE AVAILABLE ECHR 'O' \ FROM SYSTEMS OF TECH LEVEL 6 OR ABOVE. ECHR 'O' \ {cr} ECHR 'P' \ {left align}" ECHR 'S' \ ECHR ' ' \ Encoded as: "{14}{19}FUEL SCOOPS <246><216><229> ETWO 'E', 'N' \ [208][207][201]OBTA<240> F<242>E HYP ETWO 'A', 'B' \ <244>SPA<233> FUEL BY 'SUN-SKIMM<240>G' ETWO 'L', 'E' \ - FLY[195]C<224><218>[201][147]SUN. ETOK 208 \ <215>{19}FUEL SCOOPS C<255> <228><235> ETOK 207 \ <247> <236>[196]TO PICK UP SPA<233> DE ETOK 201 \ BRIS, SUCH AS C<238>GO B<238><242>LS ECHR 'O' \ <253> A<222><244>OID F<248>GM<246>TS. ECHR 'B' \ <215>{19}FUEL SCOOPS <238>E AVA<220> ECHR 'T' \ <216><229> FROM SY<222>EMS OF TECH ECHR 'A' \ <229><250>L 6 <253> <216>O<250>[177]" ETWO 'I', 'N' ECHR ' ' ECHR 'F' ETWO 'R', 'E' ECHR 'E' ECHR ' ' ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ECHR 'F' ECHR 'U' ECHR 'E' ECHR 'L' ECHR ' ' ECHR 'B' ECHR 'Y' ECHR ' ' ECHR '`' ECHR 'S' ECHR 'U' ECHR 'N' ECHR '-' ECHR 'S' ECHR 'K' ECHR 'I' ECHR 'M' ECHR 'M' ETWO 'I', 'N' ECHR 'G' ECHR '`' ECHR ' ' ECHR '-' ECHR ' ' ECHR 'F' ECHR 'L' ECHR 'Y' ETOK 195 ECHR 'C' ETWO 'L', 'O' ETWO 'S', 'E' ETOK 201 ETOK 147 ECHR 'S' ECHR 'U' ECHR 'N' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'F' ECHR 'U' ECHR 'E' ECHR 'L' ECHR ' ' ECHR 'S' ECHR 'C' ECHR 'O' ECHR 'O' ECHR 'P' ECHR 'S' ECHR ' ' ECHR 'C' ETWO 'A', 'N' ECHR ' ' ETWO 'A', 'L' ETWO 'S', 'O' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ETWO 'U', 'S' ETOK 196 ECHR 'T' ECHR 'O' ECHR ' ' ECHR 'P' ECHR 'I' ECHR 'C' ECHR 'K' ECHR ' ' ECHR 'U' ECHR 'P' ECHR ' ' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ECHR 'D' ECHR 'E' ECHR 'B' ECHR 'R' ECHR 'I' ECHR 'S' ECHR ',' ECHR ' ' ECHR 'S' ECHR 'U' ECHR 'C' ECHR 'H' ECHR ' ' ECHR 'A' ECHR 'S' ECHR ' ' ECHR 'C' ETWO 'A', 'R' ECHR 'G' ECHR 'O' ECHR ' ' ECHR 'B' ETWO 'A', 'R' ETWO 'R', 'E' ECHR 'L' ECHR 'S' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'A' ETWO 'S', 'T' ETWO 'E', 'R' ECHR 'O' ECHR 'I' ECHR 'D' ECHR ' ' ECHR 'F' ETWO 'R', 'A' ECHR 'G' ECHR 'M' ETWO 'E', 'N' ECHR 'T' ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'F' ECHR 'U' ECHR 'E' ECHR 'L' ECHR ' ' ECHR 'S' ECHR 'C' ECHR 'O' ECHR 'O' ECHR 'P' ECHR 'S' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'A' ECHR 'V' ECHR 'A' ETWO 'I', 'L' ETWO 'A', 'B' ETWO 'L', 'E' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '6' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ETWO 'A', 'B' ECHR 'O' ETWO 'V', 'E' ETOK 177 EQUB VE EJMP 14 \ Token 114: "{justify}{single cap}AN ESCAPE POD IS EJMP 19 \ AN ESSENTIAL PIECE OF EQUIPMENT FOR ETWO 'A', 'N' \ MOST SPACESHIPS.{crlf} ECHR ' ' \ {single cap}WHEN EJECTED, THE CAPSULE ETWO 'E', 'S' \ WILL BE TRACKED TO THE NEAREST SPACE ECHR 'C' \ STATION.{crlf} ECHR 'A' \ {single cap}MOST ESCAPE PODS COME WITH ECHR 'P' \ INSURANCE POLICIES TO REPLACE THE SHIP ECHR 'E' \ AND EQUIPMENT.{crlf} ECHR ' ' \ {single cap}PENALTIES FOR INTERFERING ECHR 'P' \ WITH ESCAPE PODS ARE SEVERE IN MOST ECHR 'O' \ PLANETARY SYSTEMS.{crlf} ECHR 'D' \ {single cap}ESCAPE PODS MAY BE BOUGHT ETOK 202 \ AT SYSTEMS OF TECH LEVEL 7 OR HIGHER. ETWO 'A', 'N' \ {cr} ECHR ' ' \ {left align}" ETWO 'E', 'S' \ ETWO 'S', 'E' \ Encoded as: "{14}{19}<255> <237>CAPE POD[202]<255> ECHR 'N' \ <237><218>N<251><228> PIE<233> OF EQUI ETWO 'T', 'I' \ PM<246>T F<253> MO<222> SPA<233>[207]S. ETWO 'A', 'L' \ <215>{19}WH<246> EJECT<252>, [147]CAPSU ECHR ' ' \ <229> W<220>L <247> T<248>CK[196]TO ECHR 'P' \ [147]NE<238>E<222> SPA<233> <222><245> ECHR 'I' \ I<223>.<215>{19}MO<222> <237>CAPE PODS ECHR 'E' \ COME W<219>H <240>SU<248>N<233> POLICI ETWO 'C', 'E' \ <237>[201]<242>P<249><233> [147][207] ECHR ' ' \ [178]EQUIPM<246>T.<215>{19}P<246><228> ECHR 'O' \ <251><237> F<253> <240>T<244>F<244> ECHR 'F' \ [195]W<219>H <237>CAPE PODS <238>E ECHR ' ' \ <218><250><242> <240> MO<222> [145] ECHR 'E' \ <238>Y SY<222>EMS.<215>{19}<237>CAPE PO ECHR 'Q' \ DS <239>Y <247> B<217>GHT <245> SY<222> ECHR 'U' \ EMS OF TECH <229><250>L 7 <253> HIGH ECHR 'I' \ <244>[177]" ECHR 'P' ECHR 'M' ETWO 'E', 'N' ECHR 'T' ECHR ' ' ECHR 'F' ETWO 'O', 'R' ECHR ' ' ECHR 'M' ECHR 'O' ETWO 'S', 'T' ECHR ' ' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ETOK 207 ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'W' ECHR 'H' ETWO 'E', 'N' ECHR ' ' ECHR 'E' ECHR 'J' ECHR 'E' ECHR 'C' ECHR 'T' ETWO 'E', 'D' ECHR ',' ECHR ' ' ETOK 147 ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'S' ECHR 'U' ETWO 'L', 'E' ECHR ' ' ECHR 'W' ETWO 'I', 'L' ECHR 'L' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ECHR 'T' ETWO 'R', 'A' ECHR 'C' ECHR 'K' ETOK 196 ECHR 'T' ECHR 'O' ECHR ' ' ETOK 147 ECHR 'N' ECHR 'E' ETWO 'A', 'R' ECHR 'E' ETWO 'S', 'T' ECHR ' ' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ETWO 'S', 'T' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'M' ECHR 'O' ETWO 'S', 'T' ECHR ' ' ETWO 'E', 'S' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'E' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'D' ECHR 'S' ECHR ' ' ECHR 'C' ECHR 'O' ECHR 'M' ECHR 'E' ECHR ' ' ECHR 'W' ETWO 'I', 'T' ECHR 'H' ECHR ' ' ETWO 'I', 'N' ECHR 'S' ECHR 'U' ETWO 'R', 'A' ECHR 'N' ETWO 'C', 'E' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'L' ECHR 'I' ECHR 'C' ECHR 'I' ETWO 'E', 'S' ETOK 201 ETWO 'R', 'E' ECHR 'P' ETWO 'L', 'A' ETWO 'C', 'E' ECHR ' ' ETOK 147 ETOK 207 ETOK 178 ECHR 'E' ECHR 'Q' ECHR 'U' ECHR 'I' ECHR 'P' ECHR 'M' ETWO 'E', 'N' ECHR 'T' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'P' ETWO 'E', 'N' ETWO 'A', 'L' ETWO 'T', 'I' ETWO 'E', 'S' ECHR ' ' ECHR 'F' ETWO 'O', 'R' ECHR ' ' ETWO 'I', 'N' ECHR 'T' ETWO 'E', 'R' ECHR 'F' ETWO 'E', 'R' ETOK 195 ECHR 'W' ETWO 'I', 'T' ECHR 'H' ECHR ' ' ETWO 'E', 'S' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'E' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'D' ECHR 'S' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ETWO 'S', 'E' ETWO 'V', 'E' ETWO 'R', 'E' ECHR ' ' ETWO 'I', 'N' ECHR ' ' ECHR 'M' ECHR 'O' ETWO 'S', 'T' ECHR ' ' ETOK 145 ETWO 'A', 'R' ECHR 'Y' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'E', 'S' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'E' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'D' ECHR 'S' ECHR ' ' ETWO 'M', 'A' ECHR 'Y' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ECHR 'B' ETWO 'O', 'U' ECHR 'G' ECHR 'H' ECHR 'T' ECHR ' ' ETWO 'A', 'T' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '7' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'H' ECHR 'I' ECHR 'G' ECHR 'H' ETWO 'E', 'R' ETOK 177 EQUB VE EJMP 14 \ Token 115: "{justify}{single cap}A RECENT EJMP 19 \ INVENTION, THE HYPERSPACE UNIT IS AN ECHR 'A' \ ALTERNATIVE TO THE ESCAPE POD FOR MANY ECHR ' ' \ TRADERS.{crlf} ETWO 'R', 'E' \ {single cap}WHEN TRIGGERED, THE ETWO 'C', 'E' \ HYPERSPACE UNIT WILL USE ITS POWER IN ECHR 'N' \ EXECUTING A HYPERJUMP AWAY FROM THE ECHR 'T' \ CURRENT POSITION.{crlf} ECHR ' ' \ {single cap}UNFORTUNATELY, BECAUSE THE ETWO 'I', 'N' \ HYPERJUMP IS INSTANTANEOUS, THERE IS NO ECHR 'V' \ CONTROL OF THE DESTINATION POSITION. ETWO 'E', 'N' \ {crlf} ETWO 'T', 'I' \ {single cap}A HYPERSPACE UNIT IS ETWO 'O', 'N' \ AVAILABLE AT TECH LEVEL 8 OR ABOVE.{cr} ECHR ',' \ {left align}" ECHR ' ' \ ETOK 147 \ Encoded as: "{14}{19}A <242><233>NT <240>V<246><251> ECHR 'H' \ <223>, [147]HYP<244>SPA<233> UN<219> ECHR 'Y' \ [202]<255> <228>T<244>N<245>I<250> TO ECHR 'P' \ [147]<237>CAPE POD F<253> <239>NY T ETWO 'E', 'R' \ <248>D<244>S.<215>{19}WH<246> TRIG<231> ECHR 'S' \ <242>D, [147]HYP<244>SPA<233> UN<219> W ECHR 'P' \ <220>L U<218> <219>S POW<244> <240> E ECHR 'A' \ <230>CUT[195]A HYP<244>JUMP AWAY FROM ETWO 'C', 'E' \ [147]CUR<242>NT POS<219>I<223>.<215> ECHR ' ' \ {19}UNF<253>TUN<245>ELY, <247>CAU<218> ECHR 'U' \ [147]HYP<244>JUMP[202]<240><222><255>T ECHR 'N' \ <255>E<217>S, <226>E<242>[202]<227> C ETWO 'I', 'T' \ <223>TROL OF [147]DE<222><240><245>I ETOK 202 \ <223> POS<219>I<223>.<215>{19}A HYP ETWO 'A', 'N' \ <244>SPA<233> UN<219>[202]AVA<220><216> ECHR ' ' \ <229> <245> TECH <229><250>L 8 <253> ETWO 'A', 'L' \ <216>O<250>[177]" ECHR 'T' ETWO 'E', 'R' ECHR 'N' ETWO 'A', 'T' ECHR 'I' ETWO 'V', 'E' ECHR ' ' ECHR 'T' ECHR 'O' ECHR ' ' ETOK 147 ETWO 'E', 'S' ECHR 'C' ECHR 'A' ECHR 'P' ECHR 'E' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'D' ECHR ' ' ECHR 'F' ETWO 'O', 'R' ECHR ' ' ETWO 'M', 'A' ECHR 'N' ECHR 'Y' ECHR ' ' ECHR 'T' ETWO 'R', 'A' ECHR 'D' ETWO 'E', 'R' ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'W' ECHR 'H' ETWO 'E', 'N' ECHR ' ' ECHR 'T' ECHR 'R' ECHR 'I' ECHR 'G' ETWO 'G', 'E' ETWO 'R', 'E' ECHR 'D' ECHR ',' ECHR ' ' ETOK 147 ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ECHR 'U' ECHR 'N' ETWO 'I', 'T' ECHR ' ' ECHR 'W' ETWO 'I', 'L' ECHR 'L' ECHR ' ' ECHR 'U' ETWO 'S', 'E' ECHR ' ' ETWO 'I', 'T' ECHR 'S' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'W' ETWO 'E', 'R' ECHR ' ' ETWO 'I', 'N' ECHR ' ' ECHR 'E' ETWO 'X', 'E' ECHR 'C' ECHR 'U' ECHR 'T' ETOK 195 ECHR 'A' ECHR ' ' ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'J' ECHR 'U' ECHR 'M' ECHR 'P' ECHR ' ' ECHR 'A' ECHR 'W' ECHR 'A' ECHR 'Y' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ETOK 147 ECHR 'C' ECHR 'U' ECHR 'R' ETWO 'R', 'E' ECHR 'N' ECHR 'T' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'S' ETWO 'I', 'T' ECHR 'I' ETWO 'O', 'N' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'U' ECHR 'N' ECHR 'F' ETWO 'O', 'R' ECHR 'T' ECHR 'U' ECHR 'N' ETWO 'A', 'T' ECHR 'E' ECHR 'L' ECHR 'Y' ECHR ',' ECHR ' ' ETWO 'B', 'E' ECHR 'C' ECHR 'A' ECHR 'U' ETWO 'S', 'E' ECHR ' ' ETOK 147 ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'J' ECHR 'U' ECHR 'M' ECHR 'P' ETOK 202 ETWO 'I', 'N' ETWO 'S', 'T' ETWO 'A', 'N' ECHR 'T' ETWO 'A', 'N' ECHR 'E' ETWO 'O', 'U' ECHR 'S' ECHR ',' ECHR ' ' ETWO 'T', 'H' ECHR 'E' ETWO 'R', 'E' ETOK 202 ETWO 'N', 'O' ECHR ' ' ECHR 'C' ETWO 'O', 'N' ECHR 'T' ECHR 'R' ECHR 'O' ECHR 'L' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ETOK 147 ECHR 'D' ECHR 'E' ETWO 'S', 'T' ETWO 'I', 'N' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'S' ETWO 'I', 'T' ECHR 'I' ETWO 'O', 'N' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'A' ECHR ' ' ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'S' ECHR 'P' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ECHR 'U' ECHR 'N' ETWO 'I', 'T' ETOK 202 ECHR 'A' ECHR 'V' ECHR 'A' ETWO 'I', 'L' ETWO 'A', 'B' ETWO 'L', 'E' ECHR ' ' ETWO 'A', 'T' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '8' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ETWO 'A', 'B' ECHR 'O' ETWO 'V', 'E' ETOK 177 EQUB VE EJMP 14 \ Token 116: "{justify}{single cap}AN ENERGY UNIT EJMP 19 \ INCREASES THE RATE OF RECHARGING OF THE ETWO 'A', 'N' \ ENERGY BANKS FROM SURFACE RADIATION ECHR ' ' \ ABSORPTION.{crlf} ETWO 'E', 'N' \ {single cap}ENERGY UNITS ARE AVAILABLE ETWO 'E', 'R' \ FROM TECH LEVEL 9 UPWARDS.{cr} ECHR 'G' \ {left align}" ECHR 'Y' \ ECHR ' ' \ Encoded as: "{14}{19}<255> <246><244>GY UN<219> ECHR 'U' \ <240>C<242>A<218>S [147]R<245>E OF ECHR 'N' \ <242>CH<238>G[195]OF [147]<246><244>GY ETWO 'I', 'T' \ B<255>KS FROM SURFA<233> <248><241> ECHR ' ' \ <245>I<223> <216><235>RP<251><223>. ETWO 'I', 'N' \ <215>{19}<246><244>GY UN<219>S <238>E ECHR 'C' \ AVA<220><216><229> FROM TECH <229> ETWO 'R', 'E' \ <250>L 9 UPW<238>DS[177]" ECHR 'A' ETWO 'S', 'E' ECHR 'S' ECHR ' ' ETOK 147 ECHR 'R' ETWO 'A', 'T' ECHR 'E' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ETWO 'R', 'E' ECHR 'C' ECHR 'H' ETWO 'A', 'R' ECHR 'G' ETOK 195 ECHR 'O' ECHR 'F' ECHR ' ' ETOK 147 ETWO 'E', 'N' ETWO 'E', 'R' ECHR 'G' ECHR 'Y' ECHR ' ' ECHR 'B' ETWO 'A', 'N' ECHR 'K' ECHR 'S' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ECHR 'S' ECHR 'U' ECHR 'R' ECHR 'F' ECHR 'A' ETWO 'C', 'E' ECHR ' ' ETWO 'R', 'A' ETWO 'D', 'I' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' ECHR ' ' ETWO 'A', 'B' ETWO 'S', 'O' ECHR 'R' ECHR 'P' ETWO 'T', 'I' ETWO 'O', 'N' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'E', 'N' ETWO 'E', 'R' ECHR 'G' ECHR 'Y' ECHR ' ' ECHR 'U' ECHR 'N' ETWO 'I', 'T' ECHR 'S' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'A' ECHR 'V' ECHR 'A' ETWO 'I', 'L' ETWO 'A', 'B' ETWO 'L', 'E' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '9' ECHR ' ' ECHR 'U' ECHR 'P' ECHR 'W' ETWO 'A', 'R' ECHR 'D' ECHR 'S' ETOK 177 EQUB VE EJMP 14 \ Token 117: "{justify}{single cap}DOCKING COMPUTERS EJMP 19 \ ARE RECOMMENDED BY ALL PLANETARY ECHR 'D' \ GOVERNMENTS AS A SAFE WAY OF REDUCING ECHR 'O' \ THE NUMBER OF DOCKING ACCIDENTS.{crlf} ECHR 'C' \ {single cap}DOCKING COMPUTERS WILL ECHR 'K' \ AUTOMATICALLY DOCK A SHIP WHEN TURNED ETOK 195 \ ON.{crlf} ECHR 'C' \ {single cap}DOCKING COMPUTERS CAN BE ECHR 'O' \ BOUGHT AT SYSTEMS OF TECH LEVEL 10 OR ECHR 'M' \ MORE.{cr} ECHR 'P' \ {left align}" ECHR 'U' \ ECHR 'T' \ Encoded as: "{14}{19}DOCK[195]COMPUT<244>S <238>E ETWO 'E', 'R' \ <242>COMM<246>D[196]BY <228>L [145] ECHR 'S' \ <238>Y GOV<244>NM<246>TS AS[208]SAFE WA ECHR ' ' \ Y OF <242>DUC[195][147]<225>MB<244> OF ETWO 'A', 'R' \ DOCK[195]ACCID<246>TS.<215>{19}DOCK ECHR 'E' \ [195]COMPUT<244>S W<220>L AUTO<239> ECHR ' ' \ <251>C<228>LY DOCK[208][207] WH<246> TU ETWO 'R', 'E' \ RN[196]<223>.<215>{19}DOCK[195]COMPUT ECHR 'C' \ <244>S C<255> <247> B<217>GHT <245> SY ECHR 'O' \ <222>EMS OF TECH <229><250>L 10 <253> M ECHR 'M' \ O<242>[177]" ECHR 'M' ETWO 'E', 'N' ECHR 'D' ETOK 196 ECHR 'B' ECHR 'Y' ECHR ' ' ETWO 'A', 'L' ECHR 'L' ECHR ' ' ETOK 145 ETWO 'A', 'R' ECHR 'Y' ECHR ' ' ECHR 'G' ECHR 'O' ECHR 'V' ETWO 'E', 'R' ECHR 'N' ECHR 'M' ETWO 'E', 'N' ECHR 'T' ECHR 'S' ECHR ' ' ECHR 'A' ECHR 'S' ETOK 208 ECHR 'S' ECHR 'A' ECHR 'F' ECHR 'E' ECHR ' ' ECHR 'W' ECHR 'A' ECHR 'Y' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ETWO 'R', 'E' ECHR 'D' ECHR 'U' ECHR 'C' ETOK 195 ETOK 147 ETWO 'N', 'U' ECHR 'M' ECHR 'B' ETWO 'E', 'R' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'D' ECHR 'O' ECHR 'C' ECHR 'K' ETOK 195 ECHR 'A' ECHR 'C' ECHR 'C' ECHR 'I' ECHR 'D' ETWO 'E', 'N' ECHR 'T' ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'D' ECHR 'O' ECHR 'C' ECHR 'K' ETOK 195 ECHR 'C' ECHR 'O' ECHR 'M' ECHR 'P' ECHR 'U' ECHR 'T' ETWO 'E', 'R' ECHR 'S' ECHR ' ' ECHR 'W' ETWO 'I', 'L' ECHR 'L' ECHR ' ' ECHR 'A' ECHR 'U' ECHR 'T' ECHR 'O' ETWO 'M', 'A' ETWO 'T', 'I' ECHR 'C' ETWO 'A', 'L' ECHR 'L' ECHR 'Y' ECHR ' ' ECHR 'D' ECHR 'O' ECHR 'C' ECHR 'K' ETOK 208 ETOK 207 ECHR ' ' ECHR 'W' ECHR 'H' ETWO 'E', 'N' ECHR ' ' ECHR 'T' ECHR 'U' ECHR 'R' ECHR 'N' ETOK 196 ETWO 'O', 'N' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'D' ECHR 'O' ECHR 'C' ECHR 'K' ETOK 195 ECHR 'C' ECHR 'O' ECHR 'M' ECHR 'P' ECHR 'U' ECHR 'T' ETWO 'E', 'R' ECHR 'S' ECHR ' ' ECHR 'C' ETWO 'A', 'N' ECHR ' ' ETWO 'B', 'E' ECHR ' ' ECHR 'B' ETWO 'O', 'U' ECHR 'G' ECHR 'H' ECHR 'T' ECHR ' ' ETWO 'A', 'T' ECHR ' ' ECHR 'S' ECHR 'Y' ETWO 'S', 'T' ECHR 'E' ECHR 'M' ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '1' ECHR '0' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'M' ECHR 'O' ETWO 'R', 'E' ETOK 177 EQUB VE EJMP 14 \ Token 118: "{justify}{single cap}GALACTIC EJMP 19 \ HYPERSPACE DRIVES ARE OBTAINABLE FROM ECHR 'G' \ PLANETS OF TECH LEVEL 11 UPWARDS.{crlf} ETWO 'A', 'L' \ {single cap}WHEN THE INTERGALACTIC ECHR 'A' \ HYPERDRIVE IS ENGAGED, THE SHIP IS ECHR 'C' \ HYPERJUMPED INTO THE PRE-PROGRAMMED ETWO 'T', 'I' \ GALAXY.{cr} ECHR 'C' \ {left align}" ECHR ' ' \ ECHR 'H' \ Encoded as: "{14}{19}G<228>AC<251>C HYP<244>SPA<233> ECHR 'Y' \ [151]S <238>E OBTA<240><216><229> FROM ECHR 'P' \ [145]S OF TECH <229><250>L 11 UPW<238> ETWO 'E', 'R' \ DS.<215>{19}WH<246> [147]<240>T<244>G ECHR 'S' \ <228>AC<251>C HYP<244>[151] IS <246>GA ECHR 'P' \ <231>D, [147][207][202]HYP<244>JUMP ECHR 'A' \ [196]<240>TO [147]P<242>-PROG<248>MM ETWO 'C', 'E' \ [196]G<228>AXY[177]" ECHR ' ' ETOK 151 ECHR 'S' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'O' ECHR 'B' ECHR 'T' ECHR 'A' ETWO 'I', 'N' ETWO 'A', 'B' ETWO 'L', 'E' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ETOK 145 ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '1' ECHR '1' ECHR ' ' ECHR 'U' ECHR 'P' ECHR 'W' ETWO 'A', 'R' ECHR 'D' ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'W' ECHR 'H' ETWO 'E', 'N' ECHR ' ' ETOK 147 ETWO 'I', 'N' ECHR 'T' ETWO 'E', 'R' ECHR 'G' ETWO 'A', 'L' ECHR 'A' ECHR 'C' ETWO 'T', 'I' ECHR 'C' ECHR ' ' ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ETOK 151 ECHR ' ' ECHR 'I' ECHR 'S' ECHR ' ' ETWO 'E', 'N' ECHR 'G' ECHR 'A' ETWO 'G', 'E' ECHR 'D' ECHR ',' ECHR ' ' ETOK 147 ETOK 207 ETOK 202 ECHR 'H' ECHR 'Y' ECHR 'P' ETWO 'E', 'R' ECHR 'J' ECHR 'U' ECHR 'M' ECHR 'P' ETOK 196 ETWO 'I', 'N' ECHR 'T' ECHR 'O' ECHR ' ' ETOK 147 ECHR 'P' ETWO 'R', 'E' ECHR '-' ECHR 'P' ECHR 'R' ECHR 'O' ECHR 'G' ETWO 'R', 'A' ECHR 'M' ECHR 'M' ETOK 196 ECHR 'G' ETWO 'A', 'L' ECHR 'A' ECHR 'X' ECHR 'Y' ETOK 177 EQUB VE EJMP 14 \ Token 119: "{justify}{single cap}MILITARY LASERS EJMP 19 \ ARE THE HEIGHT OF LASER SOPHISTICATION. ECHR 'M' \ {crlf} ETWO 'I', 'L' \ {single cap}THEY USE HIGH ENERGY LASERS ETWO 'I', 'T' \ FIRING CONTINUOUSLY TO PRODUCE ETWO 'A', 'R' \ DEVASTATING EFFECTS, BUT ARE PRONE TO ECHR 'Y' \ OVERHEATING.{crlf} ECHR ' ' \ {single cap}MILITARY LASERS ARE ETWO 'L', 'A' \ AVAILABLE FROM PLANETS OF TECH LEVEL 12 ETWO 'S', 'E' \ OR MORE.{cr} ECHR 'R' \ {left align}" ECHR 'S' \ ECHR ' ' \ Encoded as: "{14}{19}M<220><219><238>Y <249><218>RS ETWO 'A', 'R' \ <238>E [147]HEIGHT OF <249><218>R ECHR 'E' \ <235>PHI<222>IC<245>I<223>.<215>{19} ECHR ' ' \ <226>EY U<218> HIGH <246><244>GY <249> ETOK 147 \ <218>RS FIR[195]C<223><251><225><217>SL ECHR 'H' \ Y[201]PRODU<233> DEVA<222><245>[195]EFF ECHR 'E' \ ECTS, BUT <238>E PR<223>E[201]OV<244>HE ECHR 'I' \ <245><240>G.<215>{19}M<220><219><238>Y ECHR 'G' \ <249><218>RS <238>E AVA<220><216><229> ECHR 'H' \ FROM [145]S OF TECH <229><250>L 12 ECHR 'T' \ <253> MO<242>[177]" ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR ' ' ETWO 'S', 'O' ECHR 'P' ECHR 'H' ECHR 'I' ETWO 'S', 'T' ECHR 'I' ECHR 'C' ETWO 'A', 'T' ECHR 'I' ETWO 'O', 'N' ECHR '.' ETWO '-', '-' EJMP 19 ETWO 'T', 'H' ECHR 'E' ECHR 'Y' ECHR ' ' ECHR 'U' ETWO 'S', 'E' ECHR ' ' ECHR 'H' ECHR 'I' ECHR 'G' ECHR 'H' ECHR ' ' ETWO 'E', 'N' ETWO 'E', 'R' ECHR 'G' ECHR 'Y' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ECHR 'F' ECHR 'I' ECHR 'R' ETOK 195 ECHR 'C' ETWO 'O', 'N' ETWO 'T', 'I' ETWO 'N', 'U' ETWO 'O', 'U' ECHR 'S' ECHR 'L' ECHR 'Y' ETOK 201 ECHR 'P' ECHR 'R' ECHR 'O' ECHR 'D' ECHR 'U' ETWO 'C', 'E' ECHR ' ' ECHR 'D' ECHR 'E' ECHR 'V' ECHR 'A' ETWO 'S', 'T' ETWO 'A', 'T' ETOK 195 ECHR 'E' ECHR 'F' ECHR 'F' ECHR 'E' ECHR 'C' ECHR 'T' ECHR 'S' ECHR ',' ECHR ' ' ECHR 'B' ECHR 'U' ECHR 'T' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'P' ECHR 'R' ETWO 'O', 'N' ECHR 'E' ETOK 201 ECHR 'O' ECHR 'V' ETWO 'E', 'R' ECHR 'H' ECHR 'E' ETWO 'A', 'T' ETWO 'I', 'N' ECHR 'G' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'M' ETWO 'I', 'L' ETWO 'I', 'T' ETWO 'A', 'R' ECHR 'Y' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'A' ECHR 'V' ECHR 'A' ETWO 'I', 'L' ETWO 'A', 'B' ETWO 'L', 'E' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ETOK 145 ECHR 'S' ECHR ' ' ECHR 'O' ECHR 'F' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '1' ECHR '2' ECHR ' ' ETWO 'O', 'R' ECHR ' ' ECHR 'M' ECHR 'O' ETWO 'R', 'E' ETOK 177 EQUB VE EJMP 14 \ Token 120: "{justify}{single cap}MINING LASERS ARE EJMP 19 \ HIGHLY POWERED, SLOW FIRING PULSE ECHR 'M' \ LASERS WHICH ARE TUNED TO FRAGMENT ETWO 'I', 'N' \ ASTEROIDS.{crlf} ETOK 195 \ {single cap}MINING LASERS ARE AVAILABLE ETWO 'L', 'A' \ FROM TECH LEVEL 12 UPWARDS.{cr} ETWO 'S', 'E' \ {left align}" ECHR 'R' \ ECHR 'S' \ Encoded as: "{14}{19}M<240>[195]<249><218>RS <238>E ECHR ' ' \ HIGHLY POWE<242>D, S<224>W FIR[195]PUL ETWO 'A', 'R' \ <218> <249><218>RS WHICH <238>E TUN ECHR 'E' \ [196]TO F<248>GM<246>T A<222><244>OIDS. ECHR ' ' \ <215>{19}M<240>[195]<249><218>RS <238>E ECHR 'H' \ AVA<220><216><229> FROM TECH <229> ECHR 'I' \ <250>L 12 UPW<238>DS[177]" ECHR 'G' ECHR 'H' ECHR 'L' ECHR 'Y' ECHR ' ' ECHR 'P' ECHR 'O' ECHR 'W' ECHR 'E' ETWO 'R', 'E' ECHR 'D' ECHR ',' ECHR ' ' ECHR 'S' ETWO 'L', 'O' ECHR 'W' ECHR ' ' ECHR 'F' ECHR 'I' ECHR 'R' ETOK 195 ECHR 'P' ECHR 'U' ECHR 'L' ETWO 'S', 'E' ECHR ' ' ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ECHR 'W' ECHR 'H' ECHR 'I' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'T' ECHR 'U' ECHR 'N' ETOK 196 ECHR 'T' ECHR 'O' ECHR ' ' ECHR 'F' ETWO 'R', 'A' ECHR 'G' ECHR 'M' ETWO 'E', 'N' ECHR 'T' ECHR ' ' ECHR 'A' ETWO 'S', 'T' ETWO 'E', 'R' ECHR 'O' ECHR 'I' ECHR 'D' ECHR 'S' ECHR '.' ETWO '-', '-' EJMP 19 ECHR 'M' ETWO 'I', 'N' ETOK 195 ETWO 'L', 'A' ETWO 'S', 'E' ECHR 'R' ECHR 'S' ECHR ' ' ETWO 'A', 'R' ECHR 'E' ECHR ' ' ECHR 'A' ECHR 'V' ECHR 'A' ETWO 'I', 'L' ETWO 'A', 'B' ETWO 'L', 'E' ECHR ' ' ECHR 'F' ECHR 'R' ECHR 'O' ECHR 'M' ECHR ' ' ECHR 'T' ECHR 'E' ECHR 'C' ECHR 'H' ECHR ' ' ETWO 'L', 'E' ETWO 'V', 'E' ECHR 'L' ECHR ' ' ECHR '1' ECHR '2' ECHR ' ' ECHR 'U' ECHR 'P' ECHR 'W' ETWO 'A', 'R' ECHR 'D' ECHR 'S' ETOK 177 EQUB VE \ --- End of added code ------------------------------->
Name: MTIN [Show more] Type: Variable Category: Text Summary: Lookup table for random tokens in the extended token table (0-37) Deep dive: Extended text tokens
Context: See this variable on its own page References: This variable is used as follows: * DETOK2 uses MTIN

The ERND token type, which is part of the extended token system, takes an argument between 0 and 37, and returns a randomly chosen token in the range specified in this table. This is used to generate the extended description of each system. For example, the entry at position 13 in this table (counting from 0) is 66, so ERND 14 will expand into a random token in the range 66-70, i.e. one of "JUICE", "BRANDY", "WATER", "BREW" and "GARGLE BLASTERS".
.MTIN EQUB 16 \ Token 0: a random extended token between 16 and 20 EQUB 21 \ Token 1: a random extended token between 21 and 25 EQUB 26 \ Token 2: a random extended token between 26 and 30 EQUB 31 \ Token 3: a random extended token between 31 and 35 EQUB 155 \ Token 4: a random extended token between 155 and 159 EQUB 160 \ Token 5: a random extended token between 160 and 164 EQUB 46 \ Token 6: a random extended token between 46 and 50 EQUB 165 \ Token 7: a random extended token between 165 and 169 EQUB 36 \ Token 8: a random extended token between 36 and 40 EQUB 41 \ Token 9: a random extended token between 41 and 45 EQUB 61 \ Token 10: a random extended token between 61 and 65 EQUB 51 \ Token 11: a random extended token between 51 and 55 EQUB 56 \ Token 12: a random extended token between 56 and 60 EQUB 170 \ Token 13: a random extended token between 170 and 174 EQUB 66 \ Token 14: a random extended token between 66 and 70 EQUB 71 \ Token 15: a random extended token between 71 and 75 EQUB 76 \ Token 16: a random extended token between 76 and 80 EQUB 81 \ Token 17: a random extended token between 81 and 85 EQUB 86 \ Token 18: a random extended token between 86 and 90 EQUB 140 \ Token 19: a random extended token between 140 and 144 EQUB 96 \ Token 20: a random extended token between 96 and 100 EQUB 101 \ Token 21: a random extended token between 101 and 105 EQUB 135 \ Token 22: a random extended token between 135 and 139 EQUB 130 \ Token 23: a random extended token between 130 and 134 EQUB 91 \ Token 24: a random extended token between 91 and 95 EQUB 106 \ Token 25: a random extended token between 106 and 110 EQUB 180 \ Token 26: a random extended token between 180 and 184 EQUB 185 \ Token 27: a random extended token between 185 and 189 EQUB 190 \ Token 28: a random extended token between 190 and 194 EQUB 225 \ Token 29: a random extended token between 225 and 229 EQUB 230 \ Token 30: a random extended token between 230 and 234 EQUB 235 \ Token 31: a random extended token between 235 and 239 EQUB 240 \ Token 32: a random extended token between 240 and 244 EQUB 245 \ Token 33: a random extended token between 245 and 249 EQUB 250 \ Token 34: a random extended token between 250 and 254 EQUB 115 \ Token 35: a random extended token between 115 and 119 EQUB 120 \ Token 36: a random extended token between 120 and 124 EQUB 125 \ Token 37: a random extended token between 125 and 129
Name: ship_centre [Show more] Type: Variable Category: Encyclopedia Summary: Table containing column positions for each ship card's title Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * ships_ag uses ship_centre
\ --- Mod: Code added for Elite-A: --------------------> .ship_centre EQUB 13 \ Adder EQUB 12 \ Anaconda EQUB 12 \ Asp Mk II EQUB 11 \ Boa EQUB 13 \ Bushmaster EQUB 12 \ Chameleon EQUB 11 \ Cobra Mk I EQUB 11 \ Cobra Mk III EQUB 8 \ Coriolis station EQUB 7 \ Dodo station EQUB 9 \ Escape Pod EQUB 10 \ Fer-de-Lance EQUB 13 \ Gecko EQUB 12 \ Ghavial EQUB 13 \ Iguana EQUB 13 \ Krait EQUB 13 \ Mamba EQUB 12 \ Monitor EQUB 13 \ Moray EQUB 12 \ Ophidian EQUB 13 \ Python EQUB 12 \ Shuttle EQUB 11 \ Sidewinder EQUB 12 \ Thargoid EQUB 12 \ Thargon EQUB 10 \ Transporter EQUB 13 \ Viper EQUB 14 \ Worm \ --- End of added code ------------------------------->
Name: card_pattern [Show more] Type: Variable Category: Encyclopedia Summary: Layout pattern for the encyclopedia's ship cards Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * write_card uses card_pattern

Each ship card in the encyclopedia consists of multiple sections, each of which consists of one or more text labels, plus the corresponding ship data. The card pattern table defines these sections and how they are laid out on screen - in other words, this table contains a set of patterns, one for each section, that define how to lay out that section on-screen. Each line in the table below defines a screen position and something to print there. The first two numbers are the text column and row, and the third number specifies a text token from the msg_3 table (when non-zero) or the actual data (when zero). So, for example, the "cargo space" section looks like this: EQUB 1, 12, 61 EQUB 1, 13, 45 EQUB 1, 14, 0 which defines the following layout pattern: * Token 61 ("CARGO") at column 1, row 12 * Token 45 ("SPACE:") at column 1, row 13 * The relevant ship data (the ship's cargo capacity) at column 1, row 14 The data itself comes from the card data for the specific ship - see the table at card_addr for a list of card data blocks. Each section corresponds to the same section number in the card data, so the cargo space section is number 7, for example. As well as the ship data, the ship cards show the ship itself, rotating in the middle of the card.
\ --- Mod: Code added for Elite-A: --------------------> .card_pattern EQUB 1, 3, 37 \ 1: Inservice date "INSERVICE DATE:" @ (1, 3) EQUB 1, 4, 0 \ Data @ (1, 4) EQUB 24, 6, 38 \ 2: Combat factor "COMBAT" @ (24, 6) EQUB 24, 7, 47 \ "FACTOR:" @ (24, 7) EQUB 24, 8, 65 \ "CF" @ (24, 8) EQUB 26, 8, 0 \ Data @ (26, 8) EQUB 1, 6, 43 \ 3: Dimensions "DIMENSIONS:" @ (1, 6) EQUB 1, 7, 0 \ Data @ (1, 7) EQUB 1, 9, 36 \ 4: Speed "SPEED:" @ (1, 9) EQUB 1, 10, 0 \ Data @ (1, 10) EQUB 24, 10, 39 \ 5: Crew "CREW:" @ (24, 10) EQUB 24, 11, 0 \ Data @ (24, 11) EQUB 24, 13, 41 \ 6: Range "RANGE:" @ (24, 13) EQUB 24, 14, 0 \ Data @ (24, 14) EQUB 1, 12, 61 \ 7: Cargo space "CARGO" @ (1, 12) EQUB 1, 13, 45 \ "SPACE:" @ (1, 13) EQUB 1, 14, 0 \ Data @ (1, 14) EQUB 1, 16, 35 \ 8: Armaments "ARMAMENTS:" @ (1, 16) EQUB 1, 17, 0 \ Data @ (1, 17) EQUB 23, 20, 44 \ 9: Hull "HULL:" @ (23, 20) EQUB 23, 21, 0 \ Data @ (23, 21) EQUB 1, 20, 40 \ 10: Drive motors "DRIVE MOTORS:" @ (1, 20) EQUB 1, 21, 0 \ Data @ (1, 21) EQUB 1, 20, 45 \ 11: Space "SPACE:" @ (1, 20) EQUB 1, 21, 0 \ Data @ (1, 21) \ --- End of added code ------------------------------->
Name: card_addr [Show more] Type: Variable Category: Encyclopedia Summary: Lookup table for the encyclopedia's ship cards Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * write_card uses card_addr

The numbers in the table below give the ship type that can be passed to routines like write_card.
\ --- Mod: Code added for Elite-A: --------------------> .card_addr EQUW adder \ 0: Adder EQUW anaconda \ 1: Anaconda EQUW asp_2 \ 2: Asp Mk II EQUW boa \ 3: Boa EQUW bushmaster \ 4: Bushmaster EQUW chameleon \ 5: Chameleon EQUW cobra_1 \ 6: Cobra Mk I EQUW cobra_3 \ 7: Cobra Mk III EQUW coriolis \ 8: Coriolis station EQUW dodecagon \ 9: Dodo station EQUW escape_pod \ 10: Escape pod EQUW fer_de_lance \ 11: Fer-de-Lance EQUW gecko \ 12: Gecko EQUW ghavial \ 13: Ghavial EQUW iguana \ 14: Iguana EQUW krait \ 15: Krait EQUW mamba \ 16: Mamba EQUW monitor \ 17: Monitor EQUW moray \ 18: Moray EQUW ophidian \ 19: Ophidian EQUW python \ 20: Python EQUW shuttle \ 21: Shuttle EQUW sidewinder \ 22: Sidewinder EQUW thargoid \ 23: Thargoid EQUW thargon \ 24: Thargon EQUW transporter \ 25: Transporter EQUW viper \ 26: Viper EQUW worm \ 27: Worm \ --- End of added code ------------------------------->
Name: CTOK [Show more] Type: Macro Category: Text Summary: Macro definition for ship data in the encyclopedia's ship cards Deep dive: Extended text tokens
Context: See this macro on its own page References: This macro is used as follows: * adder uses CTOK * anaconda uses CTOK * asp_2 uses CTOK * boa uses CTOK * bushmaster uses CTOK * chameleon uses CTOK * cobra_1 uses CTOK * cobra_3 uses CTOK * coriolis uses CTOK * dodecagon uses CTOK * escape_pod uses CTOK * fer_de_lance uses CTOK * gecko uses CTOK * ghavial uses CTOK * iguana uses CTOK * krait uses CTOK * mamba uses CTOK * monitor uses CTOK * moray uses CTOK * ophidian uses CTOK * python uses CTOK * shuttle uses CTOK * sidewinder uses CTOK * thargoid uses CTOK * thargon uses CTOK * transporter uses CTOK * viper uses CTOK * worm uses CTOK

The following macro is used when building the ship data: CTOK n Insert recursive token [n] * Tokens 0-127 get stored as n + 128 The ship data tables work differently to the recursive token tables. Data is stored in the table as follows: Value Contents Macro ----- -------- ----- 0-31 Jump tokens EJMP 32-127 ASCII characters with no obfuscation EQUS 128-214 Recursive msg_3 text tokens (subtract 128 to get 0-86) CTOK 215-255 Extended two-letter tokens (subtract 215 to get 0-40) ETWO Printing of ship data is handled by the write_card routine.
Arguments: n The number of the recursive token to insert into the table, in the range 0 to 127
MACRO CTOK n EQUB n + 128 ENDMACRO
Name: adder [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Adder Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses adder
\ --- Mod: Code added for Elite-A: --------------------> .adder EQUB 1 \ 1: Inservice date: "2914 ({single cap}OUTWORLD EQUS "2914" \ WORKSHOPS)" CTOK 85 \ CTOK 69 \ Encoded as: "2914[85][69][81]" CTOK 81 EQUB 0 EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "45/8/30FT" EQUS "45/8/30" \ CTOK 42 \ Encoded as: "45/8/30[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.24{all caps}LM{sentence case}" EQUS "0.24" \ CTOK 64 \ Encoded as: "0.24[64]" EQUB 0 EQUB 5 \ 5: Crew: "1" EQUS "1" \ EQUB 0 \ Encoded as: "1" EQUB 6 \ 6: Range: "6{all caps}LY{sentence case}" EQUS "6" \ CTOK 63 \ Encoded as: "6[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "4{all caps}TC{sentence case}" EQUS "4" \ CTOK 62 \ Encoded as: "4[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "8{all caps}TC{sentence case}" EQUS "8" \ CTOK 62 \ Encoded as: "8[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "INGRAM 1928 AZ BEAM LASER{cr} CTOK 56 \ GERET STARSEEKER MISSILES" EQUS " 1928 AZ " \ ETWO 'B', 'E' \ Encoded as: "[56] 1928 AZ <247>am[49]{12}[48] EQUS "am" \ [46]" CTOK 49 EJMP 12 CTOK 48 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "D4-18{all caps}/2L{sentence EQUS "D4-18" \ case}" CTOK 83 \ EQUB 0 \ Encoded as: "D4-18[83]" EQUB 10 \ 10: Drive motors: "AM 18 BI THRUST" EQUS "AM 18 " \ ETWO 'B', 'I' \ Encoded as: "AM 18 <234> [66]" EQUS " " CTOK 66 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: anaconda [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Anaconda Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses anaconda
\ --- Mod: Code added for Elite-A: --------------------> .anaconda EQUB 1 \ 1: Inservice date: "2856 ({single cap}RIMLINER EQUS "2856" \ GALACTIC)" CTOK 85 \ EQUS "Riml" \ Encoded as: "2856[85]Riml<240><244> G<228>ac ETWO 'I', 'N' \ <251>c)" ETWO 'E', 'R' EQUS " G" ETWO 'A', 'L' EQUS "ac" ETWO 'T', 'I' EQUS "c)" EQUB 0 EQUB 2 \ 2: Combat factor: "3" EQUS "3" \ EQUB 0 \ Encoded as: "3" EQUB 3 \ 3: Dimensions: "170/60/75FT" EQUS "170/60/75" \ CTOK 42 \ Encoded as: "170/60/75[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.14{all caps}LM{sentence case}" EQUS "0.14" \ CTOK 64 \ Encoded as: "0.14[64]" EQUB 0 EQUB 5 \ 5: Crew: "2-10" EQUS "2-10" \ EQUB 0 \ Encoded as: "2-10" EQUB 6 \ 6: Range: "10{all caps}LY{sentence case}" EQUS "10" \ CTOK 63 \ Encoded as: "10[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "245{all caps}TC{sentence case}" EQUS "245" \ CTOK 62 \ Encoded as: "245[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "253{all caps}TC{sentence case}" EQUS "253" \ CTOK 62 \ Encoded as: "253[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "HASSONI HI-RAD PULSE LASER{cr} CTOK 59 \ GERET STARSEEKER MISSILES" EQUS " Hi-" \ ETWO 'R', 'A' \ Encoded as: "[59] Hi-<248>d[50][49]{12}[48] EQUS "d" \ [46]" CTOK 50 CTOK 49 EJMP 12 CTOK 48 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "M8-**{all caps}/4L{sentence EQUS "M8-**" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "M8-**[84]" EQUB 10 \ 10: Drive motors: "V & K 32.24{cr} CTOK 73 \ ERGMASTERS" EQUS "32.24" \ EJMP 12 \ Encoded as: "[73]32.24{12}<244>g<239><222> ETWO 'E', 'R' \ <244>s" EQUS "g" ETWO 'M', 'A' ETWO 'S', 'T' ETWO 'E', 'R' EQUS "s" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: asp_2 [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Asp Mk II Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses asp_2
\ --- Mod: Code added for Elite-A: --------------------> .asp_2 EQUB 1 \ 1: Inservice date: "2878 ({single cap}GALCOP EQUS "2878" \ WORKSHOPS)" CTOK 85 \ EQUS "G" \ Encoded as: "2878[85]G<228>cop[81]" ETWO 'A', 'L' EQUS "cop" CTOK 81 EQUB 0 EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "70/20/65FT" EQUS "70/20/65" \ CTOK 42 \ Encoded as: "70/20/65[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.40{all caps}LM{sentence case}" EQUS "0.40" \ CTOK 64 \ Encoded as: "0.40[64]" EQUB 0 EQUB 5 \ 5: Crew: "1" EQUS "1" \ EQUB 0 \ Encoded as: "1" EQUB 6 \ 6: Range: "12.5{all caps}LY{sentence case}" EQUS "12.5" \ CTOK 63 \ Encoded as: "12.5[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "0{all caps}TC{sentence case}" EQUS "0" \ CTOK 62 \ Encoded as: "0[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "6{all caps}TC{sentence case}" EQUS "6" \ CTOK 62 \ Encoded as: "6[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "HASSONI-{single cap}KRUGER BURST CTOK 59 \ LASER{cr} EQUS "-" \ GERET STARSEEKER MISSILES" CTOK 58 \ EQUS "Bur" \ Encoded as: "[59]-[58]Bur<222>[49]{12}[48] ETWO 'S', 'T' \ [46]" CTOK 49 EJMP 12 CTOK 48 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "J6-31{all caps}/1L{sentence EQUS "J6-31" \ case}" CTOK 82 \ EQUB 0 \ Encoded as: "J6-31[82]" EQUB 10 \ 10: Drive motors: "VOLTAIRE WHIPLASH{cr} CTOK 60 \ {all caps}HK{sentence case} EQUS " Whip" \ PULSEDRIVE" ETWO 'L', 'A' \ EQUS "sh" \ Encoded as: "[60] Whip<249>sh{12}{all caps}HK EJMP 12 \ {sentence case} [50][53]" EJMP 1 EQUS "HK" EJMP 2 EQUS " " CTOK 50 CTOK 53 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: boa [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Boa Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses boa
\ --- Mod: Code added for Elite-A: --------------------> .boa EQUB 1 \ 1: Inservice date: "3017 ({single cap}GEREGE EQUS "3017" \ FEDERATION)" CTOK 85 \ ETWO 'G', 'E' \ Encoded as: "3017[85]<231><242><231> [76])" ETWO 'R', 'E' ETWO 'G', 'E' EQUS " " CTOK 76 EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "4" EQUS "4" \ EQUB 0 \ Encoded as: "4" EQUB 3 \ 3: Dimensions: "115/60/65FT" EQUS "115/60/65" \ CTOK 42 \ Encoded as: "115/60/65[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.24{all caps}LM{sentence case}" EQUS "0.24" \ CTOK 64 \ Encoded as: "0.24[64]" EQUB 0 EQUB 5 \ 5: Crew: "2-6" EQUS "2-6" \ EQUB 0 \ Encoded as: "2-6" EQUB 6 \ 6: Range: "9{all caps}LY{sentence case}" EQUS "9" \ CTOK 63 \ Encoded as: "9[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "125{all caps}TC{sentence case}" EQUS "125" \ CTOK 62 \ Encoded as: "125[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "132{all caps}TC{sentence case}" EQUS "132" \ CTOK 62 \ Encoded as: "132[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "ERGON LASER SYSTEM{cr} CTOK 52 \ {all caps}IFS{sentence case} SEEK CTOK 49 \ & HUNT MISSILES" CTOK 51 \ EJMP 12 \ Encoded as: "[52][49][51]{12}[86][54] & [79] CTOK 86 \ [46]" CTOK 54 EQUS " & " CTOK 79 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "J7-24{all caps}/2L{sentence EQUS "J7-24" \ case}" CTOK 83 \ EQUB 0 \ Encoded as: "J7-24[83]" EQUB 10 \ 10: Drive motors: "{all caps}4*C40KV{sentence case} CTOK 72 \ AMES DRIVE{cr} EJMP 12 \ SEEKLIGHT THRUSTERS" CTOK 54 \ CTOK 55 \ Encoded as: "[72]{12}[54][55] [66]<244>s" EQUS " " CTOK 66 ETWO 'E', 'R' EQUS "s" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: bushmaster [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Bushmaster Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses bushmaster
\ --- Mod: Code added for Elite-A: --------------------> .bushmaster EQUB 1 \ 1: Inservice date: "3001 ({single cap}ONRIRA EQUS "3001" \ ORBITAL)" CTOK 85 \ ETWO 'O', 'N' \ Encoded as: "3001[85]<223>ri<248> <253>b<219> EQUS "ri" \ <228>)" ETWO 'R', 'A' EQUS " " ETWO 'O', 'R' EQUS "b" ETWO 'I', 'T' ETWO 'A', 'L' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "8" EQUS "8" \ EQUB 0 \ Encoded as: "8" EQUB 3 \ 3: Dimensions: "50/20/50FT" EQUS "50/20/50" \ CTOK 42 \ Encoded as: "50/20/50[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.35{all caps}LM{sentence case}" EQUS "0.35" \ CTOK 64 \ Encoded as: "0.35[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-2" EQUS "1-2" \ EQUB 0 \ Encoded as: "1-2" EQUB 8 \ 8: Armaments: "DUAL 22-18 LASER{cr} EQUS "Du" \ GERET STARSEEKER MISSILES" ETWO 'A', 'L' \ EQUS " 22-18" \ Encoded as: "Du<228> 22-18[49]{12}[48][46]" CTOK 49 EJMP 12 CTOK 48 CTOK 46 EQUB 0 \EQUB 9 \ This data is commented out in the original source \EQUS "3" \ \CTOK 82 \ It would show the hull as "3{all caps}/1L{sentence \EQUB 0 \ case}" EQUB 10 \ 10: Drive motors: "VOLTAIRE WHIPLASH{cr} CTOK 60 \ {all caps}HT{sentence case} EQUS " Whip" \ PULSEDRIVE" ETWO 'L', 'A' \ EQUS "sh" \ Encoded as: "[60] Whip<249>sh{12}{all caps}HT EJMP 12 \ {sentence case} [50][53]" EJMP 1 EQUS "HT" EJMP 2 EQUS " " CTOK 50 CTOK 53 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: chameleon [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Chameleon Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses chameleon
\ --- Mod: Code added for Elite-A: --------------------> .chameleon EQUB 1 \ 1: Inservice date: "3122 ({single cap}ARDEN EQUS "3122" \ CO-OPERATIVE)" CTOK 85 \ ETWO 'A', 'R' \ Encoded as: "3122[85]<238>d<246> Co-op<244>a EQUS "d" \ <251><250>)" ETWO 'E', 'N' EQUS " Co-op" ETWO 'E', 'R' EQUS "a" ETWO 'T', 'I' ETWO 'V', 'E' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "75/24/40FT" EQUS "75/24/40" \ CTOK 42 \ Encoded as: "75/24/40[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.29{all caps}LM{sentence case}" EQUS "0.29" \ CTOK 64 \ Encoded as: "0.29[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-4" EQUS "1-4" \ EQUB 0 \ Encoded as: "1-4" EQUB 6 \ 6: Range: "8{all caps}LY{sentence case}" EQUS "8" \ CTOK 63 \ Encoded as: "8[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "30{all caps}TC{sentence case}" EQUS "30" \ CTOK 62 \ Encoded as: "30[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "35{all caps}TC{sentence case}" EQUS "35" \ CTOK 62 \ Encoded as: "35[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "INGRAM MEGABLAST PULSE LASER{cr} CTOK 56 \ SEEKER X3 MISSILES" EQUS " Mega" \ CTOK 74 \ Encoded as: "[56] Mega[74][50][49]{12}[54] CTOK 50 \ <244> X3[46]" CTOK 49 EJMP 12 CTOK 54 ETWO 'E', 'R' EQUS " X3" CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "H5-23{all caps}/2L{sentence EQUS "H5-23" \ case}" CTOK 83 \ EQUB 0 \ Encoded as: "H5-23[83]" EQUB 10 \ 10: Drive motors: "VOLTAIRE STINGER{cr} CTOK 60 \ PULSEDRIVE" EQUS " " \ ETWO 'S', 'T' \ Encoded as: "[60] <222><240>g<244>{12}Pul<218> ETWO 'I', 'N' \ [53]" EQUS "g" ETWO 'E', 'R' EJMP 12 EQUS "Pul" ETWO 'S', 'E' CTOK 53 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: cobra_1 [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Cobra Mk I Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses cobra_1
\ --- Mod: Code added for Elite-A: --------------------> .cobra_1 EQUB 1 \ 1: Inservice date: "2855 ({single cap}PAYNOU, PROSSET EQUS "2855" \ & SALEM)" CTOK 85 \ EQUS "Payn" \ Encoded as: "2855[85]Payn[89], [80]& S<228> ETWO 'O', 'U' \ em)" EQUS ", " CTOK 80 EQUS "& S" ETWO 'A', 'L' EQUS "em)" EQUB 0 EQUB 2 \ 2: Combat factor: "5" EQUS "5" \ EQUB 0 \ Encoded as: "5" EQUB 3 \ 3: Dimensions: "55/15/70FT" EQUS "55/15/70" \ CTOK 42 \ Encoded as: "55/15/70[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.26{all caps}LM{sentence case}" EQUS "0.26" \ CTOK 64 \ Encoded as: "0.26[64]" EQUB 0 EQUB 5 \ 5: Crew: "1" EQUS "1" \ EQUB 0 \ Encoded as: "1" EQUB 6 \ 6: Range: "6{all caps}LY{sentence case}" EQUS "6" \ CTOK 63 \ Encoded as: "6[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "10{all caps}TC{sentence case}" EQUS "10" \ CTOK 62 \ Encoded as: "10[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "14{all caps}TC{sentence case}" EQUS "14" \ CTOK 62 \ Encoded as: "14[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "HASSONI VARISCAN LASER{cr} CTOK 59 \ LANCE & FERMAN MISSILES" EQUS " V" \ ETWO 'A', 'R' \ Encoded as: "[59] V<238>isc<255>[49]{12}[57] EQUS "isc" \ [46]" ETWO 'A', 'N' CTOK 49 EJMP 12 CTOK 57 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "E4-20{all caps}/4L{sentence EQUS "E4-20" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "E4-20[84]" EQUB 10 \ 10: Drive motors: "PROSSET DRIVE" CTOK 80 \ CTOK 53 \ Encoded as: "[80][53]" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: cobra_3 [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Cobra Mk III Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses cobra_3
\ --- Mod: Code added for Elite-A: --------------------> .cobra_3 EQUB 1 \ 1: Inservice date: "3100 ({single cap}COWELL & EQUS "3100" \ MG{all caps}RATH, LAVE)" CTOK 85 \ EQUS "Cowell & Mg" \ Encoded as: "3100[85]Cowell & Mg{single cap} EJMP 19 \ <248><226>, <249><250>)" ETWO 'R', 'A' ETWO 'T', 'H' EQUS ", " ETWO 'L', 'A' ETWO 'V', 'E' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "7" EQUS "7" \ EQUB 0 \ Encoded as: "7" EQUB 3 \ 3: Dimensions: "65/30/130FT" EQUS "65/30/130" \ CTOK 42 \ Encoded as: "65/30/130[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.28{all caps}LM{sentence case}" EQUS "0.28" \ CTOK 64 \ Encoded as: "0.28[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-3" EQUS "1-3" \ EQUB 0 \ Encoded as: "1-3" EQUB 6 \ 6: Range: "7{all caps}LY{sentence case}" EQUS "7" \ CTOK 63 \ Encoded as: "7[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "35{all caps}TC{sentence case}" EQUS "35" \ CTOK 62 \ Encoded as: "35[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "42{all caps}TC{sentence case}" EQUS "42" \ CTOK 62 \ Encoded as: "42[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "INGRAM LASER SYSTEM{cr} CTOK 56 \ LANCE & FERMAN MISSILES" CTOK 49 \ CTOK 51 \ Encoded as: "[56][49][51]{12}[57][46]" EJMP 12 CTOK 57 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "G7-24{all caps}/4L{sentence EQUS "G7-24" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "G7-24[84]" EQUB 10 \ 10: Drive motors: "{single cap}KRUGER LIGHTFAST{cr} CTOK 58 \ IRRIKAN THRUSPACE" CTOK 55 \ EQUS "fa" \ Encoded as: "[58][55]fa<222>{12}Irrik<255> Thr ETWO 'S', 'T' \ u[77]" EJMP 12 EQUS "Irrik" ETWO 'A', 'N' EQUS " Thru" CTOK 77 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: coriolis [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Coriolis station Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses coriolis
\ --- Mod: Code added for Elite-A: --------------------> .coriolis EQUB 1 \ 1: Inservice date: "2752 ({single cap}GASEC LABS, EQUS "2752" \ VETITICE)" CTOK 75 \ EQUB 0 \ Encoded as: "2752[75]" EQUB 3 \ 3: Dimensions: "1/1/1km" EQUS "1/1/1km" \ EQUB 0 \ Encoded as: "1/1/1km" EQUB 11 \ 11: Space: "2000 SHIPS" EQUS "2000" \ CTOK 67 \ Encoded as: "2000[67]s" EQUS "s" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: dodecagon [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Dodo station Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses dodecagon
\ --- Mod: Code added for Elite-A: --------------------> .dodecagon EQUB 1 \ 1: Inservice date: "3152 ({single cap}GASEC LABS, EQUS "3152" \ VETITICE)" CTOK 75 \ EQUB 0 \ Encoded as: "3152[75]" EQUB 3 \ 3: Dimensions: "1/1/1km" EQUS "1/1/1km" \ EQUB 0 \ Encoded as: "1/1/1km" EQUB 11 \ 11: Space: "2700 SHIPS" EQUS "2700" \ CTOK 67 \ Encoded as: "2700[67]s" EQUS "s" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: escape_pod [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the escape pod Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses escape_pod
\ --- Mod: Code added for Elite-A: --------------------> .escape_pod EQUB 1 \ 1: Inservice date: "PRE-2500" EQUS "p" \ ETWO 'R', 'E' \ Encoded as: "p<242>-2500" EQUS "-2500" EQUB 0 EQUB 3 \ 3: Dimensions: "10/5/5FT" EQUS "10/5/5" \ CTOK 42 \ Encoded as: "10/5/5[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.08{all caps}LM{sentence case}" EQUS "0.08" \ CTOK 64 \ Encoded as: "0.08[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-2" EQUS "1-2" \ EQUB 0 \ Encoded as: "1-2" EQUB 0 \ --- End of added code ------------------------------->
Name: fer_de_lance [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Fer-de-Lance Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses fer_de_lance
\ --- Mod: Code added for Elite-A: --------------------> .fer_de_lance EQUB 1 \ 1: Inservice date: "3100 ({single cap}ZORGON EQUS "3100" \ PETTERSON)" CTOK 85 \ CTOK 70 \ Encoded as: "3100[85][70]" EQUB 0 EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "85/20/45FT" EQUS "85/20/45" \ CTOK 42 \ Encoded as: "85/20/45[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.30{all caps}LM{sentence case}" EQUS "0.30" \ CTOK 64 \ Encoded as: "0.30[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-3" EQUS "1-3" \ EQUB 0 \ Encoded as: "1-3" EQUB 6 \ 6: Range: "8.5{all caps}LY{sentence case}" EQUS "8.5" \ CTOK 63 \ Encoded as: "8.5[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "2{all caps}TC{sentence case}" EQUS "2" \ CTOK 62 \ Encoded as: "2[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "9{all caps}TC{sentence case}" EQUS "9" \ CTOK 62 \ Encoded as: "9[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "ERGON LASER SYSTEM{cr} CTOK 52 \ {all caps}IFS{sentence case} SEEK CTOK 49 \ & HUNT MISSILES" CTOK 51 \ EJMP 12 \ Encoded as: "[52][49][51]{12}[86][54] & [79] CTOK 86 \ [46]" CTOK 54 EQUS " & " CTOK 79 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "H7-28{all caps}/4L{sentence EQUS "H7-28" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "H7-28[84]" EQUB 10 \ 10: Drive motors: "TITRONIX INTERSUN{cr} EQUS "T" \ {all caps}LT{sentence case} ETWO 'I', 'T' \ {single cap}IONIC" EQUS "r" \ ETWO 'O', 'N' \ Encoded as: "T<219>r<223>ix <240>t<244>sun{12} EQUS "ix " \ {all caps}LT{sentence case} [78]" ETWO 'I', 'N' EQUS "t" ETWO 'E', 'R' EQUS "sun" EJMP 12 EJMP 1 EQUS "LT" EJMP 2 EQUS " " CTOK 78 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: gecko [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Gecko Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses gecko
\ --- Mod: Code added for Elite-A: --------------------> .gecko EQUB 1 \ 1: Inservice date: "2852 ({single cap}ACE & FABER, EQUS "2852" \ LERELACE)" CTOK 85 \ EQUS "A" \ Encoded as: "2852[85]A<233> & F[88]<244>, ETWO 'C', 'E' \ <229><242><249><233>)" EQUS " & F" ETWO 'A', 'B' ETWO 'E', 'R' EQUS ", " ETWO 'L', 'E' ETWO 'R', 'E' ETWO 'L', 'A' ETWO 'C', 'E' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "7" EQUS "7" \ EQUB 0 \ Encoded as: "7" EQUB 3 \ 3: Dimensions: "40/12/65FT" EQUS "40/12/65" \ CTOK 42 \ Encoded as: "40/12/65[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.30{all caps}LM{sentence case}" EQUS "0.30" \ CTOK 64 \ Encoded as: "0.30[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-2" EQUS "1-2" \ EQUB 0 \ Encoded as: "1-2" EQUB 6 \ 6: Range: "7{all caps}LY{sentence case}" EQUS "7" \ CTOK 63 \ Encoded as: "7[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "3{all caps}TC{sentence case}" EQUS "3" \ CTOK 62 \ Encoded as: "3[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "9{all caps}TC{sentence case}" EQUS "9" \ CTOK 62 \ Encoded as: "9[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "INGRAM 1919 A4 LASER{cr} CTOK 56 \ {all caps}LM{sentence case} EQUS " 1919 A4" \ HOMING MISSILES" CTOK 49 \ EJMP 12 \ Encoded as: "[56] 1919 A4[49]{12}[64] Hom<240> CTOK 64 \ g[46]" EQUS " Hom" ETWO 'I', 'N' EQUS "g" CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "E6-19{all caps}/2L{sentence EQUS "E6-19" \ case}" CTOK 83 \ EQUB 0 \ Encoded as: "E6-19[83]" EQUB 10 \ 10: Drive motors: "BREAM PULSELIGHT {all caps}XL EQUS "B" \ {sentence case}" ETWO 'R', 'E' \ EQUS "am" \ Encoded as: "B<242>am[50][55] {all caps}XL CTOK 50 \ {sentence case}" CTOK 55 EQUS " " EJMP 1 EQUS "XL" EJMP 2 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: ghavial [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Ghavial Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses ghavial
\ --- Mod: Code added for Elite-A: --------------------> .ghavial EQUB 1 \ 1: Inservice date: "3077 ({single cap}ARDEN EQUS "3077" \ CO-OPERATIVE)" CTOK 85 \ ETWO 'A', 'R' \ Encoded as: "3077[85]<238>d<246> Co-op<244>a EQUS "d" \ <251><250>)" ETWO 'E', 'N' EQUS " Co-op" ETWO 'E', 'R' EQUS "a" ETWO 'T', 'I' ETWO 'V', 'E' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "5" EQUS "5" \ EQUB 0 \ Encoded as: "5" EQUB 3 \ 3: Dimensions: "80/30/60FT" EQUS "80/30/60" \ CTOK 42 \ Encoded as: "80/30/60[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.25{all caps}LM{sentence case}" EQUS "0.25" \ CTOK 64 \ Encoded as: "0.25[64]" EQUB 0 EQUB 5 \ 5: Crew: "2-7" EQUS "2-7" \ EQUB 0 \ Encoded as: "2-7" EQUB 6 \ 6: Range: "8{all caps}LY{sentence case}" EQUS "8" \ CTOK 63 \ Encoded as: "8[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "50{all caps}TC{sentence case}" EQUS "50" \ CTOK 62 \ Encoded as: "50[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "55{all caps}TC{sentence case}" EQUS "55" \ CTOK 62 \ Encoded as: "55[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "FAIREY PULSE LASER{cr} EQUS "Fai" \ LANCE & FERMAN MISSILES" ETWO 'R', 'E' \ EQUS "y" \ Encoded as: "Fai<242>y[50][49]{12}[57][46]" CTOK 50 CTOK 49 EJMP 12 CTOK 57 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "I5-25{all caps}/4L{sentence EQUS "I5-25" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "I5-25[84]" EQUB 10 \ 10: Drive motors: "SPALDER & PRIME {all caps}TT1 EQUS "Sp" \ {sentence case}" ETWO 'A', 'L' \ EQUS "d" \ Encoded as: "Sp<228>d<244> & Prime {all caps} ETWO 'E', 'R' \ TT1{sentence case}" EQUS " & Prime " EJMP 1 EQUS "TT1" EJMP 2 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: iguana [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Iguana Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses iguana
\ --- Mod: Code added for Elite-A: --------------------> .iguana EQUB 1 \ 1: Inservice date: "3095 ({single cap}FAULCON EQUS "3095" \ MANSPACE)" CTOK 85 \ EQUS "Faulc" \ Encoded as: "3095[85]Faulc<223> <239>n[77])" ETWO 'O', 'N' EQUS " " ETWO 'M', 'A' EQUS "n" CTOK 77 EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "65/20/40FT" EQUS "65/20/40" \ CTOK 42 \ Encoded as: "65/20/40[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.33{all caps}LM{sentence case}" EQUS "0.33" \ CTOK 64 \ Encoded as: "0.33[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-3" EQUS "1-3" \ EQUB 0 \ Encoded as: "1-3" EQUB 6 \ 6: Range: "7.5{all caps}LY{sentence case}" EQUS "7.5" \ CTOK 63 \ Encoded as: "7.5[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "15{all caps}TC{sentence case}" EQUS "15" \ CTOK 62 \ Encoded as: "15[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "21{all caps}TC{sentence case}" EQUS "21" \ CTOK 62 \ Encoded as: "21[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "LANCE & FERMAN LASER{cr} CTOK 57 \ SEEKER X1 MISSILES" CTOK 49 \ EJMP 12 \ Encoded as: "[57][49]{12}[54]<244> X1[46]" CTOK 54 ETWO 'E', 'R' EQUS " X1" CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "G6-20{all caps}/4L{sentence EQUS "G6-20" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "G6-20[84]" EQUB 10 \ 10: Drive motors: "DE{single cap}LACY SUPER CTOK 71 \ THRUST{cr} EQUS " Sup" \ {all caps}VC{sentence case}9" ETWO 'E', 'R' \ EQUS " " \ Encoded as: "[71] Sup<244> [66]{12}{all caps}V CTOK 66 \ C{sentence case}9" EJMP 12 EJMP 1 EQUS "VC" EJMP 2 EQUS "9" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: krait [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Krait Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses krait
\ --- Mod: Code added for Elite-A: --------------------> .krait EQUB 1 \ 1: Inservice date: "3027 ({single cap}DE{single cap} EQUS "3027" \ LACY SHIPWORKS, ININES)" CTOK 85 \ CTOK 71 \ Encoded as: "3027[85][71][67]W<253>ks, <240> CTOK 67 \ <240><237>)" EQUS "W" ETWO 'O', 'R' EQUS "ks, " ETWO 'I', 'N' ETWO 'I', 'N' ETWO 'E', 'S' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "7" EQUS "7" \ EQUB 0 \ Encoded as: "7" EQUB 3 \ 3: Dimensions: "80/20/90FT" EQUS "80/20/90" \ CTOK 42 \ Encoded as: "80/20/90[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.30{all caps}LM{sentence case}" EQUS "0.30" \ CTOK 64 \ Encoded as: "0.30[64]" EQUB 0 EQUB 5 \ 5: Crew: "1" EQUS "1" \ EQUB 0 \ Encoded as: "1" EQUB 7 \ 7: Cargo space: "10{all caps}TC{sentence case}" EQUS "10" \ CTOK 62 \ Encoded as: "10[62]" EQUB 0 EQUB 8 \ 8: Armaments: "ERGON LASER SYSTEM" CTOK 52 \ CTOK 49 \ Encoded as: "[52][49][51]" CTOK 51 EQUB 0 \EQUB 9 \ This data is commented out in the original source \EQUS "8" \ \CTOK 83 \ It would show the hull as "8{all caps}/2L{sentence \EQUB 0 \ case}" EQUB 10 \ 10: Drive motors: "DE{single cap}LACY SPIN{single CTOK 71 \ cap}IONIC ZX14" EQUS " Sp" \ ETWO 'I', 'N' \ Encoded as: "[71] Sp<240>[78] ZX14" CTOK 78 EQUS " ZX14" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: mamba [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Mamba Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses mamba
\ --- Mod: Code added for Elite-A: --------------------> .mamba EQUB 1 \ 1: Inservice date: "3110 ({single cap}REORTE SHIP EQUS "3110" \ FEDERATION)" CTOK 85 \ ETWO 'R', 'E' \ Encoded as: "3110[85]<242><253>te[67] [76])" ETWO 'O', 'R' EQUS "te" CTOK 67 EQUS " " CTOK 76 EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "8" EQUS "8" \ EQUB 0 \ Encoded as: "8" EQUB 3 \ 3: Dimensions: "55/12/65FT" EQUS "55/12/65" \ CTOK 42 \ Encoded as: "55/12/65[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.30{all caps}LM{sentence case}" EQUS "0.30" \ CTOK 64 \ Encoded as: "0.30[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-2" EQUS "1-2" \ EQUB 0 \ Encoded as: "1-2" EQUB 7 \ 7: Cargo space: "10{all caps}TC{sentence case}" EQUS "10" \ CTOK 62 \ Encoded as: "10[62]" EQUB 0 EQUB 8 \ 8: Armaments: "ERGON LASER SYSTEM{cr} CTOK 52 \ {all caps}IFS{sentence case} SEEK CTOK 49 \ & HUNT MISSILES" CTOK 51 \ EJMP 12 \ Encoded as: "[52][49][51]{12}[86][54] & [79] CTOK 86 \ [46]" CTOK 54 EQUS " & " CTOK 79 CTOK 46 EQUB 0 \EQUB 9 \ This data is commented out in the original source \EQUS "7" \ \CTOK 82 \ It would show the hull as "7{all caps}/1L{sentence \EQUB 0 \ case}" EQUB 10 \ 10: Drive motors: "SEEKLIGHT {all caps}HV{sentence CTOK 54 \ case}THRUST" CTOK 55 \ EQUS " " \ Encoded as: "[54][55] {all caps}HV{sentence EJMP 1 \ case}[66]" EQUS "HV" EJMP 2 EQUS " " CTOK 66 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: monitor [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Monitor Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses monitor
\ --- Mod: Code added for Elite-A: --------------------> .monitor EQUB 1 \ 1: Inservice date: "3112 ({single cap}ZORGON EQUS "3112" \ PETTERSON)" CTOK 85 \ CTOK 70 \ Encoded as: "3112[85][70]" EQUB 0 EQUB 2 \ 2: Combat factor: "4" EQUS "4" \ EQUB 0 \ Encoded as: "4" EQUB 3 \ 3: Dimensions: "100/40/50FT" EQUS "100/40/50" \ CTOK 42 \ Encoded as: "100/40/50[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.16{all caps}LM{sentence case}" EQUS "0.16" \ CTOK 64 \ Encoded as: "0.16[64]" EQUB 0 EQUB 5 \ 5: Crew: "7-19" EQUS "7-19" \ EQUB 0 \ Encoded as: "7-19" EQUB 6 \ 6: Range: "11{all caps}LY{sentence case}" EQUS "11" \ CTOK 63 \ Encoded as: "11[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "75{all caps}TC{sentence case}" EQUS "75" \ CTOK 62 \ Encoded as: "75[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "81{all caps}TC{sentence case}" EQUS "81" \ CTOK 62 \ Encoded as: "81[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "{single cap}KRUGER {all caps}HMB CTOK 58 \ {sentence case} LASER{cr} EJMP 1 \ GERET STARSEEKER MISSILE" EQUS "HMB" \ EJMP 2 \ Encoded as: "[58]{all caps}HMB{sentence case} CTOK 49 \ [49]{12}[48][46]" EJMP 12 CTOK 48 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "J6-28{all caps}/4L{sentence EQUS "J6-28" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "J6-28[84]" EQUB 10 \ 10: Drive motors: "V & K 29.01{cr}LIGHT BLASTERS" CTOK 73 \ EQUS "29.01" \ Encoded as: "[73]29.01{12}[55] [74]<244>s" EJMP 12 CTOK 55 EQUS " " CTOK 74 ETWO 'E', 'R' EQUS "s" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: moray [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Moray Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses moray
\ --- Mod: Code added for Elite-A: --------------------> .moray EQUB 1 \ 1: Inservice date: "3028 ({single cap}MARINE TRENCH EQUS "3028" \ CO.)" CTOK 85 \ EQUS "M" \ Encoded as: "3028[85]M<238><240>e T<242>nch C ETWO 'A', 'R' \ o.)" ETWO 'I', 'N' EQUS "e T" ETWO 'R', 'E' EQUS "nch Co.)" EQUB 0 EQUB 2 \ 2: Combat factor: "7" EQUS "7" \ EQUB 0 \ Encoded as: "7" EQUB 3 \ 3: Dimensions: "60/25/60FT" EQUS "60/25/60" \ CTOK 42 \ Encoded as: "60/25/60[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.25{all caps}LM{sentence case}" EQUS "0.25" \ CTOK 64 \ Encoded as: "0.25[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-4" EQUS "1-4" \ EQUB 0 \ Encoded as: "1-4" EQUB 6 \ 6: Range: "8{all caps}LY{sentence case}" EQUS "8" \ CTOK 63 \ Encoded as: "8[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "7{all caps}TC{sentence case}" EQUS "7" \ CTOK 62 \ Encoded as: "7[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "11{all caps}TC{sentence case}" EQUS "11" \ CTOK 62 \ Encoded as: "11[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "INGRAM LASER SYSTEM{cr} CTOK 56 \ GERET STARSEEKER MISSILES" CTOK 49 \ CTOK 51 \ Encoded as: "[56][49][51]{12}[48][46]" EJMP 12 CTOK 48 CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "F4-22{all caps}/4L{sentence EQUS "F4-22" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "F4-22[84]" EQUB 10 \ 10: Drive motors: "TURBULEN QUARK{cr}RE-CHARGER EQUS "Turbul" \ 1287" ETWO 'E', 'N' \ EQUS " " \ Encoded as: "Turbul<246> <254><238>k{12}<242>- ETWO 'Q', 'U' \ ch<238>g<244> 1287" ETWO 'A', 'R' EQUS "k" EJMP 12 ETWO 'R', 'E' EQUS "-ch" ETWO 'A', 'R' EQUS "g" ETWO 'E', 'R' EQUS " 1287" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: ophidian [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Ophidian Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses ophidian
\ --- Mod: Code added for Elite-A: --------------------> .ophidian EQUB 1 \ 1: Inservice date: "2981 ({single cap}OUTWORLD EQUS "2981" \ WORKSHOPS)" CTOK 85 \ CTOK 69 \ Encoded as: "2981[85][69][81]" CTOK 81 EQUB 0 EQUB 2 \ 2: Combat factor: "8" EQUS "8" \ EQUB 0 \ Encoded as: "8" EQUB 3 \ 3: Dimensions: "65/15/30FT" EQUS "65/15/30" \ CTOK 42 \ Encoded as: "65/15/30[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.34{all caps}LM{sentence case}" EQUS "0.34" \ CTOK 64 \ Encoded as: "0.34[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-3" EQUS "1-3" \ EQUB 0 \ Encoded as: "1-3" EQUB 6 \ 6: Range: "7{all caps}LY{sentence case}" EQUS "7" \ CTOK 63 \ Encoded as: "7[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "20{all caps}TC{sentence case}" EQUS "20" \ CTOK 62 \ Encoded as: "20[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "24{all caps}TC{sentence case}" EQUS "24" \ CTOK 62 \ Encoded as: "24[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "LANCE & FERMAN LASER{cr} CTOK 57 \ SEEKER X1 MISSILES" CTOK 49 \ EJMP 12 \ Encoded as: "[57][49]{12}[54]<244> X1[46]" CTOK 54 ETWO 'E', 'R' EQUS " X1" CTOK 46 EQUB 0 EQUB 9 \ 9: Hull: "D4-16{all caps}/1L{sentence EQUS "D4-16" \ case}" CTOK 82 \ EQUB 0 \ Encoded as: "D4-16[82]" EQUB 10 \ 10: Drive motors: "VOLTAIRE STINGER{cr} CTOK 60 \ PULSEDRIVE" EQUS " " \ ETWO 'S', 'T' \ Encoded as: "[60] <222><240>g<244>{12}Pul<218> ETWO 'I', 'N' \ [53]" EQUS "g" ETWO 'E', 'R' EJMP 12 EQUS "Pul" ETWO 'S', 'E' CTOK 53 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: python [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Python Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses python
\ --- Mod: Code added for Elite-A: --------------------> .python EQUB 1 \ 1: Inservice date: "2700 ({single cap}WHATT & PRITNEY EQUS "2700" \ SC)" CTOK 85 \ EQUS "Wh" \ Encoded as: "2700[85]Wh<245>t & Pr<219>ney S ETWO 'A', 'T' \ C)" EQUS "t & Pr" ETWO 'I', 'T' EQUS "ney SC)" EQUB 0 EQUB 2 \ 2: Combat factor: "3" EQUS "3" \ EQUB 0 \ Encoded as: "3" EQUB 3 \ 3: Dimensions: "130/40/80FT" EQUS "130/40/80" \ CTOK 42 \ Encoded as: "130/40/80[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.20{all caps}LM{sentence case}" EQUS "0.20" \ CTOK 64 \ Encoded as: "0.20[64]" EQUB 0 EQUB 5 \ 5: Crew: "2-9" EQUS "2-9" \ EQUB 0 \ Encoded as: "2-9" EQUB 6 \ 6: Range: "8{all caps}LY{sentence case}" EQUS "8" \ CTOK 63 \ Encoded as: "8[63]" EQUB 0 IF _RELEASED OR _SOURCE_DISC EQUB 7 \ 7: Cargo space: "100{all caps}TC{sentence case}" EQUS "100" \ CTOK 62 \ Encoded as: "100[62]" EQUB 0 ELIF _BUG_FIX EQUB 7 \ 7: Cargo space: "106{all caps}TC{sentence case}" EQUS "106" \ CTOK 62 \ Encoded as: "106[62]" EQUB 0 ENDIF EQUB 8 \ 8: Armaments: "VOLT-{all caps}VARISCAN PULSE EQUS "Volt-" \ LASER" EJMP 19 \ EQUS "V" \ Encoded as: "Volt-{single cap}V<238>isc<255> ETWO 'A', 'R' \ [50][49]" EQUS "isc" ETWO 'A', 'N' CTOK 50 CTOK 49 EQUB 0 EQUB 9 \ 9: Hull: "K6-27{all caps}/4L{sentence EQUS "K6-27" \ case}" CTOK 84 \ EQUB 0 \ Encoded as: "K6-27[84]" EQUB 10 \ 10: Drive motors: "{all caps}4*C40KV{sentence case} CTOK 72 \ AMES DRIVE{cr} EJMP 12 \ EXLON 76NN MODEL" EQUS "Exl" \ ETWO 'O', 'N' \ Encoded as: "[72]{12}Exl<223> 76NN Model" EQUS " 76NN Model" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: shuttle [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Shuttle Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses shuttle
\ --- Mod: Code added for Elite-A: --------------------> .shuttle EQUB 1 \ 1: Inservice date: "2856 ({single cap}SAUD-{single EQUS "2856" \ cap}KRUGER ASTRO)" CTOK 85 \ EQUS "Saud-" \ Encoded as: "2856[85]Saud-[58]A<222>ro)" CTOK 58 EQUS "A" ETWO 'S', 'T' EQUS "ro)" EQUB 0 EQUB 2 \ 2: Combat factor: "4" EQUS "4" \ EQUB 0 \ Encoded as: "4" EQUB 3 \ 3: Dimensions: "35/20/20FT" EQUS "35/20/20" \ CTOK 42 \ Encoded as: "35/20/20[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.08{all caps}LM{sentence case}" EQUS "0.08" \ CTOK 64 \ Encoded as: "0.08[64]" EQUB 0 EQUB 5 \ 5: Crew: "2" EQUS "2" \ EQUB 0 \ Encoded as: "2" EQUB 7 \ 7: Cargo space: "60{all caps}TC{sentence case}" EQUS "60" \ CTOK 62 \ Encoded as: "60[62]" EQUB 0 EQUB 10 \ 10: Drive motors: "V & K 20.20{cr} CTOK 73 \ STARMAT DRIVE" EQUS "20.20" \ EJMP 12 \ Encoded as: "[73]20.20{12}<222><238><239>t ETWO 'S', 'T' \ [53]" ETWO 'A', 'R' ETWO 'M', 'A' EQUS "t " CTOK 53 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: sidewinder [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Sidewinder Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses sidewinder
\ --- Mod: Code added for Elite-A: --------------------> .sidewinder EQUB 1 \ 1: Inservice date: "2982 ({single cap}ONRIRA EQUS "2982" \ ORBITAL)" CTOK 85 \ ETWO 'O', 'N' \ Encoded as: "2982[85]<223>ri<248> <253>b<219> EQUS "ri" \ <228>)" ETWO 'R', 'A' EQUS " " ETWO 'O', 'R' EQUS "b" ETWO 'I', 'T' ETWO 'A', 'L' EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "9" EQUS "9" \ EQUB 0 \ Encoded as: "9" EQUB 3 \ 3: Dimensions: "35/15/65FT" EQUS "35/15/65" \ CTOK 42 \ Encoded as: "35/15/65[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.37{all caps}LM{sentence case}" EQUS "0.37" \ CTOK 64 \ Encoded as: "0.37[64]" EQUB 0 EQUB 5 \ 5: Crew: "1" EQUS "1" \ EQUB 0 \ Encoded as: "1" EQUB 8 \ 8: Armaments: "DUAL 22-18 LASER" EQUS "Du" \ ETWO 'A', 'L' \ Encoded as: "Du<228> 22-18[49]" EQUS " 22-18" CTOK 49 EQUB 0 \EQUB 0, 9 \ This data is commented out in the original source \EQUA "3|!R" EQUB 10 \ 10: Drive motors: "DE{single cap}LACY SPIN{single CTOK 71 \ cap}IONIC {all caps}MV{sentence EQUS " Sp" \ case}" ETWO 'I', 'N' \ CTOK 78 \ Encoded as: "[71] Sp<240>[78] {all caps}MV EQUS " " \ {sentence case}" EJMP 1 EQUS "MV" EJMP 2 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: thargoid [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Thargoid Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses thargoid
\ --- Mod: Code added for Elite-A: --------------------> .thargoid EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "180/40/180FT" EQUS "180/40/180" \ CTOK 42 \ Encoded as: "180/40/180[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.39{all caps}LM{sentence case}" EQUS "0.39" \ CTOK 64 \ Encoded as: "0.39[64]" EQUB 0 EQUB 5 \ 5: Crew: "50" EQUS "50" \ EQUB 0 \ Encoded as: "50" EQUB 6 \ 6: Range: "UNKNOWN" EQUS "Unk" \ ETWO 'N', 'O' \ Encoded as: "Unk<227>wn" EQUS "wn" EQUB 0 EQUB 8 \ 8: Armaments: "WIDELY VARYING" EQUS "Widely v" \ ETWO 'A', 'R' \ Encoded as: "Widely v<238>y<240>g" EQUS "y" ETWO 'I', 'N' EQUS "g" EQUB 0 \EQUB 9 \ This data is commented out in the original source \EQUS "Unk" \ \TWOK 'N', 'O' \ It would show the hull as "UNKNOWN" \EQUS "wn" \EQUB 0 EQUB 10 \ 10: Drive motors: "THARGOID INVENTION" CTOK 30 \ EQUS " " \ Encoded as: "[30] [68]" CTOK 68 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: thargon [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Thargon Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses thargon
\ --- Mod: Code added for Elite-A: --------------------> .thargon EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "40/10/35FT" EQUS "40/10/35" \ CTOK 42 \ Encoded as: "40/10/35[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.30{all caps}LM{sentence case}" EQUS "0.30" \ CTOK 64 \ Encoded as: "0.30[64]" EQUB 0 EQUB 5 \ 5: Crew: "NONE" ETWO 'N', 'O' \ EQUS "ne" \ Encoded as: "<227>ne" EQUB 0 EQUB 8 \ 8: Armaments: "THARGOID LASER" CTOK 30 \ CTOK 49 \ Encoded as: "[30][49]" EQUB 0 \EQUB 9 \ This data is commented out in the original source \TWOK 'N', 'O' \ \EQUS "ne" \ It would show the hull as "NONE" \EQUB 0 EQUB 10 \ 10: Drive motors: "THARGOID INVENTION" CTOK 30 \ EQUS " " \ Encoded as: "[30] [68]" CTOK 68 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: transporter [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Transporter Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses transporter
\ --- Mod: Code added for Elite-A: --------------------> .transporter EQUB 1 \ 1: Inservice date: "PRE-2500 ({single cap}SPACELINK EQUS "p" \ SHIPYARDS)" ETWO 'R', 'E' \ EQUS "-2500" \ Encoded as: "p<242>-2500[85][77]L<240>k[67]y CTOK 85 \ <238>ds)" CTOK 77 EQUS "L" ETWO 'I', 'N' EQUS "k" CTOK 67 EQUS "y" ETWO 'A', 'R' EQUS "ds)" EQUB 0 EQUB 3 \ 3: Dimensions: "35/10/30FT" EQUS "35/10/30" \ CTOK 42 \ Encoded as: "35/10/30[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.10{all caps}LM{sentence case}" EQUS "0.10" \ CTOK 64 \ Encoded as: "0.10[64]" EQUB 0 EQUB 5 \ 5: Crew: "5" EQUS "5" \ EQUB 0 \ Encoded as: "5" EQUB 7 \ 7: Cargo space: "10{all caps}TC{sentence case}" EQUS "10" \ CTOK 62 \ Encoded as: "10[62]" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: viper [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Viper Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses viper
\ --- Mod: Code added for Elite-A: --------------------> .viper EQUB 1 \ 1: Inservice date: "2762 ({single cap}FAULCON EQUS "2762" \ MANSPACE)" CTOK 85 \ EQUS "Faulc" \ Encoded as: "2762[85]Faulc<223> <239>n[77])" ETWO 'O', 'N' EQUS " " ETWO 'M', 'A' EQUS "n" CTOK 77 EQUS ")" EQUB 0 EQUB 2 \ 2: Combat factor: "7" EQUS "7" \ EQUB 0 \ Encoded as: "7" EQUB 3 \ 3: Dimensions: "55/20/50FT" EQUS "55/20/50" \ CTOK 42 \ Encoded as: "55/20/50[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.32{all caps}LM{sentence case}" EQUS "0.32" \ CTOK 64 \ Encoded as: "0.32[64]" EQUB 0 EQUB 5 \ 5: Crew: "1-10" EQUS "1-10" \ EQUB 0 \ Encoded as: "1-10" EQUB 8 \ 8: Armaments: "INGRAM MEGABLAST PULSE LASER{cr} CTOK 56 \ SEEKER X3 MISSILES" EQUS " Mega" \ CTOK 74 \ Encoded as: "[56] Mega[74][50][49]{12}[54] CTOK 50 \ <244> X3[46]" CTOK 49 EJMP 12 CTOK 54 ETWO 'E', 'R' EQUS " X3" CTOK 46 EQUB 0 \EQUB 9 \ This data is commented out in the original source \EQUS "9" \ \CTOK 82 \ It would show the hull as "9{all caps}/1L{sentence \EQUB 0 \ case}" EQUB 10 \ 10: Drive motors: "DE{single cap}LACY SUPER CTOK 71 \ THRUST{cr} EQUS " Sup" \ {all caps}VC{sentence case}10" ETWO 'E', 'R' \ EQUS " " \ Encoded as: "[71] Sup<244> [66]{12}{all caps}V CTOK 66 \ C{sentence case}10" EJMP 12 EJMP 1 EQUS "VC" EJMP 2 EQUS "10" EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Name: worm [Show more] Type: Variable Category: Encyclopedia Summary: Ship card data for the encyclopedia entry for the Worm Deep dive: The Encyclopedia Galactica
Context: See this variable on its own page References: This variable is used as follows: * card_addr uses worm
\ --- Mod: Code added for Elite-A: --------------------> .worm EQUB 1 \ 1: Inservice date: "3101" EQUS "3101" \ EQUB 0 \ Encoded as: "3101" EQUB 2 \ 2: Combat factor: "6" EQUS "6" \ EQUB 0 \ Encoded as: "6" EQUB 3 \ 3: Dimensions: "35/12/35FT" EQUS "35/12/35" \ CTOK 42 \ Encoded as: "35/12/35[42]" EQUB 0 EQUB 4 \ 4: Speed: "0.23{all caps}LM{sentence case}" EQUS "0.23" \ CTOK 64 \ Encoded as: "0.23[64]" EQUB 0 EQUB 5 \ 5: Crew: "1" EQUS "1" \ EQUB 0 \ Encoded as: "1" EQUB 8 \ 8: Armaments: "INGRAM PULSE LASER" CTOK 56 \ CTOK 50 \ Encoded as: "[56][50][49]" CTOK 49 EQUB 0 \EQUB 9 \ This data is commented out in the original source \EQUS "3" \ \CTOK 82 \ It would show the hull as "3{all caps}/1L{sentence \EQUB 0 \ case}" EQUB 10 \ 10: Drive motors: "SEEKLIGHT {all caps}HV{sentence CTOK 54 \ case} THRUST" CTOK 55 \ EQUS " " \ Encoded as: "[54][55] {all caps}HV{sentence EJMP 1 \ case} [66]" EQUS "HV" EJMP 2 EQUS " " CTOK 66 EQUB 0 EQUB 0 \ --- End of added code ------------------------------->
Save 1.E.bin
PRINT "S.1.E ", ~CODE%, " ", ~P%, " ", ~LOAD%, " ", ~LOAD% SAVE "3-assembled-output/1.E.bin", CODE%, P%, LOAD%
[X]
Table containing the number of entries in each menu