class Sightstone::Rune

Class to represent a rune @attr [Numeric] id ID of the rune @attr [String] description description @attr [String] name name of the rune @attr [Numeric] tier rune tier (1,2,3)

Attributes

description[RW]
id[RW]
name[RW]
tier[RW]

Public Class Methods

new(data) click to toggle source
# File lib/sightstone/runebook.rb, line 49
def initialize(data)
  @id = data['id']
  @description = data['description']
  @name = data['name']
  @tier = data['tier']
end