Class Integer

  1. lib/nwn/twoda.rb
Parent: Object

Methods

public instance

  1. level_to_xp
  2. xp_to_level

Public instance methods

level_to_xp ()

Returns the amount of experience that this level resolves to. Depends on a set-up TwoDA::Cache, and reads from exptable.

[show source]
# File lib/nwn/twoda.rb, line 14
  def level_to_xp
    NWN::TwoDA.get('exptable').by_col("XP", self - 1).to_i
  end
xp_to_level ()

Returns the level that this amount experience resolves to. Depends on a set-up TwoDA::Cache, and reads from exptable.

[show source]
# File lib/nwn/twoda.rb, line 4
  def xp_to_level
    NWN::TwoDA.get('exptable').rows.each {|row|
      level, exp = row.Level.to_i, row.XP.to_i
      return level - 1 if exp > self
    }
    return nil
  end