class Blueprints::StarShipBlueprints

Public Class Methods

new() click to toggle source
Calls superclass method Blueprints::Blueprints::new
# File lib/uss-enterprise/blueprint.rb, line 52
def initialize
  super
  @blueprints = {
    'NX'                    => @schematics.ss_nx,
    'Constitution'          => @schematics.ss_constitution,
    'Constitution - refit'  => @schematics.ss_const_refit,
    'Excelsior'             => @schematics.ss_excelsior,
    'Ambassador'            => @schematics.ss_ambassador,
    'Galaxy'                => @schematics.ss_galaxy,
    'Sovereign'             => @schematics.ss_sovereign,
    'Intrepid'              => @schematics.ss_intrepid
  }
end