Loading

Paste #pxbc9li0y

  1. import global_constants
  2. from train import EngineConsist, DieselLoco
  3. # for rest of stats, look up GE Evolution
  4. consist = EngineConsist(id = 'evolucao',
  5.               base_numeric_id = 2110,
  6.               title = u'Evolução [Diesel]'.encode('utf-8'),
  7.               replacement_id = '-none',
  8.               power = 4400,
  9.               speed = 75,
  10.               type_base_buy_cost_points = -10, # dibble buy cost for game balance
  11.               type_base_running_cost_points = -15, # dibble running costs for game balance
  12.               vehicle_life = 30,
  13.               intro_date = 2000)
  14.  
  15. consist.add_unit(DieselLoco(consist = consist,
  16.                         weight = 40,
  17.                         vehicle_length = 8,
  18.                         spriterow_num = 0))
  19.  
  20. consist.add_model_variant(intro_date=0,
  21.                        end_date=global_constants.max_game_date,
  22.                        spritesheet_suffix=0)

Comments