Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 18th, 2012  |  syntax: Java  |  size: 2.71 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. package main.core.item;
  2.  
  3. import java.util.List;
  4.  
  5.  
  6. /*              matrix for components
  7.  *
  8.  *
  9.  *                                                                              !                                                                  !!!                                                  hybrid polymers                                                    !!!                                                                                                  sleeper salvage                                                                                                    !!!
  10.  * conponents                                                   !       abbreviation!   Type ID !Output !       C3F     !       CER     !       FIG     !       FF      !       GN      !       LMF     !       MF      !       PFF     !       SMF     !       CTC     !       CSC     !       DCN     !       EHS     !       ECA     !       ECI     !       FNE     !       HSA     !       JDCN!   MNR     !       MFR     !       NIM     !       PCG     !       RCM     !       TEC     !                                              
  11.  * --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  12.  * Electromechanical Interface Nexus    !       EIN                     !       30466   !       1       !       0       !       0       !       0       !       0       !       5       !       10      !       0       !       10      !       0       !       1       !       0       !       0       !       5       !       0       !       0       !       0       !       0       !       0       !       0       !       3       !       0       !       1       !       0       !       0       !
  13.  * Emergent Neurovisual Interface               !       ENI                     !       29996   !       1       !       5       !       0       !       0       !       0       !       0       !       5       !       0       !       5       !       0       !       0       !       1       !       1       !       0       !       0       !       1       !       0       !       0       !       1       !       0       !       0       !       0       !       0       !       0       !       1       !
  14.  * Fullerene Intercalated Sheets                !       FIS                     !       30003   !       1       !       0       !       0       !       2       !       30      !       0       !       0       !       0       !       5       !       0       !       0       !       0       !       0       !       0       !       0       !       0       !       0       !       0       !       0       !       2       !       5       !       2       !       4       !       0       !       0       !
  15.  * Fulleroferrocene Power Conduits              !       FPC                     !       30476   !       1       !       0       !       0       !       0       !       25      !       0       !       0       !       15      !       10      !       10      !       0       !       0       !       0       !       5       !       0       !       0       !       0       !       0       !       0       !       0       !       4       !       4       !       3       !       0       !       0       !
  16.  * Metallofullerene Plating                     !       MP                      !       30465   !       1       !       0       !       0       !       0       !       15      !       0       !       0       !       0       !       4       !       0       !       0       !       0       !       0       !       5       !       0       !       0       !       0       !       0       !       0       !       0       !       4       !       0       !       0       !       0       !       0       !
  17.  * Nanowire Composites                                  !       NC                      !       30474   !       1       !       0       !       0       !       0       !       10      !       0       !       0       !       0       !       2       !       0       !       0       !       0       !       0       !       3       !       0       !       0       !       0       !       0       !       0       !       0       !       3       !       0       !       0       !       0       !       0       !
  18.  * Neurovisual Output Analyzer                  !       NOA                     !       30470   !       1       !       0       !       10      !       0       !       50      !       0       !       0       !       0       !       0       !       10      !       0       !       0       !       0       !       10      !       0       !       0       !       0       !       0       !       0       !       4       !       4       !       0       !       4       !       0       !       0       !
  19.  * Optimized Nano-engines                               !       ONE                     !       29992   !       1       !       0       !       0       !       0       !       0       !       5       !       10      !       0       !       10      !       0       !       0       !       0       !       0       !       5       !       0       !       0       !       1       !       0       !       0       !       0       !       3       !       0       !       1       !       0       !       0       !
  20.  * Reconfigured Subspace Calibrator     !       RSC                     !       30478   !       1       !       0       !       0       !       0       !       10      !       5       !       10      !       0       !       0       !       0       !       0       !       0       !       0       !       5       !       0       !       0       !       0       !       0       !       0       !       0       !       3       !       0       !       1       !       1       !       0       !
  21.  * Reinforced Metallofullerene Alloys   !       RMA                     !       30008   !       1       !       0       !       0       !       0       !       10      !       5       !       0       !       0       !       0       !       10      !       0       !       0       !       0       !       5       !       0       !       0       !       0       !       1       !       0       !       0       !       3       !       0       !       1       !       0       !       0       !
  22.  * Warfare Computation Core                     !       WCC                     !       29994   !       1       !       0       !       0       !       0       !       10      !       5       !       0       !       0       !       0       !       10      !       0       !       0       !       0       !       5       !       1       !       0       !       0       !       0       !       0       !       0       !       3       !       0       !       1       !       0       !       0       !
  23.  *
  24.  */
  25.  
  26. public class T3ComponentBlueprint {
  27.        
  28.         private final DefaultItem outputItem;
  29.         private final int output;
  30.         private final List <DefaultItem> partsList;
  31.        
  32.         public T3ComponentBlueprint(DefaultItem outputItem, int output,
  33.                         List<DefaultItem> partsList) {
  34.                 this.outputItem = outputItem;
  35.                 this.output = output;
  36.                 this.partsList = partsList;
  37.         }
  38.  
  39. }