Class: Card::Monster
Instance Attribute Summary collapse
Attributes inherited from Base
#name, #realm
Attributes included from HonorEarned
#honor_earned
Class Method Summary
collapse
Methods inherited from Base
#apply_abilities, #apply_triggers, #basic_card?, #construct?, #hero?, #hydrated, #monster?, #to_s
Instance Attribute Details
#power_cost ⇒ Object
Returns the value of attribute power_cost.
118
119
120
|
# File 'lib/ascension/card.rb', line 118
def power_cost
@power_cost
end
|
Class Method Details
122
123
124
|
# File 'lib/ascension/card.rb', line 122
def cultist
new(:power_cost => 2, :name => "Cultist", :honor_earned => 1)
end
|
.cultist_standin ⇒ Object
125
126
127
|
# File 'lib/ascension/card.rb', line 125
def cultist_standin
new(:power_cost => 2, :name => "Cultist Standin", :honor_earned => 1)
end
|
.cultist_standin2 ⇒ Object
128
129
130
|
# File 'lib/ascension/card.rb', line 128
def cultist_standin2
new(:power_cost => 2, :name => "Cultist Standin2", :honor_earned => 1)
end
|