class Card::Hero

Public Class Methods

apprentice() click to toggle source
# File lib/ascension/card.rb, line 86
def apprentice
  new(:runes => 1, :name => "Apprentice")
end
arha() click to toggle source
# File lib/ascension/card.rb, line 101
def arha
  new(:rune_cost => 1, :name => "Arha Initiate").tap do |h|
    h.abilities << Ability::Draw.new
  end
end
heavy_infantry() click to toggle source
# File lib/ascension/card.rb, line 95
def heavy_infantry
  new(:power => 2, :name => "Heavy Infantry", :rune_cost => 2)
end
militia() click to toggle source
# File lib/ascension/card.rb, line 92
def militia
  new(:power => 1, :name => 'Militia')
end
mystic() click to toggle source
# File lib/ascension/card.rb, line 89
def mystic
  new(:runes => 2, :name => 'Mystic', :rune_cost => 3)
end
standin() click to toggle source
# File lib/ascension/card.rb, line 98
def standin
  new(:rune_cost => 2, :name => "Standin")
end